david ally
2010-10-21 16:26:28 UTC
Hi Toni and others,
Yes zope list is quite silent unlike other open source projects. I'm new to
zope and have been having problems dealing with so many versions available
in zope. I finally settled to get acquainted with zope 3, when i discovered
that zope3 and bluebream are the same thing even though nobody use bluebream
to describe zope 3, i'm interested in zope because the project i'm managing
key component is developed using zope 3.
Now can someone please clarify my assumption that zope and bluebream are the
same platform?
Secondly, I have been following the tutorial on bluebream available at
http://bluebream.zope.org/doc/1.0/gettingstarted.html, but i got stuck at
this point ./bin/buildout with this error;
(my_zope_env)***@ubusvr101:/var/local/study/sampleproject$ sudo
./bin/buildout
Develop: '/var/local/study/sampleproject/.'
install_dir /var/local/study/sampleproject/develop-eggs/tmpvV1gjcbuild
Installing app.
Getting distribution for 'zope.security==3.7.3'.
install_dir /var/local/study/sampleproject/eggs/tmpUo9VBT
src/zope/security/_proxy.c:19: fatal error: Python.h: No such file or
directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status
1
An error occured when trying to install zope.security 3.7.3. Look above this
message for any errors that were output by easy_install.
While:
Installing app.
Getting distribution for 'zope.security==3.7.3'.
Error: Couldn't install: zope.security 3.7.3
How do I resolve this ?
David
Yes zope list is quite silent unlike other open source projects. I'm new to
zope and have been having problems dealing with so many versions available
in zope. I finally settled to get acquainted with zope 3, when i discovered
that zope3 and bluebream are the same thing even though nobody use bluebream
to describe zope 3, i'm interested in zope because the project i'm managing
key component is developed using zope 3.
Now can someone please clarify my assumption that zope and bluebream are the
same platform?
Secondly, I have been following the tutorial on bluebream available at
http://bluebream.zope.org/doc/1.0/gettingstarted.html, but i got stuck at
this point ./bin/buildout with this error;
(my_zope_env)***@ubusvr101:/var/local/study/sampleproject$ sudo
./bin/buildout
Develop: '/var/local/study/sampleproject/.'
install_dir /var/local/study/sampleproject/develop-eggs/tmpvV1gjcbuild
Installing app.
Getting distribution for 'zope.security==3.7.3'.
install_dir /var/local/study/sampleproject/eggs/tmpUo9VBT
src/zope/security/_proxy.c:19: fatal error: Python.h: No such file or
directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status
1
An error occured when trying to install zope.security 3.7.3. Look above this
message for any errors that were output by easy_install.
While:
Installing app.
Getting distribution for 'zope.security==3.7.3'.
Error: Couldn't install: zope.security 3.7.3
How do I resolve this ?
David
Send Zope3-users mailing list submissions to
To subscribe or unsubscribe via the World Wide Web, visit
https://mail.zope.org/mailman/listinfo/zope3-users
or, via email, send a message with subject or body 'help' to
You can reach the person managing the list at
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Zope3-users digest..."
1. z3c.form: small patch (Toni Mueller)
----------------------------------------------------------------------
Message: 1
Date: Thu, 21 Oct 2010 15:47:16 +0200
Subject: [Zope3-Users] z3c.form: small patch
Content-Type: text/plain; charset=us-ascii
Hello,
since the zope3-dev list appears to be dead, and since I have no better
idea about where to put this, I send you a small patch for z3c.form
version 2.4.1.
Background: https://bugs.launchpad.net/singing-dancing/+bug/620608
Users of Singing&Dancing in Plone need to detect whether z3c.form has
certain features. The patch adds a feature declaration to z3c.form.
--- configure.zcml.orig 2010-10-21 15:24:05.000000000 +0200
+++ configure.zcml 2010-10-21 15:40:58.000000000 +0200
@@ -1,6 +1,7 @@
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:i18n="http://namespaces.zope.org/i18n"
+ xmlns:meta="http://namespaces.zope.org/meta"
i18n_domain="z3c.form">
<!-- default z3c.form layer -->
@@ -9,6 +10,8 @@
type="zope.publisher.interfaces.browser.IBrowserSkinType"
/>
+ <meta:provides feature="z3c.form.checkbox-widget" />
+ <meta:provides feature="z3c.form.radio-widget" />
<!-- Validators -->
<adapter
It would be great if this patch could make it into the next version of
z3c.form, or into a small patch release.
Kind regards,
--Toni++
------------------------------
_______________________________________________
Zope3-users mailing list
https://mail.zope.org/mailman/listinfo/zope3-users
End of Zope3-users Digest, Vol 71, Issue 5
******************************************
To subscribe or unsubscribe via the World Wide Web, visit
https://mail.zope.org/mailman/listinfo/zope3-users
or, via email, send a message with subject or body 'help' to
You can reach the person managing the list at
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Zope3-users digest..."
1. z3c.form: small patch (Toni Mueller)
----------------------------------------------------------------------
Message: 1
Date: Thu, 21 Oct 2010 15:47:16 +0200
Subject: [Zope3-Users] z3c.form: small patch
Content-Type: text/plain; charset=us-ascii
Hello,
since the zope3-dev list appears to be dead, and since I have no better
idea about where to put this, I send you a small patch for z3c.form
version 2.4.1.
Background: https://bugs.launchpad.net/singing-dancing/+bug/620608
Users of Singing&Dancing in Plone need to detect whether z3c.form has
certain features. The patch adds a feature declaration to z3c.form.
--- configure.zcml.orig 2010-10-21 15:24:05.000000000 +0200
+++ configure.zcml 2010-10-21 15:40:58.000000000 +0200
@@ -1,6 +1,7 @@
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:i18n="http://namespaces.zope.org/i18n"
+ xmlns:meta="http://namespaces.zope.org/meta"
i18n_domain="z3c.form">
<!-- default z3c.form layer -->
@@ -9,6 +10,8 @@
type="zope.publisher.interfaces.browser.IBrowserSkinType"
/>
+ <meta:provides feature="z3c.form.checkbox-widget" />
+ <meta:provides feature="z3c.form.radio-widget" />
<!-- Validators -->
<adapter
It would be great if this patch could make it into the next version of
z3c.form, or into a small patch release.
Kind regards,
--Toni++
------------------------------
_______________________________________________
Zope3-users mailing list
https://mail.zope.org/mailman/listinfo/zope3-users
End of Zope3-users Digest, Vol 71, Issue 5
******************************************