[tg-trunk] SprintOrganization for this weekend's sprint

2008-05-23 Thread Mark Ramm
We're havening a mini-sprint on TG2 this weekend. I'll have intermittent internet connectivity on Saturday for most of the day, but I should be available from 8:30 EST to 11:00 EST to get things started. But, that shouldn't stop us from sprinting! #turbogears on IRC is where real-time discussi

[tg-trunk] Re: TG2/Pylons/WSGI Components sprint (Memorial day weekend)

2008-05-23 Thread Mark Ramm
On Wed, May 21, 2008 at 3:38 PM, Bruno J. M. Melo <[EMAIL PROTECTED]> wrote: > I'll have (full) time on this weekend and I would like to help with the > documentation tasks > and any related stuff. Well, it turns out that I've got some family health issues this weekend, so I may be in and out mor

[tg-trunk] Re: TG2/Pylons/WSGI Components sprint (Memorial day weekend)

2008-05-23 Thread Mark Ramm
> 1. wiki-20 tutorial is too complex now. > > for example, to setup the database, it could be easier with 'paster > setup-app development' and uncomment the dbsprockets in root.py. > We could move the original bootstrap script to the advanced settings > reference. This is a good idea. dbsprocket

[tg-trunk] Re: Last Announcement: Upcoming Pylons/TG2/WSGI Sprint!

2008-05-23 Thread Mark Ramm
Remember remote participation is encouraged. I'll be participating remotely, so you won't be alone in working alone ;) Also remember that since I got people all confused, I'll be sprinting on TG2 related stuff both this weekend and next. --Mark Ramm On Fri, May 23, 2008 at 10:36 PM, Ben Bange

[tg-trunk] Re: MicroTG2 anyone?

2008-05-23 Thread [EMAIL PROTECTED]
Were you using zipimport.py from the python sandbox, or where you trying to use the built in zipimport? I think guido is suggesting that we use: http://svn.python.org/view/sandbox/trunk/import_in_py/zipimport_/ On May 9, 3:11 am, UltraDaniel <[EMAIL PROTECTED]> wrote: > Guido said we should "fi

[tg-trunk] Re: MicroTG2 anyone?

2008-05-23 Thread UltraDaniel
Guido said we should "find a creative way"... I tried zipping eggs, but it didn't work. It seems like GAE does not have zipimport. (I run the code on my machine and zipimport works, but when I upload the same code to GAE, it does not work. Any suggestions? -Daniel On Apr 18, 4:13 am, "Florent

[tg-trunk] Last Announcement: Upcoming Pylons/TG2/WSGI Sprint!

2008-05-23 Thread Ben Bangert
One last announcementfor those who may have forgot. :) We have a Pylons/TG2/WSGI Sprint happening May 31st and June 1st, at O'Reilly Media in beautiful Sebastopol, CA. Please add your name here if you plan on attending so we can get an appropriate amount of space allocated: http://wiki.pylo

[tg-trunk] Re: one letter variables must die

2008-05-23 Thread Mark Ramm
> Even better: TW doesn't need widgets to be passed in a special attribute > of the template context (to pick up their resources) anymore. As long as > its middleware is configured like shown here [1] (with the > 'inject_resources' flag on) there's no need for 'w' or 'widgets' to be > polluting tm

[tg-trunk] Re: Genshi, Mako, and search paths

2008-05-23 Thread Mark Ramm
> - Would one still be able to have templates with the same base name? > - Does this work with all template engines supported by TG2? Well, this will work with Mako, Genshi, and Jinja at the moment. The only thing nessisary to make it work with a new template system is a render_whatever() funct

[tg-trunk] Re: Genshi, Mako, and search paths

2008-05-23 Thread Roger Demetrescu
Hi Chris, On Fri, May 23, 2008 at 8:48 PM, Christopher Arndt <[EMAIL PROTECTED]> wrote: > > Mark Ramm schrieb: >> I would like to depricate the dotted notation on template lookups, and >> just use search paths. > >> What do people think? > > > Two immediate questions spring to mind: > > - What a

[tg-trunk] Re: Genshi, Mako, and search paths

2008-05-23 Thread Christopher Arndt
Mark Ramm schrieb: > I would like to depricate the dotted notation on template lookups, and > just use search paths. > What do people think? Two immediate questions spring to mind: - What are the disadvantages of the dotted path system? - What are the advantages of the proposed new system? Ot

[tg-trunk] Re: Genshi, Mako, and search paths

2008-05-23 Thread Jorge Vargas
On Fri, May 23, 2008 at 4:09 PM, Mark Ramm <[EMAIL PROTECTED]> wrote: > > I would like to depricate the dotted notation on template lookups, and > just use search paths. > awesome +1 on that. > So we would stop doing > > @expose("myproject.templates.index") > > and just do > > @expose("index") >

[tg-trunk] Re: Genshi, Mako, and search paths

2008-05-23 Thread Jonathan LaCour
Mark Ramm wrote: > I would like to depricate the dotted notation on template lookups, > and just use search paths. I've been wanting this for quite some time. It looks nicer, and its the same as Pylons. As long as I can still put templates into subdirectories, and use slashes to specify the re

[tg-trunk] Genshi, Mako, and search paths

2008-05-23 Thread Mark Ramm
I would like to depricate the dotted notation on template lookups, and just use search paths. So we would stop doing @expose("myproject.templates.index") and just do @expose("index") Because the ./myproject/templates/ directory would be in the search path for genshi. The same would be true o

[tg-trunk] Re: Pylons and webhelper vendor branches?

2008-05-23 Thread Mark Ramm
On Fri, May 23, 2008 at 3:28 PM, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > On Fri, May 23, 2008 at 3:15 PM, Christopher Arndt <[EMAIL PROTECTED]> wrote: >> >> Hi all, >> >> I was wondering whether it would be useful to host our own vendor >> branches [1] of Pylons and webhelpers, since there is

[tg-trunk] Re: Pylons and webhelper vendor branches?

2008-05-23 Thread Jorge Vargas
On Fri, May 23, 2008 at 3:15 PM, Christopher Arndt <[EMAIL PROTECTED]> wrote: > > Hi all, > > I was wondering whether it would be useful to host our own vendor > branches [1] of Pylons and webhelpers, since there is is still no > released version of these projects that supports the current TG2 tru

[tg-trunk] Pylons and webhelper vendor branches?

2008-05-23 Thread Christopher Arndt
Hi all, I was wondering whether it would be useful to host our own vendor branches [1] of Pylons and webhelpers, since there is is still no released version of these projects that supports the current TG2 trunk. When we want, for example, to provide our own custom eggs for Pylons and webhelpe

[tg-trunk] Re: toscawidgets with mako-templates in TG11

2008-05-23 Thread Jorge Vargas
On Fri, May 23, 2008 at 11:00 AM, Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm getting troubles using TW in TG11 as widgets. Funnily enough I made > it work at work - but here on my notebook, it fails. The reason is > simple: ToscaWidgets registers a template lookup-thingy that does

[tg-trunk] Re: trac users

2008-05-23 Thread Christopher Arndt
Diez B. Roggisch schrieb: > Christopher Arndt schrieb: >> Diez B. Roggisch schrieb: >>> Florent Aide schrieb: do you know where the switch to flip is ? >>> http://trac.edgewall.org/wiki/TracTickets >>> >>> See "Assign-to as Drop-Down List" >> I switched this on now. A minor nuisance is that t

[tg-trunk] Re: trac users

2008-05-23 Thread Diez B. Roggisch
Christopher Arndt schrieb: > Diez B. Roggisch schrieb: >> Florent Aide schrieb: >>> do you know where the switch to flip is ? >> http://trac.edgewall.org/wiki/TracTickets >> >> See "Assign-to as Drop-Down List" > > I switched this on now. A minor nuisance is that trac builds the list > from all

[tg-trunk] Re: trac users

2008-05-23 Thread Florent Aide
is there a way to clean those logins and replace all references to them (in tickets) by "ZZ_stupidspammer" ? On 5/23/08, Christopher Arndt <[EMAIL PROTECTED]> wrote: > > Diez B. Roggisch schrieb: >> Florent Aide schrieb: >>> do you know where the switch to flip is ? >> >> http://trac.edgewall.org

[tg-trunk] Re: trac users

2008-05-23 Thread Christopher Arndt
Diez B. Roggisch schrieb: > Florent Aide schrieb: >> do you know where the switch to flip is ? > > http://trac.edgewall.org/wiki/TracTickets > > See "Assign-to as Drop-Down List" I switched this on now. A minor nuisance is that trac builds the list from all accounts that have ever created a se

[tg-trunk] toscawidgets with mako-templates in TG11

2008-05-23 Thread Diez B. Roggisch
Hi, I'm getting troubles using TW in TG11 as widgets. Funnily enough I made it work at work - but here on my notebook, it fails. The reason is simple: ToscaWidgets registers a template lookup-thingy that doesn't get passed the directories to search. Thus the lookup fails. Apart from installi

[tg-trunk] Re: trac users

2008-05-23 Thread Diez B. Roggisch
Florent Aide schrieb: > do you know where the switch to flip is ? http://trac.edgewall.org/wiki/TracTickets See "Assign-to as Drop-Down List" Diez --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk"

[tg-trunk] Re: trac users

2008-05-23 Thread Florent Aide
do you know where the switch to flip is ? On 5/23/08, Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > > Hi all, > > I just started working on some trac tickets to get TG11 in a better > state, as I want to use that in my new company - and need to make a good > impression :) > > Now one problem I en

[tg-trunk] trac users

2008-05-23 Thread Diez B. Roggisch
Hi all, I just started working on some trac tickets to get TG11 in a better state, as I want to use that in my new company - and need to make a good impression :) Now one problem I encountered is the way our trac handles users. I know this problem from other trac installations - when giving b