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
3e9b5fe7
Commit
3e9b5fe7
authored
Aug 20, 2009
by
dimitri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release-1.6.0
parent
9e6be9a8
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
230 additions
and
126 deletions
+230
-126
INSTALL
INSTALL
+2
-2
README
README
+2
-2
configure
configure
+3
-3
example.tag
examples/example.tag
+1
-1
classdef.cpp
src/classdef.cpp
+4
-2
doxygen.cpp
src/doxygen.cpp
+66
-71
reflist.cpp
src/reflist.cpp
+63
-7
reflist.h
src/reflist.h
+27
-3
search.css
src/search.css
+2
-12
search_css.h
src/search_css.h
+2
-12
translator_kr.h
src/translator_kr.h
+35
-1
util.cpp
src/util.cpp
+22
-9
vhdlcode.l
src/vhdlcode.l
+1
-1
No files found.
INSTALL
View file @
3e9b5fe7
DOXYGEN Version 1.
5.9-20090814
DOXYGEN Version 1.
6.0
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 (
14
August 2009)
Dimitri van Heesch (
20
August 2009)
README
View file @
3e9b5fe7
DOXYGEN Version 1.
5.9_20090814
DOXYGEN Version 1.
6.0
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) (
14
August 2009)
Dimitri van Heesch (dimitri@stack.nl) (
20
August 2009)
configure
View file @
3e9b5fe7
...
@@ -16,11 +16,11 @@
...
@@ -16,11 +16,11 @@
# shell script to configure doxygen
# shell script to configure doxygen
doxygen_version_major
=
1
doxygen_version_major
=
1
doxygen_version_minor
=
5
doxygen_version_minor
=
6
doxygen_version_revision
=
9
doxygen_version_revision
=
0
#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
doxygen_version_mmn
=
20090814
doxygen_version_mmn
=
NO
bin_dirs
=
`
echo
$PATH
|
sed
-e
"s/:/ /g"
`
bin_dirs
=
`
echo
$PATH
|
sed
-e
"s/:/ /g"
`
...
...
examples/example.tag
View file @
3e9b5fe7
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<type>
void
</type>
<type>
void
</type>
<name>
example
</name>
<name>
example
</name>
<anchorfile>
class_test.html
</anchorfile>
<anchorfile>
class_test.html
</anchorfile>
<anchor>
47b775f65718978f1ffcd96376f8ecfa
</anchor>
<anchor>
a
47b775f65718978f1ffcd96376f8ecfa
</anchor>
<arglist>
()
</arglist>
<arglist>
()
</arglist>
</member>
</member>
</compound>
</compound>
...
...
src/classdef.cpp
View file @
3e9b5fe7
...
@@ -3089,8 +3089,10 @@ void ClassDef::addListReferences()
...
@@ -3089,8 +3089,10 @@ void ClassDef::addListReferences()
{
{
LockingPtr
<
QList
<
ListItemInfo
>
>
xrefItems
=
xrefListItems
();
LockingPtr
<
QList
<
ListItemInfo
>
>
xrefItems
=
xrefListItems
();
addRefItem
(
xrefItems
.
pointer
(),
addRefItem
(
xrefItems
.
pointer
(),
fortranOpt
?
theTranslator
->
trType
(
TRUE
,
TRUE
)
:
theTranslator
->
trClass
(
TRUE
,
TRUE
),
fortranOpt
?
theTranslator
->
trType
(
TRUE
,
TRUE
)
:
getOutputFileBase
(),
displayName
()
theTranslator
->
trClass
(
TRUE
,
TRUE
),
getOutputFileBase
(),
displayName
()
);
);
}
}
if
(
m_impl
->
memberGroupSDict
)
if
(
m_impl
->
memberGroupSDict
)
...
...
src/doxygen.cpp
View file @
3e9b5fe7
This diff is collapsed.
Click to expand it.
src/reflist.cpp
View file @
3e9b5fe7
...
@@ -16,7 +16,9 @@
...
@@ -16,7 +16,9 @@
*
*
*/
*/
#include <stdio.h>
#include "reflist.h"
#include "reflist.h"
#include "util.h"
/*! Create a list of items that are cross referenced with documentation blocks
/*! Create a list of items that are cross referenced with documentation blocks
* @param listName String representing the name of the list.
* @param listName String representing the name of the list.
...
@@ -27,7 +29,8 @@ RefList::RefList(const char *listName,
...
@@ -27,7 +29,8 @@ RefList::RefList(const char *listName,
const
char
*
pageTitle
,
const
char
*
pageTitle
,
const
char
*
secTitle
const
char
*
secTitle
)
)
{
{
m_itemList
=
0
;
m_dict
=
0
;
m_dict
=
0
;
m_dictIterator
=
0
;
m_dictIterator
=
0
;
m_id
=
0
;
m_id
=
0
;
...
@@ -37,10 +40,10 @@ RefList::RefList(const char *listName,
...
@@ -37,10 +40,10 @@ RefList::RefList(const char *listName,
}
}
/*! Destroy the todo list. Currently not called! */
/*! Destroy the todo list. Currently not called! */
RefList
::~
RefList
()
RefList
::~
RefList
()
{
{
delete
m_dictIterator
;
delete
m_dictIterator
;
delete
m_dict
;
delete
m_dict
;
}
}
/*! Adds a new item to the list.
/*! Adds a new item to the list.
...
@@ -50,7 +53,7 @@ int RefList::addRefItem()
...
@@ -50,7 +53,7 @@ int RefList::addRefItem()
{
{
if
(
m_dict
==
0
)
if
(
m_dict
==
0
)
{
{
m_dict
=
new
QIntDict
<
RefItem
>
(
1009
);
m_dict
=
new
QIntDict
<
RefItem
>
(
1009
);
m_dict
->
setAutoDelete
(
TRUE
);
m_dict
->
setAutoDelete
(
TRUE
);
m_dictIterator
=
new
QIntDictIterator
<
RefItem
>
(
*
m_dict
);
m_dictIterator
=
new
QIntDictIterator
<
RefItem
>
(
*
m_dict
);
}
}
...
@@ -69,7 +72,7 @@ RefItem *RefList::getRefItem(int itemId)
...
@@ -69,7 +72,7 @@ RefItem *RefList::getRefItem(int itemId)
return
m_dict
?
m_dict
->
find
(
itemId
)
:
0
;
return
m_dict
?
m_dict
->
find
(
itemId
)
:
0
;
}
}
/*! Returns the first item in the dictionary or 0 if
/*! Returns the first item in the dictionary or 0 if
* non is available.
* non is available.
* Items are not sorted.
* Items are not sorted.
*/
*/
...
@@ -103,3 +106,56 @@ QCString RefList::sectionTitle() const
...
@@ -103,3 +106,56 @@ QCString RefList::sectionTitle() const
return
m_secTitle
;
return
m_secTitle
;
}
}
void
RefList
::
insertIntoList
(
const
char
*
key
,
RefItem
*
item
)
{
if
(
m_itemList
==
0
)
{
m_itemList
=
new
SortedRefItems
(
1009
);
}
RefItem
*
ri
=
m_itemList
->
find
(
key
);
if
(
ri
==
0
)
{
m_itemList
->
append
(
key
,
item
);
}
else
// item already added to the list (i.e. multiple item for the same
// entity)
{
if
(
ri
!=
item
)
{
ri
->
extraItems
.
append
(
item
);
}
}
}
void
RefList
::
generatePage
()
{
if
(
m_itemList
==
0
)
return
;
m_itemList
->
sort
();
SDict
<
RefItem
>::
Iterator
it
(
*
m_itemList
);
RefItem
*
item
;
for
(
it
.
toFirst
();(
item
=
it
.
current
());
++
it
)
{
QCString
doc
;
doc
=
"
\\
anchor "
;
doc
+=
item
->
listAnchor
;
doc
+=
" <dl><dt>"
;
doc
+=
item
->
prefix
;
doc
+=
"
\\
_internalref "
;
doc
+=
item
->
name
;
doc
+=
"
\"
"
;
doc
+=
item
->
title
;
doc
+=
"
\"
"
;
if
(
!
item
->
args
.
isEmpty
())
doc
+=
item
->
args
;
doc
+=
"</dt>
\n
<dd>"
;
doc
+=
item
->
text
;
QListIterator
<
RefItem
>
li
(
item
->
extraItems
);
RefItem
*
extraItem
;
for
(
li
.
toFirst
();(
extraItem
=
li
.
current
());
++
li
)
{
doc
+=
"<p>"
+
extraItem
->
text
;
}
doc
+=
"</dd></dl>
\n
"
;
addRelatedPage
(
m_listName
,
m_pageTitle
,
doc
,
0
,
m_listName
,
1
,
0
,
0
,
0
);
}
}
src/reflist.h
View file @
3e9b5fe7
...
@@ -21,15 +21,36 @@
...
@@ -21,15 +21,36 @@
#include "qtbc.h"
#include "qtbc.h"
#include <qintdict.h>
#include <qintdict.h>
//#include "outputgen.h"
#include <qlist.h>
#include "sortdict.h"
/*! This struct represents an item in the list of references. */
/*! This struct represents an item in the list of references. */
struct
RefItem
struct
RefItem
{
{
RefItem
()
:
written
(
FALSE
)
{}
RefItem
()
/*: written(FALSE)*/
{}
QCString
text
;
//!< text of the item.
QCString
text
;
//!< text of the item.
QCString
listAnchor
;
//!< anchor in the list
QCString
listAnchor
;
//!< anchor in the list
bool
written
;
QCString
prefix
;
//!< type prefix for the name
QCString
name
;
//!< name of the entity containing the reference
QCString
title
;
//!< display name of the entity
QCString
args
;
//!< optional arguments for the entity (if function)
//bool written;
QList
<
RefItem
>
extraItems
;
//!< more items belonging to the same entity
};
/*! List of items sorted by title */
class
SortedRefItems
:
public
SDict
<
RefItem
>
{
public
:
SortedRefItems
(
int
size
=
17
)
:
SDict
<
RefItem
>
(
size
)
{}
virtual
~
SortedRefItems
()
{}
int
compareItems
(
GCI
item1
,
GCI
item2
)
{
RefItem
*
r1
=
(
RefItem
*
)
item1
;
RefItem
*
r2
=
(
RefItem
*
)
item2
;
return
stricmp
(
r1
->
title
,
r2
->
title
);
}
};
};
/*! @brief List of cross-referenced items
/*! @brief List of cross-referenced items
...
@@ -57,12 +78,15 @@ class RefList
...
@@ -57,12 +78,15 @@ class RefList
const
char
*
pageTitle
,
const
char
*
secTitle
const
char
*
pageTitle
,
const
char
*
secTitle
);
);
~
RefList
();
~
RefList
();
void
insertIntoList
(
const
char
*
key
,
RefItem
*
item
);
void
generatePage
();
private
:
private
:
int
m_id
;
int
m_id
;
QCString
m_listName
;
QCString
m_listName
;
QCString
m_pageTitle
;
QCString
m_pageTitle
;
QCString
m_secTitle
;
QCString
m_secTitle
;
SortedRefItems
*
m_itemList
;
QIntDict
<
RefItem
>
*
m_dict
;
QIntDict
<
RefItem
>
*
m_dict
;
QIntDictIterator
<
RefItem
>
*
m_dictIterator
;
QIntDictIterator
<
RefItem
>
*
m_dictIterator
;
};
};
...
...
src/search.css
View file @
3e9b5fe7
/*---------------- Search Box */
/*---------------- Search Box */
#MSearchBox
{
#MSearchBox
{
padding
:
0px
;
padding
:
0px
;
margin
:
0px
;
margin
:
0px
;
border
:
none
;
border
:
none
;
...
@@ -18,24 +18,14 @@
...
@@ -18,24 +18,14 @@
background-color
:
#FFFFFF
;
background-color
:
#FFFFFF
;
font-style
:
normal
;
font-style
:
normal
;
cursor
:
text
;
cursor
:
text
;
padding
:
0
px
1px
;
padding
:
1
px
1px
;
margin
:
0px
6px
0px
0px
;
margin
:
0px
6px
0px
0px
;
border
:
none
;
border
:
none
;
outline
:
none
;
outline
:
none
;
vertical-align
:
middle
;
vertical-align
:
middle
;
}
}
#MSearchBox
.MSearchBoxInactive
:hover
#MSearchField
{
background-color
:
#FFFFFF
;
padding
:
0px
1px
;
margin
:
0px
6px
0px
0px
;
border
:
none
;
}
.MSearchBoxActive
#MSearchField
{
.MSearchBoxActive
#MSearchField
{
background-color
:
#FFFFFF
;
color
:
#000000
;
color
:
#000000
;
padding
:
0px
1px
;
margin
:
0px
6px
0px
0px
;
border
:
none
;
}
}
#MSearchSelect
{
#MSearchSelect
{
float
:
none
;
float
:
none
;
...
...
src/search_css.h
View file @
3e9b5fe7
"/*---------------- Search Box */
\n
"
"/*---------------- Search Box */
\n
"
"
\n
"
"
\n
"
"#MSearchBox {
\n
"
"#MSearchBox {
\n
"
" padding: 0px;
\n
"
" padding: 0px;
\n
"
" margin: 0px;
\n
"
" margin: 0px;
\n
"
" border: none;
\n
"
" border: none;
\n
"
...
@@ -18,24 +18,14 @@
...
@@ -18,24 +18,14 @@
" background-color: #FFFFFF;
\n
"
" background-color: #FFFFFF;
\n
"
" font-style: normal;
\n
"
" font-style: normal;
\n
"
" cursor: text;
\n
"
" cursor: text;
\n
"
" padding:
0
px 1px;
\n
"
" padding:
1
px 1px;
\n
"
" margin: 0px 6px 0px 0px;
\n
"
" margin: 0px 6px 0px 0px;
\n
"
" border: none;
\n
"
" border: none;
\n
"
" outline: none;
\n
"
" outline: none;
\n
"
" vertical-align: middle;
\n
"
" vertical-align: middle;
\n
"
"}
\n
"
"}
\n
"
"#MSearchBox.MSearchBoxInactive:hover #MSearchField {
\n
"
" background-color: #FFFFFF;
\n
"
" padding: 0px 1px;
\n
"
" margin: 0px 6px 0px 0px;
\n
"
" border: none;
\n
"
"}
\n
"
".MSearchBoxActive #MSearchField {
\n
"
".MSearchBoxActive #MSearchField {
\n
"
" background-color: #FFFFFF;
\n
"
" color: #000000;
\n
"
" color: #000000;
\n
"
" padding: 0px 1px;
\n
"
" margin: 0px 6px 0px 0px;
\n
"
" border: none;
\n
"
"}
\n
"
"}
\n
"
"#MSearchSelect {
\n
"
"#MSearchSelect {
\n
"
" float : none;
\n
"
" float : none;
\n
"
...
...
src/translator_kr.h
View file @
3e9b5fe7
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
Translator class (by the local maintainer) when the localized
Translator class (by the local maintainer) when the localized
translator is made up-to-date again.
translator is made up-to-date again.
*/
*/
class
TranslatorKorean
:
public
Translator
Adapter_1_6_0
class
TranslatorKorean
:
public
Translator
{
{
protected
:
protected
:
friend
class
TranslatorAdapterBase
;
friend
class
TranslatorAdapterBase
;
...
@@ -1794,6 +1794,40 @@ class TranslatorKorean : public TranslatorAdapter_1_6_0
...
@@ -1794,6 +1794,40 @@ class TranslatorKorean : public TranslatorAdapter_1_6_0
return
"타입 한정자들"
;
return
"타입 한정자들"
;
}
}
//////////////////////////////////////////////////////////////////////////
// new since 1.6.0 (mainly for the new search engine)
//////////////////////////////////////////////////////////////////////////
/*! directory relation for \a name */
virtual
QCString
trDirRelation
(
const
char
*
name
)
{
return
QCString
(
name
)
+
" 관계"
;
}
/*! Loading message shown when loading search results */
virtual
QCString
trLoading
()
{
return
"로딩중..."
;
}
/*! Label used for search results in the global namespace */
virtual
QCString
trGlobalNamespace
()
{
return
"전역 이름공간"
;
}
/*! Message shown while searching */
virtual
QCString
trSearching
()
{
return
"검색중..."
;
}
/*! Text shown when no search results are found */
virtual
QCString
trNoMatches
()
{
return
"일치하는것 없음"
;
}
};
};
#endif
#endif
src/util.cpp
View file @
3e9b5fe7
...
@@ -5822,8 +5822,7 @@ PageDef *addRelatedPage(const char *name,const QCString &ptitle,
...
@@ -5822,8 +5822,7 @@ PageDef *addRelatedPage(const char *name,const QCString &ptitle,
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
void
addRefItem
(
const
QList
<
ListItemInfo
>
*
sli
,
void
addRefItem
(
const
QList
<
ListItemInfo
>
*
sli
,
const
char
*
prefix
,
const
char
*
prefix
,
const
char
*
name
,
const
char
*
title
,
const
char
*
args
)
const
char
*
name
,
const
char
*
title
,
const
char
*
args
)
{
{
//printf("addRefItem(sli=%p,prefix=%s,name=%s,title=%s,args=%s)\n",sli,prefix,name,title,args);
//printf("addRefItem(sli=%p,prefix=%s,name=%s,title=%s,args=%s)\n",sli,prefix,name,title,args);
if
(
sli
)
if
(
sli
)
...
@@ -5833,22 +5832,35 @@ void addRefItem(const QList<ListItemInfo> *sli,
...
@@ -5833,22 +5832,35 @@ void addRefItem(const QList<ListItemInfo> *sli,
for
(
slii
.
toFirst
();(
lii
=
slii
.
current
());
++
slii
)
for
(
slii
.
toFirst
();(
lii
=
slii
.
current
());
++
slii
)
{
{
RefList
*
refList
=
Doxygen
::
xrefLists
->
find
(
lii
->
type
);
RefList
*
refList
=
Doxygen
::
xrefLists
->
find
(
lii
->
type
);
if
(
refList
&&
if
(
refList
#if 0
&&
(
(
// either not a built-in list or the list is enabled
// either not a built-in list or the list is enabled
(
lii
->
type
!=
"todo"
||
Config_getBool
(
"GENERATE_TODOLIST"
))
&&
(lii->type!="todo" || Config_getBool("GENERATE_TODOLIST")) &&
(
lii
->
type
!=
"test"
||
Config_getBool
(
"GENERATE_TESTLIST"
))
&&
(lii->type!="test" || Config_getBool("GENERATE_TESTLIST")) &&
(
lii
->
type
!=
"bug"
||
Config_getBool
(
"GENERATE_BUGLIST"
))
&&
(lii->type!="bug" || Config_getBool("GENERATE_BUGLIST")) &&
(lii->type!="deprecated" || Config_getBool("GENERATE_DEPRECATEDLIST"))
(lii->type!="deprecated" || Config_getBool("GENERATE_DEPRECATEDLIST"))
)
)
#endif
)
)
{
{
RefItem
*
item
=
refList
->
getRefItem
(
lii
->
itemId
);
RefItem
*
item
=
refList
->
getRefItem
(
lii
->
itemId
);
ASSERT
(
item
!=
0
);
ASSERT
(
item
!=
0
);
printf
(
"anchor=%s written=%d
\n
"
,
item
->
listAnchor
.
data
(),
item
->
written
);
item
->
prefix
=
prefix
;
item
->
name
=
name
;
item
->
title
=
title
;
item
->
args
=
args
;
refList
->
insertIntoList
(
title
,
item
);
#if 0
//printf("anchor=%s written=%d\n",item->listAnchor.data(),item->written);
//if (item->written) return;
//if (item->written) return;
QCString
doc
(
1000
)
;
QCString doc;
doc = "\\anchor ";
doc = "\\anchor ";
doc += item->listAnchor;
doc += item->listAnchor;
doc += " <dl><dt>";
doc += " <dl><dt>";
...
@@ -5864,6 +5876,7 @@ void addRefItem(const QList<ListItemInfo> *sli,
...
@@ -5864,6 +5876,7 @@ void addRefItem(const QList<ListItemInfo> *sli,
doc += "</dd></dl>\n";
doc += "</dd></dl>\n";
addRelatedPage(refList->listName(),refList->pageTitle(),doc,0,refList->listName(),1,0,0,0);
addRelatedPage(refList->listName(),refList->pageTitle(),doc,0,refList->listName(),1,0,0,0);
//item->written=TRUE;
//item->written=TRUE;
#endif
}
}
}
}
}
}
...
...
src/vhdlcode.l
View file @
3e9b5fe7
...
@@ -337,7 +337,7 @@ static void writeWord(const char *word,const char* curr_class=0,bool classLink=F
...
@@ -337,7 +337,7 @@ static void writeWord(const char *word,const char* curr_class=0,bool classLink=F
static void codifyLines(const char *text,const char *cl=0,bool classlink=FALSE)
static void codifyLines(const char *text,const char *cl=0,bool classlink=FALSE)
{
{
if (text==0) return;
if (text==0) return;
printf("codifyLines(%d,\"%s\")\n",g_yyLineNr,text);
//
printf("codifyLines(%d,\"%s\")\n",g_yyLineNr,text);
const char *p=text,*sp=p;
const char *p=text,*sp=p;
char c;
char c;
bool done=FALSE;
bool done=FALSE;
...
...
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