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
962ad74f
Commit
962ad74f
authored
Jun 16, 2014
by
Petr Prikryl
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into devel
parents
39bdafef
8cac977d
Changes
14
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
2297 additions
and
2288 deletions
+2297
-2288
inputstring.cpp
addon/doxywizard/inputstring.cpp
+1
-1
configure
configure
+14
-6
install.doc
doc/install.doc
+1
-0
translator.py
doc/translator.py
+2002
-2029
qstring.cpp
qtools/qstring.cpp
+2
-0
code.l
src/code.l
+81
-75
config.xml
src/config.xml
+1
-1
configgen.py
src/configgen.py
+164
-164
lang_cfg.py
src/lang_cfg.py
+3
-3
languages.py
src/languages.py
+6
-6
latexgen.cpp
src/latexgen.cpp
+1
-1
portable_c.c
src/portable_c.c
+6
-0
scanner.l
src/scanner.l
+12
-0
util.cpp
src/util.cpp
+3
-2
No files found.
addon/doxywizard/inputstring.cpp
View file @
962ad74f
...
...
@@ -167,7 +167,7 @@ void InputString::setEnabled(bool state)
{
m_lab
->
setEnabled
(
state
);
if
(
m_le
)
m_le
->
setEnabled
(
state
);
if
(
m_im
)
m_
le
->
setEnabled
(
state
);
if
(
m_im
)
m_
im
->
setEnabled
(
state
);
if
(
m_br
)
m_br
->
setEnabled
(
state
);
if
(
m_com
)
m_com
->
setEnabled
(
state
);
updateDefault
();
...
...
configure
View file @
962ad74f
...
...
@@ -594,9 +594,10 @@ fi
# - check for python ----------------------------------------------------------
python_version
=
0
printf
" Checking for python... "
if
test
"
$f_python
"
=
NO
;
then
python_names
=
"python2 python"
python_names
=
"python
3 python
2 python"
python_dirs
=
"
$bin_dirs
/usr/bin /usr/local/bin /bin /sbin"
python_prog
=
NO
python_found
=
NO
...
...
@@ -604,9 +605,16 @@ if test "$f_python" = NO; then
for
j
in
$python_dirs
;
do
if
test
-x
"
$j
/
$i
"
;
then
python_found
=
YES
if
test
`
$j
/
$i
-c
"import sys; print sys.version_info[0]"
`
=
2
;
then
python_prog
=
"
$j
/
$i
"
if
test
`
$j
/
$i
-c
"import sys; print(sys.version_info[0])"
`
=
3
;
then
python_prog
=
"
$j
/
$i
"
;
python_version
=
`
$j
/
$i
-c
"import platform; print(platform.python_version())"
`
;
break
2
elif
test
`
$j
/
$i
-c
"import sys; print(sys.version_info[0])"
`
=
2
;
then
if
test
`
$j
/
$i
-c
"import sys; print(sys.version_info[1])"
`
-ge
6
;
then
python_prog
=
"
$j
/
$i
"
;
python_version
=
`
$j
/
$i
-c
"import platform; print(platform.python_version())"
`
;
break
2
fi
fi
fi
done
...
...
@@ -616,14 +624,14 @@ fi
if
test
"
$f_python
"
=
NO
;
then
if
test
"
$python_found
"
=
YES
;
then
echo
"version should be python 2."
echo
"version should be python 2.
6 or higher.
"
else
echo
"not found!"
;
fi
echo
exit
2
fi
echo
"using
$f_python
"
;
echo
"using
$f_python
(version
$python_version
)
"
;
# - check for perl ------------------------------------------------------------
...
...
doc/install.doc
View file @
962ad74f
...
...
@@ -556,6 +556,7 @@ open-source tools:
<li>GNU bison version 2.5 (Linux) and 2.3 (MacOSX)
<li>GNU make version 3.81
<li>Perl version 5.12
<li>Python verion 2.7 and 3.4
<li>TeX Live 2009 (or later)
</ul>
...
...
doc/translator.py
View file @
962ad74f
This diff is collapsed.
Click to expand it.
qtools/qstring.cpp
View file @
962ad74f
...
...
@@ -11601,7 +11601,9 @@ static inline bool is_arabic(unsigned short x) {
((x >= 0xfb50) && (x <= 0xfdff)) ||
((x >= 0xfe70) && (x <= 0xfeff)));
}
#endif
#ifndef QT_NO_UNICODETABLES
static
inline
bool
is_neutral
(
unsigned
short
dir
)
{
return
((
dir
==
QChar
::
DirB
)
||
(
dir
==
QChar
::
DirS
)
||
...
...
src/code.l
View file @
962ad74f
This diff is collapsed.
Click to expand it.
src/config.xml
View file @
962ad74f
...
...
@@ -3076,7 +3076,7 @@ to be found in the default search path.
<option
type=
'string'
id=
'DOT_FONTNAME'
format=
'string'
defval=
'Helvetica'
depends=
'HAVE_DOT'
>
<docs>
<![CDATA[
When you want a differently looking font n the dot files that doxygen generates
When you want a differently looking font
i
n the dot files that doxygen generates
you can specify the font name
using \c DOT_FONTNAME. You need to make sure dot is able to find the font,
which can be done by putting it in a standard location or by setting the
...
...
src/configgen.py
View file @
962ad74f
This diff is collapsed.
Click to expand it.
src/lang_cfg.py
View file @
962ad74f
...
...
@@ -2,7 +2,7 @@ import sys
if
(
len
(
sys
.
argv
)
>
1
):
if
(
sys
.
argv
[
1
]
==
"ENONLY"
):
print
"#define ENGLISH_ONLY"
print
(
"#define ENGLISH_ONLY"
)
else
:
for
x
in
x
range
(
1
,
len
(
sys
.
argv
)):
print
"#define LANG_
%
s"
%
(
sys
.
argv
[
x
]
)
for
x
in
range
(
1
,
len
(
sys
.
argv
)):
print
(
"#define LANG_
%
s"
%
(
sys
.
argv
[
x
])
)
src/languages.py
View file @
962ad74f
...
...
@@ -15,7 +15,7 @@ for f in files:
# generating file is lang_cfg.py
# the rules file has to output lang_cfg.h
#
print
"""
\
print
(
"""
\
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
Name="languages"
...
...
@@ -52,7 +52,7 @@ print """\
/>
</Values>
</EnumProperty>
"""
"""
)
#
# generate loop, English is mandatory (so cannot be chosen)
#
...
...
@@ -76,7 +76,7 @@ for f in new_list:
l1
=
l
.
replace
(
"-"
,
""
)
# capatalize first letter
l
=
l
.
title
()
print
"""
\
print
(
"""
\
<EnumProperty
Name="
%
s"
DisplayName="Use
%
s"
...
...
@@ -96,11 +96,11 @@ for f in new_list:
/>
</Values>
</EnumProperty>
"""
%
(
l1
,
l
,
l
,
l
,
f
[
1
],
l
)
"""
%
(
l1
,
l
,
l
,
l
,
f
[
1
],
l
)
)
print
"""
\
print
(
"""
\
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
"""
"""
)
src/latexgen.cpp
View file @
962ad74f
...
...
@@ -290,6 +290,7 @@ static void writeDefaultHeaderPart1(FTextStream &t)
// Load required packages
t
<<
"% Packages required by doxygen
\n
"
"
\\
usepackage{fixltx2e}
\n
"
// for \textsubscript
"
\\
usepackage{calc}
\n
"
"
\\
usepackage{doxygen}
\n
"
"
\\
usepackage{graphicx}
\n
"
...
...
@@ -297,7 +298,6 @@ static void writeDefaultHeaderPart1(FTextStream &t)
"
\\
usepackage{makeidx}
\n
"
"
\\
usepackage{multicol}
\n
"
"
\\
usepackage{multirow}
\n
"
"
\\
usepackage{fixltx2e}
\n
"
// for \textsubscript
"
\\
PassOptionsToPackage{warn}{textcomp}
\n
"
"
\\
usepackage{textcomp}
\n
"
"
\\
usepackage[nointegrals]{wasysym}
\n
"
...
...
src/portable_c.c
View file @
962ad74f
#if defined(__APPLE__) || defined(macintosh)
// define this before including iconv.h to avoid a mapping of
// iconv_open and friends to libicon_open (done by mac ports),
// while the symbols without 'lib' are linked from /usr/lib/libiconv
#define LIBICONV_PLUG
#endif
#include <iconv.h>
// These functions are implemented in a C file, because there are different
...
...
src/scanner.l
View file @
962ad74f
...
...
@@ -6675,6 +6675,18 @@ static void parseCompounds(Entry *rt)
current = new Entry;
gstat = FALSE;
initEntry();
// deep copy group list from parent (see bug 727732)
if (rt->groups)
{
QListIterator<Grouping> gli(*rt->groups);
Grouping *g;
for (;(g=gli.current());++gli)
{
ce->groups->append(new Grouping(*g));
}
}
int ni=ce->name.findRev("::"); if (ni==-1) ni=0; else ni+=2;
// set default protection based on the compound type
if( ce->section==Entry::CLASS_SEC ) // class
...
...
src/util.cpp
View file @
962ad74f
...
...
@@ -1798,6 +1798,7 @@ nextChar:
)
)
{
if
(
c
==
'\t'
)
c
=
' '
;
if
(
c
==
'*'
||
c
==
'&'
||
c
==
'@'
||
c
==
'$'
)
{
//uint rl=result.length();
...
...
@@ -1827,8 +1828,8 @@ nextChar:
}
}
}
//printf("removeRedundantWhiteSpace(`%s')=`%s'\n",s.data(),result.data());
growBuf
.
addChar
(
0
);
//printf("removeRedundantWhiteSpace(`%s')=`%s'\n",s.data(),growBuf.get());
//result.resize(resultPos);
return
growBuf
.
get
();
}
...
...
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