Re: [Product-Developers] Plone Crash Course

2011-03-19 Thread raharley
Maurits van Rees-3 wrote: Op 17-03-11 11:53, raharley schreef: This is the problem I am going to have. I am integrating a ZMI based application with lots of sql methods/python scripts with a Plone install. What's the best practice here? Best would probably be to replace those zsql

Re: [Product-Developers] Plone Crash Course

2011-03-19 Thread derek
On Mar 19, 12:43 pm, raharley raharl...@gmail.com wrote: Maurits van Rees-3 wrote: Op 17-03-11 11:53, raharley schreef: This is the problem I am going to have. I am integrating a ZMI based application with lots of sql methods/python scripts with a Plone install. What's the best practice

Re: [Product-Developers] Plone Crash Course

2011-03-18 Thread Maurits van Rees
Op 17-03-11 11:53, raharley schreef: This is the problem I am going to have. I am integrating a ZMI based application with lots of sql methods/python scripts with a Plone install. What's the best practice here? Best would probably be to replace those zsql mothods with sqlalchemy. -- Maurits

Re: [Product-Developers] Plone Crash Course

2011-03-17 Thread raharley
This is the problem I am going to have. I am integrating a ZMI based application with lots of sql methods/python scripts with a Plone install. What's the best practice here? -- View this message in context: http://plone.293351.n2.nabble.com/Plone-Crash-Course-tp6159391p6180416.html Sent from the

Re: [Product-Developers] Plone Crash Course

2011-03-17 Thread Alex Clark
On 3/16/11 11:47 PM, David Glick wrote: On 3/16/11 10:31 AM, Alex Clark wrote: On 3/14/11 8:09 PM, Dylan Jay wrote: I think this whole thread raises a big documentation issue. How is it that this question can still be asked? Where can we inject documentation so there's no question that serious

Re: [Product-Developers] Plone Crash Course

2011-03-17 Thread Alex Clark
On 3/17/11 6:53 AM, raharley wrote: This is the problem I am going to have. I am integrating a ZMI based application with lots of sql methods/python scripts with a Plone install. What's the best practice here? IIRC, something like Products.FSDump will let you dump all that stuff to the file

Re: [Product-Developers] Plone Crash Course

2011-03-16 Thread Alex Clark
On 3/10/11 4:26 PM, raharley wrote: I'm looking for a development crash course for Plone. I have pretty good knowledge of Zope 2 +Python but absolutely no Zope 3 exposure. Could someone point me to some good resources? I have so far got Professional Plone development by Martin Aspeli but I'm

Re: [Product-Developers] Plone Crash Course

2011-03-16 Thread Dylan Jay
On 17/03/2011, at 3:07 AM, raharley wrote: The reason I ask is because I am working extensively with db interaction, zsql methods etc so filesystem vs ZMI is not as clear cut as it might be for other developers. For instance working with relational db data is easier in the ZMI because

Re: [Product-Developers] Plone Crash Course

2011-03-16 Thread David Glick
On 3/16/11 10:31 AM, Alex Clark wrote: On 3/14/11 8:09 PM, Dylan Jay wrote: I think this whole thread raises a big documentation issue. How is it that this question can still be asked? Where can we inject documentation so there's no question that serious develop show be done in the filesystem?

Re: [Product-Developers] Plone Crash Course

2011-03-16 Thread Wichert Akkerman
On 2011-3-17 11:47, David Glick wrote: If we really wanted to get rid of the ability to do TTW development, I think it would be fairly straightforward (but a fair amount of work) without moving away from Zope 2...just convert everything in portal_skins to browser views, and remove the

Re: [Product-Developers] Plone Crash Course

2011-03-14 Thread Jean Jordaan
Am I correct in what I said about the ZMI, that it should be avoided for Plone development in favour of the filesystem? Or is the filesystem advantage negated if no source code versioning system is required? Developing via the ZMI will mostly be harder than working on the filesystem. You will

Re: [Product-Developers] Plone Crash Course

2011-03-14 Thread Maurits van Rees
Op 13-03-11 21:02, raharley schreef: Thanks for your replies. I will check those out. Am I correct in what I said about the ZMI, that it should be avoided for Plone development in favour of the filesystem? Or is the filesystem advantage negated if no source code versioning system is required?

Re: [Product-Developers] Plone Crash Course

2011-03-14 Thread Dylan Jay
I think this whole thread raises a big documentation issue. How is it that this question can still be asked? Where can we inject documentation so there's no question that serious develop show be done in the filesystem? I know in the early days many developer friends being put off by Plone/

Re: [Product-Developers] Plone Crash Course

2011-03-13 Thread raharley
Thanks for your replies. I will check those out. Am I correct in what I said about the ZMI, that it should be avoided for Plone development in favour of the filesystem? Or is the filesystem advantage negated if no source code versioning system is required? -- View this message in context:

Re: [Product-Developers] Plone Crash Course

2011-03-11 Thread Martin Weigele
Hi Raharley, maybe Tarek Ziade's Expert Python Programming could be a starting point, although it does contain no information on Zope and Plone directly, but describes in some detail the required Python management tools. To me it seems to contain some of the hidden precondition information