[Zope3-Users] z3c.form: small patch

2010-10-21 Thread Toni Mueller


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.0 +0200
+++ configure.zcml  2010-10-21 15:40:58.0 +0200
@@ -1,6 +1,7 @@
 http://namespaces.zope.org/zope";
 xmlns:i18n="http://namespaces.zope.org/i18n";
+xmlns:meta="http://namespaces.zope.org/meta";
 i18n_domain="z3c.form">
 
   
@@ -9,6 +10,8 @@
   type="zope.publisher.interfaces.browser.IBrowserSkinType"
   />
 
+  
+  
 
   
   https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] z3c.form: small patch

2010-10-21 Thread Marius Gedminas
On Thu, Oct 21, 2010 at 03:47:16PM +0200, Toni Mueller wrote:
> Hello,
> 
> since the zope3-dev list appears to be dead,

It was merged into the zope-dev list.

> 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.

The bug tracker (launchpad) is a good place for patches, in theory.

> Background: https://bugs.launchpad.net/singing-dancing/+bug/620608

Marius Gedminas
-- 
http://pov.lt/ -- Zope 3/BlueBream consulting and development


signature.asc
Description: Digital signature
___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Zope3-users Digest, Vol 71, Issue 5

2010-10-21 Thread david ally
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)da...@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



On Thu, Oct 21, 2010 at 5:00 PM,  wrote:

> Send Zope3-users mailing list submissions to
>zope3-users@zope.org
>
> 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
>zope3-users-requ...@zope.org
>
> You can reach the person managing the list at
>zope3-users-ow...@zope.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Zope3-users digest..."
>
>
> Today's Topics:
>
>   1. z3c.form: small patch (Toni Mueller)
>
>
> --
>
> Message: 1
> Date: Thu, 21 Oct 2010 15:47:16 +0200
> From: Toni Mueller 
> Subject: [Zope3-Users] z3c.form: small patch
> To: zope3-users@zope.org
> Message-ID: <20101021134716.32278.qm...@oak.oeko.net>
> 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.0 +0200
> +++ configure.zcml  2010-10-21 15:40:58.0 +0200
> @@ -1,6 +1,7 @@
>   xmlns="http://namespaces.zope.org/zope";
> xmlns:i18n="http://namespaces.zope.org/i18n";
> +xmlns:meta="http://namespaces.zope.org/meta";
> i18n_domain="z3c.form">
>
>   
> @@ -9,6 +10,8 @@
>   type="zope.publisher.interfaces.browser.IBrowserSkinType"
>   />
>
> +  
> +  
>
>   
>   
>
> 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
> Zope3-users@zope.org
> https://mail.zope.org/mailman/listinfo/zope3-users
>
>
> End of Zope3-users Digest, Vol 71, Issue 5
> **
>
___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] z3c.form: small patch

2010-10-21 Thread Toni Mueller

Hi Marius,

thanks for the answer.

On Thu, 21.10.2010 at 19:03:27 +0300, Marius Gedminas  wrote:
> The bug tracker (launchpad) is a good place for patches, in theory.
> 
> > Background: https://bugs.launchpad.net/singing-dancing/+bug/620608

which tracker at Launchpad? I've put the whole story into this bug
report, but the "home page" for z3c.form does not mention any
associated tracker, and neither does the z3c.form documentation page.


-- 
Kind regards,
--Toni++

___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Zope3-users Digest, Vol 71, Issue 5

2010-10-21 Thread Adam GROSZER
Hello David,

Install a C compiler.

Thursday, October 21, 2010, 6:26:28 PM, you wrote:

da> Hi Toni and others,

da> Yes zope list is quite silent unlike other open source projects.
da> I'm new to zope and have been having problems dealing with so many
da> versions available in zope. I finally settled to get acquainted
da> with zope 3, when i discovered that zope3 and bluebream are the
da> same thing even though nobody use bluebream to describe zope 3,
da> i'm interested in zope because the project i'm managing key
da> component is developed using zope 3. 

da> Now can someone please clarify my assumption that zope and bluebream are 
the same platform?

da> Secondly, I have been following the tutorial on bluebream
da> available at
da> http://bluebream.zope.org/doc/1.0/gettingstarted.html, but i got
da> stuck at this point ./bin/buildout with this error;

da> (my_zope_env)da...@ubusvr101:/var/local/study/sampleproject$ sudo 
./bin/buildout
da> Develop: '/var/local/study/sampleproject/.'
da> install_dir /var/local/study/sampleproject/develop-eggs/tmpvV1gjcbuild
da> Installing app.
da> Getting distribution for 'zope.security==3.7.3'.
da> install_dir /var/local/study/sampleproject/eggs/tmpUo9VBT
da> src/zope/security/_proxy.c:19: fatal error: Python.h: No such file or 
directory
da> compilation terminated.
da> error: Setup script exited with error: command 'gcc' failed with exit 
status 1
da> An error occured when trying to install zope.security 3.7.3. Look
da> above this message for any errors that were output by easy_install.
da> While:
da> Installing app.
da> Getting distribution for 'zope.security==3.7.3'.
da> Error: Couldn't install: zope.security 3.7.3

da> How do I resolve this ?

da> David 



da> On Thu, Oct 21, 2010 at 5:00 PM,  wrote:
da> Send Zope3-users mailing list submissions to
da>zope3-users@zope.org

da> To subscribe or unsubscribe via the World Wide Web, visit
da>https://mail.zope.org/mailman/listinfo/zope3-users
da> or, via email, send a message with subject or body 'help' to
da>zope3-users-requ...@zope.org

da> You can reach the person managing the list at
da>zope3-users-ow...@zope.org

da> When replying, please edit your Subject line so it is more specific
da> than "Re: Contents of Zope3-users digest..."


da> Today's Topics:

da>   1. z3c.form: small patch (Toni Mueller)


da> --

da> Message: 1
da> Date: Thu, 21 Oct 2010 15:47:16 +0200
da> From: Toni Mueller 
da> Subject: [Zope3-Users] z3c.form: small patch
da> To: zope3-users@zope.org
da> Message-ID: <20101021134716.32278.qm...@oak.oeko.net>
da> Content-Type: text/plain; charset=us-ascii



da> Hello,

da> since the zope3-dev list appears to be dead, and since I have no better
da> idea about where to put this, I send you a small patch for z3c.form
da> version 2.4.1.

da> Background: https://bugs.launchpad.net/singing-dancing/+bug/620608

da> Users of Singing&Dancing in Plone need to detect whether z3c.form has
da> certain features. The patch adds a feature declaration to z3c.form.


da> --- configure.zcml.orig 2010-10-21 15:24:05.0 +0200
da> +++ configure.zcml  2010-10-21 15:40:58.0 +0200
da> @@ -1,6 +1,7 @@
da>   xmlns="http://namespaces.zope.org/zope";
da> xmlns:i18n="http://namespaces.zope.org/i18n";
da> +xmlns:meta="http://namespaces.zope.org/meta";
da> i18n_domain="z3c.form">

da>   
da> @@ -9,6 +10,8 @@
da>   type="zope.publisher.interfaces.browser.IBrowserSkinType"
da>   />

da> +  
da> +  

da>   
da>It would be great if this patch could make it into the next version of
da> z3c.form, or into a small patch release.


da> Kind regards,
da> --Toni++


da> --

da> ___
da> Zope3-users mailing list
da> Zope3-users@zope.org
da> https://mail.zope.org/mailman/listinfo/zope3-users


da> End of Zope3-users Digest, Vol 71, Issue 5
da> **



-- 
Best regards,
 Adam GROSZERmailto:agros...@gmail.com
--
Quote of the day:
Froud's Law: A transistor protected by a fast acting fuse will protect the fuse 
by blowing first.

___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Zope3-users Digest, Vol 71, Issue 5

2010-10-21 Thread Marius Gedminas
On Thu, Oct 21, 2010 at 07:09:18PM +0200, Adam GROSZER wrote:
> Hello David,
> 
> Install a C compiler.

He has a C compiler.  Look at the error message.  What he lacks are the
Python header files.

> Thursday, October 21, 2010, 6:26:28 PM, you wrote:
> 
> da> Hi Toni and others,
> 
> da> Yes zope list is quite silent unlike other open source projects.
> da> I'm new to zope and have been having problems dealing with so many
> da> versions available in zope. I finally settled to get acquainted
> da> with zope 3, when i discovered that zope3 and bluebream are the
> da> same thing even though nobody use bluebream to describe zope 3,
> da> i'm interested in zope because the project i'm managing key
> da> component is developed using zope 3. 
> 
> da> Now can someone please clarify my assumption that zope and
> da> bluebream are the same platform?

Yes, there was a decision to rename Zope 3 to Bluebream.  The reason is
that Zope 3 was never going to be a complete replacement for Zope 2,
carving out a different niche instead.

> da> Secondly, I have been following the tutorial on bluebream
> da> available at
> da> http://bluebream.zope.org/doc/1.0/gettingstarted.html, but i got
> da> stuck at this point ./bin/buildout with this error;
> 
> da> (my_zope_env)da...@ubusvr101:/var/local/study/sampleproject$ sudo 
> ./bin/buildout
> da> Develop: '/var/local/study/sampleproject/.'
> da> install_dir /var/local/study/sampleproject/develop-eggs/tmpvV1gjcbuild
> da> Installing app.
> da> Getting distribution for 'zope.security==3.7.3'.
> da> install_dir /var/local/study/sampleproject/eggs/tmpUo9VBT
> da> src/zope/security/_proxy.c:19: fatal error: Python.h: No such file or 
> directory

...

> da> How do I resolve this ?

What OS?   You need the equivalent of sudo apt-get install python-dev
for your distro.

Marius Gedminas
-- 
http://pov.lt/ -- Zope 3/BlueBream consulting and development


signature.asc
Description: Digital signature
___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] z3c.form: small patch

2010-10-21 Thread Jens Vagelpohl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 10/21/10 19:07 , Toni Mueller wrote:
> Hi Marius,
> 
> thanks for the answer.
> 
> On Thu, 21.10.2010 at 19:03:27 +0300, Marius Gedminas  
> wrote:
>> The bug tracker (launchpad) is a good place for patches, in theory.
>>
>>> Background: https://bugs.launchpad.net/singing-dancing/+bug/620608
> 
> which tracker at Launchpad? I've put the whole story into this bug
> report, but the "home page" for z3c.form does not mention any
> associated tracker, and neither does the z3c.form documentation page.

If you go to launchpad.net and search for z3c.form you will find the
project. In the project you will see the "Bugs" link at the top.

jens


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAkzAwIcACgkQRAx5nvEhZLJVagCeIMKn21dZm51yh+gef3Oov63k
y68AoIzmTTX8lOkr+zh2oQqoJxWXyOb2
=iVAA
-END PGP SIGNATURE-
___
Zope3-users mailing list
Zope3-users@zope.org
https://mail.zope.org/mailman/listinfo/zope3-users