Commit 8fd13827 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Release-1.2.5-20010226

parent ba755dd4
DOXYGEN Version 1.2.5-20010225 DOXYGEN Version 1.2.5-20010226
Please read the installation section of the manual for instructions. Please read the installation section of the manual for instructions.
-------- --------
Dimitri van Heesch (25 February 2001) Dimitri van Heesch (26 February 2001)
DOXYGEN Version 1.2.5-20010225 DOXYGEN Version 1.2.5-20010226
Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions.
...@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at ...@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at
Enjoy, Enjoy,
Dimitri van Heesch (25 February 2001) Dimitri van Heesch (26 February 2001)
1.2.5-20010225 1.2.5-20010226
...@@ -976,7 +976,7 @@ void checkConfig() ...@@ -976,7 +976,7 @@ void checkConfig()
} }
#undef PUTENV #undef PUTENV
#if defined(_WIN32) #if defined(_WIN32) && !defined(__GNUC__)
#define PUTENV _putenv #define PUTENV _putenv
#else #else
#define PUTENV putenv #define PUTENV putenv
......
Name: doxygen Name: doxygen
Version: 1.2.5-20010225 Version: 1.2.5-20010226
Summary: documentation system for C, C++ and IDL Summary: documentation system for C, C++ and IDL
Release: 1 Release: 1
Source0: doxygen-%{version}.src.tar.gz Source0: doxygen-%{version}.src.tar.gz
......
/* This file was generated by configgen on Sun Feb 25 14:30:18 2001 /* This file was generated by configgen on Mon Feb 26 19:52:21 2001
* from config_templ.l * from config_templ.l
* *
* DO NOT EDIT! * DO NOT EDIT!
...@@ -3039,7 +3039,7 @@ void checkConfig() ...@@ -3039,7 +3039,7 @@ void checkConfig()
} }
#undef PUTENV #undef PUTENV
#if defined(_WIN32) #if defined(_WIN32) && !defined(__GNUC__)
#define PUTENV _putenv #define PUTENV _putenv
#else #else
#define PUTENV putenv #define PUTENV putenv
......
...@@ -2211,19 +2211,20 @@ void writeGroupTreeNode(OutputList &ol, GroupDef *gd) ...@@ -2211,19 +2211,20 @@ void writeGroupTreeNode(OutputList &ol, GroupDef *gd)
// write members // write members
struct MemInfo struct MemInfo
{ {
MemInfo(MemberList *l,const QCString &n) { list=l; name=n; }
MemberList *list; MemberList *list;
QCString name; QCString name;
}; };
MemInfo memberLists[] = MemInfo memberLists[] =
{ {
{ &gd->defineMembers, theTranslator->trDefines() }, MemInfo(&gd->defineMembers, theTranslator->trDefines()),
{ &gd->typedefMembers, theTranslator->trTypedefs() }, MemInfo(&gd->typedefMembers, theTranslator->trTypedefs()),
{ &gd->enumMembers, theTranslator->trEnumerations() }, MemInfo(&gd->enumMembers, theTranslator->trEnumerations()),
{ &gd->enumValMembers, theTranslator->trEnumerationValues() }, MemInfo(&gd->enumValMembers, theTranslator->trEnumerationValues()),
{ &gd->funcMembers, theTranslator->trFunctions() }, MemInfo(&gd->funcMembers, theTranslator->trFunctions()),
{ &gd->varMembers, theTranslator->trVariables() }, MemInfo(&gd->varMembers, theTranslator->trVariables()),
{ &gd->protoMembers, theTranslator->trFuncProtos() }, MemInfo(&gd->protoMembers, theTranslator->trFuncProtos()),
{ 0,0 } MemInfo(0,0)
}; };
MemberList *members; MemberList *members;
......
...@@ -866,9 +866,9 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol, ...@@ -866,9 +866,9 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol,
QCString scopeName = scName; QCString scopeName = scName;
if (container->definitionType()==TypeGroup) if (container->definitionType()==TypeGroup)
{ {
if (getClassDef()) scopeName=getClassDef()->name(); if (getClassDef()) scopeName=getClassDef()->name();
else if (getNamespaceDef()) scopeName=getClassDef()->name(); else if (getNamespaceDef()) scopeName=getNamespaceDef()->name();
else if (getFileDef()) scopeName=getClassDef()->name(); else if (getFileDef()) scopeName=getFileDef()->name();
} }
bool hasDocs = detailsAreVisible(); bool hasDocs = detailsAreVisible();
......
...@@ -1195,7 +1195,14 @@ class Translator ...@@ -1195,7 +1195,14 @@ class Translator
/*! Used for Java classes in the summary section of Java packages */ /*! Used for Java classes in the summary section of Java packages */
virtual QCString trClasses() virtual QCString trClasses()
{ {
return "Classes"; if (Config::optimizeForCFlag)
{
return "Data Structures";
}
else
{
return "Classes";
}
} }
/*! Used as the title of a Java package */ /*! Used as the title of a Java package */
virtual QCString trPackage(const char *name) virtual QCString trPackage(const char *name)
......
...@@ -85,6 +85,14 @@ ...@@ -85,6 +85,14 @@
// I tried my best to guess the Czech terminology for the Java. // I tried my best to guess the Czech terminology for the Java.
// Let me know if some wording should be changed/improved. // Let me know if some wording should be changed/improved.
// //
// 2001/02/15 (Petr Prikryl)
// - trMore() now returns only "..." (ellipsis). The Czech replacement
// of "(more)" was too much visible. The previous "(...)" did not
// look well.
//
// 2001/02/26 (Petr Prikryl)
// - Update for "new since 1.2.5" version (trBug(), trBugList()).
//
// Notices: // Notices:
// -------- // --------
// The conditional compilation ensures or the neutral functionality // The conditional compilation ensures or the neutral functionality
...@@ -166,7 +174,7 @@ class TranslatorCzech : public Translator ...@@ -166,7 +174,7 @@ class TranslatorCzech : public Translator
/*! this is the text of a link put after brief descriptions. */ /*! this is the text of a link put after brief descriptions. */
virtual QCString trMore() virtual QCString trMore()
{ return Decode("(...)"); } { return Decode("..."); }
/*! put in the class documentation */ /*! put in the class documentation */
virtual QCString trListOfAllMembers() virtual QCString trListOfAllMembers()
...@@ -1182,6 +1190,22 @@ class TranslatorCzech : public Translator ...@@ -1182,6 +1190,22 @@ class TranslatorCzech : public Translator
{ {
return Decode("Hodnota:"); return Decode("Hodnota:");
} }
//////////////////////////////////////////////////////////////////////////
// new since 1.2.5
//////////////////////////////////////////////////////////////////////////
/*! Used as a marker that is put before a \bug item */
virtual QCString trBug()
{
return Decode("Chyba");
}
/*! Used as the header of the bug list */
virtual QCString trBugList()
{
return Decode("Seznam chyb");
}
}; };
#endif // TRANSLATOR_CZ_H #endif // TRANSLATOR_CZ_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment