Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Hermann Himmelbauer
Am Montag, 16. Juli 2007 22:44 schrieb Stephan Richter: > On Monday 16 July 2007 15:58, Benji York wrote: > > This reminds me of something I've been curious about but haven't had > > time to research lately.  What are the differences between pagelets and > > viewlets and their various strengths/wea

[Zope3-Users] Difference between schema fields default and missing_value

2007-07-16 Thread Luciano Ramalho
I have not figured out the difference between these schema field attributes: - default: "The default value if none was provided." - missing_value: "In the case of missing input value, the value provided here is used." The quoted descriptions are from Philiipp's book (2nd ed), p. 61. How are the

[Zope3-Users] Re: AW: View or content provider

2007-07-16 Thread Daniel Nouri
Roger Ineichen wrote: >> I need very basic content providers to generate HTML contents >> from a set of classes, inside pages templates. >> Is there a huge difference between using views (and >> "context/@@viewname" >> syntax) and using content providers (with "provider:providername" >> syntax),

Re: [Zope3-Users] Does Killing The Zope Server Kill Zope?

2007-07-16 Thread Stephan Richter
On Thursday 15 March 2007 17:21, Mark, Jonathan (Integic) wrote: > Zope 3.3 was running on port 8080 on Linux. Instead of using webserver.py > stop to kill the server I ran netstat -nlp. It showed one pid using port > 8080. > > Then I killed that pid. Zope 3.3 continued to serve up a corrupted page

Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Benji York
Thanks for the info. I really need to dig into both viewlets and pagelets the next time I do a new UI from scratch. -- Benji York Senior Software Engineer Zope Corporation ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/l

Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Stephan Richter
On Monday 16 July 2007 15:58, Benji York wrote: > This reminds me of something I've been curious about but haven't had > time to research lately.  What are the differences between pagelets and > viewlets and their various strengths/weaknesses.  An acceptable answer > is "read the docs and decide fo

Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Benji York
Stephan Richter wrote: - Use viewlets to do the entire UI. - Use pagelets to do the entire UI. This reminds me of something I've been curious about but haven't had time to research lately. What are the differences between pagelets and viewlets and their various strengths/weaknesses. An acc

Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Stephan Richter
On Monday 16 July 2007 12:29, Florian Lindner wrote: > - What skins to use? Don't use any of the shipped skins at all. You may want to start with z3c.layer.minimal or z3c.layer.pagelet (if you are using pagelets) to get some initial registrations like error pages, widgets, etc. > - How should a

[Zope3-Users] Building an admin interface

2007-07-16 Thread Florian Lindner
Hello, I have a rather fundamental problem. Until now the editor of my bloggin software has added, modified and removed blog entries by logging in to the ZMI and use the filesystem like view there. This gives me (as the developer) only very limited control about how it is done. For example: A n

Re: [Zope3-Users] Building an admin interface

2007-07-16 Thread Joachim Schmitz
hi Florian, perhaps you should take a look at grok http://grok.zope.org. Look there for grokstar, which is a blog with nearly no user-interface. During the recent grog-sprint at EuroPython in Vilnius, I started working to improve it a little bit. It will soon be checked in. Florian Lindner