Templates and code generator for quickstarting Python, Zope and Plone projects.
Questions tagged [zopeskel]
9 questions
4
votes
2 answers
Plone/Paster - What could cause "paster addcontent dexterity_content" to not work?
I'm trying to use paster to create a dexterity content type.
I did a new standalone installation of Plone 4.3.4 in a target folder that's different from the one I was previously working with so it was buildout-cache would be clean.
The OS I am using…

Patrick Downey
- 965
- 8
- 13
4
votes
0 answers
Plone 4.3.4 - ImportError: No module named dexterity.localcommands.dexterity
On a vanilla Plone 4.3.4 site (Unified Installer on Ubuntu 14.04.1LTS), and after updating buildout.cfg with the zopeskel and paster boiler plate stuff and running buildout, I successfully created a dexterity package in my src folder:
$ cd src
$…

Eric R.
- 81
- 3
2
votes
1 answer
"IOError: No egg-info directory found" with paster on Plone 4.3.3
The error occurs also when using zopeskel in Plone 4.3.3. This seem to be slightly different from this question. Under Plone 4.3.2 there is no error.
$ ../bin/paster create plone_basic
Selected and implied templates:
PasteScript#basic_package A…

wolfrevo
- 6,651
- 2
- 26
- 38
2
votes
1 answer
buildout or not buildout?
I have a problem that when i create an add-on using zopeskel it can't be seen in add-ons on my site. Similar with zopepy - cant import the package.
Here is my buildout.cfg:
[buildout]
extends =
…

dvkellerman
- 47
- 7
2
votes
1 answer
Missing local commands after running zopeskel on windows
I try to create an archetype with zopskel/paster on my newly installed plone 4.2. I have adjusted the buildout.cfg (see below) to get zopeskel.exe and paster.exe generated in the bin folder.
Howerver when I run zopeskel as follows (in develop-eggs…

Jardar
- 19
- 2
2
votes
4 answers
Implementing a simple dexterity content type for plone 4
I have a very frustrating start learning Plone development. I would like to develop a dexterity based content type for Plone 4. I'm an experienced python developer, having some knowledge of Zope and Grok, being rather new to buildout. That said, I…

Achim
- 15,415
- 15
- 80
- 144
1
vote
1 answer
Unable to install Developer Tools on Plone 4.3.1 Windows
I'm on Windows 7 SP1 64-bit with a fresh install of Plone 4.3.1 using the installer Plone-4.3.1-win64.exe.
Plone and Zope run great. I am also able to install eggs like plone.app.relationfield by appending the package name to buildout.cfg. However…

GeospatialPython.com
- 241
- 1
- 6
0
votes
2 answers
Is there a ruby alternative to python templer?
In Python there is common to generate application skeletons with ZopeSkel. Recently ZopeSkel was refactored to define a new module named templer. In the process of creating skeletons templer not only copy dirs, also set values in template files, ask…

Daniel Hernández
- 1,279
- 8
- 15
0
votes
2 answers
What makes "paster addcontent" fail for a package created with Zopeskel template "archetype"?
Here is the situation:
fresh Plone 4.2 buildout
a fresh package created using Zopeskel 2.21.1 with template 'archetype'
and configured in my buildout using mr.developer
Trying to add some content types inside my package fails with:
[ajung@dev1…
user2665694