[tg-trunk] Making a 2.1.5 bugfix release?

2012-02-22 Thread Alessandro Molina
Last week Christoph pointed out a flaw in the branch strategy about bugfix releases while working on new major releases and that made me think that a few bugfixes we have on the 2.2 branch would make sense for a 2.1.5 bugfix release as they actually might solve a few issues to users.

Re: [tg-trunk] Making a 2.1.5 bugfix release?

2012-02-22 Thread Christoph Zwerschke
Am 22.02.2012 10:37, schrieb Alessandro Molina: Anyone is against to this? Is there any reason for not doing this? We always made bugfix releases for older branches in the past, that's a good practice. Also the 2.1 branch is important since we recently decided it's the last one that provides

Re: [tg-trunk] What should we do with Dojo?

2012-02-22 Thread Michael Pedersen
I'm leaning towards disabling by default myself. We have a lot of good (even great) things about TurboGears, and high on that list is that we don't force people to use pretty much anything. One failure we have in that regard, though, is that we haven't chosen (and stuck with) a JS library. At this

[TurboGears] Re: Database Backup

2012-02-22 Thread NiL
Hi, I don't know how to move your data from sqlite to postgres, I'm sure you can google around this specific issue. I've been using sqlite for development and test, and went postgres for production. I've stumbled upon several problem then as sqlite is very permissive, and now I'm using

[TurboGears] problem using tw.tinymce on an ajax loaded tab

2012-02-22 Thread NiL
Hi, the title says it all. I have a create form with a tw.tinymce form and it works as expected. My edit form, on the other hand, is ajax loaded, and I only get a standard textarea. It puzzles me, as other js rich widgets (jqmultiselect, growing ...) works in this condition. I have patched the

[TurboGears] Re: Visit troubles in TG 1.5

2012-02-22 Thread Gustavo Marin
Hello, I am new to TurboGears and I am having a similar issue, how did you manage to downgrade to 2.4? I guess this is a very basic question thanks for your help :) -- You received this message because you are subscribed to the Google Groups TurboGears group. To view this discussion on

Re: [TurboGears] problem using tw.tinymce on an ajax loaded tab

2012-02-22 Thread Alessandro Molina
About tw.tinymce I'm not sure, but many js based widgets require two steps when loaded using ajax. 1) In the page that will load the ajax based partial it is required to manually register the widgets script using widget.register_resources() 2) In that partial that will be loaded you might have

Re: [TurboGears] Re: Widgets and forms to use with TG2

2012-02-22 Thread Alessandro Molina
On Sat, Feb 18, 2012 at 4:26 PM, Ralph Bean ralph.b...@gmail.com wrote: One of the targets set for 2.2 release during the last TG meeting has been to switch to TW2 as the default widgets set in newly quickstarted projects. Alessandro, I wasn't aware that the TG team was planning on TW2

Re: [TurboGears] Re: Visit troubles in TG 1.5

2012-02-22 Thread Carlos Daniel Ruvalcaba Valenzuela
On Wed, Feb 22, 2012 at 1:21 AM, Gustavo Marin ma...@spotify.com wrote: Hello, I am new to TurboGears and I am having a similar issue, how did you manage to downgrade to 2.4? I guess this is a very basic question thanks for your help :) Try installing specific version with easy_install

[TurboGears] Re: jqgrid: classes in rows, reloading (plus caching a page)

2012-02-22 Thread Ralph Bean
Hi Craig, On Feb 21, 3:56 am, Craig Small csm...@enc.com.au wrote: The first is auto-updates.  This table the grid uses for data is updated in the backend so I'd like to be able to display the last n'th items and update this every x seconds with the latest n'th.  I've done this previous with

[TurboGears] How to initiate TurboMail email automatically from Turbogears application

2012-02-22 Thread mpearce
Hi, I have a Turbogears 2.0 application (with Turbomail) and would like to trigger a daily function automatically to send a reminder notice to selected users. I have no problem getting the email functionality working, however how do I automate it? Normally my controller methods are initiated by

[TurboGears] Catching Up

2012-02-22 Thread Michael Pedersen
Good evening all. I've been pretty well absent for the past two months, and especially this past month. Right now, I'm catching up on the email list (86 threads to read), and then I'll be back to action. It's been a long busy few months for me, personally, and I'm sorry for being so absent.

Re: [TurboGears] joins - 3 level

2012-02-22 Thread Michael Pedersen
On Tue, Jan 17, 2012 at 1:34 PM, Tamas Hegedus biohege...@gmail.com wrote: #-**--- #This version is very slow (10sec) @expose('myprj.templates.**browse') def browse(self): q = PfamClan.query q.enable_eagerloads(True)

Re: [TurboGears] TG2 in our scientific applications

2012-02-22 Thread Michael Pedersen
Let us know when these are ready, and we'll add them to our Who's Using page. On Tue, Jan 17, 2012 at 1:56 PM, Tamas Hegedus biohege...@gmail.com wrote: http://abcmutations.hegelab.**org http://abcmutations.hegelab.org http://mutfinderpipe.hegelab.**org http://mutfinderpipe.hegelab.org --

Re: [TurboGears] On Multiple Databases, how to clone auth module?

2012-02-22 Thread Michael Pedersen
Doing cross-database joins can only be done in a very few ways. I've seen support for it work on Sybase, I think it could maybe work on MySQL, and for all of those times, you would have to use raw sql. Aside from having a program to copy data from one to the other, I don't see any feasible way to

[TurboGears] New releases for tgext.less and tgext.coffeescript

2012-02-22 Thread Carlos Daniel Ruvalcaba Valenzuela
For anyone using LESS with tgext.less or CoffeeScript with tgext.coffeescript I have released a new version. Both projects now sport Jinja template integration in a form of a Jinja Extensions which will enable you to embed LESS and CoffeeScript in your templates, check the projects respective

Re: [TurboGears] probable bug: schema controller validation does not convert to python

2012-02-22 Thread alex bodnaru
hello diez On 02/19/2012 01:25 PM, Diez B. Roggisch wrote: On Feb 19, 2012, at 12:10 PM, alex bodnaru wrote: hello friends, i've tried to validate a controller params using a schema. as the validators are for integers, a dict of fieldname,validator has converted the controller