Tagged Questions

8
votes
4answers
2k views

Recommendation for python form validation library

I would like a form validation library that 1.separate html generation from form validation; 2.validation errors can be easily serialized, eg. dumped as a json object What form validation library ...
3
votes
1answer
262 views

Using Both jQuery And FormEncode To Validate Forms Without Repetition

I'm working on a Pylons-based web app. Because I am sane, I am using jQuery (and plugins) instead of writing raw JavaScript. I am also using FormEncode to validate forms for my app (especially new ...
2
votes
1answer
143 views

Formencode in pyramid and pyramid_simplefrom: set fixed locale

I know I can run the following code in python shell: import formencode ne = formencode.validators.NotEmpty() formencode.api.set_stdtranslation(languages=["it"]) try: ne.to_python("") except ...
2
votes
1answer
144 views

ForEach and NestedVariables in FormEncode to create array of form items in Pyramid

I'm using Pyramid with FormEncode to try and create and validate a list of addresses. I'm using pyramid_simpleform and have been looking at this tutorial ...
2
votes
2answers
224 views

Rerendering a Pylons form with a querystring parameter after FormEncode validation fails

My question may be the same as this, but the suggested answer didn't seem to help (or I didn't understand it correctly): Pylons FormEncode @validate decorator pass parameters into re-render action I ...
2
votes
1answer
171 views

FormEncode is returning my file upload as a Unicode object - How fix?

<form action="${h.url.current()}" method="POST" enctype="multipart/form-data"> <input type="file" name="your_file" /> </form> class MyValidator(formencode.Schema): ...
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
2answers
26 views

Transform a python dict into string compatible with Content-Type:“application/x-www-form-urlencoded”

I'd like to take a python dict object and transform it into its equivalent string if it were to be submitted as html form data. The dict looks like this: { 'v_1_name':'v_1_value' ...
1
vote
1answer
212 views

Python django sqlalchemy and formencode

I create a table in database using sqlalchemy and now want to make a form according to the database using django and valid it use formencode. (mention I use Django Web Framework) The python code is ...
1
vote
2answers
178 views

formencode nesting custom validators within schema

I want to nest my custom validators within my schema, like this: MySchema(Schema): class MyValidator(validators.FancyValidator): def _to_python(self, value, state): ... ...
1
vote
1answer
183 views

My formencode.variabledecode is returning an empty list - Pylons

HTML: <input type="text" name="blah-0" value="test" /> <input type="text" name="blah-1" value="another test" /> Controller: class myvalidator(formencode.Schema): ...
1
vote
2answers
204 views

How to render HTML form from schema using formencode?

I'm using formencode for validating and submitting forms in my Pylons application. The documentation says that it can be used also for generating forms, but there is no any example. I even found the ...
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')} ...
1
vote
1answer
96 views

Sqlalchemy query not commiting

I'm trying to create a simple unique username function for use in a Formencode schema. Here is the function: class UniqueUsername(formencode.FancyValidator): def _to_python(self, value, ...
1
vote
1answer
1k views

FormEncode, pylons, and mako example

I'm working in pylons with mako, and I'd like to create forms and validations with FormEncode for several parts of my application. I can't seem to find any good examples of the whole process. My ...
0
votes
0answers
35 views

formencode UniqueEmail validator

I'm trying to implement a user registration and edit form: class UniqueEmail(formencode.FancyValidator): def _to_python(self, value, state): if value in (email for (email, ) in ...
0
votes
0answers
73 views

Python FormEncode class, any way to get support for html5 entities?

I am using FormEncode for form validation. Anytime there are html5 form elements, such as type="date" or type="search" on the page, errors are thrown. Additionally, I use a jQuery template system ...
0
votes
0answers
103 views

formencode Schema add fields dynamically

Let's take, for example, a User Schema where the site admin sets the number of requested phone numbers: class MySchema(Schema): name = validators.String(not_empty=True) phone_1 = ...
0
votes
0answers
114 views

formencode conditional validation

how do i validate a field conditionally based on the presence of another field. for example, only make "state" required only if "country" is "US". thanks, steve EDIT: so i figured to do this: ...
0
votes
2answers
113 views

FormEncode validate: words divided by a comma

How to validate words divided by a comma by FormEncode ? Something like this: "foo1, foo2, foo3" -> ["foo1", "foo2", "foo3"]
0
votes
1answer
148 views

Error when the Email formencode validator

I wanted to create an IDN-aware formencode validator to use in one of my projects. I used a portion of code from the Django project ...
0
votes
1answer
255 views

Pylons formencode - How do I POST an array of data?

I have a form that is similar to the following: Enter Name: Enter Age: [add more] That add more field copies the Name and Age inputs and can be clicked as many times as the user wants. Potentially, ...
0
votes
2answers
686 views

Pylons/Formencode With Multiple Checkboxes

I ran up against a few problems with Pylons/Formencode today when it came to validating multiple checkboxes. As a bit of background I have something like this in my Mako template: <input ...
0
votes
3answers
828 views

Chain FormEncode Validators

Problem: I have a form in TurboGears 2 that has a text field for a list of e-mails. Is there a simple way using ToscaWidgets or FormEncode to chain form validators for Set and Email or will I have ...
0
votes
1answer
284 views

formencode invalid return type

if an exception occurs in form encode then what will be the return type?? suppose if(request.POST): formvalidate = ValidationRule() try: new = ...