- updated to 1.8.0:

* Auto list items can now consist of multiple paragraphs.
  * When UML_LOOK is enabled, relations shown on the edge of a 
    graph are not shown as attributes.
  * Updated the manual and improved the look.
  * Latex: made the margins of latex page layout smaller using the 
    geometry package.
  * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html

- updated to 1.8.0:
  * Auto list items can now consist of multiple paragraphs.
  * When UML_LOOK is enabled, relations shown on the edge of a 
    graph are not shown as attributes.
  * Updated the manual and improved the look.
  * Latex: made the margins of latex page layout smaller using the 
    geometry package.
  * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html

OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=45
This commit is contained in:
Petr Gajdos 2012-02-27 09:54:11 +00:00 committed by Git OBS Bridge
parent 2f9f0a17f8
commit 1a8df8c24a
11 changed files with 41 additions and 35 deletions

View File

@ -2,29 +2,12 @@ Index: src/util.cpp
===================================================================
--- src/util.cpp.orig
+++ src/util.cpp
@@ -4807,9 +4807,9 @@ QCString escapeCharsInString(const char
static bool caseSenseNames = Config_getBool("CASE_SENSE_NAMES");
static StrBuf strBuf;
strBuf.clear();
- char c;
+ unsigned char c;
const char *p=name;
- while ((c=*p++)!=0)
+ while ((c=(unsigned char)*p++)!=0)
{
switch(c)
{
@@ -4837,11 +4837,11 @@ QCString escapeCharsInString(const char
case '=': strBuf.addStr("_0A"); break;
case '$': strBuf.addStr("_0B"); break;
@@ -4834,7 +4834,7 @@ QCString escapeCharsInString(const char
case '=': growBuf.addStr("_0A"); break;
case '$': growBuf.addStr("_0B"); break;
default:
- if (c<0)
+ if (c>0x7f)
+ if ((unsigned char)c>0x7f)
{
static char map[] = "0123456789ABCDEF";
char ids[5];
- unsigned char id = (unsigned char)c;
+ unsigned char id = c;
ids[0]='_';
ids[1]='x';
ids[2]=map[id>>4];

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c74c9aaadaeba40b3a9e654ffa35d8cdb96d5cba724d5baf91b294d516f94142
size 516059

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6d2e3ad53b686212246b404c8f3340edf6803ffcf370ba66f5f1c453d69fab3
size 4011253

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17f4275fc9469d832e402d8841c13bc40ea9fa455e85117a5c92ad8dddc02ea5
size 622335

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:897836ac503b2e34d389121b4c3ed25e734dc93f5d4b8b39c92edf6b9ed3cfca
size 4880039

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Feb 27 09:47:59 UTC 2012 - pgajdos@suse.com
- updated to 1.8.0:
* Auto list items can now consist of multiple paragraphs.
* When UML_LOOK is enabled, relations shown on the edge of a
graph are not shown as attributes.
* Updated the manual and improved the look.
* Latex: made the margins of latex page layout smaller using the
geometry package.
* etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html
-------------------------------------------------------------------
Mon Dec 12 08:59:26 UTC 2011 - pgajdos@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package doxygen
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -19,7 +19,7 @@
Name: doxygen
BuildRequires: bison flex gcc-c++ libpng-devel
Version: 1.7.6.1
Version: 1.8.0
Release: 1
License: GPL-2.0+
Group: Development/Tools/Doc Generators
@ -92,7 +92,6 @@ cp doxygen_manual-%{version}.pdf $RPM_BUILD_ROOT%{_docdir}/doxygen
%defattr(-,root,root)
%doc %{_docdir}/doxygen
%attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.%{man_ext}
%attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.%{man_ext}
%attr(755,root,root) /usr/bin/*
%changelog

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:19059d27a00da7ccb8178924c18c25cae73996da2d5989e840a92caaf2acb663
size 757324

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:205ddef9e041e86f698236bfbff2f7b26720c500db11bda69755b966c81e780a
size 689577

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Feb 27 09:51:17 UTC 2012 - pgajdos@suse.com
- updated to 1.8.0:
* Auto list items can now consist of multiple paragraphs.
* When UML_LOOK is enabled, relations shown on the edge of a
graph are not shown as attributes.
* Updated the manual and improved the look.
* Latex: made the margins of latex page layout smaller using the
geometry package.
* etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html
-------------------------------------------------------------------
Mon Dec 5 09:44:06 UTC 2011 - pgajdos@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package doxywizard
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -19,7 +19,7 @@
Name: doxywizard
BuildRequires: bison flex gcc-c++ libjpeg-devel
Version: 1.7.6.1
Version: 1.8.0
Release: 1
Requires: doxygen = %{version}
License: GPL-2.0+