updates
[runtime.git] / public_html / cvs.html
index e9e92a08629759b2735b91bf2c1f10628d77c562..fdaf035ea6606a1a6c47016a07fdf78818d72d7d 100644 (file)
@@ -9,9 +9,9 @@ align=center>
 <td>
 <font face="Arial,Helvetica,Sans-serif"> 
 <p>
-<font size=4>
 <h1>Anonymous CVS Access</h1>
 <p>
+<font size=4>
 Anonymous CVS access is now available to SILC CVS repository. The
 repository includes everything related to SILC project; source codes,
 documentation and even these web pages. The CVS access is of course public
@@ -25,8 +25,10 @@ thus you cannot expect that the source tree would work or even compile.
 While it is our intention that the trunk would always at least compile
 there might be situations when it will not.
 
+</font>
 <p><br>
-<h1>Browsing the Source Tree</h1>
+<h2>Browsing the Source Tree</h2>
+<font size=4>
 <p>
 If you want to browse the source tree using web browser before checking
 out the tree with CVS use following link:
@@ -38,8 +40,10 @@ Note that this is not real-time access to the CVS repository. It is
 updated once a day. If you want real-time access then checkout the CVS
 repository.
 
+</font>
 <p><br>
-<h1>Howto Checkout The Source Tree</h1>
+<h2>Howto Checkout The Source Tree</h2>
+<font size=4>
 <p>
 The repository can be checked out by using anonymous pserver with CVS.
 <p>
@@ -86,8 +90,9 @@ directory named silc. SILC CVS repository currently does not have any
 branches thus this will check out the trunk. The size of the trunk is
 currently about 11 MB but will grow in the future.
 
+</font>
 <p><br>
-<h1>What SILC Source Tree Includes</h1>
+<h2>What SILC Source Tree Includes</h2>
 <p>
 SILC Source tree includes a lot more stuff that appears in public
 distribution.  The source tree includes, for example, internal scripts,
@@ -129,21 +134,22 @@ Following directories currently exist in SILC source tree.
         never appear in public distribution, such as, configuration files.
 </pre>
 
-<font size=4>
 
+</font>
 <p><br>
-<h1>Howto Compile SILC Source Tree</h1>
+<h2>Howto Compile SILC Source Tree</h2>
+<font size=4>
 <p>
 After checkout from CVS the SILC source tree must be prepared for 
 configuration and compilation.  To compile the source three, give,
 <p>
-<font size=3>
 <pre>
+<font size=3>
        ./prepare
        ./configure --enable-debug
        make
+</font>
 </pre>
-<font size=4>
 
 The ./prepare script is included in to the source tree and it never
 appears in public distribution.  The script prepares the source tree
@@ -160,30 +166,34 @@ SILC_LOG_DEBUG* scripts.  Warning is due here:  The debugging produced
 by both cilent and server is very heavy, thus it is common to test
 the programs as follows:
 <p>
-<font size=3>
 <pre>
-       ./silc -f configfile 2>log
-       ./silcd -f configfile 2>log
+<font size=3>
+       ./silc -d -f configfile 2>log
+       ./silcd -d -f configfile 2>log
+</font>
 </pre>
-<font size=4>
 
+</font>
 <p><br>
-<h1>Howto Clean SILC Source Tree</h1>
+<h2>Howto Clean SILC Source Tree</h2>
+<font size=4>
 <p>
 To entirely clear the source tree to the state after it was checked out
 from CVS, give,
-<font size=3>
 <pre>
+<font size=3>
        ./prepare-clean
+</font>
 </pre>
-<font size=4>
 
 This calls `make distclean' plus removes automatically generated files
 by hand.  It also removes *.log files. However, it will not remove
 any other files you might have created.
 
+</font>
 <p><br>
-<h1>Makefiles and configuration files</h1>
+<h2>Makefiles and configuration files</h2>
+<font size=4>
 <p>
 Developers should never directly write a Makefile.  All Makefiles are
 always automatically generated by ./prepare and later by ./configure