2003-08-13 22:06:08 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once('../inc/forum.inc');
|
|
|
|
require_once('../inc/util.inc');
|
|
|
|
require_once('../inc/time.inc');
|
2003-08-13 22:06:08 +00:00
|
|
|
|
2007-04-29 14:22:28 +00:00
|
|
|
get_logged_in_user(false);
|
|
|
|
|
2005-02-23 00:42:14 +00:00
|
|
|
page_head("Questions and answers");
|
2003-08-13 22:06:08 +00:00
|
|
|
|
2007-02-24 16:05:41 +00:00
|
|
|
echo "<p>
|
2006-12-05 03:50:36 +00:00
|
|
|
Talk live via Skype with a volunteer, in any of several languages.
|
|
|
|
Go to
|
2007-02-24 16:05:41 +00:00
|
|
|
<a href=\"http://boinc.berkeley.edu/help.php\">BOINC Online Help</a>.</p>
|
2006-12-05 03:50:36 +00:00
|
|
|
";
|
2003-08-13 22:06:08 +00:00
|
|
|
|
2007-11-12 20:57:15 +00:00
|
|
|
show_forum_title(null, null, null, null, false);
|
2003-12-08 01:19:49 +00:00
|
|
|
start_forum_table(array("Topic", "# Questions", "Last post"));
|
2003-08-13 22:06:08 +00:00
|
|
|
|
2007-11-12 20:57:15 +00:00
|
|
|
$categories = BoincCategory::enum("is_helpdesk=1 order by orderID");
|
|
|
|
foreach ($categories as $category) {
|
2005-02-13 21:33:02 +00:00
|
|
|
echo "
|
2006-08-22 08:48:40 +00:00
|
|
|
<tr class=\"subtitle\">
|
|
|
|
<td class=\"category\" colspan=\"4\">", $category->name, "</td>
|
2005-02-13 21:33:02 +00:00
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
|
2007-11-12 20:57:15 +00:00
|
|
|
$forums = BoincForum::enum("category=$category->id order by orderID");
|
|
|
|
foreach ($forums as $forum) {
|
2005-02-13 21:33:02 +00:00
|
|
|
echo "
|
2006-08-22 08:48:40 +00:00
|
|
|
<tr class=\"row1\">
|
2005-02-13 21:33:02 +00:00
|
|
|
<td>
|
2006-08-22 08:48:40 +00:00
|
|
|
<b><a href=\"forum_forum.php?id=$forum->id\">$forum->title</a></b>
|
2005-02-13 21:33:02 +00:00
|
|
|
<br>", $forum->description, "
|
|
|
|
</td>
|
|
|
|
<td>", $forum->threads, "</td>
|
|
|
|
<td>", time_diff_str($forum->timestamp, time()), "</td>
|
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
}
|
2003-08-13 22:06:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "
|
2005-02-13 21:33:02 +00:00
|
|
|
</table>
|
2003-08-13 22:06:08 +00:00
|
|
|
</p>
|
|
|
|
";
|
|
|
|
|
2003-08-15 01:01:00 +00:00
|
|
|
page_tail();
|
2007-11-12 20:57:15 +00:00
|
|
|
|
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2003-11-30 21:05:57 +00:00
|
|
|
?>
|