Don't warn on slow queries since this is a batch process.
[davical.git] / htdocs / help.php
blob298cb6b137231f75d0a247fc3ce9c129d43855c8
1 <?php
2 include("./always.php");
3 include("DAViCalSession.php");
4 $session->LoginRequired();
6 include("interactive-page.php");
8 $c->page_title = "DAViCal CalDAV Server - Configuration Help";
9 include("page-header.php");
11 $wiki_help = '';
12 if ( isset($_SERVER['HTTP_REFERER']) ) {
13 $wiki_help = preg_replace('#^.*/#', '', $_SERVER['HTTP_REFERER']);
14 $wiki_help = preg_replace('#\.php.*$#', '', $wiki_help);
15 $wiki_help = 'w/Help/'.$wiki_help;
18 $content = sprintf(translate('<h1>Help</h1>
19 <p>For initial help you should visit the <a href="http://www.davical.org/" target="_blank">DAViCal Home Page</a> or take
20 a look at the <a href="http://wiki.davical.org/%s" target="_blank">DAViCal Wiki</a>.</p>
21 <p>If you can\'t find the answers there, visit us on <a href="http://wikipedia.org/wiki/Internet_Relay_Chat" target="_blank">IRC</a> in
22 the <b>#davical</b> channel on <a href="http://www.oftc.net/" target="_blank">irc.oftc.net</a>,
23 or send a question to the <a href="http://lists.sourceforge.net/mailman/listinfo/davical-general" target="_blank">DAViCal Users mailing list</a>.</p>
24 <p>The <a href="http://sourceforge.net/mailarchive/forum.php?forum_id=8348" title="DAViCal Users Mailing List" target="_blank">mailing list
25 archives can be helpful too.</p>'), $wiki_help);
27 echo $content;
29 include("page-footer.php");