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
11de530b
Commit
11de530b
authored
Feb 10, 2005
by
dimitri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release-1.4.1-20050210
parent
c635cffd
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
1038 additions
and
246 deletions
+1038
-246
INSTALL
INSTALL
+2
-2
README
README
+2
-2
VERSION
VERSION
+1
-1
commands.doc
doc/commands.doc
+11
-6
config.doc
doc/config.doc
+15
-0
language.doc
doc/language.doc
+3
-3
translator_report.txt
doc/translator_report.txt
+513
-97
doxygen.spec
packages/rpm/doxygen.spec
+1
-1
Makefile.in
src/Makefile.in
+1
-1
code.l
src/code.l
+32
-12
commentscan.l
src/commentscan.l
+18
-11
docparser.cpp
src/docparser.cpp
+2
-1
doctokenizer.l
src/doctokenizer.l
+13
-0
doxygen.cpp
src/doxygen.cpp
+1
-1
namespacedef.cpp
src/namespacedef.cpp
+44
-33
scanner.l
src/scanner.l
+109
-49
translator.h
src/translator.h
+10
-10
translator_ua.h
src/translator_ua.h
+257
-14
xmlgen.cpp
src/xmlgen.cpp
+3
-2
No files found.
INSTALL
View file @
11de530b
DOXYGEN Version 1.4.1-20050
129
DOXYGEN Version 1.4.1-20050
210
Please read the installation section of the manual
Please read the installation section of the manual
(http://www.doxygen.org/install.html) for instructions.
(http://www.doxygen.org/install.html) for instructions.
--------
--------
Dimitri van Heesch (
29 Jan
uary 2005)
Dimitri van Heesch (
10 Febr
uary 2005)
README
View file @
11de530b
DOXYGEN Version 1.4.1_20050
129
DOXYGEN Version 1.4.1_20050
210
Please read INSTALL for compilation instructions.
Please read INSTALL for compilation instructions.
...
@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.
...
@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.
Enjoy,
Enjoy,
Dimitri van Heesch (dimitri@stack.nl) (
29 Jan
uary 2005)
Dimitri van Heesch (dimitri@stack.nl) (
10 Febr
uary 2005)
VERSION
View file @
11de530b
1.4.1-20050
129
1.4.1-20050
210
doc/commands.doc
View file @
11de530b
...
@@ -1430,8 +1430,7 @@ void memcpy(void *dest, const void *src, size_t n);
...
@@ -1430,8 +1430,7 @@ void memcpy(void *dest, const void *src, size_t n);
tag of doxygen's configuration file.
tag of doxygen's configuration file.
If \<file-name\> itself is not unique for the set of example files specified
If \<file-name\> itself is not unique for the set of example files specified
by the
by the \ref cfg_example_path "EXAMPLE_PATH" tag, you can include part
\ref cfg_example_path "EXAMPLE_PATH" tag, you can include part
of the absolute path to disambiguate it.
of the absolute path to disambiguate it.
Using the \\include command is equivalent to inserting the file into
Using the \\include command is equivalent to inserting the file into
...
@@ -1448,7 +1447,11 @@ void memcpy(void *dest, const void *src, size_t n);
...
@@ -1448,7 +1447,11 @@ void memcpy(void *dest, const void *src, size_t n);
\ref cmdskipline "\\skipline",
\ref cmdskipline "\\skipline",
and \\until commands.
and \\until commands.
\sa section \ref cmdexample "\\example" and \ref cmddontinclude "\\dontinclude".
\note Doxygen's special commands do not work inside blocks of code.
It is allowed to nest C-style comments inside a code block though.
\sa section \ref cmdexample "\\example", \ref cmddontinclude "\\dontinclude", and
section \ref cmdverbatim "\\verbatim".
<hr>
<hr>
\section cmdincludelineno \\includelineno <file-name>
\section cmdincludelineno \\includelineno <file-name>
...
@@ -1635,7 +1638,7 @@ void memcpy(void *dest, const void *src, size_t n);
...
@@ -1635,7 +1638,7 @@ void memcpy(void *dest, const void *src, size_t n);
classes and members that are documented are automatically replaced by
classes and members that are documented are automatically replaced by
links to the documentation.
links to the documentation.
\sa section \ref cmdendcode "\\endcode", section \ref cmdverbatim "\\verbatim"
\sa section \ref cmdendcode "\\endcode", section \ref cmdverbatim "\\verbatim"
.
<hr>
<hr>
\section cmdcopydoc \\copydoc <link-object>
\section cmdcopydoc \\copydoc <link-object>
...
@@ -1805,7 +1808,7 @@ class C {};
...
@@ -1805,7 +1808,7 @@ class C {};
\addindex \\endverbatim
\addindex \\endverbatim
Ends a block of text that was started with a \\verbatim command.
Ends a block of text that was started with a \\verbatim command.
\sa section \ref cmdverbatim "\\verbatim".
\sa section \ref cmd
endcode "\\endcode", section \ref cmd
verbatim "\\verbatim".
<hr>
<hr>
\section cmdendxmlonly \\endxmlonly
\section cmdendxmlonly \\endxmlonly
...
@@ -2020,6 +2023,8 @@ class C {};
...
@@ -2020,6 +2023,8 @@ class C {};
\warning Make sure you include a \\endverbatim command for each
\warning Make sure you include a \\endverbatim command for each
\\verbatim command or the parser will get confused!
\\verbatim command or the parser will get confused!
\sa section \ref cmdcode "\\code", and section \ref cmdverbinclude "\\verbinclude".
<hr>
<hr>
\section cmdxmlonly \\xmlonly
\section cmdxmlonly \\xmlonly
...
...
doc/config.doc
View file @
11de530b
...
@@ -121,6 +121,7 @@ followed by the descriptions of the tags grouped by category.
...
@@ -121,6 +121,7 @@ followed by the descriptions of the tags grouped by category.
\
refitem
cfg_generate_treeview
GENERATE_TREEVIEW
\
refitem
cfg_generate_treeview
GENERATE_TREEVIEW
\
refitem
cfg_generate_xml
GENERATE_XML
\
refitem
cfg_generate_xml
GENERATE_XML
\
refitem
cfg_graphical_hierarchy
GRAPHICAL_HIERARCHY
\
refitem
cfg_graphical_hierarchy
GRAPHICAL_HIERARCHY
\
refitem
cfg_group_graphs
GROUP_GRAPHS
\
refitem
cfg_have_dot
HAVE_DOT
\
refitem
cfg_have_dot
HAVE_DOT
\
refitem
cfg_hhc_location
HHC_LOCATION
\
refitem
cfg_hhc_location
HHC_LOCATION
\
refitem
cfg_hide_friend_compounds
HIDE_FRIEND_COMPOUNDS
\
refitem
cfg_hide_friend_compounds
HIDE_FRIEND_COMPOUNDS
...
@@ -202,6 +203,7 @@ followed by the descriptions of the tags grouped by category.
...
@@ -202,6 +203,7 @@ followed by the descriptions of the tags grouped by category.
\
refitem
cfg_template_relations
TEMPLATE_RELATIONS
\
refitem
cfg_template_relations
TEMPLATE_RELATIONS
\
refitem
cfg_toc_expand
TOC_EXPAND
\
refitem
cfg_toc_expand
TOC_EXPAND
\
refitem
cfg_treeview_width
TREEVIEW_WIDTH
\
refitem
cfg_treeview_width
TREEVIEW_WIDTH
\
refitem
cfg_uml_look
UML_LOOK
\
refitem
cfg_use_windows_encoding
USE_WINDOWS_ENCODING
\
refitem
cfg_use_windows_encoding
USE_WINDOWS_ENCODING
\
refitem
cfg_verbatim_headers
VERBATIM_HEADERS
\
refitem
cfg_verbatim_headers
VERBATIM_HEADERS
\
refitem
cfg_warn_format
WARN_FORMAT
\
refitem
cfg_warn_format
WARN_FORMAT
...
@@ -1586,6 +1588,19 @@ TAGFILES = file1=loc1 "file2 = loc2" ... </pre>
...
@@ -1586,6 +1588,19 @@ TAGFILES = file1=loc1 "file2 = loc2" ... </pre>
indirect
implementation
dependencies
(
inheritance
,
containment
,
and
indirect
implementation
dependencies
(
inheritance
,
containment
,
and
class
references
variables
)
of
the
class
with
other
documented
classes
.
class
references
variables
)
of
the
class
with
other
documented
classes
.
\
anchor
cfg_group_graphs
<
dt
>\
c
GROUP_GRAPHS
<
dd
>
\
addindex
GROUP_GRAPHS
If
the
GROUP_GRAPHS
and
HAVE_DOT
tags
are
set
to
YES
then
doxygen
will
generate
a
graph
for
groups
,
showing
the
direct
groups
dependencies
.
\
anchor
cfg_uml_look
<
dt
>\
c
UML_LOOK
<
dd
>
\
addindex
UML_LOOK
If
the
UML_LOOK
tag
is
set
to
YES
doxygen
will
generate
inheritance
and
collaboration
diagrams
in
a
style
similar
to
the
OMG
's Unified Modeling
Language.
\anchor cfg_template_relations
\anchor cfg_template_relations
<dt>\c TEMPLATE_RELATIONS <dd>
<dt>\c TEMPLATE_RELATIONS <dd>
\addindex TEMPLATE_RELATIONS
\addindex TEMPLATE_RELATIONS
...
...
doc/language.doc
View file @
11de530b
...
@@ -23,7 +23,7 @@ text fragments, generated by doxygen, can be produced in languages other
...
@@ -23,7 +23,7 @@ text fragments, generated by doxygen, can be produced in languages other
than English (the default). The output language is chosen through the
than English (the default). The output language is chosen through the
configuration file (with default name and known as Doxyfile).
configuration file (with default name and known as Doxyfile).
Currently (version 1.4.1), 30 languages
Currently (version 1.4.1
-20050129
), 30 languages
are supported (sorted alphabetically):
are supported (sorted alphabetically):
Afrikaans, Brazilian Portuguese, Catalan, Chinese, Chinese
Afrikaans, Brazilian Portuguese, Catalan, Chinese, Chinese
Traditional, Croatian, Czech, Danish, Dutch, English, Finnish, French,
Traditional, Croatian, Czech, Danish, Dutch, English, Finnish, French,
...
@@ -240,7 +240,7 @@ when the translator was updated.
...
@@ -240,7 +240,7 @@ when the translator was updated.
<td>Ukrainian</td>
<td>Ukrainian</td>
<td>Olexij Tkatchenko</td>
<td>Olexij Tkatchenko</td>
<td>olexij.tkatchenko at parcs dot de</td>
<td>olexij.tkatchenko at parcs dot de</td>
<td>
1.2.11
</td>
<td>
up-to-date
</td>
</tr>
</tr>
<!-- table content end -->
<!-- table content end -->
</table>
</table>
...
@@ -329,7 +329,7 @@ when the translator was updated.
...
@@ -329,7 +329,7 @@ when the translator was updated.
\hline
\hline
Swedish & Mikael Hallin & {\tt\tiny mikaelhallin@yahoo.se} & up-to-date \\
Swedish & Mikael Hallin & {\tt\tiny mikaelhallin@yahoo.se} & up-to-date \\
\hline
\hline
Ukrainian & Olexij Tkatchenko & {\tt\tiny olexij.tkatchenko@parcs.de} &
1.2.11
\\
Ukrainian & Olexij Tkatchenko & {\tt\tiny olexij.tkatchenko@parcs.de} &
up-to-date
\\
\hline
\hline
\end{tabular}
\end{tabular}
\endlatexonly
\endlatexonly
...
...
doc/translator_report.txt
View file @
11de530b
(1.4.1)
(1.4.1
-20050129
)
Doxygen supports the following 30 languages (sorted alphabetically):
Doxygen supports the following 30 languages (sorted alphabetically):
...
@@ -8,30 +8,31 @@ German, Greek, Hungarian, Italian, Japanese (+En), Korean (+En),
...
@@ -8,30 +8,31 @@ German, Greek, Hungarian, Italian, Japanese (+En), Korean (+En),
Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, Serbian,
Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, Serbian,
Slovak, Slovene, Spanish, Swedish, and Ukrainian.
Slovak, Slovene, Spanish, Swedish, and Ukrainian.
Of them, 1
5 translators are up-to-date, 15
translators are based on
Of them, 1
6 translators are up-to-date, 14
translators are based on
some adapter class, and 2 are English based.
some adapter class, and 2 are English based.
----------------------------------------------------------------------
----------------------------------------------------------------------
The following translator classes are up-to-date (sorted
The following translator classes are up-to-date (sorted
alphabetically). This means that they derive from the Translator class
alphabetically). This means that they derive from the Translator class
and they implement all
20
1 of the required methods. Anyway, there
and they implement all
19
1 of the required methods. Anyway, there
still may be some details listed even for them:
still may be some details listed even for them:
TranslatorBrazilian
TranslatorBrazilian
-- Remove the obsolete methods (never used).
TranslatorChinese
TranslatorChinese
-- Remove the obsolete methods (never used).
TranslatorCroatian
TranslatorCroatian
-- Remove the obsolete methods (never used).
TranslatorCzech
TranslatorCzech
-- Remove the obsolete methods (never used).
TranslatorDutch
TranslatorDutch
-- Remove the obsolete methods (never used).
TranslatorEnglish
TranslatorEnglish
-- Remove the obsolete methods (never used).
TranslatorFrench
TranslatorFrench
-- Remove the obsolete methods (never used).
TranslatorGerman
TranslatorGerman
-- Remove the obsolete methods (never used).
TranslatorHungarian
TranslatorHungarian
-- Remove the obsolete methods (never used).
TranslatorItalian
TranslatorItalian
-- Remove the obsolete methods (never used).
TranslatorKorean -- Change the base class to Translator.
TranslatorKorean -- Change the base class to Translator.
TranslatorPolish
TranslatorPolish -- Remove the obsolete methods (never used).
TranslatorRussian
TranslatorRussian -- Remove the obsolete methods (never used).
TranslatorSerbian
TranslatorSerbian -- Remove the obsolete methods (never used).
TranslatorSwedish
TranslatorSwedish -- Remove the obsolete methods (never used).
TranslatorUkrainian -- Remove the obsolete methods (never used).
----------------------------------------------------------------------
----------------------------------------------------------------------
The following translator classes need some maintenance (the most
The following translator classes need some maintenance (the most
...
@@ -51,9 +52,8 @@ must be implemented to become up-to-date:
...
@@ -51,9 +52,8 @@ must be implemented to become up-to-date:
TranslatorCatalan 1.2.17 21 methods to implement
TranslatorCatalan 1.2.17 21 methods to implement
TranslatorSlovene 1.2.16 22 methods to implement
TranslatorSlovene 1.2.16 22 methods to implement
TranslatorRomanian 1.2.16 22 methods to implement
TranslatorRomanian 1.2.16 22 methods to implement
TranslatorUkrainian 1.2.11 25 methods to implement
TranslatorGreek 1.2.11 25 methods to implement
TranslatorGreek 1.2.11 25 methods to implement
TranslatorFinnish obsolete 9
8
methods to implement
TranslatorFinnish obsolete 9
4
methods to implement
----------------------------------------------------------------------
----------------------------------------------------------------------
The following translator classes derive directly from the
The following translator classes derive directly from the
...
@@ -64,25 +64,6 @@ version of the translator for the language:
...
@@ -64,25 +64,6 @@ version of the translator for the language:
TranslatorJapaneseEn implements 5 methods
TranslatorJapaneseEn implements 5 methods
TranslatorKoreanEn implements 5 methods
TranslatorKoreanEn implements 5 methods
======================================================================
WARNING: The following translator methods are declared in the
Translator class but their identifiers do not appear in source files.
The situation should be checked. The .cpp files and .h files excluding
the '*translator*' files in doxygen/src directory were simply searched
for occurence of the method identifiers:
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trField(bool, bool)
QCString trHeaderFiles()
QCString trHeaderFilesDescription()
QCString trInterfaces()
QCString trNoDescriptionAvailable()
QCString trPackageDocumentation()
QCString trReimplementedForInternalReasons()
QCString trSources()
======================================================================
======================================================================
Details for translators (classes sorted alphabetically):
Details for translators (classes sorted alphabetically):
...
@@ -91,7 +72,7 @@ Details for translators (classes sorted alphabetically):
...
@@ -91,7 +72,7 @@ Details for translators (classes sorted alphabetically):
TranslatorAfrikaans (TranslatorAdapter_1_3_9) 6 methods to implement
TranslatorAfrikaans (TranslatorAdapter_1_3_9) 6 methods to implement
-------------------
-------------------
Implements 1
9
5 of the required methods.
Implements 1
8
5 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -102,11 +83,43 @@ TranslatorAfrikaans (TranslatorAdapter_1_3_9) 6 methods to implement
...
@@ -102,11 +83,43 @@ TranslatorAfrikaans (TranslatorAdapter_1_3_9) 6 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorBrazilian (Translator)
-------------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
-----------------
-----------------
Implements 1
8
0 of the required methods.
Implements 1
7
0 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -117,10 +130,10 @@ TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
...
@@ -117,10 +130,10 @@ TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
virtual QCString trDirDocumentation()
virtual QCString trDirDocumentation()
virtual QCString trSearchResultsTitle()
virtual QCString trSearchResultsTitle()
virtual QCString trDirectories()
virtual QCString trDirectories()
virtual QCString trDeprecatedList()
virtual QCString trDirDescription()
virtual QCString trDirDescription()
virtual QCString trStaticPackageAttribs()
virtual QCString trStaticPackageAttribs()
virtual QCString trCallGraph()
virtual QCString trCallGraph()
virtual QCString trDeprecatedList()
virtual QCString trPackageTypes()
virtual QCString trPackageTypes()
virtual QCString trSearchResults(int numDocuments)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trPackageAttribs()
virtual QCString trPackageAttribs()
...
@@ -132,11 +145,43 @@ TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
...
@@ -132,11 +145,43 @@ TranslatorCatalan (TranslatorAdapter_1_2_17) 21 methods to implement
virtual QCString trSearchForIndex()
virtual QCString trSearchForIndex()
virtual QCString trAll()
virtual QCString trAll()
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorChinese (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool/*first_capital*/, bool/*singular*/)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorChinesetraditional (TranslatorAdapter_1_3_8) 7 methods to implement
TranslatorChinesetraditional (TranslatorAdapter_1_3_8) 7 methods to implement
----------------------------
----------------------------
Implements 1
9
4 of the required methods.
Implements 1
8
4 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -148,11 +193,62 @@ TranslatorChinesetraditional (TranslatorAdapter_1_3_8) 7 methods to implement
...
@@ -148,11 +193,62 @@ TranslatorChinesetraditional (TranslatorAdapter_1_3_8) 7 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool/*first_capital*/, bool/*singular*/)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorCroatian (Translator)
------------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorCzech (Translator)
---------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorDanish (TranslatorAdapter_1_3_9) 6 methods to implement
TranslatorDanish (TranslatorAdapter_1_3_9) 6 methods to implement
----------------
----------------
Implements 1
9
5 of the required methods.
Implements 1
8
5 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -163,11 +259,62 @@ TranslatorDanish (TranslatorAdapter_1_3_9) 6 methods to implement
...
@@ -163,11 +259,62 @@ TranslatorDanish (TranslatorAdapter_1_3_9) 6 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorDutch (Translator)
---------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorEnglish (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorFinnish (TranslatorEnglish) 9
8
methods to implement
TranslatorFinnish (TranslatorEnglish) 9
4
methods to implement
-----------------
-----------------
Implements
103
of the required methods.
Implements
97
of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -183,7 +330,6 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -183,7 +330,6 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
virtual QCString trFile(bool first_capital, bool singular)
virtual QCString trFile(bool first_capital, bool singular)
virtual QCString trPackages()
virtual QCString trPackages()
virtual QCString trInclByDepGraph()
virtual QCString trInclByDepGraph()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trRTFansicp()
virtual QCString trRTFansicp()
virtual QCString trImplementedFromList(int numEntries)
virtual QCString trImplementedFromList(int numEntries)
virtual QCString trCollaborationDiagram(const char * clName)
virtual QCString trCollaborationDiagram(const char * clName)
...
@@ -198,9 +344,8 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -198,9 +344,8 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
virtual QCString trDirectories()
virtual QCString trDirectories()
virtual QCString trTest()
virtual QCString trTest()
virtual QCString trInvariant()
virtual QCString trInvariant()
virtual QCString tr
PackageDocumentation
()
virtual QCString tr
DeprecatedList
()
virtual QCString trGraphicalHierarchy()
virtual QCString trGraphicalHierarchy()
virtual QCString trSources()
virtual QCString trPostcondition()
virtual QCString trPostcondition()
virtual QCString trGotoGraphicalHierarchy()
virtual QCString trGotoGraphicalHierarchy()
virtual QCString trPageAbbreviation()
virtual QCString trPageAbbreviation()
...
@@ -211,7 +356,6 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -211,7 +356,6 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
virtual QCString trStaticPublicAttribs()
virtual QCString trStaticPublicAttribs()
virtual QCString trCode()
virtual QCString trCode()
virtual QCString trTodo()
virtual QCString trTodo()
virtual QCString trDeprecatedList()
virtual QCString trRTFCharSet()
virtual QCString trRTFCharSet()
virtual QCString trInitialValue()
virtual QCString trInitialValue()
virtual QCString trAlphabeticalList()
virtual QCString trAlphabeticalList()
...
@@ -231,8 +375,7 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -231,8 +375,7 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
virtual QCString trNamespaces()
virtual QCString trNamespaces()
virtual QCString trPrivateAttribs()
virtual QCString trPrivateAttribs()
virtual QCString latexLanguageSupportCommand()
virtual QCString idLanguageCharset()
virtual QCString trInterfaces()
virtual QCString trDefinedInSourceFile()
virtual QCString trDefinedInSourceFile()
virtual QCString trConstructorDocumentation()
virtual QCString trConstructorDocumentation()
virtual QCString trLegend()
virtual QCString trLegend()
...
@@ -241,10 +384,10 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -241,10 +384,10 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
virtual QCString trClasses()
virtual QCString trClasses()
virtual QCString trProtectedAttribs()
virtual QCString trProtectedAttribs()
virtual QCString trLegendTitle()
virtual QCString trLegendTitle()
virtual QCString idLanguageCharset()
virtual QCString trEvents()
virtual QCString trEvents()
virtual QCString trGlobal(bool first_capital, bool singular)
virtual QCString trGlobal(bool first_capital, bool singular)
virtual QCString trDCOPMethods()
virtual QCString trDCOPMethods()
virtual QCString latexLanguageSupportCommand()
virtual QCString trBugList()
virtual QCString trBugList()
virtual QCString trRTFGeneralIndex()
virtual QCString trRTFGeneralIndex()
virtual QCString trNamespace(bool first_capital, bool singular)
virtual QCString trNamespace(bool first_capital, bool singular)
...
@@ -272,15 +415,59 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
...
@@ -272,15 +415,59 @@ TranslatorFinnish (TranslatorEnglish) 98 methods to implement
Obsolete methods (should be removed, never used):
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
QCString trReimplementedForInternalReasons()
QCString trFiles()
QCString trFiles()
virtual QCString updateNeededMessage()
virtual QCString updateNeededMessage()
QCString trHeaderFiles()
QCString trAuthors()
QCString trAuthors()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorFrench (Translator)
----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorGerman (Translator)
----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
---------------
---------------
Implements 1
7
6 of the required methods.
Implements 1
6
6 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -292,10 +479,10 @@ TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
...
@@ -292,10 +479,10 @@ TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
virtual QCString trDirDocumentation()
virtual QCString trDirDocumentation()
virtual QCString trSearchResultsTitle()
virtual QCString trSearchResultsTitle()
virtual QCString trDirectories()
virtual QCString trDirectories()
virtual QCString trDeprecatedList()
virtual QCString trDirDescription()
virtual QCString trDirDescription()
virtual QCString trStaticPackageAttribs()
virtual QCString trStaticPackageAttribs()
virtual QCString trCallGraph()
virtual QCString trCallGraph()
virtual QCString trDeprecatedList()
virtual QCString trPackageTypes()
virtual QCString trPackageTypes()
virtual QCString trImplementedInList(int numEntries)
virtual QCString trImplementedInList(int numEntries)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trSearchResults(int numDocuments)
...
@@ -310,11 +497,62 @@ TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
...
@@ -310,11 +497,62 @@ TranslatorGreek (TranslatorAdapter_1_2_11) 25 methods to implement
virtual QCString trAll()
virtual QCString trAll()
virtual QCString trRTFTableOfContents()
virtual QCString trRTFTableOfContents()
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorHungarian (Translator)
-------------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool/*singular*/)
virtual QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorItalian (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorJapanese (TranslatorAdapter_1_3_9) 6 methods to implement
TranslatorJapanese (TranslatorAdapter_1_3_9) 6 methods to implement
------------------
------------------
Implements 1
9
5 of the required methods.
Implements 1
8
5 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -325,8 +563,21 @@ TranslatorJapanese (TranslatorAdapter_1_3_9) 6 methods to implement
...
@@ -325,8 +563,21 @@ TranslatorJapanese (TranslatorAdapter_1_3_9) 6 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorJapaneseEn (TranslatorEnglish) 1
9
6 methods to implement
TranslatorJapaneseEn (TranslatorEnglish) 1
8
6 methods to implement
--------------------
--------------------
Implements 5 of the required methods.
Implements 5 of the required methods.
...
@@ -336,17 +587,30 @@ TranslatorJapaneseEn (TranslatorEnglish) 196 methods to implement
...
@@ -336,17 +587,30 @@ TranslatorJapaneseEn (TranslatorEnglish) 196 methods to implement
virtual QCString trRTFansicp()
virtual QCString trRTFansicp()
virtual QCString idLanguage()
virtual QCString idLanguage()
virtual QCString trRTFCharSet()
virtual QCString trRTFCharSet()
virtual QCString latexLanguageSupportCommand()
virtual QCString idLanguageCharset()
virtual QCString idLanguageCharset()
virtual QCString latexLanguageSupportCommand()
TranslatorKorean (TranslatorAdapter_1_3_9)
TranslatorKorean (TranslatorAdapter_1_3_9)
----------------
----------------
Implements 201 of the required methods.
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorKoreanEn (TranslatorEnglish) 1
9
6 methods to implement
TranslatorKoreanEn (TranslatorEnglish) 1
8
6 methods to implement
------------------
------------------
Implements 5 of the required methods.
Implements 5 of the required methods.
...
@@ -356,14 +620,14 @@ TranslatorKoreanEn (TranslatorEnglish) 196 methods to implement
...
@@ -356,14 +620,14 @@ TranslatorKoreanEn (TranslatorEnglish) 196 methods to implement
virtual QCString trRTFansicp()
virtual QCString trRTFansicp()
virtual QCString idLanguage()
virtual QCString idLanguage()
virtual QCString trRTFCharSet()
virtual QCString trRTFCharSet()
virtual QCString latexLanguageSupportCommand()
virtual QCString idLanguageCharset()
virtual QCString idLanguageCharset()
virtual QCString latexLanguageSupportCommand()
TranslatorLithuanian (TranslatorAdapter_1_3_8) 7 methods to implement
TranslatorLithuanian (TranslatorAdapter_1_3_8) 7 methods to implement
--------------------
--------------------
Implements 1
9
4 of the required methods.
Implements 1
8
4 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -375,11 +639,24 @@ TranslatorLithuanian (TranslatorAdapter_1_3_8) 7 methods to implement
...
@@ -375,11 +639,24 @@ TranslatorLithuanian (TranslatorAdapter_1_3_8) 7 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorNorwegian (TranslatorAdapter_1_3_9) 6 methods to implement
TranslatorNorwegian (TranslatorAdapter_1_3_9) 6 methods to implement
-------------------
-------------------
Implements 1
9
5 of the required methods.
Implements 1
8
5 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -390,11 +667,43 @@ TranslatorNorwegian (TranslatorAdapter_1_3_9) 6 methods to implement
...
@@ -390,11 +667,43 @@ TranslatorNorwegian (TranslatorAdapter_1_3_9) 6 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorPolish (Translator)
----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorPortuguese (TranslatorAdapter_1_3_3) 11 methods to implement
TranslatorPortuguese (TranslatorAdapter_1_3_3) 11 methods to implement
--------------------
--------------------
Implements 1
9
0 of the required methods.
Implements 1
8
0 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -410,11 +719,24 @@ TranslatorPortuguese (TranslatorAdapter_1_3_3) 11 methods to implement
...
@@ -410,11 +719,24 @@ TranslatorPortuguese (TranslatorAdapter_1_3_3) 11 methods to implement
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trSearchForIndex()
virtual QCString trSearchForIndex()
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
------------------
------------------
Implements 1
7
9 of the required methods.
Implements 1
6
9 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -425,10 +747,10 @@ TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
...
@@ -425,10 +747,10 @@ TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
virtual QCString trDirDocumentation()
virtual QCString trDirDocumentation()
virtual QCString trSearchResultsTitle()
virtual QCString trSearchResultsTitle()
virtual QCString trDirectories()
virtual QCString trDirectories()
virtual QCString trDeprecatedList()
virtual QCString trDirDescription()
virtual QCString trDirDescription()
virtual QCString trStaticPackageAttribs()
virtual QCString trStaticPackageAttribs()
virtual QCString trCallGraph()
virtual QCString trCallGraph()
virtual QCString trDeprecatedList()
virtual QCString trPackageTypes()
virtual QCString trPackageTypes()
virtual QCString trSearchResults(int numDocuments)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trPackageAttribs()
virtual QCString trPackageAttribs()
...
@@ -441,11 +763,62 @@ TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
...
@@ -441,11 +763,62 @@ TranslatorRomanian (TranslatorAdapter_1_2_16) 22 methods to implement
virtual QCString trAll()
virtual QCString trAll()
virtual QCString trRTFTableOfContents()
virtual QCString trRTFTableOfContents()
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorRussian (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorSerbian (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorSlovak (TranslatorAdapter_1_2_18) 20 methods to implement
TranslatorSlovak (TranslatorAdapter_1_2_18) 20 methods to implement
----------------
----------------
Implements 1
8
1 of the required methods.
Implements 1
7
1 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -470,11 +843,24 @@ TranslatorSlovak (TranslatorAdapter_1_2_18) 20 methods to implement
...
@@ -470,11 +843,24 @@ TranslatorSlovak (TranslatorAdapter_1_2_18) 20 methods to implement
virtual QCString trSearchForIndex()
virtual QCString trSearchForIndex()
virtual QCString trAll()
virtual QCString trAll()
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
-----------------
-----------------
Implements 1
7
9 of the required methods.
Implements 1
6
9 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -485,10 +871,10 @@ TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
...
@@ -485,10 +871,10 @@ TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
virtual QCString trDirDocumentation()
virtual QCString trDirDocumentation()
virtual QCString trSearchResultsTitle()
virtual QCString trSearchResultsTitle()
virtual QCString trDirectories()
virtual QCString trDirectories()
virtual QCString trDeprecatedList()
virtual QCString trDirDescription()
virtual QCString trDirDescription()
virtual QCString trStaticPackageAttribs()
virtual QCString trStaticPackageAttribs()
virtual QCString trCallGraph()
virtual QCString trCallGraph()
virtual QCString trDeprecatedList()
virtual QCString trPackageTypes()
virtual QCString trPackageTypes()
virtual QCString trSearchResults(int numDocuments)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trPackageAttribs()
virtual QCString trPackageAttribs()
...
@@ -501,11 +887,24 @@ TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
...
@@ -501,11 +887,24 @@ TranslatorSlovene (TranslatorAdapter_1_2_16) 22 methods to implement
virtual QCString trAll()
virtual QCString trAll()
virtual QCString trRTFTableOfContents()
virtual QCString trRTFTableOfContents()
Obsolete methods (should be removed, never used):
QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
QCString trSources()
QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
QCString trHeaderFiles()
QCString trBugsAndLimitations()
QCString trEnumerationValueDocumentation()
QCString trNoDescriptionAvailable()
TranslatorSpanish (TranslatorAdapter_1_3_8) 7 methods to implement
TranslatorSpanish (TranslatorAdapter_1_3_8) 7 methods to implement
-----------------
-----------------
Implements 1
9
4 of the required methods.
Implements 1
8
4 of the required methods.
Missing methods (should be implemented):
Missing methods (should be implemented):
...
@@ -517,36 +916,53 @@ TranslatorSpanish (TranslatorAdapter_1_3_8) 7 methods to implement
...
@@ -517,36 +916,53 @@ TranslatorSpanish (TranslatorAdapter_1_3_8) 7 methods to implement
virtual QCString trDirReference(const char * dirName)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trDir(bool first_capital, bool singular)
Obsolete methods (should be removed, never used):
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorSwedish (Translator)
-----------------
Implements 191 of the required methods.
Obsolete methods (should be removed, never used):
TranslatorUkrainian (TranslatorAdapter_1_2_11) 25 methods to implement
virtual QCString trHeaderFilesDescription()
virtual QCString trField(bool first_capital, bool/*singular*/)
virtual QCString trPackageDocumentation()
virtual QCString trSources()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trInterfaces()
virtual QCString trHeaderFiles()
virtual QCString trBugsAndLimitations()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trNoDescriptionAvailable()
TranslatorUkrainian (Translator)
-------------------
-------------------
Implements 1
76
of the required methods.
Implements 1
91
of the required methods.
Missing methods (should be implement
ed):
Obsolete methods (should be removed, never us
ed):
virtual QCString trEventDocumentation()
virtual QCString trHeaderFilesDescription()
virtual QCString trDirIndex()
virtual QCString trField(bool first_capital, bool singular)
virtual QCString trImplementedFromList(int numEntries)
virtual QCString trPackageDocumentation()
virtual QCString trPackageMembers()
virtual QCString trSources()
virtual QCString trStaticPackageMembers()
virtual QCString trReimplementedForInternalReasons()
virtual QCString trDirDocumentation()
virtual QCString trInterfaces()
virtual QCString trSearchResultsTitle()
virtual QCString trHeaderFiles()
virtual QCString trDirectories()
virtual QCString trBugsAndLimitations()
virtual QCString trDirDescription()
virtual QCString trEnumerationValueDocumentation()
virtual QCString trStaticPackageAttribs()
virtual QCString trNoDescriptionAvailable()
virtual QCString trCallGraph()
\ No newline at end of file
virtual QCString trDeprecatedList()
virtual QCString trPackageTypes()
virtual QCString trImplementedInList(int numEntries)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trPackageAttribs()
virtual QCString trSearchMatches()
virtual QCString trEvents()
virtual QCString trReferences()
virtual QCString trSourceFile(QCString & filename)
virtual QCString trDirReference(const char * dirName)
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trSearchForIndex()
virtual QCString trAll()
virtual QCString trRTFTableOfContents()
\ No newline at end of file
packages/rpm/doxygen.spec
View file @
11de530b
Summary: A documentation system for C/C++.
Summary: A documentation system for C/C++.
Name: doxygen
Name: doxygen
Version: 1.4.1_20050
129
Version: 1.4.1_20050
210
Release: 1
Release: 1
Epoch: 1
Epoch: 1
Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz
Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz
...
...
src/Makefile.in
View file @
11de530b
...
@@ -46,7 +46,7 @@ clean: Makefile.libdoxygen Makefile.libdoxycfg Makefile.doxygen Makefile.doxytag
...
@@ -46,7 +46,7 @@ clean: Makefile.libdoxygen Makefile.libdoxycfg Makefile.doxygen Makefile.doxytag
distclean
:
clean
distclean
:
clean
-
$(RM)
scanner.cpp code.cpp config.cpp pre.cpp ce_lex.cpp
\
-
$(RM)
scanner.cpp code.cpp config.cpp pre.cpp ce_lex.cpp
\
ce_parse.cpp ce_parse.h doxytag.cpp tag.cpp
\
ce_parse.cpp ce_parse.h doxytag.cpp tag.cpp
commentscan.cpp
\
declinfo.cpp defargs.cpp commentcnv.cpp doctokenizer.cpp
declinfo.cpp defargs.cpp commentcnv.cpp doctokenizer.cpp
FORCE
:
FORCE
:
src/code.l
View file @
11de530b
...
@@ -290,23 +290,32 @@ static VariableContext g_theVarContext;
...
@@ -290,23 +290,32 @@ static VariableContext g_theVarContext;
class CallContext
class CallContext
{
{
public:
public:
struct Ctx
{
Ctx() : name(g_name), type(g_type), cd(0) {}
QCString name;
QCString type;
ClassDef *cd;
};
CallContext()
CallContext()
{
{
m_classList.append(0);
m_classList.append(new Ctx);
m_classList.setAutoDelete(TRUE);
}
}
virtual ~CallContext() {}
virtual ~CallContext() {}
void setClass(ClassDef *cd)
void setClass(ClassDef *cd)
{
{
if (cd)
Ctx *ctx = m_classList.getLast();
if (ctx)
{
{
DBG_CTX((stderr,"** Set call context %s (%p)\n",cd==0 ? "<null>" : cd->name().data(),cd));
DBG_CTX((stderr,"** Set call context %s (%p)\n",cd==0 ? "<null>" : cd->name().data(),cd));
m_classList.removeLast();
ctx->cd=cd;
m_classList.append(cd);
}
}
}
}
void pushScope()
void pushScope()
{
{
m_classList.append(
0
);
m_classList.append(
new Ctx
);
DBG_CTX((stderr,"** Push call context %d\n",m_classList.count()));
DBG_CTX((stderr,"** Push call context %d\n",m_classList.count()));
}
}
void popScope()
void popScope()
...
@@ -314,6 +323,12 @@ class CallContext
...
@@ -314,6 +323,12 @@ class CallContext
if (m_classList.count()>1)
if (m_classList.count()>1)
{
{
DBG_CTX((stderr,"** Pop call context %d\n",m_classList.count()));
DBG_CTX((stderr,"** Pop call context %d\n",m_classList.count()));
Ctx *ctx = m_classList.getLast();
if (ctx)
{
g_name = ctx->name;
g_type = ctx->type;
}
m_classList.removeLast();
m_classList.removeLast();
}
}
else
else
...
@@ -324,16 +339,20 @@ class CallContext
...
@@ -324,16 +339,20 @@ class CallContext
void clear()
void clear()
{
{
DBG_CTX((stderr,"** Clear call context\n"));
DBG_CTX((stderr,"** Clear call context\n"));
m_classList.clear();
Ctx *ctx = m_classList.getLast();
m_classList.append(0);
if (ctx)
{
ctx->cd=0;
}
}
}
ClassDef *getClass() const
ClassDef *getClass() const
{
{
return m_classList.getLast();
Ctx *ctx = m_classList.getLast();
if (ctx) return ctx->cd; else return 0;
}
}
private:
private:
QList<C
lassDef
> m_classList;
QList<C
tx
> m_classList;
};
};
static CallContext g_theCallContext;
static CallContext g_theCallContext;
...
@@ -761,7 +780,7 @@ static void generateClassOrGlobalLink(BaseCodeDocInterface &ol,char *clName,
...
@@ -761,7 +780,7 @@ static void generateClassOrGlobalLink(BaseCodeDocInterface &ol,char *clName,
{
{
cd=getResolvedClass(d,g_sourceFileDef,className.left(i),&md);
cd=getResolvedClass(d,g_sourceFileDef,className.left(i),&md);
}
}
//
printf(
"is found as a type %s\n",cd?cd->name().data():"<null>");
//
fprintf(stderr,
"is found as a type %s\n",cd?cd->name().data():"<null>");
}
}
else
else
{
{
...
@@ -928,7 +947,7 @@ static bool generateClassMemberLink(BaseCodeDocInterface &ol,ClassDef *mcd,const
...
@@ -928,7 +947,7 @@ static bool generateClassMemberLink(BaseCodeDocInterface &ol,ClassDef *mcd,const
if (mcd)
if (mcd)
{
{
MemberDef *xmd = mcd->getMemberByName(memName);
MemberDef *xmd = mcd->getMemberByName(memName);
//
printf(
"generateClassMemberLink(class=%s,member=%s)=%p\n",mcd->name().data(),memName,xmd);
//
fprintf(stderr,
"generateClassMemberLink(class=%s,member=%s)=%p\n",mcd->name().data(),memName,xmd);
if (xmd)
if (xmd)
{
{
// extract class definition of the return type in order to resolve
// extract class definition of the return type in order to resolve
...
@@ -967,7 +986,7 @@ static bool generateClassMemberLink(BaseCodeDocInterface &ol,ClassDef *mcd,const
...
@@ -967,7 +986,7 @@ static bool generateClassMemberLink(BaseCodeDocInterface &ol,ClassDef *mcd,const
// add usage reference
// add usage reference
if (g_currentDefinition && g_currentMemberDef &&
if (g_currentDefinition && g_currentMemberDef &&
xmd!=g_currentMemberDef &&
g_insideBody)
/*xmd!=g_currentMemberDef &&*/
g_insideBody)
{
{
addDocCrossReference(g_currentMemberDef,xmd);
addDocCrossReference(g_currentMemberDef,xmd);
}
}
...
@@ -2415,6 +2434,7 @@ OPERATOR {ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}
...
@@ -2415,6 +2434,7 @@ OPERATOR {ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}
if (*yytext==';') g_searchingForBody=FALSE;
if (*yytext==';') g_searchingForBody=FALSE;
if (!g_inClass && !g_type.isEmpty())
if (!g_inClass && !g_type.isEmpty())
{
{
//fprintf(stderr,"add variable g_type=%s g_name=%s)\n",g_type.data(),g_name.data());
g_theVarContext.addVariable(g_type,g_name);
g_theVarContext.addVariable(g_type,g_name);
}
}
g_parmType.resize(0);g_parmName.resize(0);
g_parmType.resize(0);g_parmName.resize(0);
...
...
src/commentscan.l
View file @
11de530b
...
@@ -412,6 +412,7 @@ static void addXRefItem(const char *listName,const char *itemTitle,const char *l
...
@@ -412,6 +412,7 @@ static void addXRefItem(const char *listName,const char *itemTitle,const char *l
sectionTitle,SectionInfo::Anchor);
sectionTitle,SectionInfo::Anchor);
Doxygen::sectionDict.insert(anchorLabel,si);
Doxygen::sectionDict.insert(anchorLabel,si);
docEntry->anchors->append(si);
docEntry->anchors->append(si);
outputXRef.resize(0);
}
}
//current->brief = slString; // restore orginial brief desc.
//current->brief = slString; // restore orginial brief desc.
}
}
...
@@ -643,7 +644,7 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
...
@@ -643,7 +644,7 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
* grouping commands (e.g. @{ and @})
* grouping commands (e.g. @{ and @})
*/
*/
<Comment>{CMD}{CMD}[a-z_A-Z]
*
{B}* { // escaped command
<Comment>{CMD}{CMD}[a-z_A-Z]
+
{B}* { // escaped command
addOutput(yytext);
addOutput(yytext);
}
}
<Comment>("\\"[a-z_A-Z]+)+"\\" { // directory (or chain of commands!)
<Comment>("\\"[a-z_A-Z]+)+"\\" { // directory (or chain of commands!)
...
@@ -1116,8 +1117,8 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
...
@@ -1116,8 +1117,8 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
<SectionLabel>{LABELID} { // first argyment
<SectionLabel>{LABELID} { // first argyment
sectionLabel=yytext;
sectionLabel=yytext;
addOutput(yytext);
sectionTitle.resize(0);
sectionTitle.resize(0);
current->doc+=yytext;
BEGIN(SectionTitle);
BEGIN(SectionTitle);
}
}
<SectionLabel>{DOCNL} { // missing argument
<SectionLabel>{DOCNL} { // missing argument
...
@@ -1151,15 +1152,19 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
...
@@ -1151,15 +1152,19 @@ SCOPENAME "$"?(({ID}?{BN}*"::"{BN}*)*)((~{BN}*)?{ID})
}
}
<SectionTitle>[^\n@\\]* { // any character without special meaning
<SectionTitle>[^\n@\\]* { // any character without special meaning
sectionTitle+=yytext;
sectionTitle+=yytext;
current->doc+=yytext
;
addOutput(yytext)
;
}
}
<SectionTitle>("\\\\"|"@@") { // unescape escaped command
<SectionTitle>("\\\\"|"@@"){ID} { // unescape escaped command
sectionTitle+=*yytext;
sectionTitle+=&yytext[1];
current->doc+=*yytext;
addOutput(yytext);
}
<SectionTitle>{CMD}[$@\\&~<>#%] { // unescape escaped character
sectionTitle+=yytext[1];
addOutput(yytext);
}
}
<SectionTitle>. { // anything else
<SectionTitle>. { // anything else
sectionTitle+=yytext;
sectionTitle+=yytext;
current->doc+=yytext
;
addOutput(*yytext)
;
}
}
/* ----- handle arguments of the anchor command ------- */
/* ----- handle arguments of the anchor command ------- */
...
@@ -1646,8 +1651,9 @@ static void handleSection(const QCString &s)
...
@@ -1646,8 +1651,9 @@ static void handleSection(const QCString &s)
BEGIN(SectionLabel);
BEGIN(SectionLabel);
}
}
static void handleAnchor(const QCString &)
static void handleAnchor(const QCString &
s
)
{
{
addOutput("@"+s+" ");
BEGIN(AnchorLabel);
BEGIN(AnchorLabel);
}
}
...
@@ -1825,8 +1831,8 @@ bool parseCommentBlock(/* in,out */ Entry *curEntry,
...
@@ -1825,8 +1831,8 @@ bool parseCommentBlock(/* in,out */ Entry *curEntry,
/* in,out */ Protection &prot
/* in,out */ Protection &prot
)
)
{
{
//fprintf(stderr,"
isBrief=%d isJavaDocStyle
=%d\n",
//fprintf(stderr,"
parseCommentBlock() isBrief=%d isJavaDocStyle=%d lineNr
=%d\n",
// isBrief,isJavaDocStyle);
// isBrief,isJavaDocStyle
,lineNr
);
initParser();
initParser();
guards.setAutoDelete(TRUE);
guards.setAutoDelete(TRUE);
guards.clear();
guards.clear();
...
@@ -1840,6 +1846,7 @@ bool parseCommentBlock(/* in,out */ Entry *curEntry,
...
@@ -1840,6 +1846,7 @@ bool parseCommentBlock(/* in,out */ Entry *curEntry,
//inBody = foundInBody;
//inBody = foundInBody;
protection = prot;
protection = prot;
needNewEntry = FALSE;
needNewEntry = FALSE;
outputXRef.resize(0);
setOutput( isBrief || isJavaDocStyle ? OutputBrief : OutputDoc );
setOutput( isBrief || isJavaDocStyle ? OutputBrief : OutputDoc );
briefEndsAtDot = isJavaDocStyle;
briefEndsAtDot = isJavaDocStyle;
commentScanYYrestart( commentScanYYin );
commentScanYYrestart( commentScanYYin );
...
...
src/docparser.cpp
View file @
11de530b
...
@@ -1332,7 +1332,7 @@ static void readTextFileByName(const QString &file,QString &text)
...
@@ -1332,7 +1332,7 @@ static void readTextFileByName(const QString &file,QString &text)
FileDef
*
fd
;
FileDef
*
fd
;
if
((
fd
=
findFileDef
(
Doxygen
::
exampleNameDict
,
file
,
ambig
)))
if
((
fd
=
findFileDef
(
Doxygen
::
exampleNameDict
,
file
,
ambig
)))
{
{
text
=
fileToString
(
fd
->
absFilePath
(),
Config_getBool
(
"FILTER_SOURCE_FILES"
)
);
text
=
fileToString
(
fd
->
absFilePath
(),
FALSE
);
}
}
else
if
(
ambig
)
else
if
(
ambig
)
{
{
...
@@ -5126,6 +5126,7 @@ DocNode *validatingParseDoc(const char *fileName,int startLine,
...
@@ -5126,6 +5126,7 @@ DocNode *validatingParseDoc(const char *fileName,int startLine,
g_paramsFound
.
clear
();
g_paramsFound
.
clear
();
g_sectionDict
=
0
;
//sections;
g_sectionDict
=
0
;
//sections;
//printf("Starting comment block at %s:%d\n",g_fileName.data(),startLine);
doctokenizerYYlineno
=
startLine
;
doctokenizerYYlineno
=
startLine
;
doctokenizerYYinit
(
input
,
g_fileName
);
doctokenizerYYinit
(
input
,
g_fileName
);
...
...
src/doctokenizer.l
View file @
11de530b
...
@@ -252,6 +252,18 @@ static void handleHtmlTag()
...
@@ -252,6 +252,18 @@ static void handleHtmlTag()
g_token->endTag = startNamePos==2;
g_token->endTag = startNamePos==2;
}
}
static QString stripEmptyLines(const char *s)
{
int result=0,p=0;
for (;;)
{
int c;
while ((c=s[p]) && (c==' ' || c=='\t' || c=='\r')) p++;
if (s[p]=='\n') result=++p; else break;
}
return &s[result];
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#undef YY_INPUT
#undef YY_INPUT
...
@@ -565,6 +577,7 @@ REFWORD ("#"|"::")?({ID}("."|"#"|"::"|"-"))*{ID}{FUNCARG}?
...
@@ -565,6 +577,7 @@ REFWORD ("#"|"::")?({ID}("."|"#"|"::"|"-"))*{ID}{FUNCARG}?
g_token->verb+=yytext;
g_token->verb+=yytext;
}
}
<St_Verbatim>{CMD}"endverbatim" {
<St_Verbatim>{CMD}"endverbatim" {
g_token->verb=stripEmptyLines(g_token->verb);
return RetVal_OK;
return RetVal_OK;
}
}
<St_Verbatim>[^\\@\n]+ |
<St_Verbatim>[^\\@\n]+ |
...
...
src/doxygen.cpp
View file @
11de530b
...
@@ -8775,7 +8775,7 @@ void generateOutput()
...
@@ -8775,7 +8775,7 @@ void generateOutput()
}
}
Doxygen
::
tagFile
.
setDevice
(
tag
);
Doxygen
::
tagFile
.
setDevice
(
tag
);
Doxygen
::
tagFile
.
setEncoding
(
QTextStream
::
Latin1
);
Doxygen
::
tagFile
.
setEncoding
(
QTextStream
::
Latin1
);
Doxygen
::
tagFile
<<
"<?xml version='1.0' encoding='ISO-8859-1' standalone='yes'?>"
<<
endl
;
Doxygen
::
tagFile
<<
"<?xml version='1.0' encoding='ISO-8859-1' standalone='yes'
?>"
<<
endl
;
Doxygen
::
tagFile
<<
"<tagfile>"
<<
endl
;
Doxygen
::
tagFile
<<
"<tagfile>"
<<
endl
;
}
}
...
...
src/namespacedef.cpp
View file @
11de530b
...
@@ -516,7 +516,17 @@ void NamespaceDef::combineUsingRelations()
...
@@ -516,7 +516,17 @@ void NamespaceDef::combineUsingRelations()
void
NamespaceSDict
::
writeDeclaration
(
OutputList
&
ol
,
bool
localName
)
void
NamespaceSDict
::
writeDeclaration
(
OutputList
&
ol
,
bool
localName
)
{
{
if
(
count
()
==
0
)
return
;
if
(
count
()
==
0
)
return
;
// no namespaces in the list
SDict
<
NamespaceDef
>::
Iterator
ni
(
*
this
);
NamespaceDef
*
nd
;
bool
found
=
FALSE
;
for
(
ni
.
toFirst
();(
nd
=
ni
.
current
())
&&
!
found
;
++
ni
)
{
if
(
nd
->
isLinkable
())
found
=
TRUE
;
}
if
(
!
found
)
return
;
// no linkable namespaces in the list
// write list of namespaces
// write list of namespaces
ol
.
startMemberHeader
();
ol
.
startMemberHeader
();
bool
javaOpt
=
Config_getBool
(
"OPTIMIZE_OUTPUT_JAVA"
);
bool
javaOpt
=
Config_getBool
(
"OPTIMIZE_OUTPUT_JAVA"
);
...
@@ -530,9 +540,9 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName)
...
@@ -530,9 +540,9 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName)
}
}
ol
.
endMemberHeader
();
ol
.
endMemberHeader
();
ol
.
startMemberList
();
ol
.
startMemberList
();
SDict
<
NamespaceDef
>::
Iterator
ni
(
*
this
);
NamespaceDef
*
nd
;
for
(
ni
.
toFirst
();(
nd
=
ni
.
current
());
++
ni
)
for
(
ni
.
toFirst
();(
nd
=
ni
.
current
());
++
ni
)
{
if
(
nd
->
isLinkable
())
{
{
ol
.
startMemberItem
(
0
);
ol
.
startMemberItem
(
0
);
if
(
javaOpt
)
if
(
javaOpt
)
...
@@ -567,6 +577,7 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName)
...
@@ -567,6 +577,7 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,bool localName)
ol
.
newParagraph
();
ol
.
newParagraph
();
}
}
}
}
}
ol
.
endMemberList
();
ol
.
endMemberList
();
}
}
src/scanner.l
View file @
11de530b
...
@@ -183,6 +183,7 @@ static QCString docBlock;
...
@@ -183,6 +183,7 @@ static QCString docBlock;
static QCString docBlockName;
static QCString docBlockName;
static bool docBlockInBody;
static bool docBlockInBody;
static bool docBlockJavaStyle;
static bool docBlockJavaStyle;
static char docBlockTerm;
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
...
@@ -336,51 +337,8 @@ static void addMemberGroupDocs()
...
@@ -336,51 +337,8 @@ static void addMemberGroupDocs()
//-----------------------------------------------------------------
//-----------------------------------------------------------------
static void handleCommentBlock(const QCString &doc,bool brief)
static void startCommentBlock(bool);
{
static void handleCommentBlock(const QCString &doc,bool brief);
if (brief)
{
current->briefFile = yyFileName;
current->briefLine = yyLineNr;
}
else
{
current->docFile = yyFileName;
current->docLine = yyLineNr;
}
if (docBlockInBody)
{
if (previous==0)
{
ASSERT(previous!=0); // shouldn't happen
return;
}
if (!previous->doc.isEmpty())
{ // start a new paragraph for the next piece of text found in the body
previous->doc=previous->doc.stripWhiteSpace()+"\n\n";
}
}
if (parseCommentBlock(
docBlockInBody ? previous : current,
doc, // text
yyFileName, // file
yyLineNr, // line
docBlockInBody ? FALSE : brief,
docBlockInBody ? FALSE : docBlockJavaStyle,
protection)
) // need to start a new entry
{
if (current->section==Entry::MEMBERGRP_SEC)
{
addMemberGroupDocs();
}
current_root->addSubEntry(current);
previous = current;
current = new Entry ;
initEntry();
}
}
//-----------------------------------------------------------------
//-----------------------------------------------------------------
static void addXRefItem(bool inBody,const char *listName,const char *itemTitle,const char *listTitle)
static void addXRefItem(bool inBody,const char *listName,const char *itemTitle,const char *listTitle)
...
@@ -2034,7 +1992,26 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -2034,7 +1992,26 @@ IDLATTR ("["[^\]]*"]"){BN}*
<FindMembers,MemberSpec,Function,NextSemi,BitFields,ReadInitializer,OldStyleArgs>";"{BN}*("/**"|"//!"|"/*!"|"///")"<" {
<FindMembers,MemberSpec,Function,NextSemi,BitFields,ReadInitializer,OldStyleArgs>";"{BN}*("/**"|"//!"|"/*!"|"///")"<" {
lineCount();
lineCount();
if (current->bodyLine==-1)
if (current->bodyLine==-1)
{
current->bodyLine=yyLineNr;
current->bodyLine=yyLineNr;
}
#ifdef COMMENTSCAN
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockJavaStyle = yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF");
docBlock.resize(0);
docBlockTerm = ';';
if (yytext[yyleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
#else
lastAfterDocContext = YY_START;
lastAfterDocContext = YY_START;
afterDocTerminator = ';';
afterDocTerminator = ';';
if (yytext[yyleng-3]=='/')
if (yytext[yyleng-3]=='/')
...
@@ -2060,9 +2037,27 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -2060,9 +2037,27 @@ IDLATTR ("["[^\]]*"]"){BN}*
current->docFile = yyFileName;
current->docFile = yyFileName;
BEGIN(AfterDoc);
BEGIN(AfterDoc);
}
}
#endif
}
}
<MemberSpec,FindFields,FindMembers,NextSemi,BitFields,ReadInitializer,OldStyleArgs>","{BN}*("/**"|"//!"|"/*!"|"///")"<" {
<MemberSpec,FindFields,FindMembers,NextSemi,BitFields,ReadInitializer,OldStyleArgs>","{BN}*("/**"|"//!"|"/*!"|"///")"<" {
lineCount();
lineCount();
#ifdef COMMENTSCAN
docBlockContext = YY_START;
docBlockInBody = FALSE;
docBlockJavaStyle = yytext[yyleng-2]=='*' && Config_getBool("JAVADOC_AUTOBRIEF");
docBlock.resize(0);
docBlockTerm = ',';
if (yytext[yyleng-3]=='/')
{
startCommentBlock(TRUE);
BEGIN( DocLine );
}
else
{
startCommentBlock(FALSE);
BEGIN( DocBlock );
}
#else
lastAfterDocContext = YY_START;
lastAfterDocContext = YY_START;
afterDocTerminator = ',';
afterDocTerminator = ',';
if (yytext[yyleng-3]=='/')
if (yytext[yyleng-3]=='/')
...
@@ -2088,6 +2083,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -2088,6 +2083,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
current->docFile = yyFileName;
current->docFile = yyFileName;
BEGIN(AfterDoc);
BEGIN(AfterDoc);
}
}
#endif
}
}
<DefineEnd,FindFields,FindFieldArg,ReadInitializer,OldStyleArgs>{BN}*("/**"|"//!"|"/*!"|"///")"<" {
<DefineEnd,FindFields,FindFieldArg,ReadInitializer,OldStyleArgs>{BN}*("/**"|"//!"|"/*!"|"///")"<" {
lineCount();
lineCount();
...
@@ -4142,6 +4138,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4142,6 +4138,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
docBlockInBody = YY_START==SkipCurly;
docBlockInBody = YY_START==SkipCurly;
docBlockJavaStyle = FALSE;
docBlockJavaStyle = FALSE;
docBlock.resize(0);
docBlock.resize(0);
startCommentBlock(FALSE);
BEGIN( DocBlock );
BEGIN( DocBlock );
#else
#else
BEGIN( Doc );
BEGIN( Doc );
...
@@ -4179,6 +4176,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4179,6 +4176,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
current->brief.resize(0);
current->brief.resize(0);
}
}
}
}
startCommentBlock(FALSE);
BEGIN( DocBlock );
BEGIN( DocBlock );
#else
#else
if (!Config_getBool("JAVADOC_AUTOBRIEF")) // use the Qt style
if (!Config_getBool("JAVADOC_AUTOBRIEF")) // use the Qt style
...
@@ -4243,6 +4241,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4243,6 +4241,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
docBlockInBody = YY_START==SkipCurly;
docBlockInBody = YY_START==SkipCurly;
docBlockJavaStyle = FALSE;
docBlockJavaStyle = FALSE;
docBlock.resize(0);
docBlock.resize(0);
startCommentBlock(TRUE);
BEGIN( DocLine );
BEGIN( DocLine );
#else
#else
BEGIN( LineDoc );
BEGIN( LineDoc );
...
@@ -4270,6 +4269,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4270,6 +4269,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
docBlockInBody = YY_START==SkipCurly;
docBlockInBody = YY_START==SkipCurly;
docBlockJavaStyle = FALSE;
docBlockJavaStyle = FALSE;
docBlock.resize(0);
docBlock.resize(0);
startCommentBlock(TRUE);
BEGIN( DocLine );
BEGIN( DocLine );
#else
#else
BEGIN( LineDoc );
BEGIN( LineDoc );
...
@@ -4296,8 +4296,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4296,8 +4296,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
else
else
{
{
if ((insideJava || insideCS || insideD) &&
if ((insideJava || insideCS || insideD) &&
current->name.isEmpty() &&
current->name.isEmpty()
current->type.isEmpty()
)
)
{
{
// static Java initializer
// static Java initializer
...
@@ -4305,6 +4304,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4305,6 +4304,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
if (current->stat)
if (current->stat)
{
{
current->name="[static initializer]";
current->name="[static initializer]";
current->type.resize(0);
}
}
else
else
{
{
...
@@ -4365,7 +4365,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4365,7 +4365,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
}
}
<DocBlock>^{B}*"*"+/{BN}+ { // start of a comment line
<DocBlock>^{B}*"*"+/{BN}+ { // start of a comment line
}
}
<DocBlock>("@@"|"\\\\"){ID}
{ // escaped command
<DocBlock>("@@"|"\\\\"){ID}
/[^a-z_A-Z0-9]
{ // escaped command
docBlock+=yytext;
docBlock+=yytext;
}
}
<DocBlock>{CMD}("verbatim"|"latexonly"|"htmlonly"|"xmlonly"|"dot"|"code")/[^a-z_A-Z0-9] { // verbatim command (which could contain nested comments!)
<DocBlock>{CMD}("verbatim"|"latexonly"|"htmlonly"|"xmlonly"|"dot"|"code")/[^a-z_A-Z0-9] { // verbatim command (which could contain nested comments!)
...
@@ -4399,7 +4399,10 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -4399,7 +4399,10 @@ IDLATTR ("["[^\]]*"]"){BN}*
REJECT;
REJECT;
}
}
}
}
<DocCopyBlock>[^@\*\\\n]+ { // any character that is not special
<DocCopyBlock>[^@/*\\\n]+ { // any character that is not special
docBlock+=yytext;
}
<DocCopyBlock>"/*"|"*/"|"//" {
docBlock+=yytext;
docBlock+=yytext;
}
}
<DocCopyBlock>\n { // newline
<DocCopyBlock>\n { // newline
...
@@ -5259,6 +5262,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -5259,6 +5262,7 @@ IDLATTR ("["[^\]]*"]"){BN}*
}
}
<AnchorLabel>{LABELID} {
<AnchorLabel>{LABELID} {
SectionInfo *si = new SectionInfo(yyFileName,yytext,0,SectionInfo::Anchor);
SectionInfo *si = new SectionInfo(yyFileName,yytext,0,SectionInfo::Anchor);
printf("New anchor file=%s label=%s\n",yyFileName,yytext);
Doxygen::sectionDict.insert(yytext,si);
Doxygen::sectionDict.insert(yytext,si);
current->anchors->append(si);
current->anchors->append(si);
current->doc+=yytext;
current->doc+=yytext;
...
@@ -6142,6 +6146,62 @@ IDLATTR ("["[^\]]*"]"){BN}*
...
@@ -6142,6 +6146,62 @@ IDLATTR ("["[^\]]*"]"){BN}*
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
static void startCommentBlock(bool brief)
{
if (brief)
{
current->briefFile = yyFileName;
current->briefLine = yyLineNr;
}
else
{
current->docFile = yyFileName;
current->docLine = yyLineNr;
}
}
static void handleCommentBlock(const QCString &doc,bool brief)
{
if (docBlockInBody)
{
if (previous==0)
{
ASSERT(previous!=0); // shouldn't happen
goto exit;
}
if (!previous->doc.isEmpty())
{ // start a new paragraph for the next piece of text found in the body
previous->doc=previous->doc.stripWhiteSpace()+"\n\n";
}
}
if (parseCommentBlock(
docBlockInBody ? previous : current,
doc, // text
yyFileName, // file
brief ? current->briefLine : current->docLine, // line of block start
docBlockInBody ? FALSE : brief,
docBlockInBody ? FALSE : docBlockJavaStyle,
protection)
) // need to start a new entry
{
if (current->section==Entry::MEMBERGRP_SEC)
{
addMemberGroupDocs();
}
current_root->addSubEntry(current);
previous = current;
current = new Entry ;
initEntry();
}
exit:
if (docBlockTerm)
{
unput(docBlockTerm);
docBlockTerm=0;
}
}
#ifndef COMMENTSCAN
#ifndef COMMENTSCAN
static void startGroup()
static void startGroup()
{
{
...
...
src/translator.h
View file @
11de530b
...
@@ -92,7 +92,7 @@ class Translator
...
@@ -92,7 +92,7 @@ class Translator
virtual
QCString
trClassHierarchy
()
=
0
;
virtual
QCString
trClassHierarchy
()
=
0
;
virtual
QCString
trCompoundList
()
=
0
;
virtual
QCString
trCompoundList
()
=
0
;
virtual
QCString
trFileList
()
=
0
;
virtual
QCString
trFileList
()
=
0
;
virtual
QCString
trHeaderFiles
()
=
0
;
//
virtual QCString trHeaderFiles() = 0;
virtual
QCString
trCompoundMembers
()
=
0
;
virtual
QCString
trCompoundMembers
()
=
0
;
virtual
QCString
trFileMembers
()
=
0
;
virtual
QCString
trFileMembers
()
=
0
;
virtual
QCString
trRelatedPages
()
=
0
;
virtual
QCString
trRelatedPages
()
=
0
;
...
@@ -103,11 +103,11 @@ class Translator
...
@@ -103,11 +103,11 @@ class Translator
virtual
QCString
trCompoundListDescription
()
=
0
;
virtual
QCString
trCompoundListDescription
()
=
0
;
virtual
QCString
trCompoundMembersDescription
(
bool
extractAll
)
=
0
;
virtual
QCString
trCompoundMembersDescription
(
bool
extractAll
)
=
0
;
virtual
QCString
trFileMembersDescription
(
bool
extractAll
)
=
0
;
virtual
QCString
trFileMembersDescription
(
bool
extractAll
)
=
0
;
virtual
QCString
trHeaderFilesDescription
()
=
0
;
//
virtual QCString trHeaderFilesDescription() = 0;
virtual
QCString
trExamplesDescription
()
=
0
;
virtual
QCString
trExamplesDescription
()
=
0
;
virtual
QCString
trRelatedPagesDescription
()
=
0
;
virtual
QCString
trRelatedPagesDescription
()
=
0
;
virtual
QCString
trModulesDescription
()
=
0
;
virtual
QCString
trModulesDescription
()
=
0
;
virtual
QCString
trNoDescriptionAvailable
()
=
0
;
//
virtual QCString trNoDescriptionAvailable() = 0;
// index titles (the project name is prepended for these)
// index titles (the project name is prepended for these)
...
@@ -133,7 +133,7 @@ class Translator
...
@@ -133,7 +133,7 @@ class Translator
virtual
QCString
trFunctionPrototypeDocumentation
()
=
0
;
virtual
QCString
trFunctionPrototypeDocumentation
()
=
0
;
virtual
QCString
trTypedefDocumentation
()
=
0
;
virtual
QCString
trTypedefDocumentation
()
=
0
;
virtual
QCString
trEnumerationTypeDocumentation
()
=
0
;
virtual
QCString
trEnumerationTypeDocumentation
()
=
0
;
virtual
QCString
trEnumerationValueDocumentation
()
=
0
;
//
virtual QCString trEnumerationValueDocumentation() = 0;
virtual
QCString
trFunctionDocumentation
()
=
0
;
virtual
QCString
trFunctionDocumentation
()
=
0
;
virtual
QCString
trVariableDocumentation
()
=
0
;
virtual
QCString
trVariableDocumentation
()
=
0
;
virtual
QCString
trCompounds
()
=
0
;
virtual
QCString
trCompounds
()
=
0
;
...
@@ -141,9 +141,9 @@ class Translator
...
@@ -141,9 +141,9 @@ class Translator
virtual
QCString
trWrittenBy
()
=
0
;
virtual
QCString
trWrittenBy
()
=
0
;
virtual
QCString
trClassDiagram
(
const
char
*
clName
)
=
0
;
virtual
QCString
trClassDiagram
(
const
char
*
clName
)
=
0
;
virtual
QCString
trForInternalUseOnly
()
=
0
;
virtual
QCString
trForInternalUseOnly
()
=
0
;
virtual
QCString
trReimplementedForInternalReasons
()
=
0
;
//
virtual QCString trReimplementedForInternalReasons() = 0;
virtual
QCString
trWarning
()
=
0
;
virtual
QCString
trWarning
()
=
0
;
virtual
QCString
trBugsAndLimitations
()
=
0
;
//
virtual QCString trBugsAndLimitations() = 0;
virtual
QCString
trVersion
()
=
0
;
virtual
QCString
trVersion
()
=
0
;
virtual
QCString
trDate
()
=
0
;
virtual
QCString
trDate
()
=
0
;
virtual
QCString
trReturns
()
=
0
;
virtual
QCString
trReturns
()
=
0
;
...
@@ -223,7 +223,7 @@ class Translator
...
@@ -223,7 +223,7 @@ class Translator
// new since 0.49-991003
// new since 0.49-991003
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
virtual
QCString
trSources
()
=
0
;
//
virtual QCString trSources() = 0;
virtual
QCString
trDefinedAtLineInSourceFile
()
=
0
;
virtual
QCString
trDefinedAtLineInSourceFile
()
=
0
;
virtual
QCString
trDefinedInSourceFile
()
=
0
;
virtual
QCString
trDefinedInSourceFile
()
=
0
;
...
@@ -317,13 +317,13 @@ class Translator
...
@@ -317,13 +317,13 @@ class Translator
// new since 1.2.4
// new since 1.2.4
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
virtual
QCString
trInterfaces
()
=
0
;
//
virtual QCString trInterfaces() = 0;
virtual
QCString
trClasses
()
=
0
;
virtual
QCString
trClasses
()
=
0
;
virtual
QCString
trPackage
(
const
char
*
name
)
=
0
;
virtual
QCString
trPackage
(
const
char
*
name
)
=
0
;
virtual
QCString
trPackageList
()
=
0
;
virtual
QCString
trPackageList
()
=
0
;
virtual
QCString
trPackageListDescription
()
=
0
;
virtual
QCString
trPackageListDescription
()
=
0
;
virtual
QCString
trPackages
()
=
0
;
virtual
QCString
trPackages
()
=
0
;
virtual
QCString
trPackageDocumentation
()
=
0
;
//
virtual QCString trPackageDocumentation() = 0;
virtual
QCString
trDefineValue
()
=
0
;
virtual
QCString
trDefineValue
()
=
0
;
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
...
@@ -349,7 +349,7 @@ class Translator
...
@@ -349,7 +349,7 @@ class Translator
virtual
QCString
trGroup
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trGroup
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trPage
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trPage
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trMember
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trMember
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trField
(
bool
first_capital
,
bool
singular
)
=
0
;
//
virtual QCString trField(bool first_capital, bool singular) = 0;
virtual
QCString
trGlobal
(
bool
first_capital
,
bool
singular
)
=
0
;
virtual
QCString
trGlobal
(
bool
first_capital
,
bool
singular
)
=
0
;
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
...
...
src/translator_ua.h
View file @
11de530b
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
#ifndef TRANSLATOR_UA_H
#ifndef TRANSLATOR_UA_H
#define TRANSLATOR_UA_H
#define TRANSLATOR_UA_H
class
TranslatorUkrainian
:
public
TranslatorAdapter_1_2_11
class
TranslatorUkrainian
:
public
Translator
{
{
private
:
private
:
/*! The Decode() inline assumes the source written in the
/*! The Decode() inline assumes the source written in the
...
@@ -302,11 +302,11 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -302,11 +302,11 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
/*! This is an introduction to the page with the list of related pages */
/*! This is an introduction to the page with the list of related pages */
virtual
QCString
trRelatedPagesDescription
()
virtual
QCString
trRelatedPagesDescription
()
{
return
decode
(
"ðÏÌÎÙÊ ÓÐÉÓÏË ÄÏÄÁÔËÏ×ÉÈ ÏÐÉÓ¦×."
);
}
{
return
decode
(
"ðÏ×ÎÉÊ ÓÐÉÓÏË ÄÏÄÁÔËÏ×ÉÈ ÏÐÉÓ¦×."
);
}
/*! This is an introduction to the page with the list of class/file groups */
/*! This is an introduction to the page with the list of class/file groups */
virtual
QCString
trModulesDescription
()
virtual
QCString
trModulesDescription
()
{
return
decode
(
"ðÏÌÎÙÊ ÓÐÉÓÏË ÍÏÄÕ̦×."
);
}
{
return
decode
(
"ðÏ×ÎÉÊ ÓÐÉÓÏË ÍÏÄÕ̦×."
);
}
/*! This sentences is used in the annotated class/file lists if no brief
/*! This sentences is used in the annotated class/file lists if no brief
* description is given.
* description is given.
...
@@ -622,8 +622,8 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -622,8 +622,8 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
case
ClassDef
:
:
Struct
:
result
+=
"ÓÔÒÕËÔÕÒÉ"
;
break
;
case
ClassDef
:
:
Struct
:
result
+=
"ÓÔÒÕËÔÕÒÉ"
;
break
;
case
ClassDef
:
:
Union
:
result
+=
"ÏÂ'¤ÄÎÁÎÎÑ"
;
break
;
case
ClassDef
:
:
Union
:
result
+=
"ÏÂ'¤ÄÎÁÎÎÑ"
;
break
;
case
ClassDef
:
:
Interface
:
result
+=
"¦ÎÔÅÒÆÅÊÓÕ"
;
break
;
case
ClassDef
:
:
Interface
:
result
+=
"¦ÎÔÅÒÆÅÊÓÕ"
;
break
;
case
ClassDef
:
:
Protocol
:
result
+=
"
protocol"
;
break
;
// translate me!
case
ClassDef
:
:
Protocol
:
result
+=
"
ÐÒÏÔÏËÏÌÕ
"
;
break
;
case
ClassDef
:
:
Category
:
result
+=
"
category"
;
break
;
// translate me!
case
ClassDef
:
:
Category
:
result
+=
"
ËÁÔÅÇÏÒ¦§"
;
break
;
case
ClassDef
:
:
Exception
:
result
+=
"÷ÉÎÑÔÏË"
;
break
;
case
ClassDef
:
:
Exception
:
result
+=
"÷ÉÎÑÔÏË"
;
break
;
}
}
}
}
...
@@ -635,8 +635,8 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -635,8 +635,8 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
case
ClassDef
:
:
Struct
:
result
+=
"óÔÒÕËÔÕÒÁ"
;
break
;
case
ClassDef
:
:
Struct
:
result
+=
"óÔÒÕËÔÕÒÁ"
;
break
;
case
ClassDef
:
:
Union
:
result
+=
"ïÂ'¤ÄÎÁÎÎÑ"
;
break
;
case
ClassDef
:
:
Union
:
result
+=
"ïÂ'¤ÄÎÁÎÎÑ"
;
break
;
case
ClassDef
:
:
Interface
:
result
+=
"¶ÎÔÅÒÆÅÊÓ"
;
break
;
case
ClassDef
:
:
Interface
:
result
+=
"¶ÎÔÅÒÆÅÊÓ"
;
break
;
case
ClassDef
:
:
Protocol
:
result
+=
"
protocol"
;
break
;
// translate me!
case
ClassDef
:
:
Protocol
:
result
+=
"
ðÒÏÔÏËÏÌ"
;
break
;
case
ClassDef
:
:
Category
:
result
+=
"
category"
;
break
;
// translate me!
case
ClassDef
:
:
Category
:
result
+=
"
ëÁÔÅÇÏÒ¦Ñ"
;
break
;
case
ClassDef
:
:
Exception
:
result
+=
"÷ÉÎÑÔÏË"
;
break
;
case
ClassDef
:
:
Exception
:
result
+=
"÷ÉÎÑÔÏË"
;
break
;
}
}
}
}
...
@@ -800,10 +800,10 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -800,10 +800,10 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
if
(
single
)
result
+=
"ÃØÏÇÏ ¦ÎÔÅÒÆÅÊÓÕ"
;
else
result
+=
"ÃÉÈ ¦ÎÔÅÒÆÅÊÓ¦×"
;
if
(
single
)
result
+=
"ÃØÏÇÏ ¦ÎÔÅÒÆÅÊÓÕ"
;
else
result
+=
"ÃÉÈ ¦ÎÔÅÒÆÅÊÓ¦×"
;
break
;
break
;
case
ClassDef
:
:
Protocol
:
case
ClassDef
:
:
Protocol
:
if
(
single
)
result
+=
"
protocol"
;
else
result
+=
"protocols"
;
// translate me!
if
(
single
)
result
+=
"
ÃØÏÇÏ ÐÒÏÔÏËÏÌÕ"
;
else
result
+=
"ÃÉÈ ÐÒÏÔÏËÏ̦×"
;
break
;
break
;
case
ClassDef
:
:
Category
:
case
ClassDef
:
:
Category
:
if
(
single
)
result
+=
"
category"
;
else
result
+=
"categories"
;
// translate me!
if
(
single
)
result
+=
"
椧 ËÁÔÅÇÏÒ¦§"
;
else
re
sult
+=
"ÃÉÈ ËÁÔÅÇÏÒ¦Ê"
;
break
;
break
;
case
ClassDef
:
:
Exception
:
case
ClassDef
:
:
Exception
:
if
(
single
)
result
+=
"ÃØÏÇÏ ×ÉÎÑÔËÕ"
;
else
result
+=
"ÃÉÈ ×ÉÎÑÔ˦×"
;
if
(
single
)
result
+=
"ÃØÏÇÏ ×ÉÎÑÔËÕ"
;
else
result
+=
"ÃÉÈ ×ÉÎÑÔ˦×"
;
...
@@ -826,7 +826,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -826,7 +826,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
/*! This is used as the heading text for the retval command. */
/*! This is used as the heading text for the retval command. */
virtual
QCString
trReturnValues
()
virtual
QCString
trReturnValues
()
{
return
decode
(
"úÎÁÞÅÎÉÑ, ÝÏ ÐÏ×ÅÒÔÁÀÔØÓÑ"
);
}
{
return
decode
(
"úÎÁÞÅÎÎÑ, ÝÏ ÐÏ×ÅÒÔÁÀÔØÓÑ"
);
}
/*! This is in the (quick) index as a link to the main page (index.html)
/*! This is in the (quick) index as a link to the main page (index.html)
*/
*/
...
@@ -1024,7 +1024,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -1024,7 +1024,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
}
}
virtual
QCString
trInclByDepGraph
()
virtual
QCString
trInclByDepGraph
()
{
{
return
decode
(
"çÒÁÆ ÆÁÊÌÏ×, Ñ˦ ×ËÌÀÞÁÀÔØ ÃÅÊ ÆÁÊÌ:"
);
return
decode
(
"ç
Ò
ÁÆ ÆÁÊ̦×, Ñ˦ ×ËÌÀÞÁÀÔØ ÃÅÊ ÆÁÊÌ:"
);
}
}
virtual
QCString
trSince
()
virtual
QCString
trSince
()
/*??*/
/*??*/
...
@@ -1048,11 +1048,11 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -1048,11 +1048,11 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
"ðÏÚÎÁÞÅÎÎÑ, ÝÏ ×ÉËÏÒÉÓÔÏ×ÕÀÔØÓÑ Õ ÇÒÁÆÁÈ.<p>
\n
"
"ðÏÚÎÁÞÅÎÎÑ, ÝÏ ×ÉËÏÒÉÓÔÏ×ÕÀÔØÓÑ Õ ÇÒÁÆÁÈ.<p>
\n
"
"òÏÚÇÌÑÎÅÍÏ ÎÁÓÔÕÐÎÉÊ ÐÒÉËÌÁÄ:
\n
"
"òÏÚÇÌÑÎÅÍÏ ÎÁÓÔÕÐÎÉÊ ÐÒÉËÌÁÄ:
\n
"
"
\\
code
\n
"
"
\\
code
\n
"
"/*! îÅ
×É
ÄÉÍÙÊ ËÌÁÓÓ ÉÚ-ÚÁ ÕÓÅÞÅÎÉÑ */
\n
"
"/*! îÅ
×É
ÄÉÍÉÊ ËÌÁÓ ÞÅÒÅÚ ÚÒ¦ÚÁÎÎÑ */
\n
"
"class Invisible { };
\n\n
"
"class Invisible { };
\n\n
"
"/*! ïÂÍÅÖÅÎÉÊ ËÌÁÓ, צÄÎÏÛÅÎÎÑ ÕÓÐÁÄËÕ×ÁÎÎÑ ÐÒÉÈÏ×ÁÎÅ */
\n
"
"/*! ïÂÍÅÖÅÎÉÊ ËÌÁÓ, צÄÎÏÛÅÎÎÑ ÕÓÐÁÄËÕ×ÁÎÎÑ ÐÒÉÈÏ×ÁÎÅ */
\n
"
"class Truncated : public Invisible { };
\n\n
"
"class Truncated : public Invisible { };
\n\n
"
"/* îÅÄÏËÕÍÅÎÔÏ×ÁÎÉÊ ËÌÁÓÓ */
\n
"
"/* îÅÄÏËÕÍÅÎÔÏ×ÁÎÉÊ ËÌÁÓ */
\n
"
"class Undocumented { };
\n\n
"
"class Undocumented { };
\n\n
"
"/*! úÁÇÁÌØÎÏÄÏÓÔÕÐÎÅ ÕÓÐÁÄËÕ×ÁÎÎÑ */
\n
"
"/*! úÁÇÁÌØÎÏÄÏÓÔÕÐÎÅ ÕÓÐÁÄËÕ×ÁÎÎÑ */
\n
"
"class PublicBase : public Truncated { };
\n\n
"
"class PublicBase : public Truncated { };
\n\n
"
...
@@ -1089,7 +1089,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -1089,7 +1089,7 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
"óÔÒ¦ÌËÉ ÍÁÀÔØ ÎÁÓÔÕÐÎÉÊ ÚͦÓÔ:
\n
"
"óÔÒ¦ÌËÉ ÍÁÀÔØ ÎÁÓÔÕÐÎÉÊ ÚͦÓÔ:
\n
"
"<ul>
\n
"
"<ul>
\n
"
"<li>ôÅÍÎÏÓÉÎÑ ÓÔÒ¦ÌËÁ צÄÏÂÒÁÖÁ¤ צÄÎÏÛÅÎÎÑ ÚÁÇÁÌØÎÏÄÏÓÔÕÐÎÏÇÏ ÕÓÐÁÄËÕ×ÁÎÎÑ "
"<li>ôÅÍÎÏÓÉÎÑ ÓÔÒ¦ÌËÁ צÄÏÂÒÁÖÁ¤ צÄÎÏÛÅÎÎÑ ÚÁÇÁÌØÎÏÄÏÓÔÕÐÎÏÇÏ ÕÓÐÁÄËÕ×ÁÎÎÑ "
"Í¦Ø Ä×ÏÍÁ ËÌÁÓÁÍÉ.
\n
"
"Í¦Ö Ä×ÏÍÁ ËÌÁÓÁÍÉ.
\n
"
"<li>ôÅÍÎÏÚÅÌÅÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ ÐÒÉ ÚÁÈÉÝÅÎÏÍÕ ÕÓÐÁÄËÕ×ÁÎΦ.
\n
"
"<li>ôÅÍÎÏÚÅÌÅÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ ÐÒÉ ÚÁÈÉÝÅÎÏÍÕ ÕÓÐÁÄËÕ×ÁÎΦ.
\n
"
"<li>ôÅÍÎÏÞÅÒ×ÏÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ ÐÒÉ ÐÒÉ×ÁÔÎÏÍÕ ÕÓÐÁÄËÕ×ÁÎΦ.
\n
"
"<li>ôÅÍÎÏÞÅÒ×ÏÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ ÐÒÉ ÐÒÉ×ÁÔÎÏÍÕ ÕÓÐÁÄËÕ×ÁÎΦ.
\n
"
"<li>ðÕÒÐÕÒÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ, ÑËÝÏ ËÌÁÓ Í¦ÓÔÉÔØÓÑ ×"
"<li>ðÕÒÐÕÒÎÁ ÓÔÒ¦ÌËÁ ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ, ÑËÝÏ ËÌÁÓ Í¦ÓÔÉÔØÓÑ ×"
...
@@ -1338,6 +1338,249 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
...
@@ -1338,6 +1338,249 @@ class TranslatorUkrainian : public TranslatorAdapter_1_2_11
if
(
!
singular
)
result
+=
"É"
;
if
(
!
singular
)
result
+=
"É"
;
return
decode
(
result
);
return
decode
(
result
);
}
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.11
//////////////////////////////////////////////////////////////////////////
/*! This text is put before the list of members referenced by a member
*/
virtual
QCString
trReferences
()
{
return
"÷ÉËÏÒÉÓÔÏ×Õ¤"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.13
//////////////////////////////////////////////////////////////////////////
/*! used in member documentation blocks to produce a list of
* members that are implemented by this one.
*/
virtual
QCString
trImplementedFromList
(
int
numEntries
)
{
return
"òÅÁ̦ÚÕ¤ "
+
trWriteList
(
numEntries
)
+
"."
;
}
/*! used in member documentation blocks to produce a list of
* all members that implement this abstract member.
*/
virtual
QCString
trImplementedInList
(
int
numEntries
)
{
return
"òÅÁ̦ÚÕ¤ × "
+
trWriteList
(
numEntries
)
+
"."
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.16
//////////////////////////////////////////////////////////////////////////
/*! used in RTF documentation as a heading for the Table
* of Contents.
*/
virtual
QCString
trRTFTableOfContents
()
{
return
"úͦÓÔ"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.17
//////////////////////////////////////////////////////////////////////////
/*! Used as the header of the list of item that have been
* flagged deprecated
*/
virtual
QCString
trDeprecatedList
()
{
return
"úÁÓÔÁҦ̦ ÅÌÅÍÅÎÔÉ"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.2.18
//////////////////////////////////////////////////////////////////////////
/*! Used as a header for declaration section of the events found in
* a C# program
*/
virtual
QCString
trEvents
()
{
return
"ðÏĦ§"
;
}
/*! Header used for the documentation section of a class' events. */
virtual
QCString
trEventDocumentation
()
{
return
"äÏËÕÍÅÎÔÁÃ¦Ñ ÐÏĦÊ"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.3
//////////////////////////////////////////////////////////////////////////
/*! Used as a heading for a list of Java class types with package scope.
*/
virtual
QCString
trPackageTypes
()
{
return
"ôÉÐÉ ÐÁËÅÔ¦×"
;
}
/*! Used as a heading for a list of Java class functions with package
* scope.
*/
virtual
QCString
trPackageMembers
()
{
return
"æÕÎËæ§ ÐÁËÅÔ¦×"
;
}
/*! Used as a heading for a list of static Java class functions with
* package scope.
*/
virtual
QCString
trStaticPackageMembers
()
{
return
"óÔÁÔÉÞΦ ÆÕÎËæÀ ÐÁËÅÔ¦×"
;
}
/*! Used as a heading for a list of Java class variables with package
* scope.
*/
virtual
QCString
trPackageAttribs
()
{
return
"áÔÒÉÂÕÔÉ ÐÁËÅÔ¦×"
;
}
/*! Used as a heading for a list of static Java class variables with
* package scope.
*/
virtual
QCString
trStaticPackageAttribs
()
{
return
"óÔÁÔÉÞΦ ÁÔÒÉÂÕÔÉ ÐÁËÅÔ¦×"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.3.1
//////////////////////////////////////////////////////////////////////////
/*! Used in the quick index of a class/file/namespace member list page
* to link to the unfiltered list of all members.
*/
virtual
QCString
trAll
()
{
return
"÷Ó¦"
;
}
/*! Put in front of the call graph for a function. */
virtual
QCString
trCallGraph
()
{
return
"çÒÁÆ ×Ó¦È ×ÉËÌÉË¦× Ã¦¤§ ÆÕÎËæ§:"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.3.3
//////////////////////////////////////////////////////////////////////////
/*! When the search engine is enabled this text is put in the header
* of each page before the field where one can enter the text to search
* for.
*/
virtual
QCString
trSearchForIndex
()
{
return
"ûÕËÁÔÉ"
;
}
/*! This string is used as the title for the page listing the search
* results.
*/
virtual
QCString
trSearchResultsTitle
()
{
return
"òÅÚÕÌØÔÁÔÉ ÐÏÛÕËÕ"
;
}
/*! This string is put just before listing the search results. The
* text can be different depending on the number of documents found.
* Inside the text you can put the special marker $num to insert
* the number representing the actual number of search results.
* The @a numDocuments parameter can be either 0, 1 or 2, where the
* value 2 represents 2 or more matches. HTML markup is allowed inside
* the returned string.
*/
virtual
QCString
trSearchResults
(
int
numDocuments
)
{
if
(
numDocuments
==
0
)
{
return
"îÅ ÚÎÁÊÄÅÎÏ ÄÏËÕÍÅÎÔ¦× ×¦ÄÐÏצÄÎÏ ÄÏ ×ÁÛÏÇÏ ÚÁÐÉÔÕ."
;
}
else
if
(
numDocuments
==
1
)
{
return
"âÕÌÏ ÚÎÁÊÄÅÎÏ <b>1</b> ÄÏËÕÍÅÎÔ ×¦ÄÐÏצÄÎÏ ÄÏ ×ÁÛÏÇÏ ÚÁÐÉÔÕ."
;
}
else
{
return
"âÕÌÏ ÚÎÁÊÄÅÎÏ <b>$num</b> ÄÏËÕÍÅÎÔ¦× ×¦ÄÐÏצÄÎÏ ÄÏ ×ÁÛÏÇÏ ÚÁÐÉÔÕ. "
"îÁÊËÒÁݦ צÄÐÏצÄÎÏÓÔ¦ ÐÏËÁÚÁÎÏ ÓÐÏÞÁÔËÕ."
;
}
}
/*! This string is put before the list of matched words, for each search
* result. What follows is the list of words that matched the query.
*/
virtual
QCString
trSearchMatches
()
{
return
"÷¦ÄÐÏצÄΦÓÔØ:"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.3.8
//////////////////////////////////////////////////////////////////////////
/*! This is used in HTML as the title of page with source code for file filename
*/
virtual
QCString
trSourceFile
(
QCString
&
filename
)
{
return
"ôÅËÓÔ ÐÒÏÇÒÁÍÉ "
+
filename
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.3.9
//////////////////////////////////////////////////////////////////////////
/*! This is used as the name of the chapter containing the directory
* hierarchy.
*/
virtual
QCString
trDirIndex
()
{
return
"äÅÒÅ×Ï ËÁÔÁÌÏǦ×"
;
}
/*! This is used as the name of the chapter containing the documentation
* of the directories.
*/
virtual
QCString
trDirDocumentation
()
{
return
"äÏËÕÍÅÎÔÁÃ¦Ñ ËÁÔÁÌÏǦ×"
;
}
/*! This is used as the title of the directory index and also in the
* Quick links of a HTML page, to link to the directory hierarchy.
*/
virtual
QCString
trDirectories
()
{
return
"ëÁÔÁÌÏÇÉ"
;
}
/*! This returns a sentences that introduces the directory hierarchy.
* and the fact that it is sorted alphabetically per level
*/
virtual
QCString
trDirDescription
()
{
return
"äÅÒÅ×Ï ËÁÔÁÌÏÇ¦× ×ÐÏÒÑÄËÏ×ÁÎÏ ÎÁÂÌÉÖÅÎÏ "
"ÄÏ ÁÌÆÁצÔÕ:"
;
}
/*! This returns the title of a directory page. The name of the
* directory is passed via \a dirName.
*/
virtual
QCString
trDirReference
(
const
char
*
dirName
)
{
QCString
result
=
"äÏצÄÎÉË ËÁÔÁÌÏÇÕ "
;
result
+=
dirName
;
return
result
;
}
/*! This returns the word directory with or without starting capital
* (\a first_capital) and in sigular or plural form (\a singular).
*/
virtual
QCString
trDir
(
bool
,
bool
singular
)
{
QCString
result
(
"ëÁÔÁÌÏÇ"
);
if
(
!
singular
)
result
+=
"É"
;
return
result
;
}
};
};
#endif
#endif
src/xmlgen.cpp
View file @
11de530b
...
@@ -493,6 +493,7 @@ static void generateXMLForMember(MemberDef *md,QTextStream &ti,QTextStream &t,De
...
@@ -493,6 +493,7 @@ static void generateXMLForMember(MemberDef *md,QTextStream &ti,QTextStream &t,De
// - body code
// - body code
// + template arguments
// + template arguments
// (templateArguments(), definitionTemplateParameterLists())
// (templateArguments(), definitionTemplateParameterLists())
// - call graph
// enum values are written as part of the enum
// enum values are written as part of the enum
if
(
md
->
memberType
()
==
MemberDef
::
EnumValue
)
return
;
if
(
md
->
memberType
()
==
MemberDef
::
EnumValue
)
return
;
...
@@ -896,7 +897,7 @@ static void writeInnerClasses(const ClassSDict *cl,QTextStream &t)
...
@@ -896,7 +897,7 @@ static void writeInnerClasses(const ClassSDict *cl,QTextStream &t)
ClassDef
*
cd
;
ClassDef
*
cd
;
for
(
cli
.
toFirst
();(
cd
=
cli
.
current
());
++
cli
)
for
(
cli
.
toFirst
();(
cd
=
cli
.
current
());
++
cli
)
{
{
if
(
cd
->
name
().
find
(
'@'
)
!
=-
1
)
// skip anonymous scopes
if
(
cd
->
name
().
find
(
'@'
)
=
=-
1
)
// skip anonymous scopes
{
{
t
<<
" <innerclass refid=
\"
"
<<
cd
->
getOutputFileBase
()
t
<<
" <innerclass refid=
\"
"
<<
cd
->
getOutputFileBase
()
<<
"
\"
>"
<<
convertToXML
(
cd
->
name
())
<<
"</innerclass>"
<<
endl
;
<<
"
\"
>"
<<
convertToXML
(
cd
->
name
())
<<
"</innerclass>"
<<
endl
;
...
@@ -913,7 +914,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl,QTextStream &t)
...
@@ -913,7 +914,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl,QTextStream &t)
NamespaceDef
*
nd
;
NamespaceDef
*
nd
;
for
(
nli
.
toFirst
();(
nd
=
nli
.
current
());
++
nli
)
for
(
nli
.
toFirst
();(
nd
=
nli
.
current
());
++
nli
)
{
{
if
(
nd
->
name
().
find
(
'@'
)
!
=-
1
)
// skip anonymouse scopes
if
(
nd
->
name
().
find
(
'@'
)
=
=-
1
)
// skip anonymouse scopes
{
{
t
<<
" <innernamespace refid=
\"
"
<<
nd
->
getOutputFileBase
()
t
<<
" <innernamespace refid=
\"
"
<<
nd
->
getOutputFileBase
()
<<
"
\"
>"
<<
convertToXML
(
nd
->
name
())
<<
"</innernamespace>"
<<
endl
;
<<
"
\"
>"
<<
convertToXML
(
nd
->
name
())
<<
"</innernamespace>"
<<
endl
;
...
...
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