[Lemon-commits] [lemon_svn] alpar: r799 - hugo/trunk/doc
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:41:33 CET 2006
Author: alpar
Date: Tue May 11 21:38:00 2004
New Revision: 799
Modified:
hugo/trunk/doc/Makefile.am
hugo/trunk/doc/coding_style.dox
Log:
Minor changes: Section labels fixed.
Modified: hugo/trunk/doc/Makefile.am
==============================================================================
--- hugo/trunk/doc/Makefile.am (original)
+++ hugo/trunk/doc/Makefile.am Tue May 11 21:38:00 2004
@@ -5,7 +5,7 @@
htmldir = $(datadir)/doc/@PACKAGE at -@VERSION@/html
## htmldir = $(pkgdatadir)/doc
-EXTRA_DIST = Doxyfile html
+EXTRA_DIST = Doxyfile html coding_style.dox groups.dox mainpage.dox maps.dox
## all-local: html/index.html
Modified: hugo/trunk/doc/coding_style.dox
==============================================================================
--- hugo/trunk/doc/coding_style.dox (original)
+++ hugo/trunk/doc/coding_style.dox Tue May 11 21:38:00 2004
@@ -6,7 +6,7 @@
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.
-\subsection Classes and other types
+\subsection cs-class Classes and other types
The name of a class or any type should look like the following:
@@ -14,7 +14,7 @@
AllWordsCapitalizedWithoutUnderscores
\endcode
-\subsection Methods and other functions
+\subsection cs-func Methods and other functions
The name of a function should look like the following:
@@ -22,7 +22,7 @@
firstWordLowerCaseRestCapitalizedWithoutUnderscores
\endcode
-\subsection Constants, Macros
+\subsection cs-funcs Constants, Macros
The names of constants and macros should look like the following:
@@ -30,7 +30,7 @@
ALL_UPPER_CASE_WITH_UNDERSCORES
\endcode
-\subsection Class and instance member variables, auto variables
+\subsection cs-loc-var Class and instance member variables, auto variables
The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following:
@@ -38,7 +38,7 @@
all_lower_case_with_underscores
\endcode
-\subsection Exceptions
+\subsection cs-excep Exceptions
When writing exceptions please comply the following naming conventions:
More information about the Lemon-commits
mailing list