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
f9c9edba
Commit
f9c9edba
authored
Dec 19, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 704090 - Allow Class{T}.Method in cref to refer to a generic class in XML comments
parent
fa239ea9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
docparser.cpp
src/docparser.cpp
+20
-0
util.cpp
src/util.cpp
+7
-0
No files found.
src/docparser.cpp
View file @
f9c9edba
...
@@ -232,6 +232,23 @@ static void docParserPopContext(bool keepParamInfo=FALSE)
...
@@ -232,6 +232,23 @@ static void docParserPopContext(bool keepParamInfo=FALSE)
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// replaces { with < and } with > inside string s
static
void
unescapeCRef
(
QCString
&
s
)
{
char
*
p
=
s
.
data
();
if
(
p
)
{
char
c
;
while
((
c
=*
p
))
{
if
(
c
==
'{'
)
c
=
'<'
;
else
if
(
c
==
'}'
)
c
=
'>'
;
*
p
++=
c
;
}
}
}
//---------------------------------------------------------------------------
/*! search for an image in the imageNameDict and if found
/*! search for an image in the imageNameDict and if found
* copies the image to the output directory (which depends on the \a type
* copies the image to the output directory (which depends on the \a type
* parameter).
* parameter).
...
@@ -6045,6 +6062,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
...
@@ -6045,6 +6062,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
QCString
exceptName
;
QCString
exceptName
;
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
exceptName
))
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
exceptName
))
{
{
unescapeCRef
(
exceptName
);
retval
=
handleParamSection
(
exceptName
,
DocParamSect
::
Exception
,
TRUE
);
retval
=
handleParamSection
(
exceptName
,
DocParamSect
::
Exception
,
TRUE
);
}
}
else
else
...
@@ -6089,6 +6107,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
...
@@ -6089,6 +6107,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
//printf("XML_SEE: empty tag=%d\n",g_token->emptyTag);
//printf("XML_SEE: empty tag=%d\n",g_token->emptyTag);
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
cref
))
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
cref
))
{
{
unescapeCRef
(
cref
);
if
(
g_token
->
emptyTag
)
// <see cref="..."/> style
if
(
g_token
->
emptyTag
)
// <see cref="..."/> style
{
{
bool
inSeeBlock
=
g_inSeeBlock
;
bool
inSeeBlock
=
g_inSeeBlock
;
...
@@ -6123,6 +6142,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
...
@@ -6123,6 +6142,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
QCString
cref
;
QCString
cref
;
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
cref
))
if
(
findAttribute
(
tagHtmlAttribs
,
"cref"
,
&
cref
))
{
{
unescapeCRef
(
cref
);
// Look for an existing "see" section
// Look for an existing "see" section
DocSimpleSect
*
ss
=
0
;
DocSimpleSect
*
ss
=
0
;
QListIterator
<
DocNode
>
cli
(
m_children
);
QListIterator
<
DocNode
>
cli
(
m_children
);
...
...
src/util.cpp
View file @
f9c9edba
...
@@ -4716,6 +4716,7 @@ bool resolveLink(/* in */ const char *scName,
...
@@ -4716,6 +4716,7 @@ bool resolveLink(/* in */ const char *scName,
*
resContext
=
0
;
*
resContext
=
0
;
QCString
linkRef
=
lr
;
QCString
linkRef
=
lr
;
QCString
linkRefWithoutTemplates
=
stripTemplateSpecifiersFromScope
(
linkRef
,
FALSE
);
//printf("ResolveLink linkRef=%s inSee=%d\n",lr,inSeeBlock);
//printf("ResolveLink linkRef=%s inSee=%d\n",lr,inSeeBlock);
FileDef
*
fd
;
FileDef
*
fd
;
GroupDef
*
gd
;
GroupDef
*
gd
;
...
@@ -4772,6 +4773,12 @@ bool resolveLink(/* in */ const char *scName,
...
@@ -4772,6 +4773,12 @@ bool resolveLink(/* in */ const char *scName,
resAnchor
=
cd
->
anchor
();
resAnchor
=
cd
->
anchor
();
return
TRUE
;
return
TRUE
;
}
}
else
if
((
cd
=
getClass
(
linkRefWithoutTemplates
)))
// C#/Java generic class link
{
*
resContext
=
cd
;
resAnchor
=
cd
->
anchor
();
return
TRUE
;
}
else
if
((
cd
=
getClass
(
linkRef
+
"-p"
)))
// Obj-C protocol link
else
if
((
cd
=
getClass
(
linkRef
+
"-p"
)))
// Obj-C protocol link
{
{
*
resContext
=
cd
;
*
resContext
=
cd
;
...
...
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