Re: mako rails' text_field html escape problem

2009-02-03 Thread Krishgy
Thanks Mike. I hope rails refers to ruby on rails? If that is correct, why do we need to refer them 'rails' in Python Web Helpers? The concept could have been derived from rails but we can call them according to Webhelpers standard. We may include stylesheet_link as part of webhelpers.html.tags

Re: mako rails' text_field html escape problem

2009-02-03 Thread Mike Orr
On Tue, Feb 3, 2009 at 1:09 AM, Krishgy kris...@gmail.com wrote: Thanks Mike. I hope rails refers to ruby on rails? If that is correct, why do we need to refer them 'rails' in Python Web Helpers? The concept could have been derived from rails but we can call them according to Webhelpers

mako rails' text_field html escape problem

2009-02-02 Thread Krishgy
I use Pylons 0.9.7 on Debian 4.0 etch. Rails text_field returns escaped html output. Here is my helpers.py content helpers.py --- from webhelpers import * from webhelpers.html import * from webhelpers.html.tags import * from routes import url_for from webhelpers.rails import

Re: mako rails' text_field html escape problem

2009-02-02 Thread Mike Orr
On Mon, Feb 2, 2009 at 10:05 AM, Krishgy kris...@gmail.com wrote: I made it working through webhelpers.html.tags. from webhelpers.html.tags import * I used h.text() instead of h.html_field. Thanks for online pylons book. Before I was refering chapters written long time ago. Are there any

Re: mako rails' text_field html escape problem

2009-02-02 Thread Krishgy
I made it working through webhelpers.html.tags. from webhelpers.html.tags import * I used h.text() instead of h.html_field. Thanks for online pylons book. Before I was refering chapters written long time ago. Are there any replacement for stylesheet_link_tag in webhelpers instead of using