2006-07-11 03:44:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
require_once("countries.inc");
|
|
|
|
require_once("poll_data.inc");
|
|
|
|
require_once("poll.inc");
|
|
|
|
|
|
|
|
page_head("BOINC user survey");
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
Several volunteer computing projects,
|
|
|
|
including Climateprediction.net, Einstein@home,
|
|
|
|
and SETI@home, use software called BOINC.
|
|
|
|
If you participate in projects like this,
|
|
|
|
we request that you answer the following questions.
|
|
|
|
This will help BOINC-based projects increase
|
|
|
|
participation and achieve greater scientific results.
|
|
|
|
<p>
|
|
|
|
Please answer as many questions as you want,
|
|
|
|
then go to the bottom and click OK.
|
2006-07-12 23:18:57 +00:00
|
|
|
If you previously completed the survey but your answers have changed,
|
|
|
|
please complete it again -
|
|
|
|
your new answers will replace the old ones.
|
|
|
|
<p>
|
|
|
|
The current results of the survey are
|
|
|
|
<a href=poll_results.php>here</a>.
|
2006-07-11 03:44:14 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
echo "<form name=blah action=poll_action.php>\n";
|
|
|
|
list_start();
|
|
|
|
list_bar("Do you run BOINC?");
|
|
|
|
|
2006-07-11 19:24:12 +00:00
|
|
|
generate_functions($overall_choices);
|
|
|
|
show_choices($overall_choices, $run_boinc);
|
2006-07-11 03:44:14 +00:00
|
|
|
|
|
|
|
list_bar("Choosing projects");
|
2006-07-13 03:04:45 +00:00
|
|
|
show_choices($project_items, "");
|
2006-07-11 03:44:14 +00:00
|
|
|
list_bar("Your computers");
|
2006-07-11 19:24:12 +00:00
|
|
|
show_choices($comp_items, "");
|
2006-07-11 03:44:14 +00:00
|
|
|
list_bar("You");
|
2006-07-11 19:24:12 +00:00
|
|
|
show_choices($you_items, "");
|
2006-07-11 03:44:14 +00:00
|
|
|
|
|
|
|
echo "
|
|
|
|
<tr>
|
2006-07-11 19:24:12 +00:00
|
|
|
<td bgcolor=$light_blue valign=top>Nationality</td>
|
|
|
|
<td><select name=$country>
|
2006-07-11 03:44:14 +00:00
|
|
|
";
|
|
|
|
print_country_select();
|
|
|
|
echo "</select></td></tr>";
|
2006-07-11 19:24:12 +00:00
|
|
|
list_bar("Comments");
|
|
|
|
list_item2(
|
|
|
|
"Please suggest ways that BOINC,
|
|
|
|
and the projects that use it, could be improved:",
|
2006-07-11 21:56:53 +00:00
|
|
|
"<textarea name=$improved rows=4 cols=60></textarea>"
|
2006-07-11 19:24:12 +00:00
|
|
|
);
|
2006-07-11 03:44:14 +00:00
|
|
|
|
|
|
|
list_item("<br>", "When done click: <input type=submit value=OK>");
|
|
|
|
list_end();
|
|
|
|
echo "
|
|
|
|
</form>
|
|
|
|
";
|
|
|
|
|
|
|
|
?>
|