Re: Flickr tutorial under 0.9.7?

2008-12-19 Thread Wichert Akkerman
Previously Matt Feifarek wrote: On Wed, Dec 17, 2008 at 6:19 PM, Ben Bangert b...@groovie.org wrote: I've updated the front page in the codebase which will soon be up at http://beta.pylonshq.com/, to properly reflect what's in Pylons 0.9.7. Should be deployed there shortly. I'm also

Re: Flickr tutorial under 0.9.7?

2008-12-18 Thread Matt Feifarek
On Wed, Dec 17, 2008 at 6:19 PM, Ben Bangert b...@groovie.org wrote: I've updated the front page in the codebase which will soon be up at http://beta.pylonshq.com/, to properly reflect what's in Pylons 0.9.7. Should be deployed there shortly. I'm also getting most of the links fixed up so

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Alex Marandon
2008/12/16 Mike Orr sluggos...@gmail.com: By the way, Pylons homepage says: AJAX: Rails-style WebHelpers based on Prototype, or Mochikit, jQuery, Dojo, Ext more. I'm wondering what that means. I've been curious about that too, since the JavaScript helpers are implemented with Prototype. I

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Mike Orr
On Wed, Dec 17, 2008 at 3:32 AM, Alex Marandon alex.maran...@gmail.com wrote: 2008/12/16 Mike Orr sluggos...@gmail.com: By the way, Pylons homepage says: AJAX: Rails-style WebHelpers based on Prototype, or Mochikit, jQuery, Dojo, Ext more. I'm wondering what that means. I've been curious

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Rod Morison
That .6 vs .7 status list is very helpful, esp for a Pylons newbie struggling with documentation which is part .6 and part .7, thanks. Are there any docs or examples for the new .7 helpers? I want to work towards the Pylons 1.0 Factory approved usage for helpers and templating, but am

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Ben Bangert
On Dec 17, 2008, at 3:01 PM, Rod Morison wrote: That .6 vs .7 status list is very helpful, esp for a Pylons newbie struggling with documentation which is part .6 and part .7, thanks. Are there any docs or examples for the new .7 helpers? I want to work towards the Pylons 1.0 Factory approved

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Rod Morison
I didn't have the beta docs url, looks like there's enough to get me going with the intrinsic helpers. I like the Pylons platform a lot already, and have only done minor experiments. When everything is ironed out, it's really gonna rock. Great project! Rod

Re: Flickr tutorial under 0.9.7?

2008-12-17 Thread Mike Orr
On Wed, Dec 17, 2008 at 3:01 PM, Rod Morison r...@morison.biz wrote: That .6 vs .7 status list is very helpful, esp for a Pylons newbie struggling with documentation which is part .6 and part .7, thanks. Are there any docs or examples for the new .7 helpers? The documentation is in the

Re: Flickr tutorial under 0.9.7?

2008-12-16 Thread Alex Marandon
2008/12/15 Mike Orr sluggos...@gmail.com: You can add the Javascripts app to middleware.py and it will probably work, but that part of WebHelpers is deprecated and will be gone by Pylons 0.9.8. Is it going to be possible to keep the current Rails-style WebHelpers while using newer versions of

Re: Flickr tutorial under 0.9.7?

2008-12-16 Thread Wyatt Baldwin
On Dec 16, 10:06 am, Alex Marandon alex.maran...@gmail.com wrote: 2008/12/15 Mike Orr sluggos...@gmail.com: You can add the Javascripts app to middleware.py and it will probably work, but that part of WebHelpers is deprecated and will be gone by Pylons 0.9.8. Is it going to be possible

Re: Flickr tutorial under 0.9.7?

2008-12-16 Thread Mike Orr
On Tue, Dec 16, 2008 at 11:06 AM, Wyatt Baldwin wyatt.lee.bald...@gmail.com wrote: On Dec 16, 10:06 am, Alex Marandon alex.maran...@gmail.com wrote: 2008/12/15 Mike Orr sluggos...@gmail.com: You can add the Javascripts app to middleware.py and it will probably work, but that part of

Flickr tutorial under 0.9.7?

2008-12-15 Thread Rod Morison
I'm going through the tutorials under 0.9.7. The Flickr tutorial says config/middleware.py should have javascripts_app = StaticJavascripts() ... app = Cascade([static_app, javascripts_app, app]) and a /javascripts/effects.js file. Neither are there. I read the What's new in Pylons 0.9.7? at

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Tom Longson (nym)
I generally add my javascript files by hand to my base.mako template. Effects.js is from scriptaculous, which is a prototype (.js) effects framework. If you add these manually to your public folder, and add a script tag to the pages that use them, you can forgo the need to use javascripts

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Rod Morison
Tom, thanks for google CDN tip. It looks like in 10.1 on http://code.google.com/apis/ajaxlibs/terms.html there are no restrictions on use for commercial applications. Is that your understanding? Rod Tom Longson (nym) wrote: I generally add my javascript files by hand to my base.mako

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Mike Orr
On Mon, Dec 15, 2008 at 1:07 PM, Rod Morison r...@morison.biz wrote: I'm going through the tutorials under 0.9.7. The Flickr tutorial says config/middleware.py should have javascripts_app = StaticJavascripts() ... app = Cascade([static_app, javascripts_app, app]) and a

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Tom Longson (nym)
Yes Rod, that's my understanding. This comment from a Google employee seems to support that opinion: http://code.google.com/p/google-ajax-apis/issues/detail?id=50#c44 They purposely did not include the ext javascript library because of concern for commercial users. Tom Longson (nym)