├── .coveragerc ├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── CHANGES.rst ├── README.rst ├── README.txt ├── VERSION.txt ├── constraints.txt ├── floating_versions_project.cfg ├── linkto ├── base.cfg ├── extends │ ├── versions-4.1.6.cfg │ ├── versions-4.1.cfg │ ├── versions-4.2.5.cfg │ ├── versions-4.3.1.cfg │ └── versions-4.3.2.cfg ├── floating_versions.cfg ├── hotfixes │ ├── 4.2.2.cfg │ ├── 4.2.3.cfg │ ├── 4.2.5.cfg │ ├── 4.2.7.cfg │ ├── 4.3.1.cfg │ ├── 4.3.10.cfg │ ├── 4.3.11.cfg │ ├── 4.3.12.cfg │ ├── 4.3.13.cfg │ ├── 4.3.14.cfg │ ├── 4.3.15.cfg │ ├── 4.3.17.cfg │ ├── 4.3.18.cfg │ ├── 4.3.19.cfg │ ├── 4.3.2.cfg │ ├── 4.3.20.cfg │ ├── 4.3.3.cfg │ ├── 4.3.4.cfg │ ├── 4.3.6.cfg │ ├── 4.3.7.cfg │ ├── 4.3.8.cfg │ ├── 4.3.9.cfg │ ├── 4.3.cfg │ ├── 5.0.10.cfg │ ├── 5.0.2.cfg │ ├── 5.0.3.cfg │ ├── 5.0.4.cfg │ ├── 5.0.5.cfg │ ├── 5.0.6.cfg │ ├── 5.0.7.cfg │ ├── 5.0.8.cfg │ ├── 5.0.9.cfg │ ├── 5.0.cfg │ ├── 5.1.1.cfg │ ├── 5.1.2.cfg │ ├── 5.1.3.cfg │ ├── 5.1.4.cfg │ ├── 5.1.5.cfg │ ├── 5.1.6.cfg │ ├── 5.1.7.cfg │ ├── 5.1.cfg │ ├── 5.1b2.cfg │ ├── 5.2.1.cfg │ ├── 5.2.10.cfg │ ├── 5.2.11.cfg │ ├── 5.2.12.cfg │ ├── 5.2.13.cfg │ ├── 5.2.14.cfg │ ├── 5.2.15.cfg │ ├── 5.2.2.cfg │ ├── 5.2.3.cfg │ ├── 5.2.4.cfg │ ├── 5.2.5.cfg │ ├── 5.2.6.cfg │ ├── 5.2.7.cfg │ ├── 5.2.8.cfg │ ├── 5.2.9.cfg │ ├── 5.2.cfg │ ├── 6.0.1.cfg │ ├── 6.0.10.cfg │ ├── 6.0.11.cfg │ ├── 6.0.12.cfg │ ├── 6.0.13.cfg │ ├── 6.0.14.cfg │ ├── 6.0.15.cfg │ ├── 6.0.16.cfg │ ├── 6.0.2.cfg │ ├── 6.0.3.cfg │ ├── 6.0.4.cfg │ ├── 6.0.5.cfg │ ├── 6.0.6.cfg │ ├── 6.0.7.cfg │ ├── 6.0.8.cfg │ ├── 6.0.9.cfg │ ├── 6.0.cfg │ ├── 6.1.0.cfg │ ├── 6.1.1.cfg │ ├── 6.1.2.cfg │ ├── 6.1.3.cfg │ └── 6.1.4.cfg └── pinned_versions.cfg ├── local_ci.cfg ├── local_develop.cfg ├── local_production.cfg ├── pinned_versions_project.cfg ├── pyproject.toml ├── requirements.txt ├── run.sh └── templates ├── i18nize.in ├── nginx.conf.in ├── site.service.j2 ├── varnish.vcl.in ├── zeoclient.service.j2 └── zeoserver.service.j2 /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | README.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/README.txt -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 3.4 2 | -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- 1 | -r https://dist.plone.org/release/6.1.3/requirements.txt 2 | -------------------------------------------------------------------------------- /floating_versions_project.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/floating_versions_project.cfg -------------------------------------------------------------------------------- /linkto/base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/base.cfg -------------------------------------------------------------------------------- /linkto/extends/versions-4.1.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/extends/versions-4.1.6.cfg -------------------------------------------------------------------------------- /linkto/extends/versions-4.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/extends/versions-4.1.cfg -------------------------------------------------------------------------------- /linkto/extends/versions-4.2.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/extends/versions-4.2.5.cfg -------------------------------------------------------------------------------- /linkto/extends/versions-4.3.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/extends/versions-4.3.1.cfg -------------------------------------------------------------------------------- /linkto/extends/versions-4.3.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/extends/versions-4.3.2.cfg -------------------------------------------------------------------------------- /linkto/floating_versions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/floating_versions.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.2.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.2.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.2.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.2.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.2.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.2.5.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.2.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.2.7.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.1.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.10.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.11.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.12.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.13.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.14.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.14.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.15.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.15.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.17.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.17.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.18.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.18.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.19.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.19.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.20.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.4.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.6.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.7.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.8.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.9.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/4.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/4.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.10.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.4.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.5.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.6.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.7.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.8.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.9.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.0.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.1.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.4.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.5.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.6.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.7.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.1b2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.1b2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.1.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.10.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.11.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.12.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.13.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.14.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.15.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.4.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.5.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.6.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.7.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.8.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.9.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/5.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/5.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.1.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.10.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.11.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.12.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.13.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.14.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.15.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.16.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.2.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.3.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.4.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.5.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.6.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.7.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.8.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.9.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/hotfixes/6.0.cfg -------------------------------------------------------------------------------- /linkto/hotfixes/6.1.0.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.1.1.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.1.2.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.1.3.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/hotfixes/6.1.4.cfg: -------------------------------------------------------------------------------- 1 | [buildout] 2 | 3 | eggs += 4 | 5 | 6 | [versions] 7 | -------------------------------------------------------------------------------- /linkto/pinned_versions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/linkto/pinned_versions.cfg -------------------------------------------------------------------------------- /local_ci.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/local_ci.cfg -------------------------------------------------------------------------------- /local_develop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/local_develop.cfg -------------------------------------------------------------------------------- /local_production.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/local_production.cfg -------------------------------------------------------------------------------- /pinned_versions_project.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/pinned_versions_project.cfg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/run.sh -------------------------------------------------------------------------------- /templates/i18nize.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/i18nize.in -------------------------------------------------------------------------------- /templates/nginx.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/nginx.conf.in -------------------------------------------------------------------------------- /templates/site.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/site.service.j2 -------------------------------------------------------------------------------- /templates/varnish.vcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/varnish.vcl.in -------------------------------------------------------------------------------- /templates/zeoclient.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/zeoclient.service.j2 -------------------------------------------------------------------------------- /templates/zeoserver.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starzel/buildout/HEAD/templates/zeoserver.service.j2 --------------------------------------------------------------------------------