From: Foster B. <fos...@us...> - 2006-02-23 23:29:33
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/documentation/sources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25760/adobe/documentation/sources Modified Files: documentation.doxygen Log Message: the state of things. We've been working to isolate static_text_t (now called label_t) but it has been slow going because we're trying to wrestle with perfecting the API and what effect that has on other components that were using label_t in a way that isn't in accordance with the new API we're trying to write. As it stands static_disabled_text_m is broken on both platforms, but everything else should be working better. Index: documentation.doxygen =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/documentation/sources/documentation.doxygen,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** documentation.doxygen 3 Feb 2006 18:33:35 -0000 1.21 --- documentation.doxygen 23 Feb 2006 23:28:54 -0000 1.22 *************** *** 1,3 **** ! # Doxyfile 1.4.3 # This file describes the settings to be used by the documentation system --- 1,3 ---- ! # Doxyfile 1.4.6 # This file describes the settings to be used by the documentation system *************** *** 162,172 **** INHERIT_DOCS = YES - # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC - # tag is set to YES, then doxygen will reuse the documentation of the first - # member in the group (if any) for the other members of the group. By default - # all members of a group must be documented explicitly. - - DISTRIBUTE_GROUP_DOC = NO - # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will --- 162,165 ---- *************** *** 224,229 **** OPTIMIZE_OUTPUT_FOR_C = NO ! # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources ! # only. Doxygen will then generate output that is more tailored for Java. # For instance, namespaces will be presented as packages, qualified scopes # will look different, etc. --- 217,222 ---- OPTIMIZE_OUTPUT_FOR_C = NO ! # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java ! # sources only. Doxygen will then generate output that is more tailored for Java. # For instance, namespaces will be presented as packages, qualified scopes # will look different, etc. *************** *** 231,234 **** --- 224,243 ---- OPTIMIZE_OUTPUT_JAVA = NO + # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to + # include (a tag file for) the STL sources as input, then you should + # set this tag to YES in order to let doxygen match functions declarations and + # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. + # func(std::string) {}). This also make the inheritance and collaboration + # diagrams that involve STL classes more complete and accurate. + + BUILTIN_STL_SUPPORT = NO + + # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC + # tag is set to YES, then doxygen will reuse the documentation of the first + # member in the group (if any) for the other members of the group. By default + # all members of a group must be documented explicitly. + + DISTRIBUTE_GROUP_DOC = NO + # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a *************** *** 405,409 **** # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy ! # in the documentation. SHOW_DIRECTORIES = NO --- 414,418 ---- # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy ! # in the documentation. The default is NO. SHOW_DIRECTORIES = NO *************** *** 414,418 **** # popen()) the command <command> <input-file>, where <command> is the value of # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file ! # provided by doxygen. Whatever the progam writes to standard output # is used as the file version. See the manual for examples. --- 423,427 ---- # popen()) the command <command> <input-file>, where <command> is the value of # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file ! # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. *************** *** 517,521 **** ./widget_lib/widget_reference.dox \ ../../algorithm.hpp \ ! ../../algorithm/reverse.hpp \ ../../array.hpp \ ../../array_fwd.hpp \ --- 526,530 ---- ./widget_lib/widget_reference.dox \ ../../algorithm.hpp \ ! ../../algorithm/reverse.hpp \ ../../array.hpp \ ../../array_fwd.hpp \ *************** *** 593,597 **** # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx ! # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm FILE_PATTERNS = *.c \ --- 602,606 ---- # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx ! # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py FILE_PATTERNS = *.c \ *************** *** 622,626 **** # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude ! # certain files from those directories. EXCLUDE_PATTERNS = --- 631,637 ---- # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude ! # certain files from those directories. Note that the wildcards are matched ! # against the file with absolute path, so to exclude all test directories ! # for example use the pattern */test/* EXCLUDE_PATTERNS = *************** *** 1120,1124 **** # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the ! # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO --- 1131,1135 ---- # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the ! # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO *************** *** 1191,1195 **** # a tag file that is based on the input files it reads. ! GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed --- 1202,1206 ---- # a tag file that is based on the input files it reads. ! GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed |