[turbogears-commits] [1594] trunk/turbogears/command/quickstart.py: merge 1593 from 1.0

2006-06-27 Thread dangoor
Title: [1594] trunk/turbogears/command/quickstart.py: merge 1593 from 1.0 Revision 1594 Author elvelind Date 2006-06-27 07:51:42 -0500 (Tue, 27 Jun 2006) Log Message merge 1593 from 1.0 Modified Paths trunk/turbogears/command/quickstart.py Diff Modified:

[tg-tickets] Re: [TurboGears] #1009: Spinner image doesn't show up in autocomplete widget

2006-06-27 Thread TurboGears
#1009: Spinner image doesn't show up in autocomplete widget -+-- Reporter: Kaan |Owner: anonymous Type: defect | Status: new Priority: normal |Milestone: 0.9 Component:

[tg-tickets] Re: [TurboGears] #746: 'tg-admin sql create' does not accept configuration file name

2006-06-27 Thread TurboGears
#746: 'tg-admin sql create' does not accept configuration file name --+- Reporter: anoymous |Owner: anonymous Type: defect| Status: reopened Priority: high |Milestone:

[tg-tickets] Re: [TurboGears] #968: [PATCH] tg-admin update doesn't get proper identity provider

2006-06-27 Thread TurboGears
#968: [PATCH] tg-admin update doesn't get proper identity provider --+- Reporter: plewis|Owner: anonymous Type: defect| Status: closed Priority: normal|Milestone:

[tg-tickets] Re: [TurboGears] #908: tg-admin fails if setuptools is too old and/or an old version of TG is installed

2006-06-27 Thread TurboGears
#908: tg-admin fails if setuptools is too old and/or an old version of TG is installed ---+ Reporter: Aaron Digulla |Owner: anonymous Type: defect | Status: closed Priority: normal

[tg-tickets] Re: [TurboGears] #912: quickstarted projects choke on database schema has changed

2006-06-27 Thread TurboGears
#912: quickstarted projects choke on database schema has changed ---+ Reporter: tic|Owner: anonymous Type: defect | Status: closed Priority: high |Milestone:

[tg-tickets] Re: [TurboGears] #746: 'tg-admin sql create' does not accept configuration file name

2006-06-27 Thread TurboGears
#746: 'tg-admin sql create' does not accept configuration file name --+- Reporter: anoymous |Owner: anonymous Type: defect| Status: reopened Priority: high |Milestone:

[tg-tickets] Re: [TurboGears] #1012: Comment on download/index.html

2006-06-27 Thread TurboGears
#1012: Comment on download/index.html --+- Reporter: michela |Owner: anonymous Type: defect| Status: closed Priority: high |Milestone: 0.9 Component: Installation

[tg-tickets] [TurboGears] #1016: Static-filter paths ignore server.webpath, disappear if path prepended

2006-06-27 Thread TurboGears
#1016: Static-filter paths ignore server.webpath, disappear if path prepended -+-- Reporter: [EMAIL PROTECTED] | Owner: anonymous Type: defect | Status: new Priority: normal |

[tg-tickets] [TurboGears] #1017: [Patch] Scriptaculous 1.6.1

2006-06-27 Thread TurboGears
#1017: [Patch] Scriptaculous 1.6.1 -+-- Reporter: fredlin | Owner: anonymous Type: enhancement | Status: new Priority: normal | Milestone: 1.0b1 Component: Widgets |

[tg-trunk] Re: Problem with Current Dev Trunk

2006-06-27 Thread Jorge Vargas
On 6/27/06, Mansi [EMAIL PROTECTED] wrote: I am trying to check out current development trunk:Process stops at this:Fetching external item into 'turbogears/thirdparty/sqlobject/ez_setup'After sometime connection times out saying.svn: Can't connect to host ' svn.eby-sarna.com': Connection timed

[tg-trunk] Re: Problem with Current Dev Trunk

2006-06-27 Thread Mansi
Thank you Jorge, I'll check that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears Trunk group. To post to this group, send email to turbogears-trunk@googlegroups.com To unsubscribe from this group, send

[tg-trunk] Re: Problem with Current Dev Trunk

2006-06-27 Thread Kevin Dangoor
On Jun 27, 2006, at 12:33 PM, Mansi wrote: I am trying to check out current development trunk: Process stops at this: Fetching external item into 'turbogears/thirdparty/sqlobject/ez_setup' After sometime connection times out saying. svn: Can't connect to host 'svn.eby-sarna.com':

[TurboGears] Re: display validation errors on form

2006-06-27 Thread Michele Cella
Indeed, the problem is most probably with a different instance being used, the ideal solution is to avoid such things since you're meant to reuse the same widget instance. In this particular case to avoid collisions between two forms displayed inside the same page we display errors only for the

[TurboGears] Re: anyone has recomendations on Turbogears + Dojo

2006-06-27 Thread [EMAIL PROTECTED]
Hi There! Kevin Dangoor wrote: On Jun 26, 2006, at 10:13 PM, Jorge Vargas wrote: I'm developing an app with a friend and he is going to do the front end, and has suggested to use dojo, I really don't have any arguments agains/pro it so please give me your comments. I am the gui-guy :) I

[TurboGears] Re: optimize SQLObject's SelectResults

2006-06-27 Thread Joost Moesker
From the SQLObject documentation: Select results are generators, which are lazily evaluated. So the SQL is only executed when you iterate over the select results, or if you use list() to force the result to be executed. When you iterate over the select results, rows are fetched one at a time.

[TurboGears] Re: optimize SQLObject's SelectResults

2006-06-27 Thread Robin Haswell
Yeah I'm well aware, thanks. I'm also well aware that select id from foo limit 10; select * from foo where id='1'; select * from foo where id='2'; etc will never be fast. I'm all for saving memory. But most of the time I just want to output a page in under 5 seconds. Also this methodology

[TurboGears] Re: optimize SQLObject's SelectResults

2006-06-27 Thread Joost Moesker
As I understand it SQLObject only perform one single query when you apply list() on your SelectResults generator. I have verified this both using SQLObjects debuging output and mysql administrator client. We use this quite often when calculating conversion rates and such.

[TurboGears] Re: Encoding problem with Kid

2006-06-27 Thread Jorge Godoy
Kevin Dangoor [EMAIL PROTECTED] writes: Generally speaking, 0.9 is a great deal better than 0.8 in almost every respect. I'd probably hold off a little longer deploying a production system (though I believe that people have deployed 0.9 in production). (Yes! And it works great ;-))

[TurboGears] Re: FYI, client side form validator

2006-06-27 Thread gasolin
Hello Kevin: Acturally this lib is a regular expression based validation, so its a good point to start for client/server validators. The current owe is this validation require to import additional prototype/scriptaculous libs. Since mochikit has porting some prototype/scriptaculous feature,

[TurboGears] Re: seeking SQLAlchemy connection advice

2006-06-27 Thread Randall
I've made some progress in this area and wanted to share. My SA objects use DynamicMetaData, so an engine has to be mapped to them. TG uses a threadlocal context which provides a default session accessible via sqlalchemy.objectstore. This is not the objectstore from SA 1. DynamicMetaData

[TurboGears] ANN: TurboZSI-0.5

2006-06-27 Thread Charlie Moad
I have been experimenting with turbogears and ZSI and have gotten the module into a usable state. Feel free to break it. http://sda.iu.edu/turbozsi/ TurboZSI is a plugin for the web framework TurboGears for creating and serving web services. It serves as a bridge between TurboGears and the

[TurboGears] how to tg-admin sql create with SQLAlchemy?

2006-06-27 Thread Olli Wang
hi, I just created a new app and tried tg-admin sql create. but I got such msg. E:\TurboGears\testtg-admin sql create Using database URI sqlite:///E|\TurboGears\test/devdata.sqlite No classes found! No modules specified No packages specified Looked in eggs: test I didn't change any setting yet.

[TurboGears] Re: how to tg-admin sql create with SQLAlchemy?

2006-06-27 Thread Jorge Vargas
On 6/27/06, Olli Wang [EMAIL PROTECTED] wrote: hi, I just created a new app and tried tg-admin sql create.but I got such msg.there is no support from TG tools for SQLAlchemy, remenber SA is beta code E:\TurboGears\testtg-admin sql createUsing database URI

[TurboGears] official IRC channel staff

2006-06-27 Thread Jorge Vargas
Hello everyoneI'm a regular (as in I connect 2-3 times a week) IRC user, and the #turbogears channel in freenode has at a constant user count of ~50.And there is no OP there I believe we should organice a group of people to be the official representation on the channel. I think we should just

[TurboGears] Help with forms

2006-06-27 Thread Matt Williams
Dear List, I am trying to develop a small app that will capture some data in a web-based form and then store it in a MySQL db. I know this must have been done loads of times before, but if someone could point me to some examples/ documentation I'd be really grateful. Alternatively, if

[TurboGears] Re: i18n in validators

2006-06-27 Thread Ulysses Almeida
Sorry to bother... it seems to be fixed alredy (http://trac.turbogears.org/turbogears/ticket/900) On 6/27/06, Ulysses Almeida [EMAIL PROTECTED] wrote: Hi all, I just made a validator class tha looks like this: class IntEventValidator(validators.Int): messages = {'integer': Invalid

[TurboGears] Re: Help with forms

2006-06-27 Thread Jorge Godoy
Matt Williams [EMAIL PROTECTED] writes: I am trying to develop a small app that will capture some data in a web-based form and then store it in a MySQL db. I know this must have been done loads of times before, but if someone could point me to some examples/ documentation I'd be really

[TurboGears] Newbie problem with tutorial

2006-06-27 Thread lst
This is probably really easy to solve, but it is driving me nuts. I am doing the 20-minute Wiki tutorial, and have a problem when I get to the Hey, where's the page? section. What happens is that when I hit a link without a page in existance, the default() method gets called with the wrong

[TurboGears] Re: i18n in validators

2006-06-27 Thread Alberto Valverde
On Jun 27, 2006, at 11:08 PM, Ulysses Almeida wrote: Sorry to bother... it seems to be fixed alredy (http://trac.turbogears.org/turbogears/ticket/900) Are you sure? Doesn't seem to work on my system... :( The fix seems to be for the OneOf validator options, not for translating error

[TurboGears] Re: Newbie problem with tutorial

2006-06-27 Thread Ricardo Salveti de Araujo
Hi Tom, Take closer look at this thread. http://groups.google.com/group/turbogears/browse_frm/thread/8b16bb781ff34fdc Hope it helps, Salveti On 6/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: This is probably really easy to solve, but it is driving me nuts. I am doing the 20-minute

[TurboGears] Re: official IRC channel staff

2006-06-27 Thread Lee McFadden
Hi Jorge, There are a few of us who are able to OP ourselves should the occasion arise. We just don't see there being any point in being OP'd the entire time. As it is, the IRC channel is a very good place to get (depending on the time of day) almost instant feedback on TG related topics, and

[TurboGears] Re: FYI, client side form validator

2006-06-27 Thread Kevin Dangoor
Hi Fred, I'll try to get those widgets updated soon. Regular expression validation should not be overly difficult. TG's own JavaScript-based validation, when we have it, won't require scriptaculous... (which, of course, is never a reason to stop what you're doing :) Kevin On Jun 27,

[TurboGears] Re: ANN: TurboZSI-0.5

2006-06-27 Thread Kevin Dangoor
Hi Charlie, On Jun 27, 2006, at 2:28 PM, Charlie Moad wrote: I have been experimenting with turbogears and ZSI and have gotten the module into a usable state. Feel free to break it. http://sda.iu.edu/turbozsi/ TurboZSI is a plugin for the web framework TurboGears for creating and

[TurboGears] Re: Newbie problem with tutorial

2006-06-27 Thread lst
Thanks for the lead. Turns out that it was a dumb-a** typo in the regular expression substitution for a WikiWord - an errant s got in front of the root address. CherryPy parses this into a separate parameter (for reasons I have not completely figured out yet), causing this extra parameter to

[TurboGears] Re: ANN: TurboZSI-0.5

2006-06-27 Thread Nicky Ayoub
Thanks, I'm going to take a serious look at this soon. I have a need to interface with an issue trackingsystem called Jira that presents a SOAP interface. I was going to see how json could help but ZSI lookslike a great fit right now. Thanks again!NickOn 6/27/06, Charlie Moad [EMAIL PROTECTED]

[TurboGears] Re: display validation errors on form

2006-06-27 Thread Randall
Thanks. There is certainly no reason for me to use a different instance of the form. I've been working on something else so I haven't tried this solution yet. I'll post my results. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[TurboGears] Re: ANN: TurboZSI-0.5

2006-06-27 Thread Charlie Moad
On 6/27/06, Kevin Dangoor [EMAIL PROTECTED] wrote: Hi Charlie, On Jun 27, 2006, at 2:28 PM, Charlie Moad wrote: I have been experimenting with turbogears and ZSI and have gotten the module into a usable state. Feel free to break it. http://sda.iu.edu/turbozsi/ TurboZSI is a

[TurboGears] SA Identity problem

2006-06-27 Thread Randall
I'm using SA with the latest patch for identity. During startup, on line 153 of saprovider.py, an attempt is made to access the engine for one of the tables. File /home/randall/downloads/svn/turbogears/turbogears/identity/saprovider.py, line 153, in create_provider_model engine =

[TurboGears] Re: official IRC channel staff

2006-06-27 Thread Jorge Vargas
On 6/27/06, Lee McFadden [EMAIL PROTECTED] wrote: Hi Jorge,Hi Lee There are a few of us who are able to OP ourselves should the occasion arise.We just don't see there being any point in being OP'd theentire time.Irronically I have never seen anyone do that. As it is, the IRC channel is a very good