Navigation

Sprox¶

Sprox is a widget generation library that has a slightly different take on the problem of creating custom web content directly from database schemas. Sprox provides an easy way to create forms for web content which are: automatically generated, easy to customize, and validated. Sprox also has powerful tools to help you display your content the way you want to with table and record viewers. Sprox provides a way to fill your widgets, whether they are forms or other content with customizable data.

Installation¶

Sprox is installable from pypi.:

easy_install sprox

Schema Based Widget Generation¶

Well, that’s a mouthfull! Sprox provides a bridge between database schema and the forms you want to customize for the web. Sprox has an IProvider, which basically tells sprox how to interpret data extracted from the database manipulation library. Sprox comes packaged with a provider for SQLAlchemy. It is important to understand that Sprox expects that the database manipulation library will have a unique way to map database objects to table schema. The mapped objects are often referred to as models, in Sprox, these are called entities, because Sprox has abstracted the manipulation of table and field schema to the point where they interface other parts of the system in a similar manner.

SQLAlchemy’s Object Relational Mapper provides a basis for many of the examples in this documentation. Here is the Model used in this documentation.

Form Generation¶

Sprox has a simple but powerful way to generate forms. Here is the simplest way to create a form based on a “User” class.:

from sprox.formbase import AddRecordForm

class UserForm(AddRecordForm):
    __model__ = User

user_form = UserForm(DBSession)

That form can then be passed into a template, just like if it were a regular ToscaWidgets form. But you ask, “Why do you need to pass in the DBSession?” Well, in fact the session is not required to be passed in, but if you want Sprox to pick up the data for the drop-down menus, and multiple select fields, it needs a way to connect to the database in order to get the appropriate data. You might say, “Ok, but that form gives me a lot of junk I don’t want, and the password field is going to have to be verified if we wanted to say, make a registration form.” Well, remember Sprox is fully customizable. Here is an example registration form based on Sprox, complete with password validation.:

from sprox.formbase import AddRecordForm
from formencode import Schema
from formencode.validators import FieldsMatch
from tw.forms import PasswordField, TextField

form_validator =  Schema(chained_validators=(FieldsMatch('password',
                                                         'verify_password',
                                                         messages={'invalidNoMatch':
                                                         'Passwords do not match'}),))
class RegistrationForm(AddRecordForm):
    __model__ = User
    __require_fields__     = ['password', 'user_name', 'email_address']
    __omit_fields__        = ['_password', 'groups', 'created', 'user_id', 'town_id']
    __field_order__        = ['user_name', 'email_address', 'display_name', 'password', 'verify_password']
    __base_validator__     = form_validator
    email_address          = TextField
    display_name           = TextField
    verify_password        = PasswordField('verify_password')

registration_form = RegistrationForm(DBSession)

Which makes a form that looks something like this:

spacer

Notice first that we have made three fields required set the order, and omitted the fields that we do not want in the form. Also, we overrode the widget type for email_address and display_name (The default was a text area). Lastly we add a verify_password field that is not in the current schema. Also keep in mind that if you were to alter the schema for your database, any fields you added to your User model would also be added to this form. If you wanted to avoid this, you would use __limit_fields__ instead of __omit_fields__. There are many other __modifiers__ for FormBase in Sprox, you can use them to generate the forms you desire in any number of combinations. For more information see sprox.formbase and sprox.fillerbase.

Table Generation¶

Most people look for things that render forms, but fail to realize that generating tabular formed data provides almost the same challenge. After all, in an editable form, you must retrieve the data from the database in order to fill in the form entries. Well, Sprox makes this easy too. Here is some code to list out the users and their email addresses:

from sprox.tablebase import TableBase
from sprox.fillerbase import TableFiller

class UserTable(TableBase):
    __model__ = User
    __limit_fields__ = ['display_name', 'email_address']

user_table = UserTable(DBSession)

class UserTableFiller(TableFiller):
    __model__ = User
    __limit_fields__ = ['user_id', 'display_name', 'email_address']

user_table_value = UserTableFiller(DBSession).get_value()

And your template code would look like this:

${user_table_form(value=user_table_value)}

Rendered, the table would look like this:

spacer

Keep in mind that since the form generators are declarative, you can use mixins and other class trickery to reduce your code further (although it is not advised to use this to fool your fellow developer). Can you think of a way to reduce the 14 lines of python code above to 8?

Sprox, the big picture¶

In reality, Sprox is not about making your code smaller, but making it _smarter_. Since you have a declarative base to work from, you can subclass a set of widgets that fits your application. You can provide customized widget selectors which tell Sprox which widgets to use for which fields. Because Sprox gives you the power to customize any part of the form at any level of abstraction, you can create your own form generation based on the requirements for your project.

Tutorials¶

Here are a couple of tutorials that express the most common ways sprox is used. It is recommended that you have some knowledge of TG2 when looking them over.

  • Table Tutorial
  • Form Tutorial

Indices and tables¶

  • Index
  • Module Index
  • Search Page

API¶

  • Class Diagram

Sprox has the ability to hook any widget library or object mapping library into it’s shoestrings, but as of this time Sqlalchemy and ToscaWidgets are the supported libraries.

spacer spacer

Development¶

Sprox is developed using test driven development. Most development is done using unit testing, leveraging the valuable nose and coverage packages. This ensures that the Sprox library is in a known working state before releases, and that development can take some wild turns without affecting overall functionality. Sprox was born from dbsprockets which was primarily table based. The Sprox project was started since there was a large change in the API, even though the inner workings and overall design paradigms have not changed. Sprox borrows some conceptual ideas from Rum, a project started to make creating easier crud interactions through WSGI. Sprox is only released as a beta with 90% or higher coverage, 100% code coverage is the expectation for a release candidate. Here is the current code coverage.:

$ nose --with-coverage --cover-package=sprox --cover-erase
...
Name                         Stmts   Miss  Cover   Missing
----------------------------------------------------------
sprox                            0      0   100%
sprox._validatorselector        26      0   100%
sprox._widgetselector           15      0   100%
sprox.configbase                78      0   100%
sprox.dojo                       0      0   100%
sprox.dojo.fillerbase           14      0   100%
sprox.dojo.formbase             24      0   100%
sprox.dojo.sprockets            18      0   100%
sprox.dojo.tablebase            30      0   100%
sprox.dummyentity                1      0   100%
sprox.entitiesbase              15      0   100%
sprox.fillerbase               102      0   100%
sprox.formbase                 156      0   100%
sprox.iprovider                 51      0   100%
sprox.metadata                  53      0   100%
sprox.mg                         0      0   100%
sprox.mg.provider              236      0   100%
sprox.mg.validatorselector      25      0   100%
sprox.mg.widgetselector         35      0   100%
sprox.mk                         0      0   100%
sprox.mootools                   0      0   100%
sprox.providerselector          85      0   100%
sprox.recordviewbase            15      0   100%
sprox.sa                         0      0   100%
sprox.sa.provider              391      0   100%
sprox.sa.validatorselector      30      0   100%
sprox.sa.widgetselector         37      0   100%
sprox.sprockets                 55      0   100%
sprox.tablebase                 45      0   100%
sprox.util                      42      0   100%
sprox.validators                11      0   100%
sprox.validatorselector          6      0   100%
sprox.viewbase                 128      0   100%
sprox.widgets                    1      0   100%
sprox.widgets.dojo              85      0   100%
sprox.widgets.templates          0      0   100%
sprox.widgets.widgets           90      0   100%
sprox.widgetselector             6      0   100%
----------------------------------------------------------
TOTAL                         1906      0   100%
----------------------------------------------------------------------
Ran 369 tests in 7.971s

Sprox is an open source project, and can be found at bitbucket. If you have a great idea of how to make sprox better, feel free to fork off your own copy and send a pull request.

Current Release¶

0.7.1

License¶

Sprox is licensed under the liberal MIT license. This basically means you can do what you want with it. Include it in your own package, sell it for a profit, modify it for your needs. We really don’t care how you use it, but it should be noted that preferential support is given to those consumers who give back to the open source community, participate in Sprox development and help us find and solve those pesky corner cases.

Core Modules¶

  • sprox.formbase
  • sprox.tablebase
  • sprox.fillerbase
  • sprox.configbase
  • sprox.viewbase
  • sprox.entitiesbase
  • sprox.recordviewbase
  • sprox.validators
  • sprox.sprockets
  • sprox.metadata
  • sprox.iprovider
  • sprox.widgets
  • sprox.util

SQLAlchemy Support¶

Sprox has always included SQLAlchemy in it’s orm support.

  • sprox.sa.provider
  • sprox.sa.widgetselector
  • sprox.sa.validatorselector

Ming Support¶

New for Sprox 0.7 is support for Ming. Ming is a wrapper for MongoDB.

  • sprox.mg.provider
  • sprox.mg.widgetselector
  • sprox.mg.validatorselector

Dojo Support¶

Sprox now supports Dojo. Dojo is a Javascript library which allows developers to deliver considerably richer content through the web. Sprox’s initial dojo support provides table widgets for your application which can literally scroll through millions of records, all through the browser. Support is somewhat crude at this point, limited to just displaying the data and crud links, but you can expect to see editable/sorted/filtered data in the future.

  • General Dojo Usage Information
  • sprox.dojo.tablebase
  • sprox.dojo.fillerbase
  • sprox.dojo.formbase

Mootools Support¶

Mootools has been supported in forms since before 0.6, but is now documented.

  • sprox.mootools.formbase

About These Docs¶

This documentation is generated partly from doctests within sprox, which you will find througout the module-level api documentation. This means that the docs you see here are in a known working state before release, and should stay that way, even as development progresses. Even the trunk will have it’s tests executed before commit, so that should remain stable with respect to the docs. The examples you see through out these docs are all based on an example model which is also used throughout in testing.

  • test_model

Discuss

blog comments powered by Disqus

spacer

Table Of Contents

  • Sprox
    • Installation
    • Schema Based Widget Generation
    • Form Generation
    • Table Generation
    • Sprox, the big picture
  • Tutorials
  • Indices and tables
  • API
  • Development
  • Current Release
  • License
  • Core Modules
  • SQLAlchemy Support
  • Ming Support
  • Dojo Support
  • Mootools Support
  • About These Docs
  • Useful Links

Next topic

Table Tutorial

This Page

  • Show Source

Navigation

© Copyright 2008, Christopher Perkins. Created using Sphinx 1.1.2.
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.