jmn
(NFENGONE NDOUTOUME Jean-Martial)
1
As I understand, the latest
version is the development version on Heptapod, no?
So:
C’est ça?
1 Like
ced
(Cédric Krier)
2
For the record, here is how it is daily generated:
#!/bin/sh
set -e
REPO="${HOME}/tryton"
OUTDIR="${HOME}/docs.tryton.org"
SITE="https://docs.tryton.org"
export MAX_PROCS=2
cd "${REPO}"
. .venv/bin/activate
hg pull --quiet
for branch in `hg branches -r 'public()' -T "{branch}\n"`; do
hg update --quiet "${branch}"
if [ "${branch}" == "default" ]; then branch=latest; fi
DOC_BASE_URL="${SITE}/${branch}" .gitlab-scripts/generate-doc.sh "${OUTDIR}/${branch}"
done
but we are still missing the global search index.
jmn
(NFENGONE NDOUTOUME Jean-Martial)
3
What is the global search index
?
ced
(Cédric Krier)
4
That the search box is not limited to the package but to all the packages.
1 Like
system
(system)
Closed
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.