Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/eet

Dir     : e17/libs/eet


Modified Files:
        gendoc Doxyfile eet.c.in 


Log Message:
use INPUT entry of Doxyfile instead of adding Eet.h at the end of eet.c, update 
the date. remove trailing spaces. Maybe we should add Cedric as author

===================================================================
RCS file: /cvs/e/e17/libs/eet/gendoc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- gendoc      29 Mar 2008 08:25:43 -0000      1.5
+++ gendoc      29 Mar 2008 08:39:22 -0000      1.6
@@ -1,10 +1,4 @@
 #!/bin/sh
-for I in `find ./src/lib -name "Eet.h" -print`; do
-  cat $I >> ./eet.c
-done
-#for I in `find ./src/lib -name "*.c" -print`; do
-#  cat $I >> ./eet.c
-#done
 rm -rf ./doc/html ./doc/latex ./doc/man
 doxygen
 cp doc/img/* doc/html/
===================================================================
RCS file: /cvs/e/e17/libs/eet/Doxyfile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Doxyfile    6 Dec 2007 18:38:09 -0000       1.4
+++ Doxyfile    29 Mar 2008 08:39:22 -0000      1.5
@@ -1,7 +1,7 @@
 PROJECT_NAME           = Eet
 PROJECT_NUMBER         =
 OUTPUT_DIRECTORY       = doc
-INPUT                  = eet.c
+INPUT                  = eet.c src/lib/Eet.h
 IMAGE_PATH             = doc/img
 OUTPUT_LANGUAGE        = English
 GENERATE_HTML          = YES
===================================================================
RCS file: /cvs/e/e17/libs/eet/eet.c.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- eet.c.in    27 Sep 2005 22:10:08 -0000      1.9
+++ eet.c.in    29 Mar 2008 08:39:22 -0000      1.10
@@ -1,7 +1,7 @@
-/** 
[EMAIL PROTECTED]
+/**
[EMAIL PROTECTED] eet.c
 @brief Eet Data Handling Library Public API Calls
- 
+
 These routines are used for Eet Library interaction
 */
 
@@ -9,9 +9,9 @@
 
 @mainpage Eet Library Documentation
 @image html  eet.png
[EMAIL PROTECTED] @VERSION@
[EMAIL PROTECTED] Carsten Haitzler <[EMAIL PROTECTED]>
[EMAIL PROTECTED] 2000-2004
[EMAIL PROTECTED] @PACKAGE_VERSION@
[EMAIL PROTECTED] Carsten Haitzler <[EMAIL PROTECTED]>
[EMAIL PROTECTED] 2000-2008
 
 
 
@@ -71,14 +71,14 @@
     };
 
   eet_init();
-  
+
   // blindly open an file for output and write strings with their NUL char
   ef = eet_open("test.eet", EET_FILE_MODE_WRITE);
   eet_write(ef, "Entry 1", entries[0], strlen(entries[0]) + 1, 0);
   eet_write(ef, "Entry 2", entries[1], strlen(entries[1]) + 1, 1);
   eet_write(ef, "Entry 3", entries[2], strlen(entries[2]) + 1, 0);
   eet_close(ef);
-  
+
   // open the file again and blindly get the entries we wrote
   ef = eet_open("test.eet", EET_FILE_MODE_READ);
   ret = eet_read(ef, "Entry 1", &size);



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to