Minor changes: Section labels fixed.
authoralpar
Tue, 11 May 2004 19:38:00 +0000
changeset 61475cf1d52eee5
parent 613 b5b5c4ae5107
child 615 b6b31b75b522
Minor changes: Section labels fixed.
doc/Makefile.am
doc/coding_style.dox
     1.1 --- a/doc/Makefile.am	Tue May 11 17:37:34 2004 +0000
     1.2 +++ b/doc/Makefile.am	Tue May 11 19:38:00 2004 +0000
     1.3 @@ -5,7 +5,7 @@
     1.4  htmldir = $(datadir)/doc/@PACKAGE@-@VERSION@/html
     1.5  ## htmldir = $(pkgdatadir)/doc
     1.6  
     1.7 -EXTRA_DIST = Doxyfile html
     1.8 +EXTRA_DIST = Doxyfile html coding_style.dox groups.dox mainpage.dox maps.dox
     1.9  
    1.10  ## all-local: html/index.html
    1.11  
     2.1 --- a/doc/coding_style.dox	Tue May 11 17:37:34 2004 +0000
     2.2 +++ b/doc/coding_style.dox	Tue May 11 19:38:00 2004 +0000
     2.3 @@ -6,7 +6,7 @@
     2.4  
     2.5  In order to make development easier we have made some conventions according to coding style. These include names of types, classes, functions, variables, constants and exceptions. If these conventions are met in one's code then it is easier to read and maintain it. Please comply with these conventions if you want to contribute developing Hugo library. 
     2.6  
     2.7 -\subsection Classes and other types
     2.8 +\subsection cs-class Classes and other types
     2.9  
    2.10  The name of a class or any type should look like the following:
    2.11  
    2.12 @@ -14,7 +14,7 @@
    2.13  AllWordsCapitalizedWithoutUnderscores 
    2.14  \endcode
    2.15  
    2.16 -\subsection Methods and other functions
    2.17 +\subsection cs-func Methods and other functions
    2.18  
    2.19  The name of a function should look like the following:
    2.20  
    2.21 @@ -22,7 +22,7 @@
    2.22  firstWordLowerCaseRestCapitalizedWithoutUnderscores 
    2.23  \endcode
    2.24  
    2.25 -\subsection Constants, Macros
    2.26 +\subsection cs-funcs Constants, Macros
    2.27  
    2.28  The names of constants and macros should look like the following:
    2.29  
    2.30 @@ -30,7 +30,7 @@
    2.31  ALL_UPPER_CASE_WITH_UNDERSCORES 
    2.32  \endcode
    2.33  
    2.34 -\subsection Class and instance member variables, auto variables 
    2.35 +\subsection cs-loc-var Class and instance member variables, auto variables 
    2.36  
    2.37  The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following:
    2.38  
    2.39 @@ -38,7 +38,7 @@
    2.40  all_lower_case_with_underscores 
    2.41  \endcode
    2.42  
    2.43 -\subsection Exceptions
    2.44 +\subsection cs-excep Exceptions
    2.45  
    2.46  When writing exceptions please comply the following naming conventions:
    2.47