Re: Notes on Pylons 1.x code-base and the Pylons Framework

2010-11-09 Thread blaf
We definitively need to make things clear between Pyramid and higher- level stuff and the site must provide that information unambiguously; by words, by content organization, by layout, etc... We also need to make a distinction between projects developed by The Pylons Project and by third

Re: Notes on Pylons 1.x code-base and the Pylons Framework

2010-11-09 Thread blaf
On Nov 9, 5:21 pm, Mike Orr sluggos...@gmail.com wrote: Paste Pyramid and WebOb Pyramid are not really along the same lines. Paste and WebOb are low-level utilities, while Pyramid is a complete framework. Pyramid : PyramidGears is more like Debian : Ubuntu, not GNU : GNU/Linux : Debian.

Re: (solved) problem with edit/save from simplesite (pylonsbook)

2010-08-13 Thread blaf
Did you say yes for sqlalchemy when you created your project using paster create -t pylons ? Because that code is there when you do. -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to

Re: Pylons logo on white background

2010-03-23 Thread blaf
In my point of view I think the «akhet» form of the Pylons idea is good but not in it's original expression, I still think Pylons needs something designed specifically for it's own purpose with it's own essence. A logo could be expressed in color but absolutely need a variation for black and white

Re: server hosting and pylons

2010-03-12 Thread blaf
respective purposes. On Mar 10, 7:24 pm, Kevin J. Smith ke...@rootsmith.ca wrote: Just stay away from rackspace's cloud sites product.  If you are going rackspace cloud then the only choice is rackspace cloud _servers_. On 10 March 2010 16:13, blaf blaise.lafla...@gmail.com wrote

Re: server hosting and pylons

2010-03-10 Thread blaf
serverbeach.com for dedicated servers rocks and rackspacecloud.com for cloud services rocks too. Blaise -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-disc...@googlegroups.com. To unsubscribe from

Re: autocomplete

2008-05-14 Thread blaf
I'm using jquery's autocomplete from Jörn Zaefferer: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Always a pleasure to do javascript with jQuery =) On May 14, 9:18 am, Jonathan Vanasco [EMAIL PROTECTED] wrote: is anyone working on building this into pylons? i haven't see

Mercurial

2008-05-05 Thread blaf
Hi, I'm in the move to install Mercurial or Bazaar for versioning a shared Pylons project. Actually I've never used both in real production, just installed them and played a bit to see how they work. Both seems good but I can't figure out how to make a choice. Any advice will be appreciated.

Re: Mercurial

2008-05-05 Thread blaf
=). Pylons switched from SVN to Mercurial... there is probably a reason? Thanks for your answer, Blaise On May 5, 7:55 am, Christoph Haas [EMAIL PROTECTED] wrote: Hi... errr... blaf? On Montag, 5. Mai 2008, blaf wrote: I'm in the move to install Mercurial or Bazaar for versioning a shared

Re: Paginate module

2008-04-16 Thread blaf
Hi, something strange appened... when using the keyword host in a Page object: c.page = h.Page(hosts, count=hosts.count(), page_nr=page_nr, items_per_page=25, host=host) I got an error in the link generation function: ${ c.page.pager('$link_first ~5~ $link_last') } it tried to replace the

Re: Paginate module

2008-04-10 Thread blaf
On Apr 10, 2:39 pm, Ben Bangert [EMAIL PROTECTED] wrote: I've fixed this in the repo. Thanks for the catch! Nice, works as expected =) Blaise --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group.

Re: Paginate module

2008-04-09 Thread blaf
Is it possible to get only the target dataset (like records 20 to 30)? It can be very memory consuming? There is any example out there about paginator+sqlalchemy? Blaise On Mar 13, 10:30 am, Mike Orr [EMAIL PROTECTED] wrote: I have an example of Paginator + SQLAlchemy at work, but I'm at

Re: Paginate module

2008-04-09 Thread blaf
Just found how... I think... pretty impressive this module... page_nr = request.params.get('page_nr', 1) q = request.params.get('q') rs = Session.query(Search).filter(Search.q.like('%'+q +'%')).order_by('q asc') c.page = h.Page(rs, count=rs.count(), page_nr=page_nr, items_per_page=25, q=q)

Re: Paginate module

2008-04-09 Thread blaf
Thanks Mike... you got a more complete one =) The more I use Pylons the more I'm impressed by all the contributions... juste started using your Flash webhelper today... Thanks. On Apr 9, 3:58 pm, Mike Orr [EMAIL PROTECTED] wrote: --~--~-~--~~~---~--~~ You

Re: Paginate module

2008-04-09 Thread blaf
On Apr 9, 7:00 pm, Mike Orr [EMAIL PROTECTED] wrote: D'oh, stupid me!  I've pushed an update. Thanks Which comes back to my question yesterday, is it inefficient to call session.save() several times in an action?  If so, it's difficult to have utility methods or library classes that modify

Re: Paginate module

2008-04-09 Thread blaf
Latest paginate gives me lt;lt; and gt;gt; in the pager links instead of --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To

Re: Routes 1.8 Release

2008-04-07 Thread blaf
Hi, I don't know the real reason behind this change but for me it feels more natural and elegant to have clean URLs with slashes than using any other caracters =) Blaise On Apr 6, 11:51 pm, Damjan [EMAIL PROTECTED] wrote: Previously, Routes used a ';' mark for an action in map.resource,