source: contrib/davical/htdocs/help.php @ 3733

Revision 3733, 1.3 KB checked in by gabriel.malheiros, 13 years ago (diff)

Ticket #1541 - <Davical customizado para o Expresso.Utiliza Caldav e CardDav?>

Line 
1<?php
2include("./always.php");
3include("DAViCalSession.php");
4$session->LoginRequired();
5
6include("interactive-page.php");
7
8$c->page_title = "DAViCal CalDAV Server - Configuration Help";
9include("page-header.php");
10
11$wiki_help = '';
12if ( 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;
16}
17
18$content = 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
20a look at the <a href="http://wiki.davical.org/'.$wiki_help.'" 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
22the <b>#davical</b> channel on <a href="http://www.oftc.net/" target="_blank">irc.oftc.net</a>,
23or send a question to the <a href="http://lists.sourceforge.net/mailman/listinfo/rscds-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
25archives can be helpful too.</p>');
26
27echo $content;
28
29include("page-footer.php");
30
Note: See TracBrowser for help on using the repository browser.