Re: [Repoze-dev] form generation package recommended for use with BFG?

2010-04-30 Thread Fergus Doyle
+1 I also normally set up a bunch form fields as template macros and then write a template for each form pulling the widgets together (allowing for default values and errors to be displayed in a standard way) instead of using a form generation utility. I find it allows for much greater fle

[Repoze-dev] /**/ don't escape my javascript code in my

2010-04-30 Thread KLEIN Stéphane
Hi, I've this code in my template : :: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> ... /*

Re: [Repoze-dev] /**/ don't escape my javascript code in my chameleon template file

2010-04-30 Thread KLEIN Stéphane
Le Fri, 30 Apr 2010 08:51:23 +, KLEIN Stéphane a écrit : > Hi, > The title of this mail is "Subject : /**/ don't escape my javascript code in my chameleon template file" sorry for the mistake. Regards, Stephane ___ Repoze-dev mailing list Repoz

[Repoze-dev] [issue143] Chameleon issue around \$ escaping

2010-04-30 Thread Stéphane Klein
New submission from Stéphane Klein : print(GenshiTemplate("""http://www.w3.org/1999/xhtml";>He\$llo World!""")()) return => http://www.w3.org/1999/xhtml";>He\$llo World! good result is => http://www.w3.org/1999/xhtml";>He$llo World! I'm going to write a test. Regards, Stephane -- assi

[Repoze-dev] [issue143] Chameleon issue around \$ escaping

2010-04-30 Thread Stéphane Klein
Stéphane Klein added the comment: This is the test that failed. -- status: unread -> chatting __ Repoze Bugs __Index: src/chameleon/genshi/language.txt ===

[Repoze-dev] [issue143] Chameleon issue around \$ escaping

2010-04-30 Thread admin
System message: -- status: chatting -> resolved __ Repoze Bugs __ ___ Repoze-dev mailing list Repoze-dev@lists.repoze.org http://lists.repoze.or

Re: [Repoze-dev] form generation package recommended for use with BFG?

2010-04-30 Thread Rob Miller
Fergus Doyle wrote: > +1 > > I also normally set up a bunch form fields as template macros and then > write a template for each form pulling the widgets together (allowing > for default values and errors to be displayed in a standard way) > instead of using a form generation utility. I find

[Repoze-dev] Bug(s) when not using paste?

2010-04-30 Thread Chris Withers
Hi All, Because I need to use the Twisted WSGI server for my app and so can't use Paste, I'm running into some issues. Here's my run.py, adapted from the routes alchemy template: """ from repoze.bfg.configuration import Configurator from repoze.tm import make_tm from twisted.web.wsgi import WSG

Re: [Repoze-dev] Bug(s) when not using paste?

2010-04-30 Thread Chris McDonough
On Fri, 2010-04-30 at 19:13 +0100, Chris Withers wrote: > Hi All, > > Because I need to use the Twisted WSGI server for my app and so can't > use Paste, While it's obviously useful to not require PasteDeploy, this itself is not true. You can use something like: from repoze.bfg.paster import g