Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix TOCs in GRAS tutorial
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 19 Apr 2011 13:51:06 +0000 (15:51 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 19 Apr 2011 14:22:33 +0000 (16:22 +0200)
buildtools/Cmake/GenerateDoc.cmake
doc/gtut-tour-00-install.doc [new file with mode: 0644]
doc/gtut-tour-13-pointers.doc
doc/gtut-tour-recap-messages.doc
doc/gtut-tour.doc

index b357380..c4e84c4 100644 (file)
@@ -179,9 +179,27 @@ endif(DOXYGEN_PATH AND FIG2DEV_PATH AND BIBTOOL_PATH AND BIBTEX2HTML_PATH AND IC
 ##############################################################################"
 
 message(STATUS "Check individual TOCs")
 ##############################################################################"
 
 message(STATUS "Check individual TOCs")
-file(GLOB_RECURSE LISTE_GTUT
-       "${CMAKE_HOME_DIRECTORY}/doc/gtut-tour-*.doc"
+set(LISTE_GTUT
+       doc/gtut-tour-00-install.doc
+       doc/gtut-tour-01-bones.doc
+       doc/gtut-tour-02-simple.doc
+       doc/gtut-tour-03-args.doc
+       doc/gtut-tour-04-callback.doc
+       doc/gtut-tour-05-globals.doc
+       doc/gtut-tour-06-logs.doc
+       doc/gtut-tour-07-timers.doc
+       doc/gtut-tour-08-exceptions.doc
+       doc/gtut-tour-09-simpledata.doc
+       doc/gtut-tour-10-rpc.doc
+       doc/gtut-tour-11-explicitwait.doc
+       doc/gtut-tour-recap-messages.doc
+       doc/gtut-tour-12-staticstruct.doc
+       doc/gtut-tour-13-pointers.doc
+       doc/gtut-tour-14-dynar.doc
+       doc/gtut-tour-15-manualdatadef.doc
+       doc/gtut-tour-16-exchangecb.doc
 )
 )
+
 foreach(file_name ${LISTE_GTUT})
        file(REMOVE ${CMAKE_HOME_DIRECTORY}/doc/tmp.curtoc)
        file(REMOVE ${CMAKE_HOME_DIRECTORY}/doc/tmp.realtoc)
 foreach(file_name ${LISTE_GTUT})
        file(REMOVE ${CMAKE_HOME_DIRECTORY}/doc/tmp.curtoc)
        file(REMOVE ${CMAKE_HOME_DIRECTORY}/doc/tmp.realtoc)
@@ -190,7 +208,8 @@ foreach(file_name ${LISTE_GTUT})
        string(REGEX MATCH "Table of Contents.*<hr>" valeur_line "${file_content}")
        string(REPLACE "\n" ";" valeur_line "${valeur_line}")
        string(REPLACE "\n" ";" file_content "${file_content}")
        string(REGEX MATCH "Table of Contents.*<hr>" valeur_line "${file_content}")
        string(REPLACE "\n" ";" valeur_line "${valeur_line}")
        string(REPLACE "\n" ";" file_content "${file_content}")
-       
+              
+       file(APPEND ${CMAKE_HOME_DIRECTORY}/doc/tmp.realtoc "\n") # make sure it exists
        foreach(line ${file_content})
                string(REGEX MATCH "[\\]s?u?b?s?u?b?section.*" line2 "${line}")
                string(REGEX MATCH ".*_toc.*" line3 "${line}")
        foreach(line ${file_content})
                string(REGEX MATCH "[\\]s?u?b?s?u?b?section.*" line2 "${line}")
                string(REGEX MATCH ".*_toc.*" line3 "${line}")
@@ -206,6 +225,7 @@ foreach(file_name ${LISTE_GTUT})
                endif(line2 AND NOT line3)
        endforeach(line ${file_content})
        
                endif(line2 AND NOT line3)
        endforeach(line ${file_content})
        
+       file(APPEND ${CMAKE_HOME_DIRECTORY}/doc/tmp.curtoc "\n") # make sure it exists
        foreach(line ${valeur_line})
                string(REGEX MATCH ".*ref.*" line_ok ${line})
                if(line_ok)
        foreach(line ${valeur_line})
                string(REGEX MATCH ".*ref.*" line_ok ${line})
                if(line_ok)
diff --git a/doc/gtut-tour-00-install.doc b/doc/gtut-tour-00-install.doc
new file mode 100644 (file)
index 0000000..de0bca4
--- /dev/null
@@ -0,0 +1,16 @@
+
+/** 
+@page GRAS_tut_tour_install Lesson 0: Installing GRAS
+
+Since GRAS is technically part of the SimGrid project, you have to install
+SimGrid to install GRAS. Doing so is explained in the relevant FAQ section
+(\ref faq_installation). 
+
+Newcommers should install the stable release from the tarball, since the 
+snapshots may suffer from (additionnal;) stability issues. Only go for the
+git if you really need features not present in the stable releases yet (or
+if you plan to help us improving the tool, what is always welcomed).
+
+Proceed to \ref GRAS_tut_tour_setup.
+
+*/
index 4e03372..3c0f6a9 100644 (file)
@@ -7,9 +7,15 @@ long otherwise, the lesson is organized as a FAQ, with little examples of
 how to do things.
 
 \section GRAS_tut_tour_pointers_toc Table of Contents
 how to do things.
 
 \section GRAS_tut_tour_pointers_toc Table of Contents
+ - \ref GRAS_tut_tour_pointers_intro
+ - \ref GRAS_tut_tour_pointers_use
+ - \ref GRAS_tut_tour_pointers_recap
  - \ref GRAS_tut_tour_pointers_cste
    
 <hr>
  - \ref GRAS_tut_tour_pointers_cste
    
 <hr>
+\section GRAS_tut_tour_pointers_intro Introduction to pointers in datadesc
+\section GRAS_tut_tour_pointers_use Using pointers in datadesc
+\section GRAS_tut_tour_pointers_recap Recapping everything
 
 
 \section GRAS_tut_tour_pointers_cste How to have constants in parsed structures?
 
 
 \section GRAS_tut_tour_pointers_cste How to have constants in parsed structures?
index 71269d9..2f34294 100644 (file)
@@ -9,7 +9,6 @@
    - \ref GRAS_tut_tour_message_recaping_rpc3
    - \ref GRAS_tut_tour_message_recaping_rpc4
    - \ref GRAS_tut_tour_message_recaping_rpc5
    - \ref GRAS_tut_tour_message_recaping_rpc3
    - \ref GRAS_tut_tour_message_recaping_rpc4
    - \ref GRAS_tut_tour_message_recaping_rpc5
-   -
    - \ref GRAS_tut_tour_message_recaping_rpc_aside1
    - \ref GRAS_tut_tour_message_recaping_rpc_aside2
    - \ref GRAS_tut_tour_message_recaping_rpc_aside3
    - \ref GRAS_tut_tour_message_recaping_rpc_aside1
    - \ref GRAS_tut_tour_message_recaping_rpc_aside2
    - \ref GRAS_tut_tour_message_recaping_rpc_aside3
index 5cb74e5..150509c 100644 (file)
@@ -29,120 +29,128 @@ all features available in GRAS.
 
 <b>Part 1: Bases</b>
 
 
 <b>Part 1: Bases</b>
 
  - \ref GRAS_tut_tour_install
-
  - \ref GRAS_tut_tour_setup
-      - \ref GRAS_tut_tour_setup_C
-      - \ref GRAS_tut_tour_setup_plat
-      - \ref GRAS_tut_tour_setup_deploy
-      - \ref GRAS_tut_tour_setup_glue
-      - \ref GRAS_tut_tour_setup_make
-      - \ref GRAS_tut_tour_setup_start
+ - \ref GRAS_tut_tour_install
+
+ - \ref GRAS_tut_tour_setup
+    - \ref GRAS_tut_tour_setup_C
+    - \ref GRAS_tut_tour_setup_plat
+    - \ref GRAS_tut_tour_setup_deploy
+    - \ref GRAS_tut_tour_setup_glue
+    - \ref GRAS_tut_tour_setup_make
+    - \ref GRAS_tut_tour_setup_start
   
 <b>Part 2: Message passing</b>
   
   
 <b>Part 2: Message passing</b>
   
-   - \ref GRAS_tut_tour_simpleexchange
-      - \ref GRAS_tut_tour_simpleexchange_msgtype
-      - \ref GRAS_tut_tour_simpleexchange_socks
-      - \ref GRAS_tut_tour_simpleexchange_exchange
-      - \ref GRAS_tut_tour_simpleexchange_recaping
-    
-   - \ref GRAS_tut_tour_args
-      - \ref GRAS_tut_tour_args_use
-      - \ref GRAS_tut_tour_args_sg
-      - \ref GRAS_tut_tour_args_recap
+ - \ref GRAS_tut_tour_simpleexchange
+    - \ref GRAS_tut_tour_simpleexchange_msgtype
+    - \ref GRAS_tut_tour_simpleexchange_socks
+    - \ref GRAS_tut_tour_simpleexchange_exchange
+    - \ref GRAS_tut_tour_simpleexchange_recaping
+  
+ - \ref GRAS_tut_tour_args
+    - \ref GRAS_tut_tour_args_use
+    - \ref GRAS_tut_tour_args_sg
+    - \ref GRAS_tut_tour_args_recap
+  
+ - \ref GRAS_tut_tour_callbacks
+    - \ref GRAS_tut_tour_callbacks_declare
+    - \ref GRAS_tut_tour_callbacks_attach
+    - \ref GRAS_tut_tour_callbacks_handle
+    - \ref GRAS_tut_tour_callback_recap
     
     
  - \ref GRAS_tut_tour_callbacks
-      - \ref GRAS_tut_tour_callbacks_declare
-      - \ref GRAS_tut_tour_callbacks_attach
-      - \ref GRAS_tut_tour_callbacks_handle
-      - \ref GRAS_tut_tour_callback_recap
- \ref GRAS_tut_tour_globals
+    - \ref GRAS_tut_tour_globals_intro
+    - \ref GRAS_tut_tour_globals_use
+    - \ref GRAS_tut_tour_callback_pitfall
+    - \ref GRAS_tut_tour_callback_recap
      
      
-   - \ref GRAS_tut_tour_globals
-      - \ref GRAS_tut_tour_globals_intro
-      - \ref GRAS_tut_tour_globals_use
-      - \ref GRAS_tut_tour_callback_pitfall
-      - \ref GRAS_tut_tour_callback_recap
-      
-   - \ref GRAS_tut_tour_logs
-      - \ref GRAS_tut_tour_logs_intro
-      - \ref GRAS_tut_tour_logs_practice
-      - \ref GRAS_tut_tour_logs_recap
-      - \ref GRAS_tut_tour_logs_config
-    
-   - \ref GRAS_tut_tour_timers
-      - \ref GRAS_tut_tour_timers_intro
-      - \ref GRAS_tut_tour_timers_use
-      - \ref GRAS_tut_tour_timers_recap
+ - \ref GRAS_tut_tour_logs
+    - \ref GRAS_tut_tour_logs_intro
+    - \ref GRAS_tut_tour_logs_practice
+    - \ref GRAS_tut_tour_logs_recap
+    - \ref GRAS_tut_tour_logs_config
+      - \ref GRAS_tut_tour_logs_config_prio
+      - \ref GRAS_tut_tour_logs_config_layout
+
+ - \ref GRAS_tut_tour_timers
+    - \ref GRAS_tut_tour_timers_intro
+    - \ref GRAS_tut_tour_timers_use
+    - \ref GRAS_tut_tour_timers_recap
+   
+ - \ref GRAS_tut_tour_exceptions
+    - \ref GRAS_tut_tour_exceptions_intro
+    - \ref GRAS_tut_tour_exceptions_use
+    - \ref GRAS_tut_tour_exceptions_recap
     
     
-   - \ref GRAS_tut_tour_exceptions
-      - \ref GRAS_tut_tour_exceptions_intro
-      - \ref GRAS_tut_tour_exceptions_use
-      - \ref GRAS_tut_tour_exceptions_recap
-     
-   - \ref GRAS_tut_tour_simpledata
-      - \ref GRAS_tut_tour_simpledata_intro
-         - \ref GRAS_tut_tour_simpledata_intro_conv
-         - \ref GRAS_tut_tour_simpledata_intro_gras
-         - \ref GRAS_tut_tour_simpledata_use
-      - \ref GRAS_tut_tour_simpledata_example
-      - \ref GRAS_tut_tour_simpledata_recap
+ - \ref GRAS_tut_tour_simpledata
+    - \ref GRAS_tut_tour_simpledata_intro
+      - \ref GRAS_tut_tour_simpledata_intro_conv
+      - \ref GRAS_tut_tour_simpledata_intro_gras
+      - \ref GRAS_tut_tour_simpledata_use
+    - \ref GRAS_tut_tour_simpledata_example
+    - \ref GRAS_tut_tour_simpledata_recap
       
       
  - \ref GRAS_tut_tour_rpc
-      - \ref GRAS_tut_tour_rpc_intro
-      - \ref GRAS_tut_tour_rpc_use
-         - \ref GRAS_tut_tour_rpc_use_declare
-         - \ref GRAS_tut_tour_rpc_use_i2a_cb
-         - \ref GRAS_tut_tour_rpc_use_a2i_cb
-         - \ref GRAS_tut_tour_rpc_use_rest
-      - \ref GRAS_tut_tour_rpc_recap
+ - \ref GRAS_tut_tour_rpc
+    - \ref GRAS_tut_tour_rpc_intro
+    - \ref GRAS_tut_tour_rpc_use
+      - \ref GRAS_tut_tour_rpc_use_declare
+      - \ref GRAS_tut_tour_rpc_use_i2a_cb
+      - \ref GRAS_tut_tour_rpc_use_a2i_cb
+      - \ref GRAS_tut_tour_rpc_use_rest
+    - \ref GRAS_tut_tour_rpc_recap
  
  
-   - \ref GRAS_tut_tour_explicitwait
-      - \ref GRAS_tut_tour_explicitwait_intro
-      - \ref GRAS_tut_tour_explicitwait_use
-        - \ref GRAS_tut_tour_explicitwait_algo
-        - \ref GRAS_tut_tour_explicitwait_code
-      - \ref GRAS_tut_tour_explicitwait_recap                           
+ - \ref GRAS_tut_tour_explicitwait
+    - \ref GRAS_tut_tour_explicitwait_intro
+    - \ref GRAS_tut_tour_explicitwait_use
+      - \ref GRAS_tut_tour_explicitwait_algo
+      - \ref GRAS_tut_tour_explicitwait_code
+        - \ref GRAS_tut_tour_explicitwait_code_msg
+        - \ref GRAS_tut_tour_explicitwait_code_cb
+        - \ref GRAS_tut_tour_explicitwait_code_api
+        - \ref GRAS_tut_tour_explicitwait_code_smain
+        - \ref GRAS_tut_tour_explicitwait_code_cmain
+    - \ref GRAS_tut_tour_explicitwait_recap
      
      
  - \ref GRAS_tut_tour_message_recaping
-      - \ref GRAS_tut_tour_message_recaping_intro
-      - \ref GRAS_tut_tour_message_recaping_rpc
-         - \ref GRAS_tut_tour_message_recaping_rpc1
-        - \ref GRAS_tut_tour_message_recaping_rpc2
-         - \ref GRAS_tut_tour_message_recaping_rpc3
-        - \ref GRAS_tut_tour_message_recaping_rpc4
-         - \ref GRAS_tut_tour_message_recaping_rpc5
-         - \ref GRAS_tut_tour_message_recaping_rpc_aside1
-        - \ref GRAS_tut_tour_message_recaping_rpc_aside2
-        - \ref GRAS_tut_tour_message_recaping_rpc_aside3
-      - \ref GRAS_tut_tour_message_recaping_sync
+ - \ref GRAS_tut_tour_message_recaping
+    - \ref GRAS_tut_tour_message_recaping_intro
+    - \ref GRAS_tut_tour_message_recaping_rpc
+      - \ref GRAS_tut_tour_message_recaping_rpc1
+      - \ref GRAS_tut_tour_message_recaping_rpc2
+      - \ref GRAS_tut_tour_message_recaping_rpc3
+      - \ref GRAS_tut_tour_message_recaping_rpc4
+      - \ref GRAS_tut_tour_message_recaping_rpc5
+      - \ref GRAS_tut_tour_message_recaping_rpc_aside1
+      - \ref GRAS_tut_tour_message_recaping_rpc_aside2
+      - \ref GRAS_tut_tour_message_recaping_rpc_aside3
+    - \ref GRAS_tut_tour_message_recaping_sync
                       
 <b>Part 3: Data description</b>
 
                       
 <b>Part 3: Data description</b>
 
-   - \ref GRAS_tut_tour_staticstruct Automatic parsing of static data types
-      - \ref GRAS_tut_tour_staticstruct_intro
-      - \ref GRAS_tut_tour_staticstruct_use
-      - \ref GRAS_tut_tour_staticstruct_recap
+ - \ref GRAS_tut_tour_staticstruct
+    - \ref GRAS_tut_tour_staticstruct_intro
+    - \ref GRAS_tut_tour_staticstruct_use
+    - \ref GRAS_tut_tour_staticstruct_recap
       
       
-   - \ref GRAS_tut_tour_pointers Automatic parsing of datatypes containing pointers
-      - \ref GRAS_tut_tour_pointers_intro
-      - \ref GRAS_tut_tour_pointers_use
-      - \ref GRAS_tut_tour_pointers_recap
+ - \ref GRAS_tut_tour_pointers
+    - \ref GRAS_tut_tour_pointers_intro
+    - \ref GRAS_tut_tour_pointers_use
+    - \ref GRAS_tut_tour_pointers_recap
+    - \ref GRAS_tut_tour_pointers_cste
       
       
-   - \ref GRAS_tut_tour_dynar Exchanging dynars (and matrices)
-      - \ref GRAS_tut_tour_dynar_intro
-      - \ref GRAS_tut_tour_dynar_use
-      - \ref GRAS_tut_tour_dynar_recap
+ - \ref GRAS_tut_tour_dynar
+    - \ref GRAS_tut_tour_dynar_intro
+    - \ref GRAS_tut_tour_dynar_use
+    - \ref GRAS_tut_tour_dynar_recap
       
       
-   - \ref GRAS_tut_tour_manualdatadef Manual data description: the full power
-      - \ref GRAS_tut_tour_manualdatadef_intro
-      - \ref GRAS_tut_tour_manualdatadef_use
-      - \ref GRAS_tut_tour_manualdatadef_recap
+ - \ref GRAS_tut_tour_manualdatadef
+    - \ref GRAS_tut_tour_manualdatadef_intro
+    - \ref GRAS_tut_tour_manualdatadef_use
+    - \ref GRAS_tut_tour_manualdatadef_recap
       
       
-   - \ref GRAS_tut_tour_exchangecb Exchange callbacks: yes you can
-      - \ref GRAS_tut_tour_exchangecb_intro
-      - \ref GRAS_tut_tour_exchangecb_use
-      - \ref GRAS_tut_tour_exchangecb_recap
+ - \ref GRAS_tut_tour_exchangecb
+    - \ref GRAS_tut_tour_exchangecb_intro
+    - \ref GRAS_tut_tour_exchangecb_use
+    - \ref GRAS_tut_tour_exchangecb_recap
 
 <b>Part 4: Advanced topics</b>
 
 
 <b>Part 4: Advanced topics</b>
 
@@ -158,20 +166,4 @@ of missi^W lessons I want to add:
 
 
 
 
 
 
-*/
-
-/** 
-@page GRAS_tut_tour_install Lesson 0: Installing GRAS
-
-Since GRAS is technically part of the SimGrid project, you have to install
-SimGrid to install GRAS. Doing so is explained in the relevant FAQ section
-(\ref faq_installation). 
-
-Newcommers should install the stable release from the tarball, since the cvs
-snapshots may suffer from (additionnal;) stability issues. Only go for the
-CVS if you really need features not present in the stable releases yet (or
-if you plan to help us improving the tool, what is always welcomed).
-
-Proceed to \ref GRAS_tut_tour_setup.
-
 */
 */