Created
December 15, 2011 17:10
-
-
Save jaroel/1481899 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[buildout] | |
extends = | |
http://x.aclark.net/plone/4.1.x/develop.cfg | |
http://good-py.appspot.com/release/dexterity/1.1 | |
auto-checkout = | |
collective.z3cform.datagridfield | |
plone.app.relationfield | |
collective.z3cform.datagridfield_demo | |
[sources] | |
collective.z3cform.datagridfield = git [email protected]:jaroel/collective.z3cform.datagridfield.git branch=origin/relationchoice-integration | |
plone.app.relationfield = git [email protected]:datakurre/plone.app.relationfield.git branch=origin/datagridfield-integration | |
collective.z3cform.datagridfield_demo = git [email protected]:jaroel/collective.z3cform.datagridfield_demo.git | |
[plone] | |
eggs += | |
${buildout:auto-checkout} | |
plone.app.dexterity | |
collective.z3cform.datagridfield [test] | |
[omelette] | |
eggs = | |
${buildout:auto-checkout} | |
plone.app.dexterity | |
[test] | |
eggs = ${plone:eggs} |
I've used the [sources] mentioned and ran bin/test -s collective.z3cform.datagridfield.
All tests seem to pass.
Also in my Plone instance, the RelationValue values stored in the object now, instead of the objects!
Also i can reproduce the strange 'when is only one row there is no data' error in datagrid field. strange stuff
That's because of the hidden counter-field the widget depends on. I though it to be an independent issue from this relation stuff.
Yeah probably this is an independent issue.
Somehow i can't seem to reproduce this every time, will futher look in to this
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's a buildout with tests passing: