Tryton docs `latest` vs `current` version

As I understand, the latest version is the development version on Heptapod, no?

So:

C’est ça?

1 Like

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.

What is the global search index?

That the search box is not limited to the package but to all the packages.

1 Like