documentation updated
This commit is contained in:
38
ChangeLog
38
ChangeLog
@@ -0,0 +1,38 @@
|
|||||||
|
2016-08-25 15:00
|
||||||
|
|
||||||
|
* src/neuron.hxx: more docu
|
||||||
|
|
||||||
|
2016-08-25 09:24
|
||||||
|
|
||||||
|
* src/neuron.hxx: move documentation to main page
|
||||||
|
|
||||||
|
2016-08-25 07:51
|
||||||
|
|
||||||
|
* src/neuron.hxx: move documentation to main page
|
||||||
|
|
||||||
|
2016-08-24 14:53
|
||||||
|
|
||||||
|
* COPYING, INSTALL, bootstrap.sh, src/neuron.hxx, test/makefile.am,
|
||||||
|
test/neuron.cxx: with dummy test
|
||||||
|
|
||||||
|
2016-08-24 12:44
|
||||||
|
|
||||||
|
* build-in-docker.conf: added mrw repo
|
||||||
|
|
||||||
|
2016-08-24 12:23
|
||||||
|
|
||||||
|
* ., AUTHORS, ChangeLog, NEWS, README, autogen.sh, ax_check_qt.m4,
|
||||||
|
ax_cxx_compile_stdcxx_11.m4, ax_init_standard_project.m4,
|
||||||
|
bootstrap.sh, build-in-docker.conf, build-in-docker.sh,
|
||||||
|
build-resource-file.sh, configure.ac, debian,
|
||||||
|
debian/changelog.in, debian/compat, debian/control.in,
|
||||||
|
debian/docs, debian/libneuron-dev.install,
|
||||||
|
debian/libneuron.install, debian/rules, doc, doc/doxyfile.in,
|
||||||
|
doc/makefile.am, examples, examples/makefile.am,
|
||||||
|
libneuron.desktop.in, libneuron.spec.in,
|
||||||
|
mac-create-app-bundle.sh, makefile.am, makefile_test.inc.am,
|
||||||
|
resolve-debbuilddeps.sh, resolve-rpmbuilddeps.sh, sql-to-dot.sed,
|
||||||
|
src, src/libneuron.pc.in, src/makefile.am, src/neuron.hxx,
|
||||||
|
src/version.cxx, src/version.hxx, test, test/makefile.am: initial
|
||||||
|
version
|
||||||
|
|
||||||
|
@@ -170,15 +170,37 @@ AC_DEFUN([AX_INIT_STANDARD_PROJECT], [
|
|||||||
AM_CPPFLAGS+=" '-DMAKE_STRING(X)=\#X' '-DNAMESPACE=${PACKAGE_TARNAME//[^a-zA-Z0-9]/_}'"
|
AM_CPPFLAGS+=" '-DMAKE_STRING(X)=\#X' '-DNAMESPACE=${PACKAGE_TARNAME//[^a-zA-Z0-9]/_}'"
|
||||||
AX_SUBST(NUMBERS)
|
AX_SUBST(NUMBERS)
|
||||||
AX_SUBST(HOME)
|
AX_SUBST(HOME)
|
||||||
README=$(tail -n +3 README)
|
if test -f README.md; then
|
||||||
|
README=$()
|
||||||
|
DESCRIPTION=$(head -1 README.md)
|
||||||
|
else
|
||||||
|
README=$(tail -n +3 README)
|
||||||
|
DESCRIPTION=$(head -1 README)
|
||||||
|
fi
|
||||||
|
if which pandoc 2>&1 > /dev/null; then
|
||||||
|
README_HTML=$(echo "$README" | pandoc -f markdown_github -t html | sed ':a;N;$!ba;s,\\\(.\),\\\\<span>\1</span>,g;s/\n/\\n/g;s,",\\",g;s, ,\ \ ,g')
|
||||||
|
else
|
||||||
|
README_HTML="${README}"
|
||||||
|
fi
|
||||||
AX_SUBST(README)
|
AX_SUBST(README)
|
||||||
_AM_SUBST_NOTMAKE([README])
|
_AM_SUBST_NOTMAKE([README])
|
||||||
DESCRIPTION=$(head -1 README)
|
AX_SUBST(README_HTML)
|
||||||
|
_AM_SUBST_NOTMAKE([README_HTML])
|
||||||
AX_SUBST(DESCRIPTION)
|
AX_SUBST(DESCRIPTION)
|
||||||
_AM_SUBST_NOTMAKE([DESCRIPTION])
|
_AM_SUBST_NOTMAKE([DESCRIPTION])
|
||||||
AUTHOR=$(head -1 AUTHORS)
|
AUTHOR=$(head -1 AUTHORS)
|
||||||
|
AUTHOR_NAME=$(echo $AUTHOR | sed 's, *[[<(]].*$,,')
|
||||||
|
AUTHOR_URL=$(echo $AUTHOR | sed 's,.*(\(http[[^)]]*\)).*,\1,')
|
||||||
|
AUTHOR_MAIL=$(echo $AUTHOR | sed 's,.*<\(.*@.*\)>.*,\1,')
|
||||||
AX_SUBST(AUTHOR)
|
AX_SUBST(AUTHOR)
|
||||||
_AM_SUBST_NOTMAKE([AUTHOR])
|
_AM_SUBST_NOTMAKE([AUTHOR])
|
||||||
|
AX_SUBST(AUTHOR_NAME)
|
||||||
|
AX_SUBST(AUTHOR_URL)
|
||||||
|
AX_SUBST(AUTHOR_MAIL)
|
||||||
|
PROJECT_URL="${PROJECT_URL:-${AUTHOR_URL}/projects/${PACKAGE_NAME}}"
|
||||||
|
SOURCE_DOWNLOAD="${SOURCE_DOWNLOAD:-${AUTHOR_URL}/downloads/${PACKAGE_NAME}}"
|
||||||
|
AX_SUBST(PROJECT_URL)
|
||||||
|
AX_SUBST(SOURCE_DOWNLOAD)
|
||||||
DISTRO=$(lsb_release -sc 2>/dev/null || uname -s 2>/dev/null)
|
DISTRO=$(lsb_release -sc 2>/dev/null || uname -s 2>/dev/null)
|
||||||
AX_SUBST(DISTRO)
|
AX_SUBST(DISTRO)
|
||||||
ARCH=$((@<:@@<:@ $(uname -sm) =~ 64 @:>@@:>@ && echo amd64) || (@<:@@<:@ $(uname -sm) =~ 'i?86' @:>@@:>@ && echo i386 || uname -sm))
|
ARCH=$((@<:@@<:@ $(uname -sm) =~ 64 @:>@@:>@ && echo amd64) || (@<:@@<:@ $(uname -sm) =~ 'i?86' @:>@@:>@ && echo i386 || uname -sm))
|
||||||
@@ -444,7 +466,11 @@ EOF
|
|||||||
|
|
||||||
# use this in configure.ac to support debian packages
|
# use this in configure.ac to support debian packages
|
||||||
AC_DEFUN([AX_USE_DEBIAN_PACKAGING], [
|
AC_DEFUN([AX_USE_DEBIAN_PACKAGING], [
|
||||||
README_DEB=$(tail -n +3 README | sed -e 's/^ *$/./g' -e 's/^/ /g')
|
if test -f README.md; then
|
||||||
|
README_DEB=$(tail -n +3 README.md | sed -e 's/^ *$/./g' -e 's/^/ /g')
|
||||||
|
else
|
||||||
|
README_DEB=$(tail -n +3 README | sed -e 's/^ *$/./g' -e 's/^/ /g')
|
||||||
|
fi
|
||||||
AC_SUBST(README_DEB)
|
AC_SUBST(README_DEB)
|
||||||
_AM_SUBST_NOTMAKE([README_DEB])
|
_AM_SUBST_NOTMAKE([README_DEB])
|
||||||
AC_CONFIG_FILES([debian/changelog debian/control])
|
AC_CONFIG_FILES([debian/changelog debian/control])
|
||||||
@@ -506,7 +532,7 @@ AC_DEFUN([AX_USE_DOXYGEN], [
|
|||||||
AC_MSG_WARN([Missing program mscgen!
|
AC_MSG_WARN([Missing program mscgen!
|
||||||
- when you rebild documentation, there are no message state charts
|
- when you rebild documentation, there are no message state charts
|
||||||
- there are precompiled derived files in the distribution]); fi
|
- there are precompiled derived files in the distribution]); fi
|
||||||
AC_CONFIG_FILES([doc/makefile doc/doxyfile])
|
AC_CONFIG_FILES([doc/makefile doc/doxyfile doc/header.html doc/footer.html])
|
||||||
AX_ADD_MAKEFILE_TARGET_DEP([clean-am], [clean-documentation], [doc/makefile.in])
|
AX_ADD_MAKEFILE_TARGET_DEP([clean-am], [clean-documentation], [doc/makefile.in])
|
||||||
AX_ADD_MAKEFILE_TARGET_DEP([distclean-am], [distclean-documentation], [doc/makefile.in])
|
AX_ADD_MAKEFILE_TARGET_DEP([distclean-am], [distclean-documentation], [doc/makefile.in])
|
||||||
AX_ADD_MAKEFILE_TARGET_DEP([maintainer-clean-am], [maintainer-clean-documentation], [doc/makefile.in])
|
AX_ADD_MAKEFILE_TARGET_DEP([maintainer-clean-am], [maintainer-clean-documentation], [doc/makefile.in])
|
||||||
|
110
bootstrap.sh
110
bootstrap.sh
@@ -151,6 +151,9 @@ GENERATED FILES
|
|||||||
* scripts/makefile.am - if you enabled AX_USE_SCRIPTS
|
* scripts/makefile.am - if you enabled AX_USE_SCRIPTS
|
||||||
* doc/makefile.am - if you enabled AX_USE_DOXYGEN
|
* doc/makefile.am - if you enabled AX_USE_DOXYGEN
|
||||||
* doc/doxyfile.in - if you enabled AX_USE_DOXYGEN
|
* doc/doxyfile.in - if you enabled AX_USE_DOXYGEN
|
||||||
|
* doc/header.html.in - if you enabled AX_USE_DOXYGEN
|
||||||
|
* doc/footer.html.in - if you enabled AX_USE_DOXYGEN
|
||||||
|
* doc/style.css - if you enabled AX_USE_DOXYGEN
|
||||||
* test/makefile.am - if you enabled AX_USE_CPPUNIT and AX_USE_CXX
|
* test/makefile.am - if you enabled AX_USE_CPPUNIT and AX_USE_CXX
|
||||||
* test/${DEFAULT_PROJECT_NAME#lib}.cxx - if you enabled AX_BUILD_TEST or AX_USE_CPPUNIT
|
* test/${DEFAULT_PROJECT_NAME#lib}.cxx - if you enabled AX_BUILD_TEST or AX_USE_CPPUNIT
|
||||||
* examples/makefile.am - if you enabled AX_BUILD_EXAMPLES
|
* examples/makefile.am - if you enabled AX_BUILD_EXAMPLES
|
||||||
@@ -566,6 +569,20 @@ if ! testtag AX_CHECK_QT && \
|
|||||||
! testtag AX_REQUIRE_QT; then
|
! testtag AX_REQUIRE_QT; then
|
||||||
echo "${HEADER}MAINTAINERCLEANFILES = makefile.in" | \
|
echo "${HEADER}MAINTAINERCLEANFILES = makefile.in" | \
|
||||||
to --condition AX_USE_CXX src/makefile.am
|
to --condition AX_USE_CXX src/makefile.am
|
||||||
|
if ! ls src/*.[ch]xx; then
|
||||||
|
to --condition AX_USE_CXX src/${PACKAGE_NAME#lib}.hxx <<EOF
|
||||||
|
${CHEADER}#ifndef ${PackageName^^}_HXX
|
||||||
|
#define ${PackageName^^}_HXX
|
||||||
|
|
||||||
|
/** @mainpage @description
|
||||||
|
|
||||||
|
@readme
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#endif
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
elif ! test -e src/makefile.am; then
|
elif ! test -e src/makefile.am; then
|
||||||
to --condition AX_USE_CXX src/makefile.am <<EOF
|
to --condition AX_USE_CXX src/makefile.am <<EOF
|
||||||
${HEADER}bin_PROGRAMS = ${PACKAGE_NAME}
|
${HEADER}bin_PROGRAMS = ${PACKAGE_NAME}
|
||||||
@@ -656,10 +673,17 @@ int main(int argc, char *argv[]) try {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
to --condition AX_USE_CXX src/${PACKAGE_NAME}.hxx <<EOF
|
if ! ls src/*.[ch]xx; then
|
||||||
|
to --condition AX_USE_CXX src/${PACKAGE_NAME#lib}.hxx <<EOF
|
||||||
${CHEADER}#ifndef ${PackageName^^}_HXX
|
${CHEADER}#ifndef ${PackageName^^}_HXX
|
||||||
#define ${PackageName^^}_HXX
|
#define ${PackageName^^}_HXX
|
||||||
|
|
||||||
|
/** @mainpage @description
|
||||||
|
|
||||||
|
@readme
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <ui_${PACKAGE_NAME}.hxx>
|
#include <ui_${PACKAGE_NAME}.hxx>
|
||||||
|
|
||||||
@@ -676,7 +700,8 @@ class ${PackageName}: public QMainWindow, protected Ui::${PackageName} {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
EOF
|
EOF
|
||||||
to --condition AX_USE_CXX src/${PACKAGE_NAME}.ui <<EOF
|
fi
|
||||||
|
to --condition AX_USE_CXX src/${PACKAGE_NAME#lib}.ui <<EOF
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<ui version="4.0">
|
<ui version="4.0">
|
||||||
<class>${PackageName}</class>
|
<class>${PackageName}</class>
|
||||||
@@ -758,7 +783,7 @@ EOF
|
|||||||
to --condition AX_USE_CXX src/version.cxx <<EOF
|
to --condition AX_USE_CXX src/version.cxx <<EOF
|
||||||
/*! @file
|
/*! @file
|
||||||
|
|
||||||
@id $Id\$
|
@id \$Id\$
|
||||||
*/
|
*/
|
||||||
// 1 2 3 4 5 6 7 8
|
// 1 2 3 4 5 6 7 8
|
||||||
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||||
@@ -873,6 +898,69 @@ www_DATA =
|
|||||||
|
|
||||||
MAINTAINERCLEANFILES = makefile.in
|
MAINTAINERCLEANFILES = makefile.in
|
||||||
EOF
|
EOF
|
||||||
|
to --condition AX_USE_DOXYGEN doc/header.html.in <<EOF
|
||||||
|
<!-- HTML header for doxygen 1.8.6-->
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen \$doxygenversion"/>
|
||||||
|
<!--BEGIN PROJECT_NAME--><title>\$projectname: \$title</title><!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME--><title>\$title</title><!--END !PROJECT_NAME-->
|
||||||
|
<link href="\$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="\$relpath^jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="\$relpath^dynsections.js"></script>
|
||||||
|
\$treeview
|
||||||
|
\$search
|
||||||
|
\$mathjax
|
||||||
|
<link href="\$relpath^\$stylesheet" rel="stylesheet" type="text/css" />
|
||||||
|
\$extrastylesheet
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
|
||||||
|
<div id="titlearea">
|
||||||
|
<div id="projecthead">
|
||||||
|
<div id="projectlogo"><img alt="" src="\$relpath^\$projectlogo"/></div>
|
||||||
|
<div id="projectname">\$projectname</span> <span id="projectnumber">\$projectnumber</div>
|
||||||
|
<div id="projectbrief">\$projectbrief</div>
|
||||||
|
</div>
|
||||||
|
<nav>
|
||||||
|
<a href="@PROJECT_URL@" target="_blank">Project Management</a>
|
||||||
|
<a href="@SOURCE_DOWNLOAD@" target="_blank">Download</a>
|
||||||
|
<div>\$searchbox</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
EOF
|
||||||
|
to --condition AX_USE_DOXYGEN doc/footer.html.in <<EOF
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
\$navpath
|
||||||
|
<li class="footer"><a href="@AUTHOR_URL@" target="_blank">@AUTHOR_NAME@</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
EOF
|
||||||
|
to --condition AX_USE_DOXYGEN doc/style.css <<EOF
|
||||||
|
#titlearea {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-begin;
|
||||||
|
}
|
||||||
|
#titlearea nav {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
#titlearea nav a {
|
||||||
|
background-color: lightgray;
|
||||||
|
border: 1px solid gray;
|
||||||
|
color: black;
|
||||||
|
padding: 1ex;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
EOF
|
||||||
if testtag AX_USE_DOXYGEN; then
|
if testtag AX_USE_DOXYGEN; then
|
||||||
if ! checkfile doc/doxyfile.in || \
|
if ! checkfile doc/doxyfile.in || \
|
||||||
contains doc/doxyfile.in "${rebuildfiles[@]}"; then
|
contains doc/doxyfile.in "${rebuildfiles[@]}"; then
|
||||||
@@ -893,12 +981,15 @@ if testtag AX_USE_DOXYGEN; then
|
|||||||
doxyreplace MULTILINE_CPP_IS_BRIEF YES
|
doxyreplace MULTILINE_CPP_IS_BRIEF YES
|
||||||
doxyreplace TAB_SIZE 2
|
doxyreplace TAB_SIZE 2
|
||||||
doxyreplace ALIASES '"id=\\par File-ID\\n"'
|
doxyreplace ALIASES '"id=\\par File-ID\\n"'
|
||||||
doxyadd ALIASES '"copy=\\par Copyright\\n"'
|
doxyadd ALIASES '"copy=\\par Copyright by <a href="@AUTHOR_URL@" target="_blank">@AUTHOR_NAME@</a>\\n"'
|
||||||
doxyadd ALIASES '"license=\\par License\\n"'
|
doxyadd ALIASES '"license=\\par License\\n"'
|
||||||
doxyadd ALIASES '"classmutex=\\par Reentrant:\\nAccess is locked with class static mutex @c "'
|
doxyadd ALIASES '"classmutex=\\par Reentrant:\\nAccess is locked with class static mutex @c "'
|
||||||
doxyadd ALIASES '"instancemutex=\\par Reentrant:\\nAccess is locked with per instance mutex @c "'
|
doxyadd ALIASES '"instancemutex=\\par Reentrant:\\nAccess is locked with per instance mutex @c "'
|
||||||
doxyadd ALIASES '"mutex=\\par Reentrant:\\nAccess is locked with mutex @c "'
|
doxyadd ALIASES '"mutex=\\par Reentrant:\\nAccess is locked with mutex @c "'
|
||||||
doxyadd ALIASES '"api=\\xrefitem api \\"API Call\\" \\"\\""'
|
doxyadd ALIASES '"api=\\xrefitem api \\"API Call\\" \\"\\""'
|
||||||
|
doxyadd ALIASES '"description=@DESCRIPTION@"'
|
||||||
|
doxyadd ALIASES '"readme=@README_HTML@"'
|
||||||
|
doxyadd ALIASES '"author=<a href="@AUTHOR_URL@" target="_blank">@AUTHOR_NAME@</a>"'
|
||||||
doxyreplace ENABLE_PREPROCESSING YES
|
doxyreplace ENABLE_PREPROCESSING YES
|
||||||
doxyreplace MACRO_EXPANSION YES
|
doxyreplace MACRO_EXPANSION YES
|
||||||
doxyadd PREDEFINED '"NAMESPACE=@PACKAGE_NAME@"'
|
doxyadd PREDEFINED '"NAMESPACE=@PACKAGE_NAME@"'
|
||||||
@@ -927,7 +1018,13 @@ if testtag AX_USE_DOXYGEN; then
|
|||||||
fi
|
fi
|
||||||
doxyreplace FILE_PATTERNS '*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.idl *.ddl *.odl *.h *.hh *.hxx *.hpp *.h++ *.cs *.d *.php *.php4 *.php5 *.phtml *.inc *.m *.markdown *.md *.mm *.dox *.py *.f90 *.f *.for *.tcl *.vhd *.vhdl *.ucf *.qsf *.as *.js *.wt *.sql'
|
doxyreplace FILE_PATTERNS '*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.idl *.ddl *.odl *.h *.hh *.hxx *.hpp *.h++ *.cs *.d *.php *.php4 *.php5 *.phtml *.inc *.m *.markdown *.md *.mm *.dox *.py *.f90 *.f *.for *.tcl *.vhd *.vhdl *.ucf *.qsf *.as *.js *.wt *.sql'
|
||||||
doxyreplace RECURSIVE YES
|
doxyreplace RECURSIVE YES
|
||||||
doxyreplace EXCLUDE_PATTERNS "moc_* uic_* qrc_*"
|
doxyreplace EXCLUDE_PATTERNS "moc_* uic_* qrc_* version.[ch]xx"
|
||||||
|
doxyreplace HTML_HEADER header.html
|
||||||
|
doxyreplace HTML_FOOTER footer.html
|
||||||
|
doxyreplace HTML_EXTRA_STYLESHEET style.css
|
||||||
|
doxyreplace HTML_DYNAMIC_SECTIONS YES
|
||||||
|
doxyreplace DISABLE_INDEX YES
|
||||||
|
doxyreplace GENERATE_TREEVIEW YES
|
||||||
if testtag AX_BUILD_EXAMPLES; then
|
if testtag AX_BUILD_EXAMPLES; then
|
||||||
doxyreplace EXAMPLE_PATH @top_srcdir@/examples
|
doxyreplace EXAMPLE_PATH @top_srcdir@/examples
|
||||||
fi
|
fi
|
||||||
@@ -936,7 +1033,6 @@ if testtag AX_USE_DOXYGEN; then
|
|||||||
doxyreplace SOURCE_BROWSER YES
|
doxyreplace SOURCE_BROWSER YES
|
||||||
doxyreplace INLINE_SOURCES YES
|
doxyreplace INLINE_SOURCES YES
|
||||||
doxyreplace GENERATE_TESTLIST YES
|
doxyreplace GENERATE_TESTLIST YES
|
||||||
doxyreplace GENERATE_TREEVIEW NO
|
|
||||||
doxyreplace SEARCHENGINE NO
|
doxyreplace SEARCHENGINE NO
|
||||||
doxyreplace GENERATE_HTML YES
|
doxyreplace GENERATE_HTML YES
|
||||||
doxyreplace GENERATE_LATEX NO
|
doxyreplace GENERATE_LATEX NO
|
||||||
@@ -963,7 +1059,7 @@ if testtag AX_USE_DEBIAN_PACKAGING; then
|
|||||||
|
|
||||||
-- @AUTHOR@ @BUILD_DATE@
|
-- @AUTHOR@ @BUILD_DATE@
|
||||||
EOF
|
EOF
|
||||||
BUILD_DEPENDS="debhelper, ${VCSDEPENDS} pkg-config, automake, libtool, autotools-dev, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | libqt4-core | libqtcore4, qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)"
|
BUILD_DEPENDS="debhelper, ${VCSDEPENDS} pkg-config, automake, libtool, autotools-dev, pandoc, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | libqt4-core | libqtcore4, qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)"
|
||||||
to debian/control.in <<EOF
|
to debian/control.in <<EOF
|
||||||
Source: @PACKAGE_NAME@
|
Source: @PACKAGE_NAME@
|
||||||
Priority: extra
|
Priority: extra
|
||||||
|
@@ -8,6 +8,9 @@
|
|||||||
## 1 2 3 4 5 6 7 8
|
## 1 2 3 4 5 6 7 8
|
||||||
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||||
|
|
||||||
|
PROJECT_URL="https://dev.marc.waeckerlin.org/redmine/libneuron/"
|
||||||
|
SOURCE_DOWNLOAD="https://dev.marc.waeckerlin.org/repository/sources/libneuron/"
|
||||||
|
|
||||||
m4_define(x_package_name, libneuron) # project's name
|
m4_define(x_package_name, libneuron) # project's name
|
||||||
m4_define(x_major, 0) # project's major version
|
m4_define(x_major, 0) # project's major version
|
||||||
m4_define(x_minor, 0) # project's minor version
|
m4_define(x_minor, 0) # project's minor version
|
||||||
|
2
debian/control.in
vendored
2
debian/control.in
vendored
@@ -1,7 +1,7 @@
|
|||||||
Source: @PACKAGE_NAME@
|
Source: @PACKAGE_NAME@
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Maintainer: @AUTHOR@
|
Maintainer: @AUTHOR@
|
||||||
Build-Depends: debhelper, subversion, pkg-config, automake, libtool, autotools-dev, lsb-release , doxygen, graphviz, mscgen, libcppunit-dev, libmatricxx-dev
|
Build-Depends: debhelper, subversion, pkg-config, automake, libtool, autotools-dev, lsb-release , doxygen, graphviz, mscgen, libcppunit-dev, libmatricxx-dev, pandoc
|
||||||
|
|
||||||
Package: @PACKAGE_NAME@
|
Package: @PACKAGE_NAME@
|
||||||
Section: libs
|
Section: libs
|
||||||
|
8
doc/footer.html.in
Normal file
8
doc/footer.html.in
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
$navpath
|
||||||
|
<li class="footer"><a href="@AUTHOR_URL@" target="_blank">@AUTHOR_NAME@</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
33
doc/header.html.in
Normal file
33
doc/header.html.in
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<!-- HTML header for doxygen 1.8.6-->
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen $doxygenversion"/>
|
||||||
|
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
||||||
|
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||||
|
$treeview
|
||||||
|
$search
|
||||||
|
$mathjax
|
||||||
|
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||||
|
$extrastylesheet
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
|
||||||
|
<div id="titlearea">
|
||||||
|
<div id="projecthead">
|
||||||
|
<div id="projectlogo"><img alt="" src="$relpath^$projectlogo"/></div>
|
||||||
|
<div id="projectname">$projectname</span> <span id="projectnumber">$projectnumber</div>
|
||||||
|
<div id="projectbrief">$projectbrief</div>
|
||||||
|
</div>
|
||||||
|
<nav>
|
||||||
|
<a href="@PROJECT_URL@" target="_blank">Project Management</a>
|
||||||
|
<a href="@SOURCE_DOWNLOAD@" target="_blank">Download</a>
|
||||||
|
<div>$searchbox</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
16
doc/style.css
Normal file
16
doc/style.css
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#titlearea {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-begin;
|
||||||
|
}
|
||||||
|
#titlearea nav {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
#titlearea nav a {
|
||||||
|
background-color: lightgray;
|
||||||
|
border: 1px solid gray;
|
||||||
|
color: black;
|
||||||
|
padding: 1ex;
|
||||||
|
margin: 0;
|
||||||
|
}
|
Reference in New Issue
Block a user