summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/commands.doc55
-rw-r--r--doc/docblocks.doc74
-rw-r--r--doc/language.doc58
-rw-r--r--doc/maintainers.txt2
-rw-r--r--doc/translator_report.txt261
5 files changed, 179 insertions, 271 deletions
diff --git a/doc/commands.doc b/doc/commands.doc
index 7bd90e2..d74452a 100644
--- a/doc/commands.doc
+++ b/doc/commands.doc
@@ -161,6 +161,7 @@ documentation:
\refitem cmdsince \\since
\refitem cmdskip \\skip
\refitem cmdskipline \\skipline
+\refitem cmdsnippet \\snippet
\refitem cmdstruct \\struct
\refitem cmdsubpage \\subpage
\refitem cmdsubsection \\subsection
@@ -1862,6 +1863,10 @@ Commands for displaying examples
for the corresponding HTML documentation that is generated by doxygen.
\endhtmlonly
+ Alternatively, the \ref cmdsnippet "\\snippet" command can be used to
+ include only a fragment of a source file. For this to work the
+ fragment has to be marked.
+
\sa sections \ref cmdline "\\line", \ref cmdskip "\\skip",
\ref cmdskipline "\\skipline", \ref cmduntil "\\until", and
\ref cmdinclude "\\include".
@@ -1894,6 +1899,10 @@ Commands for displaying examples
\ref cmdskipline "\\skipline",
and \\until commands.
+ Alternatively, the \ref cmdsnippet "\\snippet" command can be used to
+ include only a fragment of a source file. For this to work the
+ fragment has to be marked.
+
\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.
@@ -1962,6 +1971,52 @@ Commands for displaying examples
See section \ref cmddontinclude "\\dontinclude" for an example.
<hr>
+\section cmdsnippet \\snippet <file-name> ( block_id )
+
+ \addindex \\snippet
+ Where the \ref cmdinclude "\\include" command can be used to include
+ a complete file as source code, this command can be used to quote only
+ a fragment of a source file.
+
+ For example, the putting the following command in the documentation,
+ references a snippet in file \c example.cpp residing in a subdirectory
+ which should be pointed to by \ref cfg_example_path "EXAMPLE_PATH".
+
+\verbatim
+ \snippet snippets/example.cpp Adding a resource
+\endverbatim
+
+ The text following the file name is the unique identifier for the snippet.
+ This is used to delimit the quoted code in the relevant snippet file as
+ shown in the following example that corresponds to the above \\snippet
+ command:
+
+\code
+ QImage image(64, 64, QImage::Format_RGB32);
+ image.fill(qRgb(255, 160, 128));
+
+//! [Adding a resource]
+ document->addResource(QTextDocument::ImageResource,
+ QUrl("mydata://image.png"), QVariant(image));
+//! [Adding a resource]
+ ...
+\endcode
+
+ Note that the lines containing the block markers will not be included,
+ so the output will be:
+
+\code
+ document->addResource(QTextDocument::ImageResource,
+ QUrl("mydata://image.png"), QVariant(image));
+\endcode
+
+ Note also that the [block_id] markers should appear exactly twice in the
+ source file.
+
+ see section \ref cmddontinclude "\\dontinclude" for an alternative way
+ to include fragments of a source file that does not require markers.
+
+<hr>
\section cmduntil \\until ( pattern )
\addindex \\until
diff --git a/doc/docblocks.doc b/doc/docblocks.doc
index e28328c..ea51edd 100644
--- a/doc/docblocks.doc
+++ b/doc/docblocks.doc
@@ -20,9 +20,10 @@
A special documentation block is a C or C++ style comment block with some
additional markings, so doxygen knows it is a piece of documentation that
-needs to end up in the generated documentation. For Python, VHDL, and Fortran
-code there are different comment conventions, which can be found in sections
-\ref pythonblocks, \ref vhdlblocks, and \ref fortranblocks respectively.
+needs to end up in the generated documentation. For Python, VHDL, Fortran, and
+Tcl code there are different comment conventions, which can be found in sections
+\ref pythonblocks, \ref vhdlblocks, \ref fortranblocks, and \ref tclblocks
+respectively.
For each code item there are two (or in some cases three) types of descriptions,
which together form the documentation: a \e brief description and \e detailed
@@ -480,4 +481,71 @@ C> input parameter
end function A
\endverbatim
+\section tclblocks Documentation blocks in Tcl
+
+Doxygen documentation can be included in normal Tcl comments.
+
+To start a new documentation block start a line with \c ## (two hashes).
+All following comment lines and continuation lines will be added to this
+block. The block ends with a line not starting with a \c # (hash sign).
+
+A brief documentation can be added with \c ;#< (semicolon, hash and
+lower then sign). The brief documentation also ends at a line not starting
+with a \c # (hash sign).
+
+Inside doxygen comment blocks all normal doxygen markings are supported.
+The only expections are described in the following two paragraphs.
+
+If a doxygen comment block ends with a line containing only
+\c #\\code or \c #\@code all code until a line only containing \c #\\endcode
+or \c #\@endcode is added to the generated documentation as code block.
+
+If a doxygen comment block ends with a line containing only
+\c #\\verbatim or \c #\@verbatim all code until a line only containing
+\c #\\endverbatim or \c #\@endverbatim is added verbatim to the generated
+documentation.
+
+To detect namespaces, classes, functions and variables the following
+Tcl commands are recognized. Documentation blocks can be put on the lines
+before the command.
+
+<ul>
+<li><tt>namespace eval ..</tt> Namespace
+<li><tt>proc ..</tt> Function
+<li><tt>variable ..</tt> Variable
+<li><tt>common ..</tt> Common variable
+<li><tt>itcl::class ..</tt> Class
+<li><tt>itcl::body ..</tt> Class method body definition
+<li><tt>oo::class create ..</tt> Class
+<li><tt>oo::define ..</tt> OO Class definition
+<li><tt>method ..</tt> Class method definitions
+<li><tt>constructor ..</tt> Class constructor
+<li><tt>destructor ..</tt> Class destructor
+<li><tt>public ..</tt> Set protection level
+<li><tt>protected ..</tt> Set protection level
+<li><tt>private ..</tt> Set protection level
+</ul>
+
+<!--
+To use your own keywords you an map these keyword to the recognized commands
+using the \ref cfg_tcl_subs "TCL_SUBST" entry in the config file.
+The entry contain a list of word-keyword mappings. To use the itcl::*
+commands without the leading namespace use p.e.:
+
+\verbatim TCL_SUBST = class itcl:class body itcl:body \endverbatim
+-->
+
+Following is a example using doxygen style comments:
+
+\include tclexample.tcl
+ \htmlonly
+ Click <a href="$(DOXYGEN_DOCDIR)/examples/tclexample/html/index.html">here</a>
+ for the corresponding HTML documentation that is generated by doxygen.
+ \endhtmlonly
+
+\htmlonly
+Go to the <a href="lists.html">next</a> section or return to the
+ <a href="index.html">index</a>.
+\endhtmlonly
+
*/
diff --git a/doc/language.doc b/doc/language.doc
index 17d38f6..9959cd1 100644
--- a/doc/language.doc
+++ b/doc/language.doc
@@ -68,55 +68,55 @@ when the translator was updated.
<td>Armenian</td>
<td>Armen Tangamyan</td>
<td>armen dot tangamyan at anu dot edu dot au</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Brazilian Portuguese</td>
<td>Fabio "FJTC" Jun Takada Chino</td>
<td>jun-chino at uol dot com dot br</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Catalan</td>
<td>Maximiliano Pin<br/>Albert Mora</td>
<td>max dot pin at bitroit dot com<br/><span style="color: brown">[unreachable]</span></td>
- <td>1.6.3</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Chinese</td>
- <td>Lang Yang<br/>Li Daobing<br/>Wei Liu</td>
+ <td>Lian Yang<br/>Li Daobing<br/>Wei Liu</td>
<td>lian dot yang dot cn at gmail dot com<br/>lidaobing at gmail dot com<br/>liuwei at asiainfo dot com</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Chinese Traditional</td>
<td>Daniel YC Lin<br/>Gary Lee</td>
<td>dlin dot tw at gmail dot com<br/>garywlee at gmail dot com</td>
- <td>1.6.0</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Croatian</td>
<td>Boris Bralo</td>
<td>boris dot bralo at gmail dot com</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Czech</td>
<td>Petr Přikryl</td>
<td>prikrylp at skil dot cz</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Danish</td>
<td>Poul-Erik Hansen<br/>Erik Søe Sørensen</td>
<td>pouhan at gnotometrics dot dk<br/>eriksoe+doxygen at daimi dot au dot dk</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Dutch</td>
<td>Dimitri van Heesch</td>
<td>dimitri at stack dot nl</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>English</td>
@@ -146,13 +146,13 @@ when the translator was updated.
<td>German</td>
<td>Peter Grotrian<br/>Jens Seidel</td>
<td>Peter dot Grotrian at pdv-FS dot de<br/>jensseidel at users dot sf dot net</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Greek</td>
<td>Paul Gessos</td>
<td>gessos dot paul at yahoo dot gr</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Hungarian</td>
@@ -188,7 +188,7 @@ when the translator was updated.
<td>Korean</td>
<td>Kim Taedong<br/>SooYoung Jung<br/>Richard Kim</td>
<td>fly1004 at gmail dot com<br/>jung5000 at gmail dot com<br/><span style="color: brown">[unreachable]</span></td>
- <td>1.7.05</td>
+ <td>1.7.5</td>
</tr>
<tr bgcolor="#ffffff">
<td>KoreanEn</td>
@@ -230,7 +230,7 @@ when the translator was updated.
<td>Portuguese</td>
<td>Rui Godinho Lopes<br/><span style="color: red; background-color: yellow">-- searching for the maintainer --</span></td>
<td><span style="color: brown">[resigned]</span><br/><span style="color: brown">[Please, try to help to find someone.]</span></td>
- <td>1.3.3</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Romanian</td>
@@ -260,7 +260,7 @@ when the translator was updated.
<td>Slovak</td>
<td>Kali+Laco Švec<br/>Petr Přikryl</td>
<td>the Slovak language advisors<br/>prikrylp at skil dot cz</td>
- <td>1.7.5</td>
+ <td>up-to-date</td>
</tr>
<tr bgcolor="#ffffff">
<td>Slovene</td>
@@ -319,28 +319,28 @@ when the translator was updated.
Arabic & Moaz Reyad & {\tt\tiny [resigned] moazreyad at yahoo dot com} & 1.4.6 \\
~ & -- searching for the maintainer -- & {\tt\tiny [Please, try to help to find someone.]} & ~ \\
\hline
- Armenian & Armen Tangamyan & {\tt\tiny armen dot tangamyan at anu dot edu dot au} & 1.7.5 \\
+ Armenian & Armen Tangamyan & {\tt\tiny armen dot tangamyan at anu dot edu dot au} & up-to-date \\
\hline
- Brazilian Portuguese & Fabio "FJTC" Jun Takada Chino & {\tt\tiny jun-chino at uol dot com dot br} & 1.7.5 \\
+ Brazilian Portuguese & Fabio "FJTC" Jun Takada Chino & {\tt\tiny jun-chino at uol dot com dot br} & up-to-date \\
\hline
- Catalan & Maximiliano Pin & {\tt\tiny max dot pin at bitroit dot com} & 1.6.3 \\
+ Catalan & Maximiliano Pin & {\tt\tiny max dot pin at bitroit dot com} & up-to-date \\
~ & Albert Mora & {\tt\tiny [unreachable] amora at iua dot upf dot es} & ~ \\
\hline
- Chinese & Lang Yang & {\tt\tiny lian dot yang dot cn at gmail dot com} & 1.7.5 \\
+ Chinese & Lian Yang & {\tt\tiny lian dot yang dot cn at gmail dot com} & up-to-date \\
~ & Li Daobing & {\tt\tiny lidaobing at gmail dot com} & ~ \\
~ & Wei Liu & {\tt\tiny liuwei at asiainfo dot com} & ~ \\
\hline
- Chinese Traditional & Daniel YC Lin & {\tt\tiny dlin dot tw at gmail dot com} & 1.6.0 \\
+ Chinese Traditional & Daniel YC Lin & {\tt\tiny dlin dot tw at gmail dot com} & up-to-date \\
~ & Gary Lee & {\tt\tiny garywlee at gmail dot com} & ~ \\
\hline
- Croatian & Boris Bralo & {\tt\tiny boris dot bralo at gmail dot com} & 1.7.5 \\
+ Croatian & Boris Bralo & {\tt\tiny boris dot bralo at gmail dot com} & up-to-date \\
\hline
- Czech & Petr Přikryl & {\tt\tiny prikrylp at skil dot cz} & 1.7.5 \\
+ Czech & Petr Přikryl & {\tt\tiny prikrylp at skil dot cz} & up-to-date \\
\hline
- Danish & Poul-Erik Hansen & {\tt\tiny pouhan at gnotometrics dot dk} & 1.7.5 \\
+ Danish & Poul-Erik Hansen & {\tt\tiny pouhan at gnotometrics dot dk} & up-to-date \\
~ & Erik Søe Sørensen & {\tt\tiny eriksoe+doxygen at daimi dot au dot dk} & ~ \\
\hline
- Dutch & Dimitri van Heesch & {\tt\tiny dimitri at stack dot nl} & 1.7.5 \\
+ Dutch & Dimitri van Heesch & {\tt\tiny dimitri at stack dot nl} & up-to-date \\
\hline
English & Dimitri van Heesch & {\tt\tiny dimitri at stack dot nl} & up-to-date \\
\hline
@@ -350,10 +350,10 @@ when the translator was updated.
\hline
French & Xavier Outhier & {\tt\tiny xouthier at yahoo dot fr} & 1.6.3 \\
\hline
- German & Peter Grotrian & {\tt\tiny Peter dot Grotrian at pdv-FS dot de} & 1.7.5 \\
+ German & Peter Grotrian & {\tt\tiny Peter dot Grotrian at pdv-FS dot de} & up-to-date \\
~ & Jens Seidel & {\tt\tiny jensseidel at users dot sf dot net} & ~ \\
\hline
- Greek & Paul Gessos & {\tt\tiny gessos dot paul at yahoo dot gr} & 1.7.5 \\
+ Greek & Paul Gessos & {\tt\tiny gessos dot paul at yahoo dot gr} & up-to-date \\
\hline
Hungarian & Ákos Kiss & {\tt\tiny akiss at users dot sourceforge dot net} & 1.4.6 \\
~ & Földvári György & {\tt\tiny [unreachable] foldvari lost at cyberspace} & ~ \\
@@ -370,7 +370,7 @@ when the translator was updated.
\hline
JapaneseEn & see the Japanese language & {\tt\tiny ~} & English based \\
\hline
- Korean & Kim Taedong & {\tt\tiny fly1004 at gmail dot com} & 1.7.05 \\
+ Korean & Kim Taedong & {\tt\tiny fly1004 at gmail dot com} & 1.7.5 \\
~ & SooYoung Jung & {\tt\tiny jung5000 at gmail dot com} & ~ \\
~ & Richard Kim & {\tt\tiny [unreachable] ryk at dspwiz dot com} & ~ \\
\hline
@@ -391,7 +391,7 @@ when the translator was updated.
~ & Grzegorz Kowal & {\tt\tiny [unreachable] g\_kowal at poczta dot onet dot pl} & ~ \\
~ & Krzysztof Kral & {\tt\tiny krzysztof dot kral at gmail dot com} & ~ \\
\hline
- Portuguese & Rui Godinho Lopes & {\tt\tiny [resigned] rgl at ruilopes dot com} & 1.3.3 \\
+ Portuguese & Rui Godinho Lopes & {\tt\tiny [resigned] rgl at ruilopes dot com} & up-to-date \\
~ & -- searching for the maintainer -- & {\tt\tiny [Please, try to help to find someone.]} & ~ \\
\hline
Romanian & Ionut Dumitrascu & {\tt\tiny reddumy at yahoo dot com} & 1.6.0 \\
@@ -403,7 +403,7 @@ when the translator was updated.
\hline
SerbianCyrilic & Nedeljko Stefanovic & {\tt\tiny stenedjo at yahoo dot com} & 1.6.0 \\
\hline
- Slovak & Kali+Laco Švec & {\tt\tiny the Slovak language advisors} & 1.7.5 \\
+ Slovak & Kali+Laco Švec & {\tt\tiny the Slovak language advisors} & up-to-date \\
~ & Petr Přikryl & {\tt\tiny prikrylp at skil dot cz} & ~ \\
\hline
Slovene & Matjaž Ostroveršnik & {\tt\tiny matjaz dot ostroversnik at ostri dot org} & 1.4.6 \\
diff --git a/doc/maintainers.txt b/doc/maintainers.txt
index dc4c21a..95310f5 100644
--- a/doc/maintainers.txt
+++ b/doc/maintainers.txt
@@ -33,7 +33,7 @@ Maximiliano Pin: max dot pin at bitroit dot com
Albert Mora: [unreachable] amora at iua dot upf dot es
TranslatorChinese
-Lang Yang: lian dot yang dot cn at gmail dot com
+Lian Yang: lian dot yang dot cn at gmail dot com
Li Daobing: lidaobing at gmail dot com
Wei Liu: liuwei at asiainfo dot com
diff --git a/doc/translator_report.txt b/doc/translator_report.txt
index 9cb017e..84e1ea0 100644
--- a/doc/translator_report.txt
+++ b/doc/translator_report.txt
@@ -10,7 +10,7 @@ Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Serbian,
SerbianCyrilic, Slovak, Slovene, Spanish, Swedish, Turkish, Ukrainian,
and Vietnamese.
-Of them, 1 translators are up-to-date, 38 translators are based on
+Of them, 14 translators are up-to-date, 25 translators are based on
some adapter class, and 2 are English based.
----------------------------------------------------------------------
@@ -19,7 +19,20 @@ alphabetically). This means that they derive from the Translator class
and they implement all 228 of the required methods. Anyway, there
still may be some details listed even for them:
+ TranslatorArmenian -- Change the base class to Translator.
+ TranslatorBrazilian
+ TranslatorCatalan
+ TranslatorChinesetraditional -- Reimplementation using UTF-8 suggested.
+ TranslatorChinese
+ TranslatorCroatian
+ TranslatorCzech
+ TranslatorDanish -- Reimplementation using UTF-8 suggested.
+ TranslatorDutch
TranslatorEnglish
+ TranslatorGerman
+ TranslatorGreek
+ TranslatorPortuguese
+ TranslatorSlovak
----------------------------------------------------------------------
The following translator classes need some maintenance (the most
@@ -29,34 +42,19 @@ must be implemented to become up-to-date:
TranslatorTurkish 1.7.5 3 methods to implement (1 %)
TranslatorSpanish 1.7.5 3 methods to implement (1 %)
- TranslatorSlovak 1.7.5 3 methods to implement (1 %)
TranslatorRussian 1.7.5 3 methods to implement (1 %)
Note: Reimplementation using UTF-8 suggested.
TranslatorPersian 1.7.5 3 methods to implement (1 %)
- TranslatorKorean 1.7.05 3 methods to implement (1 %)
- Note: Change the base class to TranslatorAdapter_1_7_5.
+ TranslatorKorean 1.7.5 3 methods to implement (1 %)
+ Note: Reimplementation using UTF-8 suggested.
TranslatorItalian 1.7.5 3 methods to implement (1 %)
- TranslatorGreek 1.7.5 3 methods to implement (1 %)
- TranslatorGerman 1.7.5 3 methods to implement (1 %)
TranslatorEsperanto 1.7.5 3 methods to implement (1 %)
- TranslatorDutch 1.7.5 3 methods to implement (1 %)
- TranslatorDanish 1.7.5 3 methods to implement (1 %)
- Note: Reimplementation using UTF-8 suggested.
-
- TranslatorCzech 1.7.5 3 methods to implement (1 %)
- TranslatorCroatian 1.7.5 3 methods to implement (1 %)
- TranslatorChinese 1.7.5 3 methods to implement (1 %)
- Note: Reimplementation using UTF-8 suggested.
-
- TranslatorBrazilian 1.7.5 3 methods to implement (1 %)
- TranslatorArmenian 1.7.5 3 methods to implement (1 %)
TranslatorPolish 1.6.3 7 methods to implement (3 %)
TranslatorFrench 1.6.3 6 methods to implement (2 %)
Note: Reimplementation using UTF-8 suggested.
- TranslatorCatalan 1.6.3 7 methods to implement (3 %)
TranslatorVietnamese 1.6.0 12 methods to implement (5 %)
TranslatorSwedish 1.6.0 12 methods to implement (5 %)
Note: Reimplementation using UTF-8 suggested.
@@ -73,9 +71,6 @@ must be implemented to become up-to-date:
Note: Reimplementation using UTF-8 suggested.
TranslatorFinnish 1.6.0 12 methods to implement (5 %)
- TranslatorChinesetraditional 1.6.0 12 methods to implement (5 %)
- Note: Reimplementation using UTF-8 suggested.
-
TranslatorAfrikaans 1.6.0 12 methods to implement (5 %)
Note: Reimplementation using UTF-8 suggested.
@@ -100,9 +95,6 @@ must be implemented to become up-to-date:
TranslatorUkrainian 1.4.1 36 methods to implement (15 %)
Note: Reimplementation using UTF-8 suggested.
- TranslatorPortuguese 1.3.3 47 methods to implement (20 %)
- Note: Reimplementation using UTF-8 suggested.
-
----------------------------------------------------------------------
The following translator classes derive directly from the
@@ -210,125 +202,22 @@ TranslatorArabic (TranslatorAdapter_1_4_6) 35 methods to implement (15 %)
virtual QCString trNoDescriptionAvailable()
-TranslatorArmenian (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
+TranslatorArmenian (TranslatorAdapter_1_7_5)
------------------
- Implements 225 of the required methods (98 %).
+ Implements 228 of the required methods (100 %).
- Missing methods (should be implemented):
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorBrazilian (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
--------------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorCatalan (TranslatorAdapter_1_6_3) 7 methods to implement (3 %)
------------------
-
- Implements 221 of the required methods (96 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
- virtual QCString trFileIn(const char * name)
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trDirDependency(const char * name)
- virtual QCString trCopyright()
- virtual QCString trIncludesFileIn(const char * name)
-
-
-TranslatorChinese (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
------------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorChinesetraditional (TranslatorAdapter_1_6_0) 12 methods to implement (5 %)
+TranslatorChinesetraditional (Translator)
----------------------------
- Implements 216 of the required methods (94 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trSearching()
- virtual QCString trNoMatches()
- virtual QCString trLoading()
- virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
- virtual QCString trFileIn(const char * name)
- virtual QCString trGlobalNamespace()
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trDirRelation(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trDirDependency(const char * name)
- virtual QCString trCopyright()
- virtual QCString trIncludesFileIn(const char * name)
-
-
-TranslatorCroatian (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
-------------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorCzech (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
----------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
+ Implements 228 of the required methods (100 %).
-TranslatorDanish (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
+TranslatorDanish (Translator)
----------------
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorDutch (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
----------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
+ Implements 228 of the required methods (100 %).
TranslatorEsperanto (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
@@ -379,30 +268,6 @@ TranslatorFrench (TranslatorAdapter_1_6_3) 6 methods to implement (2 %)
virtual QCString trIncludesFileIn(const char * name)
-TranslatorGerman (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
-----------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
-TranslatorGreek (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
----------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
TranslatorHungarian (TranslatorAdapter_1_4_6) 36 methods to implement (15 %)
-------------------
@@ -563,7 +428,7 @@ TranslatorJapaneseEn (TranslatorEnglish) 223 methods to implement (97 %)
virtual QCString latexLanguageSupportCommand()
-TranslatorKorean (TranslatorAdapter_1_6_3) 3 methods to implement (1 %)
+TranslatorKorean (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
----------------
Implements 225 of the required methods (98 %).
@@ -751,74 +616,6 @@ TranslatorPolish (TranslatorAdapter_1_6_3) 7 methods to implement (3 %)
QCString trNoDescriptionAvailable()
-TranslatorPortuguese (TranslatorAdapter_1_3_3) 47 methods to implement (20 %)
---------------------
-
- Implements 181 of the required methods (79 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
- virtual QCString trSearching()
- virtual QCString trOverloadText()
- virtual QCString trDirIndex()
- virtual QCString trNoMatches()
- virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
- virtual QCString trLoading()
- virtual QCString trSubprograms()
- virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
- virtual QCString trModulesListDescription(bool extractAll)
- virtual QCString trModulesList()
- virtual QCString trDirDocumentation()
- virtual QCString trSearchResultsTitle()
- virtual QCString trDirectories()
- virtual QCString trTypeConstraints()
- virtual QCString trFileIn(const char * name)
- virtual QCString trGlobalNamespace()
- virtual QCString trMemberFunctionDocumentationFortran()
- virtual QCString trDirDescription()
- virtual QCString trCompoundListDescriptionFortran()
- virtual QCString trTypeDocumentation()
- virtual QCString trModuleReference(const char * namespaceName)
- virtual QCString trModulesMemberDescription(bool extractAll)
- virtual QCString trModulesMembers()
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trModulesIndex()
- virtual QCString trDirRelation(const char * name)
- virtual QCString trCompoundListFortran()
- virtual QCString trDataTypes()
- virtual QCString trCiteReferences()
- virtual QCString trSearchResults(int numDocuments)
- virtual QCString trDirDependency(const char * name)
- virtual QCString trCopyright()
- virtual QCString trIncludesFileIn(const char * name)
- virtual QCString trSearchMatches()
- virtual QCString trCompoundIndexFortran()
- virtual QCString trSubprogram(bool first_capital, bool singular)
- virtual QCString trCallerGraph()
- virtual QCString trCompoundReferenceFortran(const char * clName, ClassDef::CompoundType compType, bool isTemplate)
- virtual QCString trType(bool first_capital, bool singular)
- virtual QCString trModule(bool first_capital, bool singular)
- virtual QCString trCompoundMembersFortran()
- virtual QCString trSourceFile(QCString & filename)
- virtual QCString trDirReference(const char * dirName)
- virtual QCString trDir(bool first_capital, bool singular)
- virtual QCString trSearchForIndex()
- virtual QCString trSubprogramDocumentation()
-
- 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 trNoDescriptionAvailable()
-
-
TranslatorRomanian (TranslatorAdapter_1_6_0) 12 methods to implement (5 %)
------------------
@@ -894,18 +691,6 @@ TranslatorSerbianCyrilic (TranslatorAdapter_1_6_0) 12 methods to implement (5
virtual QCString trIncludesFileIn(const char * name)
-TranslatorSlovak (TranslatorAdapter_1_7_5) 3 methods to implement (1 %)
-----------------
-
- Implements 225 of the required methods (98 %).
-
- Missing methods (should be implemented):
-
- virtual QCString trDirDepGraph(const char * name)
- virtual QCString trCiteReferences()
- virtual QCString trCopyright()
-
-
TranslatorSlovene (TranslatorAdapter_1_4_6) 36 methods to implement (15 %)
-----------------