* - adding docs target in Makefile and some minor changes in Doxyfile, engine API
authorstranger <dariusz.wiechecki@gmail.com>
Thu, 3 Jan 2008 14:03:22 +0000 (14:03 +0000)
committerstranger <dariusz.wiechecki@gmail.com>
Thu, 3 Jan 2008 14:03:22 +0000 (14:03 +0000)
git-svn-id: file:///svnroot/mdictionary/trunk@221 5bde0345-f819-0410-ac75-e5045f9217cc

Doxyfile
Makefile
include/dictionary_engine.h

index 307cbb7..69f3694 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
 # by quotes) that should identify the project.
 
-PROJECT_NAME           = "WhiteStork Project"
+PROJECT_NAME           = "mDictionary Project"
 
 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
 # This could be handy for archiving the generated documentation or 
 # if some version control system is used.
 
-PROJECT_NUMBER         = "1.1.0"
+PROJECT_NUMBER         = "1.0.0"
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
@@ -612,13 +612,13 @@ VERBATIM_HEADERS       = YES
 # of all compounds will be generated. Enable this if the project 
 # contains a lot of classes, structs, unions or interfaces.
 
-ALPHABETICAL_INDEX     = NO
+ALPHABETICAL_INDEX     = YES
 
 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
 # in which this list will be split (can be a number in the range [1..20])
 
-COLS_IN_ALPHA_INDEX    = 5
+COLS_IN_ALPHA_INDEX    = 3
 
 # In case all classes in a project start with a common prefix, all 
 # classes will be put under the same header in the alphabetical index. 
index 5113ba0..9172285 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -339,3 +339,9 @@ repo:       release-package meta-package
        
 package: clean
        dpkg-buildpackage -rfakeroot
+
+.PHONY: docs
+docs:
+       doxygen Doxyfile
+       # doxygen always put wrong meta charset tag - we have repair it manualy
+       sed -i -e "s/charset=iso-8859-1/charset=utf-8/g" doc/html/*html
index e9544f8..5566d4d 100644 (file)
@@ -1,12 +1,12 @@
 /*******************************************************************************
 This file is part of mDictionary
 
-WhiteStork is free software; you can redistribute it and/or modify
+mDictionary is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 
-WhiteStork is distributed in the hope that it will be useful, 
+mDictionary is distributed in the hope that it will be useful, 
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.