SHA256
1
0
forked from pool/doxygen
OBS User unknown 2009-07-03 14:58:05 +00:00 committed by Git OBS Bridge
parent b85473dd24
commit 1c4a87bc33
4 changed files with 75 additions and 530 deletions

View File

@ -0,0 +1,58 @@
--- src/config.xml 2008-11-29 14:18:20.000000000 +0100
+++ src/config.xml 2009-04-09 14:04:34.000000000 +0200
@@ -743,6 +743,10 @@
each generated HTML page. If it is left blank doxygen will generate a
standard footer.
' defval='' depends='GENERATE_HTML'/>
+ <option type='bool' id='HTML_FOOTER_DESCRIPTION' docs='
+The HTML_FOOTER_DATE_AND_PROJECT_NAME tag can be used to add build date,
+project name and Doxygen version to HTML footer.
+' defval='0' depends='GENERATE_HTML'/>
<option type='string' id='HTML_STYLESHEET' format='file' docs='
The HTML_STYLESHEET tag can be used to specify a user-defined cascading
style sheet that is used by each HTML page. It can be used to
--- src/configoptions.cpp 2008-11-29 14:14:50.000000000 +0100
+++ src/configoptions.cpp 2009-04-09 14:07:41.000000000 +0200
@@ -1061,6 +1061,15 @@
cs->setWidgetType(ConfigString::File);
cs->addDependency("GENERATE_HTML");
//----
+ cb = cfg->addBool(
+ "HTML_FOOTER_DESCRIPTION",
+ "If the HTML_FOOTER_DESCRIPTION tag is set to YES, Doxygen will \n"
+ "add generated date, project name and doxygen version to HTML footer.",
+ FALSE
+ );
+ //cs->setDefaultValue("FALSE");
+ cs->addDependency("GENERATE_HTML");
+ //----
cs = cfg->addString(
"HTML_FOOTER",
"The HTML_FOOTER tag can be used to specify a personal HTML footer for \n"
--- src/htmlgen.cpp 2008-12-20 23:13:24.000000000 +0100
+++ src/htmlgen.cpp 2009-04-14 17:11:59.000000000 +0200
@@ -716,13 +716,21 @@
if (g_footer.isEmpty())
{
t << "<hr size=\"1\"><address style=\"text-align: right;\"><small>";
- t << theTranslator->trGeneratedAt(
+ if (Config_getBool("HTML_FOOTER_DESCRIPTION"))
+ {
+ t << theTranslator->trGeneratedAt(
dateToString(TRUE),
Config_getString("PROJECT_NAME")
);
- t << "&nbsp;" << endl << "<a href=\"http://www.doxygen.org/index.html\">";
+ t << "&nbsp;" << endl;
+ }
+ t << "<a href=\"http://www.doxygen.org/index.html\">";
t << endl << "<img src=\"" << relPath << "doxygen.png\" alt=\"doxygen\" "
- << "align=\"middle\" border=\"0\">" << "</a> " << versionString << " ";
+ << "align=\"middle\" border=\"0\">" << "</a> ";
+ if (Config_getBool("HTML_FOOTER_DESCRIPTION"))
+ {
+ t << versionString << " ";
+ }
t << "</small></address>";
if (Debug::isFlagSet(Debug::Validate))
{

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Jun 22 11:36:08 CEST 2009 - mseben@suse.cz
- Changed default behavior ! :
added modify_footer.patch (bnc#489947), which disable text
in footer by default, you could enable this text with option
HTML_FOOTER_DESCRIPTION = YES, this feature was added due to
increasing efficiency of build buildservice
-------------------------------------------------------------------
Mon May 4 13:17:40 CEST 2009 - mseben@suse.cz

View File

@ -21,7 +21,7 @@
Name: doxygen
BuildRequires: bison flex gcc-c++ libpng-devel
Version: 1.5.9
Release: 1
Release: 2
AutoReqProv: on
License: GPL v2 or later
Group: Development/Tools/Doc Generators
@ -36,6 +36,11 @@ Patch: %{name}-%{version}-64archs.patch
Patch1: %{name}-%{version}-libpng.patch
Patch2: %{name}-%{version}-arm.patch
Patch3: %{name}-%{version}-man.patch
# This patch change default behavior of doxygen ! :
# PATCH-FIX-OPENSUSE disable text in footer by default, you could enable
# footer text with option.HTML_FOOTER_DESCRIPTION = YES, this feature was
# added due to increasing efficiency of build service see bnc#489947
Patch4: %{name}-%{version}-modify_footer.patch
Patch100: doxygen.warnings.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -59,6 +64,7 @@ Authors:
%patch1
%patch2
%patch3
%patch4
%patch100
cp -v %{S:3} .
bzip2 -d %{name}_manual-%{version}.pdf.bz2
@ -90,409 +96,3 @@ rm -rf %{buildroot}
%attr(755,root,root) /usr/bin/*
%changelog
* Mon May 04 2009 mseben@suse.cz
- updated to version 1.5.9
- New features
* Added new option LATEX_SOURCE_CODE, which when enabled adds
source code also to the latex output
* Included updates for the Finnish, Romanian, Korean, German,
Japanese, and Hongarian translation.
* Added translation support for Esperanto.
* Added class attribute to the \todo and \bug HTML
code so they can be customized via CSS.
* Added support for Æ and æ characters.
- Bug fixes (ids refer to the gnome bugzilla database)
* id 395169: Some links via tagfiles were not correct in
combination with CREATE_SUBDIRS=YES
* id 539080: Having the same comment for the declaration and
definition of a function could result in duplicate documentation
in case the indentation level was different.
* id 566713: Dot font was not removed even though DOT_CLEANUP was YES.
* id 566925: Fixed problem resolving symbolic links.
* id 567044: Fully qualified name was not shown correctly for
nested classes.
* id 567375: Fixed parse problem for typedefs with redundant braces.
* id 567535: Fixed problem when parsing operator%%= for CLI/C++ code.
* id 567777: Fixed problem with latex output when using enums.
* id 567990: Doxygen could crash when there was a symlink in project.
* id 568237: Non-ascii values entered where not saved according
to the INPUT_ENCODING.
* id 568505: Fixed build problem for old Linux distributions.
* id 569478: Fixed line continuation issue with the Fortran parser.
* id 570960: C++ class defined in a .mm file was sometimes parsed
as Objective-C code.
* id 571013: In the wizard, editing a text field in the middle of
the text in the expert tab caused the cursor to jump to the end
of the line.
* id 571096: Fixed Objective-C parsing problem when multiple
protocol forward declarations are put on one line.
* id 571990: Fixed compiler issue with portable_iconv by moving
the function to a C file.
* id 572560: Fixed parse issue when a #define is inside an enum.
* id 572740: Fixed problem parsing C++ comments using line continuation.
* id 573057: Included update for Swedish translator and changed
the language code from SE to SV to comply with ISO 639.
* id 578382: When referring to a static variable or function
doxygen will now look at the file context in case of ambiguity.
* Mon Feb 09 2009 olh@suse.de
- compile with RPM_OPT_FLAGS again
- apply 64bit patch unconditionally
- fix compile warnings for string and signed char handling
- disable language support on ppc64
code size too large, -mminimal-toc does not help
* Tue Jan 06 2009 mseben@suse.cz
- updated to version 1.5.8
Changes:
* Included Qt help update by Sebastian Pipping introducing three
new options to define custom filter sections and attributes:
QHP_CUST_FILTER_NAME, QHP_CUST_FILTER_ATTRS, QHP_SECT_FILTER_ATTRS.
New features:
* Add new option EXTENSION_MAPPING, which can be used to change
the mapping of file extension to language parser
* Added support for Vietnamese (thanks to Dang Minh Tuan)
* Thanks to Emin Ilker Cetinbas doxygen can now also produce
Turkish documentation.
* It is now possible to add the direction attributes normally used
with the @param command to document parameters inline
- rewritten doxygen-*-man.patch
- spec file clean-up
* Tue Jul 15 2008 anosek@suse.cz
- updated to version 1.5.6
Changes
* The GENERATE_TREEVIEW option is not longer a boolean, but can
now have 4 values, NONE (was NO), FRAME (was YES), HIERARCHIES,
and ALL.
* a page marked as a sub page (\subpage) is now shown in the LaTeX
and RTF output as a section of its parent page. So the top level
pages are shown a chapters, subpages as sections, subpages
of a subpage as subsections, etc.
New features
* Added DOT_FONTNAME and DOT_FONTPATH options
* Added option CHM_INDEX_ENCODING to specify the encoding to be
used for the CHM index files.
* Included patch to make the font-size button visible in the CHM output.
* Added new options SHOW_NAMESPACES and SHOW_FILES to Suppress
Namepace and Files Pages.
* Included a patch that makes it easy to modify the root
of the html treeview with an image using style sheets.
* Added option IDL_PROPERTY_SUPPORT to enable/disable special
propget/propput handling in IDL files.
* Added option FORMULA_FONTSIZE which can be used to change
the font size of the formulas included in the HTML documentation.
And lots of bugfixes
* Wed Feb 27 2008 anosek@suse.cz
- updated to version 1.5.5
Changes:
* Pages created with @page are now chapters in the LaTeX and RTF
output and treeviews, and directly follow the mainpage.
Also the project name is not longer repeated for each chapter.
* For dot graphs with an edge with more than ten labels, only
the first ten are shown followed by an ellipsis; done
to prevent very long dot runs resulting in unreadable graphs.
* Use of pdflatex with hyperlinks is now the default.
* C++ preprocessor macro names are now replaced in the comments
* The options SOURCE_BROWSER, CALL_GRAPH, CALLER_GRAPH,
REFERENCES_RELATION, and REFERENCED_BY_RELATION can now be
indepently enabled and disabled. By default the relations are
now disabled.
New features:
* Added support for VHDL (.vhd or .vhdl extension).
Use OPTIMIZE_OUTPUT_VHDL when parsing VHDL code.
* Added support for Objective-C 2.0 properties.
* Added support for docsets, which allow integration of doxygen
generated API documentation in Xcode 3. new options:
o GENERATE_DOCSET: enables/disables the feature
o DOCSET_FEEDNAME: sets the provider/suite name
under which the set is listed.
o DOCSET_BUNDLE_ID: A unique name for the docset.
* Added support for the \tparam command, which works similar to
\param but is meant for documenting template parameters.
* Added \headerfile command which can be used to specify
the second and third argument of a \class command, when
the documentation is already in front of a class definition.
* Tue Oct 30 2007 anosek@suse.cz
- updated to version 1.5.4
Changes:
* When setting SOURCE_BROWSER to YES, all undocumented classes
also ended up in the documentation. Now this will only happen
if EXTRACT_ALL is also enabled.
* Upgraded included third party libs libpng and zlib to version
1.2.21 and 1.2.3 respectively.
New features:
* Included support for parsing Fortran 90
* Added config option SIP_SUPPORT to support handling SIP sources
(used for Python to C++ bindings).
* Added support for CLI/C++ style indexed properties.
* Added config option TYPEDEF_HIDES_STRUCT which when enabled
treats a typedef of a struct as a struct with the name of the
typedef. This behavious was coupled to OPTIMIZE_OUTPUT_FOR_C
in the previous version and is now an independent option.
* Fri Jul 27 2007 anosek@suse.cz
- updated to version 1.5.3
Changes:
* When OPTIMIZE_OUTPUT_FOR_C is enabled then a struct definition
of the form typedef struct _S { ... } S_t will be shown
in the output as a struct of type S_t and the typedef itself
is omitted (previousily _S was shown as well as a typedef
of the form typedef _S S_t).
* Improved the line-breaking rules for members whose return types
have many characters (for example a function returning a pointer
to a template class).
* Multiple brief and detailed descriptions are now possible.
It is still not recommended to make use of them, but at least
no documentation is silently hidden when there are two brief
or two detailed descriptions for the same entity.
* Improved dot layout control and page sizing to better fit
images on the screen and paper.
New features:
* Added support for aliases with arguments, see the manual
for more information.
* Added HTML_DYNAMIC_SECTIONS option which, when enabled, will
produce sections in the HTML output that can be expanded/collapsed.
Currently used for diagrams and graphs.
* Added support for type constraints as available in the C# language
("where" clause)
* id 332263: Added new option EXTRACT_ANON_NSPACES that when set to YES
will extract the contents of anonymous namespaces and show
then in the output.
* id 423765: Added support for <see cref="SomeSymbol"/> style XML comments.
* id 426971: Added QT_AUTOBRIEF config option, which has the same meaning
as JAVADOC_AUTOBRIEF only now for /*! .. */ style comment blocks.
* id 435108: Reintroduced the MAX_DOT_GRAPH_DEPTH option as a means
to further reduce the size of a graph.
* Tue Apr 10 2007 anosek@suse.cz
- fixed build of Doxywizard
* Thu Apr 05 2007 anosek@suse.cz
- updated to version 1.5.2:
* Doxygen now uses UTF-8 internally for all strings
A new config option INPUT_ENCODING has been added which can be
used to specify the encoding of the input
* Added support for message sequence charts (using mscgen)
* Added support for C++/CLI
* IGNORE_PREFIX now also works for function/members names when
shown in the various indices
* Doxygen will show a tooltip in the HTML output for links
to classes, namespaces, and members with the brief description
* Syntax highlight support for several (managed) C++ keywords
* Added two LaTeX layout enhancements
* Lots of bugfixes
- dropped obsolete disable-rtf-debug.patch
* Thu Mar 29 2007 mmarek@suse.de
- added flex and bison to buildrequires
* Mon Feb 05 2007 anosek@suse.cz
-updated to version 1.5.1, bugfixes:
* id 148567: @todo at the end of a comment block caused problem
when copied by @copydoc
* id 352420: Fixed bug in LaTeX output (missing space after \bf).
* id 363227: missing output for instance variables defined
in a Python function that has a doc string
* id 363397: Member groups did not appear in a class when
SUBGROUPING was set to YES.
* id 364341: Parsing could become really slow if often included
header files contained using statements.
* id 364673: The values of two enums with the same name
(both in difference scopes) where merged.
* Running 2 instances of doxygen on the same output directory
caused corruption of the temporary files generated by doxygen.
* Thu Nov 16 2006 mmarek@suse.cz
- don't abort just because of a warning (fixes yast2-core build)
(dont-exit-on-warning.patch)
* Wed Oct 18 2006 anosek@suse.cz
- updated to version 1.5.0
* Cleaned up the internal structures to make them smaller,
and made doxygen use a temporary file to store the parse
results (instead of keeping them in memory), which will
further reduce the memory usage, especially for large projects
* Sections produces by \note, \warning, \remarks etc, now have
a class label in the generated HTML (<dl> tag) so you can give
them a distinct style using a non-default stylesheet
(i.e. using HTML_STYLESHEET).
* Lots of bugfixes
* Mon Jun 26 2006 mmarek@suse.cz
- updated to 1.4.7
* changes in the CSS stylesheet and HTML class names => possible
incompatibility with custom stylesheets
* new CALLER_GRAPH option to add called-by graph to functions
* new REFERENCES_LINK_SOURCE option to set whether function names
in REFERENCES_RELATION and REFERENCED_BY_RELATION link to
source or documentation
* updated some translations
* added support for get/set properties in IDL
* lost of bugfixes
- dropped patches: qtools.patch, segfault.patch
- added script to update the html docu tarball to source rpm
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Thu Jan 05 2006 mmarek@suse.cz
- fix segfault in doxygen.cpp
[#141384] (segfault.patch)
- use make -j
- add -fno-strict-aliasing
* Mon Jan 02 2006 mmarek@suse.cz
- update to 1.4.6
* Mon Oct 10 2005 mmarek@suse.cz
- update to 1.4.5
* Tue Sep 20 2005 mmarek@suse.cz
- fix qtools to build with gcc-4.1.0
* Wed Aug 24 2005 mmarek@suse.cz
- disable RTF debug comments in src/rtfdocvisitor.cpp (those
comments are displayed by default in ooffice and abiword). See
gnome bugzilla #149797
* Thu Jul 28 2005 postadal@suse.cz
- updated to version 1.4.4
* added man pages
- removed obsoleted qt-mt patch
* Wed Apr 06 2005 uli@suse.de
- un-packing QChar seems to break doxygen; removed the
incriminated methods instead as they are unused anyway
* Thu Mar 31 2005 uli@suse.de
- GCC does not allow references to members of packed structs on
ARM
* Wed Jan 12 2005 postadal@suse.cz
- updated to version 1.4.1
* Wed Aug 11 2004 postadal@suse.cz
- linked dynamically against libpng
* Tue Aug 03 2004 postadal@suse.cz
- updated to version 1.3.8
* Tue Apr 27 2004 postadal@suse.cz
- doxywizard split off (removed qt3 dependency)
* Tue Mar 23 2004 postadal@suse.cz
- applied patches from cvs to fix bug #36397 (doxygen ate all memory building the libstdc++)
* Fri Feb 13 2004 postadal@suse.cz
- updated to version 1.3.6
* Sat Jan 10 2004 adrian@suse.de
- build as user
* Mon Oct 06 2003 kukuk@suse.de
- Use prebuild documentation from website
* Thu Oct 02 2003 adrian@suse.de
- update to version 1.3.4
* Sat Aug 16 2003 adrian@suse.de
- add desktop file for doxywizard
* Thu Jul 24 2003 postadal@suse.cz
- updated to version 1.3.2
* Sun Jun 15 2003 mmj@suse.de
- Update to 1.3.1
* Mon Feb 10 2003 ro@suse.de
- fix build with tetex-2.0
* Thu Feb 06 2003 ro@suse.de
- force install tool
* Wed Nov 20 2002 ro@suse.de
- use ghostscript-mini-packages in neededforbuild
* Tue Oct 08 2002 postadal@suse.cz
- updated to version 1.2.18
* @deprecated is now treated as @todo, @test, and @bug
* enum value documentation was added to the XML output.
* files ending with ".inc" are now recognised as PHP files
* included updated documentation for language translators
* included language updates
* added new configuration options XML_DTD and XML_SCHEMA to set the DTD or Schema used in the XML output.
- patch for 64bit archs
* Sun Aug 18 2002 ro@suse.de
- added ghostscript-x11-packages to neededforbuild (for gs)
* Sun Jul 28 2002 meissner@suse.de
- use RPM_OPT_FLAGS so it builds on ppc64.
* Thu Jul 18 2002 coolo@suse.de
- updating to 1.2.17 (needed for new kdelibs3)
* Sun Jun 09 2002 olh@suse.de
- build with -mminimal-toc on ppc64, workaround
* Fri May 03 2002 meissner@suse.de
- really write %%_lib instead of just lib64
* Thu May 02 2002 meissner@suse.de
- %%_lib fixes
* Sun Apr 07 2002 adrian@suse.de
- export compiler flags via RPM_OPTL_FLAGS to get an effect
(fix compile for mips)
* Thu Mar 14 2002 ro@suse.de
- patch tmake config file as well to use qt-mt
* Tue Mar 12 2002 ro@suse.de
- build against qt3
* Thu Jan 31 2002 ro@suse.de
- added libgimpprint to neededforbuild
* Tue Jan 29 2002 cihlar@suse.cz
- use %%{suse_update_libdir}
* Mon Jan 07 2002 cihlar@suse.cz
- updated to version 1.2.13.1
* Wed Jan 02 2002 cihlar@suse.cz
- updated to version 1.2.13
* Mon Nov 19 2001 cihlar@suse.cz
- updated to version 1.2.12
* Fri Nov 09 2001 ro@suse.de
- use qt-devel-packages
* Mon Oct 08 2001 cihlar@suse.cz
- updated to version 1.2.11.1
* Mon Oct 01 2001 tiwai@suse.de
- updated to version 1.2.11
* Thu Sep 27 2001 tiwai@suse.de
- updated to version 1.2.10
* Wed Aug 08 2001 cihlar@suse.cz
- update to version 1.2.9.1
* Fri Aug 03 2001 cihlar@suse.cz
- update to version 1.2.9
- gzipped doxygen_manual.ps
* Thu Jul 26 2001 cihlar@suse.cz
- update to version 1.2.8.1
* Mon Jul 23 2001 cihlar@suse.cz
- added glib to neededforbuild
* Fri Jul 20 2001 kukuk@suse.de
- changed neededforbuild <gs_fonts> to <ghostscript-fonts-std>
- changed neededforbuild <gs_lib> to <ghostscript-library>
- changed neededforbuild <gs_x11> to <ghostscript-x11>
* Wed May 16 2001 cihlar@suse.cz
- update to version 1.2.7
- fixed warnings on ia64
* Mon Mar 19 2001 ro@suse.de
- fixed neededforbuild
* Mon Mar 12 2001 cihlar@suse.cz
- update to version 1.2.6
* Tue Mar 06 2001 cihlar@suse.cz
- update to version 1.2.5
* Mon Jan 22 2001 cihlar@suse.cz
- update to version 1.2.4
* Thu Nov 30 2000 cihlar@suse.cz
- fixed neededforbuild: += liblcms
* Fri Nov 17 2000 ro@suse.de
- fixed neededforbuild: += libmng-devel
* Mon Nov 13 2000 cihlar@suse.cz
- fixed to compile
* Fri Nov 03 2000 cihlar@suse.cz
- fixed neededforbuild
* Tue Oct 31 2000 cihlar@suse.cz
- update to version 1.2.3
* Mon Oct 09 2000 cihlar@suse.cz
- update to version 1.2.2
- added libmng to neededforbuild
* Fri Aug 25 2000 cihlar@suse.cz
- added BuildRoot
- fixed neededforbuild
* Tue Aug 15 2000 garloff@suse.de
- Update to stable version 1.2.1.
- No need for using -g for release version any longer.
* Wed Jul 05 2000 garloff@suse.de
- Update to doxygen-1.1.5: Many bugfixes (last pre-1.2)
- Documentation (.ps,.pdf) is now being build from the sources
* Tue Jun 27 2000 garloff@suse.de
- Detect qtlib2 version and pass it to the dynamic linker with
LD_RUN_PATH (equivalent to -rpath).
* Wed Jun 21 2000 garloff@suse.de
- Change QTDIR to /usr/lib/qt2 (instead of qt-2.1.1) to avoid
breakage in case of qtlib2 upgrade.
* Tue Jun 06 2000 garloff@suse.de
- Upgrade to doxygen-1.1.4.
- Use qt2 to build.
- The Makefile for the doc subdir is now correctly created.
* Wed May 24 2000 garloff@suse.de
- Use %%{_docdir}
* Wed Jan 05 2000 garloff@suse.de
- Upgrade to doxygen-1.0.0
* Sun Oct 31 1999 ro@suse.de
- re-added -g to CFLAGS (workaround for a segfault without)
* Sat Oct 30 1999 garloff@suse.de
- Update to 0.49-991003.
- Added pdf docu.
* Wed Aug 04 1999 garloff@suse.de
- Update to 0.49-990728.
* Wed Jul 28 1999 garloff@suse.de
- Added missing neededforbuild packages.
- Add -g to compile flags: Workaround for egcs on AXP (!)
* Sat Jul 24 1999 garloff@suse.de
- Check in der 0.49-990522 Version. linux-egcs Target.

View File

@ -21,7 +21,7 @@
Name: doxywizard
BuildRequires: bison flex libdrm-devel libjpeg-devel libqt4-devel update-desktop-files
Version: 1.5.9
Release: 1
Release: 2
AutoReqProv: on
Requires: doxygen = %{version}
License: GPL v2 or later
@ -84,125 +84,3 @@ rm -rf %{buildroot}
%attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.gz
%changelog
* Mon May 04 2009 mseben@suse.cz
- updated to version 1.5.9
- New features
* Added new option LATEX_SOURCE_CODE, which when enabled adds
source code also to the latex output
* Included updates for the Finnish, Romanian, Korean, German,
Japanese, and Hongarian translation.
* Added translation support for Esperanto.
* Added class attribute to the \todo and \bug HTML
code so they can be customized via CSS.
* Added support for Æ and æ characters.
- Bug fixes (ids refer to the gnome bugzilla database)
* id 395169: Some links via tagfiles were not correct in
combination with CREATE_SUBDIRS=YES
* id 539080: Having the same comment for the declaration and
definition of a function could result in duplicate documentation
in case the indentation level was different.
* id 566713: Dot font was not removed even though DOT_CLEANUP was YES.
* id 566925: Fixed problem resolving symbolic links.
* id 567044: Fully qualified name was not shown correctly for
nested classes.
* id 567375: Fixed parse problem for typedefs with redundant braces.
* id 567535: Fixed problem when parsing operator%%= for CLI/C++ code.
* id 567777: Fixed problem with latex output when using enums.
* id 567990: Doxygen could crash when there was a symlink in project.
* id 568237: Non-ascii values entered where not saved according
to the INPUT_ENCODING.
* id 568505: Fixed build problem for old Linux distributions.
* id 569478: Fixed line continuation issue with the Fortran parser.
* id 570960: C++ class defined in a .mm file was sometimes parsed
as Objective-C code.
* id 571013: In the wizard, editing a text field in the middle of
the text in the expert tab caused the cursor to jump to the end
of the line.
* id 571096: Fixed Objective-C parsing problem when multiple
protocol forward declarations are put on one line.
* id 571990: Fixed compiler issue with portable_iconv by moving
the function to a C file.
* id 572560: Fixed parse issue when a #define is inside an enum.
* id 572740: Fixed problem parsing C++ comments using line continuation.
* id 573057: Included update for Swedish translator and changed
the language code from SE to SV to comply with ISO 639.
* id 578382: When referring to a static variable or function
doxygen will now look at the file context in case of ambiguity.
* Mon Feb 09 2009 olh@suse.de
- compile with RPM_OPT_FLAGS again
- apply 64bit patch unconditionally
- fix compile warnings for string and signed char handling
- disable language support on ppc64
code size too large, -mminimal-toc does not help
* Tue Jan 06 2009 mseben@suse.cz
- updated to version 1.5.8
Changes
* Completely rewrote the doxywizard. Main changes:
* It is now based on Qt version 4. (4.3 or higher is required)
* Different layout that allows easy switching between wizard and
expert mode, without losing settings.
* Running doxygen can be done without first having to save the
configuration file.
* For HTML output, there is a button to show the results in the
default browser.
* Option to change the default configuration that is used when
you first start the wizard.
* Non-default options are shown with red label, and there is
context menu to reset them back to the default.-
- rewritten (*-man.patch)
- spec file clean-up, added libqt4-devel to BuildRequires
- fixed qmake and moc path (*-qtdir.patch)
* Tue Jul 15 2008 anosek@suse.cz
- updated to version 1.5.6
* Tue Oct 30 2007 anosek@suse.cz
- updated to version 1.5.4
* Fri Jul 27 2007 anosek@suse.cz
- updated to version 1.5.3
* Tue Apr 10 2007 anosek@suse.cz
- fixed build of Doxywizard
* Thu Apr 05 2007 anosek@suse.cz
- updated to version 1.5.2
* Thu Mar 29 2007 mmarek@suse.de
- added flex and bison to buildrequires
* Mon Feb 05 2007 anosek@suse.cz
- updated to version 1.5.1
* fixed build (makefile.patch)
* Wed Oct 18 2006 anosek@suse.cz
- updated to version 1.5.0
* bugfixes
* Mon Jun 26 2006 mmarek@suse.cz
- updated to 1.4.7
* new CALLER_GRAPH option to add called-by graph to functions
* new REFERENCES_LINK_SOURCE option to set whether function names
in REFERENCES_RELATION and REFERENCED_BY_RELATION link to
source or documentation
* doxywizard asks for confirmation before overwriting files in
the save dialog
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Tue Jan 17 2006 mmarek@suse.cz
- remove %%_lib fix, which isn't needed anymore and actually breaks
build on 64bit
* Thu Jan 05 2006 mmarek@suse.cz
- use make -j
- add -fno-strict-aliasing
* Mon Jan 02 2006 mmarek@suse.cz
- update to 1.4.6
* Mon Oct 10 2005 mmarek@suse.cz
- update to 1.4.5
* Tue Sep 20 2005 mmarek@suse.cz
- fix qtools to build with gcc-4.1.0
* Thu Jul 28 2005 postadal@suse.cz
- updated to version 1.4.4
* added man pages
- removed obsoleted qt-mt patch
* Sat Jan 22 2005 ro@suse.de
- fix build (qt-mt instead of qt)
* Wed Jan 12 2005 postadal@suse.cz
- updated to version 1.4.1
* Tue Aug 31 2004 postadal@suse.cz
- fixed for new flex
* Tue Aug 03 2004 postadal@suse.cz
- updated to version 1.3.8
* Tue Apr 27 2004 postadal@suse.cz
- doxywizard split off (qt3 dependency)