[Lemon-commits] kpeter: r3309 - lemon/trunk/doc

Lemon SVN svn at lemon.cs.elte.hu
Fri Sep 14 00:05:33 CEST 2007


Author: kpeter
Date: Fri Sep 14 00:05:32 2007
New Revision: 3309

Modified:
   lemon/trunk/doc/algorithms.dox
   lemon/trunk/doc/getstart.dox

Log:
Small bug fixes.


Modified: lemon/trunk/doc/algorithms.dox
==============================================================================
--- lemon/trunk/doc/algorithms.dox	(original)
+++ lemon/trunk/doc/algorithms.dox	Fri Sep 14 00:05:32 2007
@@ -95,7 +95,7 @@
 And finally you can start the process with \ref lemon::Bfs::start "start()", or
 you can write your own loop to process the nodes one-by-one.
 
-\todo demo for bfs advanced control
+\todo Demo for Bfs advanced control.
 
 \subsection Dfs
 Since Dfs is very similar to Bfs with a few tiny differences we only see a bit more complex example
@@ -149,6 +149,8 @@
 
 The program is to be found in the \ref demo directory: \ref topological_ordering.cc
 
+\todo Check the linking of the demo file, the code samples are missing.
+
 More algorithms are described in the \ref algorithms2 "second part".
 */
 }

Modified: lemon/trunk/doc/getstart.dox
==============================================================================
--- lemon/trunk/doc/getstart.dox	(original)
+++ lemon/trunk/doc/getstart.dox	Fri Sep 14 00:05:32 2007
@@ -54,13 +54,13 @@
 \section downloadLEMON How to download LEMON
 
 You can download LEMON from the LEMON web site:
-<a href="http://lemon.cs.elte.hu/site/products/">
-http://lemon.cs.elte.hu/site/products/</a> .
+<a href="https://lemon.cs.elte.hu/site/products/">
+https://lemon.cs.elte.hu/site/products/</a> .
 There you will find released versions in form of <tt>.tar.gz</tt> files.
 If you want a developer version (for example you want to contribute in
 developing the library LEMON) then you might want to use our Subversion
-repository. This case is not detailed here, so from now on we suppose that
-you downloaded a tar.gz file.
+repository. This case is detailed later, so from now on we suppose that
+you downloaded a <tt>.tar.gz</tt> file.
 
 
 \section installLEMON How to install LEMON
@@ -84,7 +84,7 @@
 These commands install LEMON under \c /usr/local (you will
 need root privileges to be able to install to that
 directory). If you want to install it to some other place, then
-pass the \c --prefix=DIRECTORY flag to \c ./configure, for example:
+pass the \c --prefix=DIRECTORY flag to <tt>./configure</tt>, for example:
 
 \verbatim
 ./configure --prefix=/home/username/lemon
@@ -137,7 +137,7 @@
 
 \subsection configureFlags Configure flags
 
-You can pass the following flags to \c ./configure (see \c ./configure --help
+You can pass the following flags to <tt>./configure</tt> (see <tt>./configure</tt> --help
 for more):
 
 \verbatim
@@ -229,7 +229,7 @@
 
 You can compile the code from the repository similarly to the packaged
 version, but you will need to run \c autoreconf \c -vi or 
-\c ./bootstrap in some older environment before \c ./configure. See \c
+<tt>./bootstrap</tt> in some older environment before <tt>./configure</tt>. See \c
 ./configure \c --help for options. For bootstrapping you will need the
 following tools:
 
@@ -241,10 +241,10 @@
 To generate the documentation, run \c make \c doc. You will need
 <a href="http://www.doxygen.org/">Doxygen</a> for this.
 
-You can pass the \c --enable-doc=full flag to \c ./configure to generate the
+You can pass the \c --enable-doc=full flag to <tt>./configure</tt> to generate the
 internal documentation too.
 
-If you pass the \c --disable-doc flag to \c ./configure then the documentation
+If you pass the \c --disable-doc flag to <tt>./configure</tt> then the documentation
 won't be installed, when you run \c make \c install (this speeds things up a
 bit).
 
@@ -306,7 +306,7 @@
 
 If you want to see more features, go to the
 \ref quicktour "Quick Tour to LEMON",
-if you want to see see some demo programs then go to our 
+if you want to see some demo programs then go to our 
 \ref demoprograms "Demo Programs" page! 
 
 



More information about the Lemon-commits mailing list