Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #14 from plone/datakurre-experimental
Browse files Browse the repository at this point in the history
Replace GPL dependencies with minimal local implementations
  • Loading branch information
bloodbare committed Nov 17, 2016
2 parents b17999f + c9e77f7 commit d6ce118
Show file tree
Hide file tree
Showing 71 changed files with 3,653 additions and 669 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
1 change: 1 addition & 0 deletions VERSION
49 changes: 13 additions & 36 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,59 +7,37 @@ parts =
zeo
isort
pytest
gunicorn

sources-dir = extras
sources = sources
auto-checkout =
plone.i18n
plone.dexterity
plone.supermodel
plone.registry
plone.uuid
plone.alterego
plone.rfc822
plone.jsonserializer
plone.indexer
repoze.zcml
repoze.workflow

develop =
src/plone.server
src/plone.example

show-picked-versions = true

[zeo]
recipe = zc.recipe.egg
eggs =
plone.server
ZEO

[gunicorn]
recipe = zc.recipe.egg
eggs =
gunicorn
uvloop
plone.server

[remotes]
# Plone
plone = git://github.com/plone
plone_push = git@github.com:plone
# Collective
collective = git://github.com/collective
collective_push = git@github.com:collective
# ZOPE
zope = git://github.com/zopefoundation
zope_push = git@github.com:zopefoundation
# Pyrenees
pyrenees = git://github.com/pyrenees
pyrenees_push = git@github.com:pyrenees


[sources]
plone.i18n = git ${remotes:pyrenees}/plone.i18n.git pushurl=${remotes:pyrenees_push}/plone.i18n.git
plone.dexterity = git ${remotes:pyrenees}/plone.dexterity pushurl=${remotes:pyrenees_push}/plone.dexterity.git branch=master
plone.registry = git ${remotes:pyrenees}/plone.registry pushurl=${remotes:pyrenees_push}/plone.registry branch=master
plone.supermodel = git ${remotes:pyrenees}/plone.supermodel pushurl=${remotes:pyrenees_push}/plone.supermodel.git branch=master
plone.uuid = git ${remotes:pyrenees}/plone.uuid.git pushurl=${remotes:pyrenees_push}/plone.uuid.git branch=master
plone.behavior = git ${remotes:pyrenees}/plone.behavior.git pushurl=${remotes:pyrenees_push}/plone.behavior.git branch=master
plone.alterego = git ${remotes:pyrenees}/plone.alterego.git pushurl=${remotes:pyrenees_push}/plone.alterego.git branch=master
plone.indexer = git ${remotes:pyrenees}/plone.indexer.git pushurl=${remotes:pyrenees_push}/plone.indexer.git branch=master
plone.rfc822 = git ${remotes:pyrenees}/plone.rfc822.git pushurl=${remotes:pyrenees_push}/plone.rfc822.git branch=master
plone.jsonserializer = git ${remotes:pyrenees}/plone.jsonserializer.git pushurl=${remotes:pyrenees_push}/plone.jsonserializer.git branch=master
repoze.zcml = git ${remotes:pyrenees}/repoze.zcml.git pushurl=${remotes:pyrenees_push}/repoze.zcml.git branch=master
repoze.workflow = git ${remotes:pyrenees}/repoze.workflow.git pushurl=${remotes:pyrenees_push}/repoze.workflow.git branch=master
plone.behavior = git ${remotes:plone}/plone.behavior.git pushurl=${remotes:plone_push}/plone.behavior.git branch=master

[server]
recipe = zc.recipe.egg
Expand Down Expand Up @@ -98,6 +76,5 @@ eggs =

[versions]
ZODB = 5.0.0
ZEO = 5.0.1
ZEO = 5.0.2

flake8-debugger = 1.4.0
31 changes: 31 additions & 0 deletions config-zeo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"databases": [
{
"zodb1": {
"storage": "ZEO",
"address": "localhost",
"port": "8090"
"configuration": {
"pool_size": 100,
"cache_size": 100
}
}
}],
"address": 8080,
"static": [
{"favicon.ico": "static/favicon.ico"}
],
"creator": {
"admin": "admin",
"password": "YWRtaW4="
},
"cors": {
"allow_origin": ["*"],
"allow_methods": ["GET", "POST", "DELETE", "HEAD", "PATCH"],
"allow_headers": ["*"],
"expose_headers": ["*"],
"allow_credentials": true,
"max_age": 3660
},
"utilities": []
}
30 changes: 30 additions & 0 deletions config-zodb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"databases": [
{
"zodb1": {
"storage": "ZODB",
"path": "data/Data.fs",
"configuration": {
"pool_size": 100,
"cache_size": 100
}
}
}],
"address": 8080,
"static": [
{"favicon.ico": "static/favicon.ico"}
],
"creator": {
"admin": "admin",
"password": "YWRtaW4="
},
"cors": {
"allow_origin": ["*"],
"allow_methods": ["GET", "POST", "DELETE", "HEAD", "PATCH"],
"allow_headers": ["*"],
"expose_headers": ["*"],
"allow_credentials": true,
"max_age": 3660
},
"utilities": []
}
25 changes: 13 additions & 12 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
{
"databases": [
{
"plone": {
"storage": "ZODB",
"path": "data/Data.fs",
"configuration": {
"blob_dir": "data/blobstorage"
}
},
"zeo1": {
"zodb1": {
"storage": "ZEO",
"address": "127.0.0.1",
"port": 8090,
"port": 8090,
"configuration": {
"blob_dir": "data/zeoblobstorage",
"shared_blob_dir": true
}
"pool_size": 100,
"cache_size": 100
}
}
}],
"address": 8080,
Expand All @@ -26,5 +19,13 @@
"admin": "admin",
"password": "YWRtaW4="
},
"cors": {
"allow_origin": ["*"],
"allow_methods": ["GET", "POST", "DELETE", "HEAD", "PATCH"],
"allow_headers": ["*"],
"expose_headers": ["*"],
"allow_credentials": true,
"max_age": 3660
},
"utilities": []
}

0 comments on commit d6ce118

Please sign in to comment.