Commit 089a5c16 authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.3.4-20031005

parent f62ec116
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1737,7 +1737,7 @@ class C {};
\endverbatim

  \warning The image format for HTML is limited to what your
           browser supports. For \f$\mbox{\LaTeX}\f$ the image format
           browser supports. For \f$\mbox{\LaTeX}\f$, the image format
           must be Encapsulated PostScript (eps).
           <br><br>
           Doxygen does not check if the image is in the correct format. 
+9 −0
Original line number Diff line number Diff line
@@ -200,6 +200,7 @@ followed by the descriptions of the tags grouped by category.
\refitem cfg_warnings WARNINGS
\refitem cfg_xml_dtd XML_DTD
\refitem cfg_xml_output XML_OUTPUT
\refitem cfg_xml_programlising XML_PROGRAMLISTING
\refitem cfg_xml_schema XML_SCHEMA
\endsecreflist

@@ -1232,6 +1233,14 @@ EXTRA_PACKAGES = times
 which can be used by a validating XML parser to check the
 syntax of the XML files.

\anchor cfg_xml_programlisting
<dt>\c XML_PROGRAMLISTING <dd>
 \addindex XML_PROGRAMLISTING
 If the \c XML_PROGRAMLISTING tag is set to \c YES Doxygen will
 dump the program listings (including syntax highlighting
 and cross-referencing information) to the XML output. Note that
 enabling this will significantly increase the size of the XML output.

</dl>

\section autogen_output AUTOGEN_DEF related options
+10 −0
Original line number Diff line number Diff line
@@ -2276,6 +2276,16 @@ void Config::create()
		    "syntax of the XML files. \n"
                 );
  cs->addDependency("GENERATE_XML");
  cb = addBool(
                    "XML_PROGRAMLISTING",
                    "If the XML_PROGRAMLISTING tag is set to YES Doxygen will \n"
                    "dump the program listings (including syntax highlighting \n"
		    "and cross-referencing information) to the XML output. Note that \n"
		    "enabling this will significantly increase the size of the XML output. \n",
                    TRUE
                 );
  cb->addDependency("GENERATE_XML");

  //--------------------------------------------------------------------------
  addInfo(  "DEF","configuration options for the AutoGen Definitions output");
  //--------------------------------------------------------------------------
+10 −2
Original line number Diff line number Diff line
@@ -198,6 +198,7 @@ bool GroupDef::insertMember(MemberDef *md,bool docOnly)
    for ( ; (srcMi=srcMnii.current()) ; ++srcMnii )
    {
      MemberDef *srcMd = srcMi->memberDef;
      if (srcMd==md) return FALSE; // already added before!

      bool sameScope = srcMd->getOuterScope()==md->getOuterScope() || // same class or namespace
          // both inside a file => definition and declaration do not have to be in the same file
@@ -207,9 +208,16 @@ bool GroupDef::insertMember(MemberDef *md,bool docOnly)
      if (matchArguments(srcMd->argumentList(),md->argumentList()) &&
          sameScope
         )
      {
        if (srcMd->getGroupAlias()==0) 
        {
          md->setGroupAlias(srcMd); 
        return FALSE; // member already added
        }
        else
        {
          md->setGroupAlias(srcMd->getGroupAlias()); 
        }
        return FALSE; // member is the same as one that is already added
      }
    }
    mni->append(new MemberInfo(md,md->protection(),md->virtualness(),FALSE));
+2 −2
Original line number Diff line number Diff line
@@ -293,9 +293,9 @@ void HtmlGenerator::writeFooterFile(QFile &file)
  QTextStream t(&file);
  t << "<hr size=\"1\"><address style=\"align: right;\"><small>\n";
  t << theTranslator->trGeneratedAt( "$datetime", "$projectname" );
  t << " <a href=\"http://www.doxygen.org/index.html\">\n"
  t << " <a href=\"http://www.doxygen.org/index.html\">"
    << "<img src=\"doxygen.png\" alt=\"doxygen\" " 
    << "align=\"middle\" border=0>\n"
    << "align=\"middle\" border=0>"
    << "</a> $doxygenversion";
  t << "</small></address>\n"
    << "</body>\n"
Loading