summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan Bowe <allan@bowe.io>2020-11-29 10:05:07 (GMT)
committerAllan Bowe <allan@bowe.io>2020-11-29 10:05:07 (GMT)
commit86c9beaf30cc0fbdbe3e142df0c560562aada769 (patch)
tree4b48652ae77230696c635f68936bb06e87002a85 /src
parent00f14e3f1666d0cb74810a725d2cf0e71799ccdc (diff)
downloadDoxygen-86c9beaf30cc0fbdbe3e142df0c560562aada769.zip
Doxygen-86c9beaf30cc0fbdbe3e142df0c560562aada769.tar.gz
Doxygen-86c9beaf30cc0fbdbe3e142df0c560562aada769.tar.bz2
fix: convert links to the main doxygen site to https. Trailing whitespace was also removed (hope this is ok, was a default setting). Closes #8212
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.md36
-rw-r--r--src/htmlgen.cpp2
2 files changed, 19 insertions, 19 deletions
diff --git a/src/doxygen.md b/src/doxygen.md
index d8db231..e3db534 100644
--- a/src/doxygen.md
+++ b/src/doxygen.md
@@ -7,7 +7,7 @@ Introduction
This page provides a high-level overview of the internals of doxygen, with
links to the relevant parts of the code. This document is intended for
developers who want to work on doxygen. Users of doxygen are referred to the
-[User Manual](http://www.doxygen.nl/manual/index.html).
+[User Manual](https://www.doxygen.nl/manual/index.html).
The generic starting point of the application is of course the main() function.
@@ -15,13 +15,13 @@ Configuration options
=====================
Configuration file data is stored in singleton class Config and can be
-accessed using wrapper macros
+accessed using wrapper macros
Config_getString(), Config_getInt(), Config_getList(),
Config_getEnum(), and Config_getBool() depending on the type of the
-option.
+option.
The format of the configuration file (options and types) is defined
-by the file `config.xml`. As part of the build process,
+by the file `config.xml`. As part of the build process,
the python script `configgen.py` will create a file `configoptions.cpp`
from this, which serves as the input for the configuration file parser
that is invoked using Config::parse(). The script `configgen.py` will also
@@ -43,18 +43,18 @@ for each file. Each parser implements the abstract interface ParserInterface.
If the parser indicates it needs preprocessing
via ParserInterface::needsPreprocessing(), doxygen will call preprocessFile()
-on the file.
+on the file.
A second step is to convert multiline C++-style comments into C style comments
-for easier processing later on. As side effect of this step also
-aliases (ALIASES option) are resolved. The function that performs these
+for easier processing later on. As side effect of this step also
+aliases (ALIASES option) are resolved. The function that performs these
2 tasks is called convertCppComments().
*Note:* Alias resolution should better be done in a separate step as it is
now coupled to C/C++ code and does not work automatically for other languages!
-The third step is the actual language parsing and is done by calling
-ParserInterface::parseInput() on the parser interface returned by
+The third step is the actual language parsing and is done by calling
+ParserInterface::parseInput() on the parser interface returned by
the ParserManager.
The result of parsing is a tree of Entry objects.
@@ -67,19 +67,19 @@ converted into a Definition object.
When a parser finds a special comment block in the input, it will do a first
pass parsing via parseCommentBlock(). During this pass the comment block
is split into multiple parts if needed. Some data that is later needed is
-extracted like section labels, xref items, and formulas.
+extracted like section labels, xref items, and formulas.
Also Markdown markup is processed using processMarkdown() during this pass.
Resolving relations
===================
-The Entry objects created and filled during parsing are stored on disk
-(to keep memory needs low). The name, parent/child relation, and
-location on disk of each Entry is stored as a tree of EntryNav nodes, which is
+The Entry objects created and filled during parsing are stored on disk
+(to keep memory needs low). The name, parent/child relation, and
+location on disk of each Entry is stored as a tree of EntryNav nodes, which is
kept in memory.
Doxygen does a number of tree walks over the EntryNav nodes in the tree to
-build up the data structures needed to produce the output.
+build up the data structures needed to produce the output.
The resulting data structures are all children of the generic base class
called Definition which holds all non-specific data for a symbol definition.
@@ -141,9 +141,9 @@ easy ways to get debug information.
- classes<br>
Gives of classes en modules its scope and other relevant information.
- preprocessor<br>
- Shows the results of the preprocessing phase, i.e. results from include files,
+ Shows the results of the preprocessing phase, i.e. results from include files,
<tt>\#define</tt> statements etc., definitions in the doxygen configuration file like:
- `EXPAND_ONLY_PREDEF`, `PREDEFINED` and `MACRO_EXPANSION`.
+ `EXPAND_ONLY_PREDEF`, `PREDEFINED` and `MACRO_EXPANSION`.
- commentcnv<br>
Shows the results of the comment conversion, the comment conversion does the
following:
@@ -216,8 +216,8 @@ Topics TODO
- perlmod
- i18n via Translator and language.cpp
- Customizing the layout via LayoutDocManager
-- Parsers
- - C Preprocessing
+- Parsers
+ - C Preprocessing
- const expression evaluation
- C link languages
- Python
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 58a0622..cd615e4 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1235,7 +1235,7 @@ QCString HtmlGenerator::writeLogoAsString(const char *path)
{
result += theTranslator->trGeneratedBy();
}
- result += "&#160;\n<a href=\"http://www.doxygen.org/index.html\">\n"
+ result += "&#160;\n<a href=\"https://www.doxygen.org/index.html\">\n"
"<img class=\"footer\" src=\"";
result += path;
result += "doxygen.svg\" width=\"104\" height=\"31\" alt=\"doxygen\"/></a> ";