Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
6dd67240
Commit
6dd67240
authored
Apr 09, 2001
by
dimitri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release-1.2.6-20010409
parent
c0848481
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
25 deletions
+25
-25
INSTALL
INSTALL
+2
-2
README
README
+2
-2
VERSION
VERSION
+1
-1
xml.cpp
addon/xmlgen/xml.cpp
+17
-17
commands.doc
doc/commands.doc
+1
-1
doxygen.spec
packages/rpm/doxygen.spec
+2
-2
No files found.
INSTALL
View file @
6dd67240
DOXYGEN Version 1.2.6-2001040
8
DOXYGEN Version 1.2.6-2001040
9
Please read the installation section of the manual for instructions.
--------
Dimitri van Heesch (0
8
April 2001)
Dimitri van Heesch (0
9
April 2001)
README
View file @
6dd67240
DOXYGEN Version 1.2.6
-20010408
DOXYGEN Version 1.2.6
_20010409
Please read INSTALL for compilation instructions.
...
...
@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at
Enjoy,
Dimitri van Heesch (0
8
April 2001)
Dimitri van Heesch (0
9
April 2001)
VERSION
View file @
6dd67240
1.2.6-2001040
8
1.2.6-2001040
9
addon/xmlgen/xml.cpp
View file @
6dd67240
...
...
@@ -60,7 +60,7 @@ class TextGeneratorXMLImpl : public TextGeneratorIntf
void
generateDTD
()
{
QCString
fileName
=
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml/doxygen.dtd"
;
QCString
fileName
=
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml/doxygen.dtd"
;
QFile
f
(
fileName
);
if
(
!
f
.
open
(
IO_WriteOnly
))
{
...
...
@@ -440,49 +440,49 @@ void generateXMLForFile(FileDef *fd,QTextStream &t)
void
generateXML
()
{
if
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
).
isEmpty
())
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
=
QDir
::
currentDirPath
();
if
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
).
isEmpty
())
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
=
QDir
::
currentDirPath
();
else
{
QDir
dir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
));
QDir
dir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
));
if
(
!
dir
.
exists
())
{
dir
.
setPath
(
QDir
::
currentDirPath
());
if
(
!
dir
.
mkdir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)))
if
(
!
dir
.
mkdir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
)))
{
err
(
"Error: tag OUTPUT_DIRECTORY: Output directory `%s' does not "
"exist and cannot be created
\n
"
,
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
).
data
());
"exist and cannot be created
\n
"
,
Config
_
getString
(
"OUTPUT_DIRECTORY"
).
data
());
exit
(
1
);
}
else
if
(
!
Config
::
instance
()
->
getBool
(
"QUIET"
))
else
if
(
!
Config
_
getBool
(
"QUIET"
))
{
err
(
"Notice: Output directory `%s' does not exist. "
"I have created it for you.
\n
"
,
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
).
data
());
"I have created it for you.
\n
"
,
Config
_
getString
(
"OUTPUT_DIRECTORY"
).
data
());
}
dir
.
cd
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
));
dir
.
cd
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
));
}
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
=
dir
.
absPath
();
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
=
dir
.
absPath
();
}
QDir
dir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
));
QDir
dir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
));
if
(
!
dir
.
exists
())
{
dir
.
setPath
(
QDir
::
currentDirPath
());
if
(
!
dir
.
mkdir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)))
if
(
!
dir
.
mkdir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
)))
{
err
(
"Cannot create directory %s
\n
"
,
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
).
data
());
err
(
"Cannot create directory %s
\n
"
,
Config
_
getString
(
"OUTPUT_DIRECTORY"
).
data
());
return
;
}
}
QDir
xmlDir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml"
);
if
(
!
xmlDir
.
exists
()
&&
!
xmlDir
.
mkdir
(
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml"
))
QDir
xmlDir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml"
);
if
(
!
xmlDir
.
exists
()
&&
!
xmlDir
.
mkdir
(
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml"
))
{
err
(
"Could not create xml directory in %s
\n
"
,
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
).
data
());
err
(
"Could not create xml directory in %s
\n
"
,
Config
_
getString
(
"OUTPUT_DIRECTORY"
).
data
());
return
;
}
generateDTD
();
QCString
fileName
=
Config
::
instance
()
->
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml/doxygen.xml"
;
QCString
fileName
=
Config
_
getString
(
"OUTPUT_DIRECTORY"
)
+
"/xml/doxygen.xml"
;
QFile
f
(
fileName
);
if
(
!
f
.
open
(
IO_WriteOnly
))
{
...
...
doc/commands.doc
View file @
6dd67240
...
...
@@ -1241,7 +1241,7 @@ Public/Protected/Private/... section.
\subsection cmdem \em <word>
\addindex \e
Display
i
s the argument \<word\> in italics.
Displays the argument \<word\> in italics.
Use this command to emphasize words.
\par Example:
...
...
packages/rpm/doxygen.spec
View file @
6dd67240
Name: doxygen
Version: 1.2.6
-20010408
Version: 1.2.6
_20010409
Summary: documentation system for C, C++ and IDL
Release: 1
Source0: doxygen_%{version}.src.tar.gz
...
...
@@ -8,7 +8,7 @@ Copyright: GPL
Group: unsorted
URL: http://www.stack.nl/~dimitri/doxygen
Packager: Matthias Andree <ma@dt.e-technik.uni-dortmund.de>
BuildRoot: /var/tmp/doxygen
-
%{version}.root
BuildRoot: /var/tmp/doxygen
_
%{version}.root
# requires Perl for tmake (Troll's make)
BuildPrereq: perl tetex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment