root/branches/licq/website/daily.php

Revision 4124, 4.4 kB (checked in by emostar, 4 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?
2  include "header.php";
3
4  if (file_exists("/home/groups/l/li/licq/htdocs/zorbstats/zorblogs.php"))
5    include("/home/groups/l/li/licq/htdocs/zorbstats/zorblogs.php");
6  if (file_exists("/home/groups/l/li/licq/htdocs/zorbstats/zorblogspages.php"))
7  {
8    include ("/home/groups/l/li/licq/htdocs/zorbstats/zorblogspages.php");
9    $pagename = substr($PHP_SELF, 1);
10    $dispname = substr($PHP_SELF, 1, -4);
11    countpage($pagename, $dispname);
12  }
13?>
14     
15      <div id="content" >
16
17      <div id="main"><img src="images/main_title_dailies.gif" alt="CVS Dailies" /></div>
18        <div id="maincontent">
19          <div id="subcontent">
20
21          <p style="color:white;">.</p> <!-- Cheat when there is no text at the top of the page -->
22           
23            <!-- Screenshot Item Begin-->
24            <div class="news">
25             <h2>CVS snapshots</h2>
26             <p>CVS snapshots, in addition to anonymous CVS (see below), are available daily. If you want to participate in development and get full CVS access, please ask <a href="mailto:jon@licq.org">Jon</a>.</p>
27             <p>If you want to know what has changed in every detail, you should subscribe to the Licq CVS commit mailinglist.To do so, write an email to <a href=" mailto:licq-cvs-request@lists.sourceforge.net">licq-cvs-request@lists.sourceforge.net</a> and put 'subscribe' in the subject.</p>
28             <p>Brief summary of changes for the last week:
29             <pre><?php require("xlog.html"); ?></pre></p>
30             <p>
31             You can download the current Licq snapshot <a href="licq-daily.tar.bz2">licq-20050529</a>.<br>
32             <p>Remember, these are development versions, so they might have new and untested features or contain bugs. They might not even compile, so use them at your own risk.
33             <p>Please join the Licq development mailinglist when you use the snapshots regularly.
34             You should report problems with the snapshots or
35             discuss feature requests/patches there. To subscribe, write an email to <a href="mailto:licq-devel-request@lists.sourceforge.net">licq-devel-request@lists.sourceforge.net</a>.
36             <p>If there is a problem with the snapshot itself, please tell <a href="mailto:jon@licq.org">me</a>.
37              <div class="footer">
38                <div class="footer_right"></div>
39              </div>
40            </div>
41            <!-- Screenshot Item End-->
42
43            <!-- Screenshot Item Begin-->
44            <div class="news">
45            <h2>Anonymous CVS</h2>
46            <p>Thanks to Billy Biggs, there is now an anonymous CVS server available which is now being kept on SourceForge.
47            The anonymous CVS server is read-only. If you have installed the cvs binary,
48            you can use it to easily keep up to date with bleeding edge Licq development. This is
49            <b>only</b> intended for those who have at least basic knowledge in CVS usage
50            or those who want to figure it out on their own. All others are strongly recommended to use
51            the regularly generated CVS snapshots. See above for details.</p>
52            <p>Login to the anonymous CVS server by typing</p>
53            <pre>
54   cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/licq login
55   cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/licq co &lt;modulename&gt;
56            </pre>
57            <p>the requested password is empty, just type return.</p>
58            <p>You can checkout the following modules:
59            <ul>
60              <li>licq</li>
61              <li>licq-data</li>
62              <li>licq-plugins</li>
63            </ul>
64            <p>You have to run
65            <pre>   make -f Makefile.cvs</pre><p>to generate the ./configure script needed for compiling the source. You need automake 1.4 or later installed to succeed.<br>
66            The recommended ~/.cvsrc for CVS usage is:
67            <pre>
68   cvs -l -z4 -q
69   diff -u1 -b -p
70   update -dP
71   checkout -P
72            </pre></p>
73            <p>If you experience any unusual problems, please inform me.
74              <div class="footer">
75                <div class="footer_right"></div>
76              </div>
77            </div>
78            <!-- Screenshot Item End-->
79
80<br>
81            Last Modified: <?require("modify.html")?>
82<br>
83          </div>
84        </div>
85
86        <div id="mainfooter"><p id="mainfooter_left"></p><!-- <img src="images/main_bg_bottomleft.gif" border="0" alt="Main" /> --></div>
87
88      </div>
89
90<? include "footer.php" ?>
Note: See TracBrowser for help on using the browser.