Changeset 653440 in git
- Timestamp:
- Jul 11, 2014, 12:22:11 AM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 6a1aa7d0eeeb75c177a819b9a240c9c4c1948778
- Parents:
- 7cdd912b9b6c44ae159128e2ef64cbaede6f8351
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-07-11 00:22:11+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-07-11 04:31:53+02:00
- Location:
- dox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
dox/Doxyfile.in
r7cdd912 r653440 39 39 # control system is used. 40 40 41 PROJECT_NUMBER = 41 PROJECT_NUMBER = " [$(git_version)] " 42 42 43 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description … … 45 45 # quick idea about the purpose of the project. Keep the description short. 46 46 47 PROJECT_BRIEF = 47 PROJECT_BRIEF = 48 48 49 49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in … … 162 162 # using the -I flag. 163 163 164 STRIP_FROM_INC_PATH = libpolys164 STRIP_FROM_INC_PATH = 165 165 166 166 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but … … 1138 1138 # This tag requires that the tag GENERATE_HTML is set to YES. 1139 1139 1140 HTML_COLORSTYLE_GAMMA = 2101140 HTML_COLORSTYLE_GAMMA = 190 1141 1141 1142 1142 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML … … 1954 1954 # This tag requires that the tag SEARCH_INCLUDES is set to YES. 1955 1955 1956 INCLUDE_PATH = $(abs_top_builddir)/ \ 1956 INCLUDE_PATH = \ 1957 $(abs_top_builddir)/ \ 1957 1958 $(abs_top_builddir)/factory \ 1958 $(abs_top_builddir)/libpolys 1959 $(abs_top_builddir)/libpolys \ 1960 $(abs_top_srcdir)/ \ 1961 $(abs_top_srcdir)/factory \ 1962 $(abs_top_srcdir)/libpolys 1959 1963 1960 1964 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard … … 1964 1968 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1965 1969 1966 INCLUDE_FILE_PATTERNS = 1970 INCLUDE_FILE_PATTERNS = *.h *.inc 1967 1971 1968 1972 # The PREDEFINED tag can be used to specify one or more macro names that are -
dox/Makefile.am
r7cdd912 r653440 1 GIT_VERSION := $(shell $(top_srcdir)/git-version-gen $(top_srcdir)/.tarball-git-version) 2 1 3 doxyrun: 2 4 if [ -z "$(DOXYGEN)" ]; then \ … … 14 16 export abs_top_srcdir="$(abs_top_srcdir)"; \ 15 17 export abs_top_builddir="$(abs_top_builddir)"; \ 16 echo Running "$(DOXYGEN)" "$(DOXYGEN_CONFIG)" with abs_top_srcdir: "$(abs_top_srcdir)", abs_top_builddir: "$(abs_top_builddir)"...; \ 17 $(DOXYGEN) $(DOXYGEN_CONFIG) ; 18 export git_version="$(GIT_VERSION)"; \ 19 echo Running "$(DOXYGEN)" "$(DOXYGEN_CONFIG)" with abs_top_srcdir: "$(abs_top_srcdir)", abs_top_builddir: "$(abs_top_builddir)", GIT_VERSION: "$(git_version)"...; \ 20 $(DOXYGEN) $(DOXYGEN_CONFIG) ; \ 21 echo Finished running "$(DOXYGEN)" "$(DOXYGEN_CONFIG)" with abs_top_srcdir: "$(abs_top_srcdir)", abs_top_builddir: "$(abs_top_builddir)", GIT_VERSION: "$(git_version)"...; 18 22 19 23 if HAVE_DOXYGEN -
dox/footer.html
r7cdd912 r653440 5 5 <ul> 6 6 $navpath 7 <li class="footer">$generatedby<a href="http://www.doxygen.org/index.html">doxygen</a> $doxygenversion </li>7 <li class="footer">$generatedby<a href="http://www.doxygen.org/index.html">doxygen</a> $doxygenversion for Singular <!--BEGIN PROJECT_NUMBER-->$projectnumber<!--END PROJECT_NUMBER--></li> 8 8 </ul> 9 9 </div> … … 11 11 <!--BEGIN !GENERATE_TREEVIEW--> 12 12 <hr class="footer"/><address class="footer"><small> 13 $generatedby  <a href="http://www.doxygen.org/index.html">doxygen</a> $doxygenversion 13 $generatedby  <a 14 href="http://www.doxygen.org/index.html">doxygen</a> $doxygenversion for Singular <!--BEGIN PROJECT_NUMBER-->$projectnumber<!--END PROJECT_NUMBER--> 14 15 </small></address> 15 16 <!--END !GENERATE_TREEVIEW--> -
dox/header.html
r7cdd912 r653440 26 26 <tr style="height: 56px;"> 27 27 <!--BEGIN PROJECT_LOGO--> 28 <td id="projectlogo"><img alt="Singular " src="$relpath^$projectlogo"/></td>28 <td id="projectlogo"><img alt="Singular $projectnumber" src="$relpath^$projectlogo"/></td> 29 29 <!--END PROJECT_LOGO--> 30 30 <!--BEGIN PROJECT_NAME-->
Note: See TracChangeset
for help on using the changeset viewer.