| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch is a patch for the build system so that less (no) generated files are in the source directories and also that the different build (on windows are independent of each others). Also the different sub-projects (e.g. doxygen , doxywizard) don't share any files anymore.
- ./.gitignore
A number of files are not in the src directory anymore. generated directories are included. rtf and xml directories are there for possible future use.
- ./Doxyfile
The generated files are not anymore in the src directory so they don't have to be excluded anymore
- ./configure
Adjustmenst so the generated files are in the different subdirectories
- ./Makefile.in
- addon/doxmlparser/examples/metrics/metrics.pro.in
- addon/doxmlparser/src/doxmlparser.pro.in
- addon/doxmlparser/test/xmlparse.pro.in
- addon/doxyapp/doxyapp.pro.in
- addon/doxysearch/doxyindexer.pro.in
- addon/doxysearch/doxysearch.pro.in
- addon/doxywizard/Makefile.in
- addon/doxywizard/doxywizard.pro.in
- libmd5/libmd5.pro.in
- qtools/qtools.pro.in
- src/Makefile.in
- src/doxygen.pro.in
- src/libdoxycfg.pro.in
- src/libdoxycfg.t.in
- src/libdoxygen.pro.in
- src/libdoxygen.t.in
Adjustment to the new directory structure
- addon/doxywizard/expert.cpp
include file is generated in the generated_src/doxywizard directory, referenced through -I on compile line
- src/lang_cfg.h
File is now automatically generated
- src/languages.py
Correction of used path for new structure
- src/settings.py
- src/version.py
Place for resulting file handled through an argument, so it is possible to have a separate file for each sub-project
- tmake/lib/win32-g++/generic.t
- tmake/lib/win32-mingw/generic.t
The destination path was added twice, in case of a depth of more than 1 level (doxmlparser) this lead to problems
- winbuild/Config.rules
- winbuild/Gen_head.rules
- winbuild/Languages.rules
- winbuild/Lex.rules
- winbuild/Settings.rules
- winbuild/Version.rules
correcting some path of generated files
- winbuild/Doxygen.sln
Build order dependency could be dropped as the version.cpp file is now a generated file for doxygen and doxywizard
- winbuild/Doxygen.vcproj
- winbuild/Doxywizard.vcproj
Corrected paths to the new structure. Added unistd as an external generated file
- winbuild/unistd.h
File is now generated
- winbuild/Unistd.rules
- winbuild/unistd.py
Generated unistd for doxygen and doxywizard in a consistent way.
- winbuild/doxyindexer.vcproj
- winbuild/doxysearch.vcproj
- winbuild/qtools.vcproj
Corrected paths to the new structure.
- winbuild/runbison.bat
- winbuild/version.bat
Not used anymore everything handled through rules.
|
| |
|
|\ |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Documentation corrections
|
| |
| |
| |
| | |
Adjusted documentation so that -- in \c and <code> are shown as -- by placing the parts in ` (backtick)
|
| |
| |
| |
| | |
Corrected some spelling errors and added / correceted some references
|
|\ \
| | |
| | | |
Fix to VHDL scanner.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The following code should produce two groups, each containing one page, within the same documentation scope,
currently it nests these groups and pages, resulting in incorrect documentation.
--! \defgroup group1 Group 1
--! \{
--! @brief Group 1
--! \}
--! \ingroup group1
--! \{
--! \page group1_page1 Page 1
--! \verbatim
--! Some Page 1 text
--! \endverbatim
--! \}
--! \defgroup group2 Group 2
--! \{
--! @brief Group 2
--! \}
--! \ingroup group2
--! \{
--! \page group2_page1 Page 1
--! \verbatim
--! Some Page 1 text
--! \endverbatim
--! \}
Similar C code to demonstrate the correct output.
//! \defgroup group1 Group 1
//! \{
//! @brief Group 1
//! \}
//! \ingroup group1
//! \{
//! \page group1_page1 Page 1
//! \verbatim
//! Some Page 1 text
//! \endverbatim
//! \}
//! \defgroup group2 Group 2
//! \{
//! @brief Group 2
//! \}
//! \ingroup group2
//! \{
//! \page group2_page1 Page 1
//! \verbatim
//! Some Page 1 text
//! \endverbatim
//! \}
|
|\ \ \
| |/ / |
|
| |\ \
| | | |
| | | | |
Wrong UTF 8 codes
|
| |/ /
| | |
| | |
| | | |
The utf-8 code for eta was identical to the code for theta and the code for Prime was identical to the one for prime
|
| |\ \
| | | |
| | | | |
sqlite3: clear bindings on errors and more care with return
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
* call sqlite3_clear_bindings when step fails
* more miss-placed returns
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
|
| | | |
|
|/ / |
|
|/ |
|
| |
|
| |
|
|\ |
|
| |\
| | |
| | | |
add search.py, a client for doxygen_sqlite3.db
|
| | |
| | |
| | |
| | | |
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
|
| |\ \
| | |/
| |/| |
sqlite3: tweaks for performance
|
| | |
| | |
| | |
| | |
| | |
| | | |
these were causing a major performance hit
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
|
| |/
| |
| |
| |
| |
| |
| | |
the code comes from the early stage of sqlite3gen, when xref keys were
kept as "file:line:column", not as function name.
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
|
| |\
| | |
| | | |
sqlite3: use the new qtools API
|
| | |
| | |
| | |
| | | |
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
|
| | |
| | |
| | |
| | | |
C-comments in markdown didn't work properly
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
classes of template classes cannot be matched.
|
|/ / |
|
| | |
|
|\ \
| |/ |
|
| |\
| | |
| | | |
Bug 626172 - Latex $projectname with "&" gets no escaped
|
| | |
| | |
| | |
| | | |
The variable elements in the header en footer should be converted to latex string, now they are in the format as defined in the Doxyfile
|
|/ /
| |
| |
| | |
end (*/).
|
| |
| |
| |
| | |
.tag file
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
Bug 721302 - [Latex/PDF] Merging brief and detailed description in file section
|
| |
| |
| |
| |
| |
| | |
Not only for Man pages the extra returns are necessary but also for LaTeX output.
The change in filedef.cpp is a direct consequence of t the bug report.
The groupdef.cpp has been tested on propriety code and the namespacedef.cpp and dirdef.cpp directly follow from code similarity.
|
|\ \
| | |
| | | |
add css-escape to avoid jquery based xss
|
| | | |
|
|\ \ \
| | | |
| | | | |
Bug 436885 - c-source and h-source missing for latex
|
| | |/
| |/|
| | |
| | | |
Original title does not cover problem anymore. Problem has evolved to that when clicking on the name for the source file (in LaTeX) a jump to the beginning of the document was made. This problem is fixed with this patch.
|