Thread: [Cppunit-cvs] cppunit2/doc cpput.dox,1.1,1.2 doxyfile,1.1,1.2
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-11-12 20:55:57
|
Update of /cvsroot/cppunit/cppunit2/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10826/doc Modified Files: cpput.dox doxyfile Log Message: - added some documentation - fixed tabs display in html output. Index: doxyfile =================================================================== RCS file: /cvsroot/cppunit/cppunit2/doc/doxyfile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** doxyfile 11 Nov 2005 23:23:48 -0000 1.1 --- doxyfile 12 Nov 2005 20:55:46 -0000 1.2 *************** *** 7,13 **** PROJECT_NUMBER = 0.0 OUTPUT_DIRECTORY = docbuild - CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English - USE_WINDOWS_ENCODING = NO BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES --- 7,11 ---- *************** *** 23,38 **** an \ the - ALWAYS_DETAILED_SEC = NO - INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = YES STRIP_FROM_PATH = E:\prg\vc\Lib\cppunit2 ! STRIP_FROM_INC_PATH = ! SHORT_NAMES = NO ! JAVADOC_AUTOBRIEF = NO ! MULTILINE_CPP_IS_BRIEF = NO ! DETAILS_AT_TOP = NO INHERIT_DOCS = YES - DISTRIBUTE_GROUP_DOC = NO - SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 8 ALIASES = --- 21,29 ---- an \ the FULL_PATH_NAMES = YES STRIP_FROM_PATH = E:\prg\vc\Lib\cppunit2 ! STRIP_FROM_INC_PATH = E:\prg\vc\Lib\cppunit2\include ! JAVADOC_AUTOBRIEF = YES INHERIT_DOCS = YES TAB_SIZE = 8 ALIASES = *************** *** 40,43 **** --- 31,35 ---- OPTIMIZE_OUTPUT_JAVA = NO SUBGROUPING = YES + #--------------------------------------------------------------------------- # Build related configuration options *************** *** 83,92 **** #--------------------------------------------------------------------------- INPUT = ../include/cpptl ../include/cpput ../include/json ../src/cpptl ../src/cpput . ! # ../include/opentest ../src/opentest FILE_PATTERNS = *.h *.cpp *.inl *.dox RECURSIVE = NO EXCLUDE = EXCLUDE_SYMLINKS = NO ! EXCLUDE_PATTERNS = yaml.h format.h bimap.h enumstringizer.h inputtest.h parametrizedsource.h resource.h tablefixture.h parametrizedsource.cpp tablefixture.cpp testrunner.cpp connection.h EXAMPLE_PATH = EXAMPLE_PATTERNS = * --- 75,84 ---- #--------------------------------------------------------------------------- INPUT = ../include/cpptl ../include/cpput ../include/json ../src/cpptl ../src/cpput . ! # ../src/opentest ../include/opentest FILE_PATTERNS = *.h *.cpp *.inl *.dox RECURSIVE = NO EXCLUDE = EXCLUDE_SYMLINKS = NO ! EXCLUDE_PATTERNS = yaml.h format.h bimap.h enumstringizer.h inputtest.h parametrizedsource.h resource.h tablefixture.h parametrizedsource.cpp tablefixture.cpp testrunner.cpp connection.h testrunner.h EXAMPLE_PATH = EXAMPLE_PATTERNS = * *************** *** 96,103 **** FILTER_PATTERNS = FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- ! SOURCE_BROWSER = YES INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES --- 88,96 ---- FILTER_PATTERNS = FILTER_SOURCE_FILES = NO + #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- ! SOURCE_BROWSER = NO INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES *************** *** 107,116 **** VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- - # configuration options related to the alphabetical class index - #--------------------------------------------------------------------------- - ALPHABETICAL_INDEX = NO - COLS_IN_ALPHA_INDEX = 5 - IGNORE_PREFIX = - #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- --- 100,103 ---- *************** *** 120,125 **** HTML_HEADER = header.html HTML_FOOTER = footer.html ! HTML_STYLESHEET = ! HTML_ALIGN_MEMBERS = YES GENERATE_HTMLHELP = NO CHM_FILE = cppunit2.chm --- 107,112 ---- HTML_HEADER = header.html HTML_FOOTER = footer.html ! #HTML_STYLESHEET = ! #HTML_ALIGN_MEMBERS = YES GENERATE_HTMLHELP = NO CHM_FILE = cppunit2.chm *************** *** 132,135 **** --- 119,123 ---- GENERATE_TREEVIEW = NO TREEVIEW_WIDTH = 250 + #--------------------------------------------------------------------------- # configuration options related to the LaTeX output *************** *** 186,195 **** #--------------------------------------------------------------------------- ENABLE_PREPROCESSING = YES ! MACRO_EXPANSION = NO EXPAND_ONLY_PREDEF = NO SEARCH_INCLUDES = YES INCLUDE_PATH = ../include INCLUDE_FILE_PATTERNS = *.h ! PREDEFINED = EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES --- 174,184 ---- #--------------------------------------------------------------------------- ENABLE_PREPROCESSING = YES ! MACRO_EXPANSION = YES EXPAND_ONLY_PREDEF = NO SEARCH_INCLUDES = YES INCLUDE_PATH = ../include INCLUDE_FILE_PATTERNS = *.h ! PREDEFINED = "_MSC_VER=1400" \ ! _CPPRTTI _WIN32 EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES Index: cpput.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit2/doc/cpput.dox,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cpput.dox 11 Nov 2005 23:23:48 -0000 1.1 --- cpput.dox 12 Nov 2005 20:55:46 -0000 1.2 *************** *** 1,4 **** --- 1,9 ---- /** \mainpage + + \section _warning WARNING + + This is a *very early* documenation release and is very incomplete (including this page). + \section _intro Introduction *************** *** 13,16 **** --- 18,22 ---- - customizable convertion to std::string for string assertion - support to ignore a specific assertion failures + - ... *************** *** 38,41 **** --- 44,50 ---- */ + /*! \defgroup group_custom_assertions Creating new assertions + */ + /*! \defgroup group_assertions_support Assertion support */ |