fix documentation
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 26 Oct 2008 08:10:25 +0000 (08:10 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 26 Oct 2008 08:10:25 +0000 (08:10 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@37117 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

doc/Doxyfile
doc/embryo.dox.in

index 8fcbce8..c401631 100644 (file)
@@ -1,15 +1,15 @@
 PROJECT_NAME           = Embryo
 PROJECT_NUMBER         =
-OUTPUT_DIRECTORY       = doc
-INPUT                  = embryo.c.in src/lib/
-IMAGE_PATH             = doc/img
+OUTPUT_DIRECTORY       = .
+INPUT                  = embryo.dox ../src/lib/
+IMAGE_PATH             = img
 OUTPUT_LANGUAGE        = English
 GENERATE_HTML          = YES
 HTML_OUTPUT            = html
 HTML_FILE_EXTENSION    = .html
-HTML_HEADER            = doc/head.html
-HTML_FOOTER            = doc/foot.html
-HTML_STYLESHEET        = doc/e.css
+HTML_HEADER            = head.html
+HTML_FOOTER            = foot.html
+HTML_STYLESHEET        = e.css
 HTML_ALIGN_MEMBERS     = YES
 ENUM_VALUES_PER_LINE   = 1
 GENERATE_HTMLHELP      = NO
index 717cfdc..9b81296 100644 (file)
@@ -2,8 +2,8 @@
 
 @mainpage Embryo Library Documentation
 @image html  embryo.png
-@version 0.0.1
-@author Carsten Haitzler <raster@rasterman.com>
+@version @PACKAGE_VERSION@
+@author Carsten Haitzler <raster\@rasterman.com>
 @date 2004
 
 
@@ -74,7 +74,7 @@ for example: @code public testvar @endcode not:
 @subsection Small_Constants_Subsection Constants
 
 You can declare constants in two ways:
-@li Using the preprocessor macro @c #define.
+@li Using the preprocessor macro @c \#define.
 @li By inserting @c const between the keyword and variable name of a
     variable declaration.  For example, to declare the variable @c var1
     constant, you type @code new const var1 = 2 @endcode  Now @c var1