Re: [Zope3-Users] Re: Products

2005-10-27 Thread Stephan Richter
On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:
     How to add self made products in ZOPE 3?

First I'll note that the Zope 2 products do not work in Zope 3. Secondly, they 
are not called products anymore; they are just Python packages.

Now, you can add any Python package you want anywhere you like, as long as it 
is in the Python path. In order to hook up the ZCML to the startup process, 
please look at packages like zope.app.preference to see how they implemented 
it; the files you are interested in are SETUP.cfg and 
preference-configure.zcml.

Regards,
Stephan
-- 
Stephan Richter
CBU Physics  Chemistry (B.S.) / Tufts Physics (Ph.D. student)
Web2k - Web Software Design, Development and Training
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Re: Products

2005-10-27 Thread [EMAIL PROTECTED]

Hello,
 I'm a new user of zope 3. What is the zcml? Where can I find 
documentation about zope 3? Is there already some books?

Best regards.
Jean Tinguely.

Stephan Richter a écrit :


On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:
 


  How to add self made products in ZOPE 3?
 



First I'll note that the Zope 2 products do not work in Zope 3. Secondly, they 
are not called products anymore; they are just Python packages.


Now, you can add any Python package you want anywhere you like, as long as it 
is in the Python path. In order to hook up the ZCML to the startup process, 
please look at packages like zope.app.preference to see how they implemented 
it; the files you are interested in are SETUP.cfg and 
preference-configure.zcml.


Regards,
Stephan
 


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


Re: [Zope3-Users] Re: Products

2005-10-27 Thread [EMAIL PROTECTED]

Hello,
  Is there a development environment for Python?
Best regards.
Jean Tinguely.

[EMAIL PROTECTED] a écrit :


Hello,
 I'm a new user of zope 3. What is the zcml? Where can I find 
documentation about zope 3? Is there already some books?

Best regards.
Jean Tinguely.

Stephan Richter a écrit :


On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:
 


  How to add self made products in ZOPE 3?





First I'll note that the Zope 2 products do not work in Zope 3. 
Secondly, they are not called products anymore; they are just Python 
packages.


Now, you can add any Python package you want anywhere you like, as 
long as it is in the Python path. In order to hook up the ZCML to the 
startup process, please look at packages like zope.app.preference to 
see how they implemented it; the files you are interested in are 
SETUP.cfg and preference-configure.zcml.


Regards,
Stephan
 


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



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


Re: [Zope3-Users] Re: Products

2005-10-27 Thread James Allwyn
Hi Jean,

The Zope 3 documentation page is at:

http://www.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/Documentation

You can access a PDF of Stephan's Zope 3 Book there, as well as an
introductory tutorial from Jim.

You could also check out this blog post that points in the direction
of a number of beginners tutorials:

http://griddlenoise.blogspot.com/2005/10/some-zope-3-quick-starts-and-resources.html

Most of those should give you an overview of what ZCML is - in short
it's the configuration language for Zope 3, and it's a flavour of XML.

As well as Stephan's book, there's currently one other Z3 book in
print - Web Component Development in Zope 3 by Philipp von
Weitershausen. I've found they complement each other quite well.

Hope that helps,
James



On 27/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Hello,
   I'm a new user of zope 3. What is the zcml? Where can I find
 documentation about zope 3? Is there already some books?
 Best regards.
 Jean Tinguely.

 Stephan Richter a écrit :

 On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:
 
 
How to add self made products in ZOPE 3?
 
 
 
 First I'll note that the Zope 2 products do not work in Zope 3. Secondly, 
 they
 are not called products anymore; they are just Python packages.
 
 Now, you can add any Python package you want anywhere you like, as long as it
 is in the Python path. In order to hook up the ZCML to the startup process,
 please look at packages like zope.app.preference to see how they implemented
 it; the files you are interested in are SETUP.cfg and
 preference-configure.zcml.
 
 Regards,
 Stephan
 
 
 ___
 Zope3-users mailing list
 Zope3-users@zope.org
 http://mail.zope.org/mailman/listinfo/zope3-users

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


Re: [Zope3-Users] Re: Products

2005-10-27 Thread Stephan Richter
On Thursday 27 October 2005 09:23, [EMAIL PROTECTED] wrote:
    Is there a development environment for Python?

WingIDE is really good. There are others, like Boa Constructor, Eric plugins, 
etc.

Most core developers use Emacs, some use VIM.

Regards,
Stephan
-- 
Stephan Richter
CBU Physics  Chemistry (B.S.) / Tufts Physics (Ph.D. student)
Web2k - Web Software Design, Development and Training
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Re: Products

2005-10-27 Thread [EMAIL PROTECTED]


Thank you everybody for all your answer!
Best regards.
Jean Tinguely.

James Allwyn a écrit :


Googling for development environment Python (no quotes) points you to this:

http://www.python.org/idle/

IDLE - an Integrated DeveLopment Environment for Python
A stable version of IDLE is now being distributed with each Python distribution

Personally, on Windows, I'm using SciTE (
http://www.scintilla.org/SciTE.html ) as a Text Editor.

Regards,
James

On 27/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 


Hello,
  Is there a development environment for Python?
Best regards.
Jean Tinguely.

[EMAIL PROTECTED] a écrit :

   


Hello,
I'm a new user of zope 3. What is the zcml? Where can I find
documentation about zope 3? Is there already some books?
Best regards.
Jean Tinguely.

Stephan Richter a écrit :

 


On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:


   


 How to add self made products in ZOPE 3?

   


First I'll note that the Zope 2 products do not work in Zope 3.
Secondly, they are not called products anymore; they are just Python
packages.

Now, you can add any Python package you want anywhere you like, as
long as it is in the Python path. In order to hook up the ZCML to the
startup process, please look at packages like zope.app.preference to
see how they implemented it; the files you are interested in are
SETUP.cfg and preference-configure.zcml.

Regards,
Stephan


   


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


 


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

   


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


 


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


Re: [Zope3-Users] Re: Products

2005-10-27 Thread [EMAIL PROTECTED]

Hello,
 I'm only the reincarnation.
Have a nice day.

Andre Meyer a écrit :


Hi Jean

You are not THE Jean Tinguely, I guess ;-)

I use Eclipse with PyDev for all my Python development and occasionaly 
IDLE for just experimenting with a few lines of code.


http://www.eclipse.org/
http://pydev.sourceforge.net/

kind regards
André


[EMAIL PROTECTED] wrote:



Thank you everybody for all your answer!
Best regards.
Jean Tinguely.

James Allwyn a écrit :

Googling for development environment Python (no quotes) points you 
to this:


http://www.python.org/idle/

IDLE - an Integrated DeveLopment Environment for Python
A stable version of IDLE is now being distributed with each Python 
distribution


Personally, on Windows, I'm using SciTE (
http://www.scintilla.org/SciTE.html ) as a Text Editor.

Regards,
James

On 27/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] 
wrote:
 


Hello,
  Is there a development environment for Python?
Best regards.
Jean Tinguely.

[EMAIL PROTECTED] a écrit :

 


Hello,
I'm a new user of zope 3. What is the zcml? Where can I find
documentation about zope 3? Is there already some books?
Best regards.
Jean Tinguely.

Stephan Richter a écrit :

   


On Thursday 27 October 2005 08:34, [EMAIL PROTECTED] wrote:


 


 How to add self made products in ZOPE 3?

  




First I'll note that the Zope 2 products do not work in Zope 3.
Secondly, they are not called products anymore; they are just Python
packages.

Now, you can add any Python package you want anywhere you like, as
long as it is in the Python path. In order to hook up the ZCML to 
the

startup process, please look at packages like zope.app.preference to
see how they implemented it; the files you are interested in are
SETUP.cfg and preference-configure.zcml.

Regards,
Stephan


  



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






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

  



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


 


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






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