Activity Not Available

Project Summary

Not Quite Ready Yet!A utility script on Pylons that will generate operational RESTful CRUD scaffolds according to data table definitions.

Features:RESTful Support relations between data tables Ajaxified To do:Pagination More friendly setup and integration with Pylons Data table definitions directly from data models like that of Elixir Authentication Decomposing modules Integration with data validations like FormEncode What it's like in action?put in the scripts into project tree define your tables with model definitons: Tables = {
'Person': {
'pk': 'id',
'cols': ['name', 'password'],
'list': {'emails' : 'Email'}, #one to many
'option': {'type': 'PersonType'}, #many to one
'options': {'groups': 'Group'}, #many to many
},
'Email': {
'pk': 'id',
'cols': ['address'],
'parent': 'Person',
},
'PersonType': {
'pk': 'id',
'cols': ['name'],
'view_parent': 'Person',
},
'Group': {
'pk': 'id',
'cols': ['name'],
'view_parent': 'Person',
},
}run the generator you are ready to manipulate data:

pre-alpha now available

Share

 No recognizable code

Ohloh computes statistics on FOSS projects by examining source code and commit history in source code management systems. This project has code locations but that location contains no recognizable source code for Ohloh to analyze.

Community Rating

Be the first to rate this project
 
Click to add your rating
 
Review this Project!
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.