Tagged Questions
The htmlfill tag has no wiki summary.
2
votes
1answer
731 views
WebRequest: How to find a postal code using a WebRequest against this ContentType=“application/xhtml+xml, text/xml, text/html; charset=utf-8”?
I first posted this: HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?.
Following AnthonyWJones suggestions, I changed my code following his ...
2
votes
2answers
1k views
HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?
I'm currently writing some tests so that I may improve my skills with the Internet interaction through Windows Forms. One of those tests is to find a postal code which should be returned by Canada ...
2
votes
3answers
2k views
Pylons FormEncode with an array of form elements
I have a Pylons app and am using FormEncode and HtmlFill to handle my forms. I have an array of text fields in my template (Mako)
<tr>
<td>Yardage</td>
...
1
vote
1answer
405 views
Using Pylons validate and authenticate_form decorator
The validate and authenticate_form decorators don't seem to play nice together. This is my template:
<html>
<title>Test</title>
<body>
${h.secure_form('/meow/do_post')}
...
0
votes
1answer
41 views
Using HTMLFill with Pyramid's @view_config
I am trying to use HTMLFill to populate a form with default values. I have a function that uses the @view_config decorator and generates a form in mako.
...