Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aormazabal committed Nov 8, 2022
0 parents commit 4ebe4b3
Show file tree
Hide file tree
Showing 20 changed files with 1,887 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
docs/_build/

35 changes: 35 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/plone/tags/

# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"

# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/reference/pip_install/#caching
#
# If you want to also cache the installed packages, you have to install
# them in a virtualenv and cache it as well.
cache:
paths:
- .cache/pip
- venv/
- downloads/
- eggs/
- builds/

# Set execution order: first run jobs on 'test' stage on parallel
# then run jobs on 'report' stage
stages:
- test

before_script:
- pip install -U tox

test:
image: python3.6
stage: test
script:
- tox -e py{36}
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: python
python:
- 3.6
install:
- bin/buildout -t 3
script: bin/test
60 changes: 60 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
0.7 (unreleased)
================

- Fix test for python3 version
[aormazabal]
- Add support for c.r.backup
[mamico]
- Document virtual mount points. [jean]
- Disallow cross-database references finally (see https://dev.plone.org/ticket/11150)
[jean]

0.6 (2010-08-13)
================

- Support use of the recipe when the ZEO server and client are in different
buildouts.
[ramon]

0.5 (2010-02-03)
================

- Support plone.recipe.zeoserver in addition to plone.recipe.zope2zeoserver.
[davisagli]

0.4 (2009-12-30)
================

- Add support for creating blob storages associated with the created
filestorage parts.
[davisagli]

- Fixed message indicating which parts the filestorage part must be installed
before. This fixes https://bugs.launchpad.net/bugs/433877 (Thanks, Jean
Jordaan)
[davisagli]

0.3 (2009-03-19)
================

- Avoid causing the installation of all parts, even those not listed in the
[buildout] parts variable. Thanks to Dylan Jay for the diagnosis and fix.
[davisagli]

- Fixed restructured text of long description (README.txt).
[maurits]

0.2 (2008-04-30)
================

- Added zodb_container_class option.
[davisagli]

0.1 (2008-04-22)
================

- Happy Earth Day!
[davisagli]

- Created recipe with ZopeSkel. Initial implementation.
[davisagli]
7 changes: 7 additions & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- David Glick [davisagli], Author

Thanks to:

- Dylan Jay
- Ramon Navarro Bosch
- Albert Ormazabal
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include *.txt
include *.rst
include *.md

recursive-include docs *
recursive-include plone *

global-exclude *pyc
Loading

0 comments on commit 4ebe4b3

Please sign in to comment.