6
I Use This!
Inactive

Commits : Listings

Analyzed about 5 hours ago. based on code collected about 12 hours ago.
Apr 29, 2023 — Apr 29, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixed a 'readonly' issue only working for password fields and added 'disable', 'disable_pk' and 'disable_fk' options.
Alexandre Conrad
as conrad.alex
More... about 16 years ago
A bugfix regarding the .pop('opts') with dropdowns.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Added 'date', 'time' and 'datetime' options for date/time fields formatting.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Added a hack to force browsers to POST unckecked checkboxes. Added 'bool_as_radio' option.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Updated CHANGELOG.txt regarding the fixed bug about 'opts' being rendered as a <select> tag attribute.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Fixed a bug where 'opts' from the 'dropdown' option is no longer rendered as an attribute of the <select> tag.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Fixed a compatibility issue with SQLAlchemy 0.4.1. The 'foreign_key' Column attribute is now 'foreign_keys'.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Added the 'fieldset' option and updated the documentation accordignly.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Added 'include' option. Patch from Adam Gomaa.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Patch provided by Adam Gomaa for passing native tuple of intergers as 'size' argument value for the 'textarea' option.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Implemented TextAreaField for rendering TEXTAREA HTML fields.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Implemented the 'focus' option for form field focusing.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
In forms, a primary key or foreign key column set as 'hidden' will be generated even if 'pk=False' or 'fk=False' options were set.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
forms and tables no longer render the default value when it's a function.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Renamed TableItem->Table, TableItemConcat->TableConcat, TableCollection and rewrote most of how the 'tables' module works. TableConcat now takes a 'models' kwarg as a list of models to be rendered. It's '.render()' method can take a 'caption' keyword that can be either one of the models in the model list or a string.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Updated 'INSTALL.txt'.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Reverted changes: renamed back 'LabelField' -> 'Field'. Now 'Field' implements a 'make_label=True' option which allows to render the label field or not. If set to False, it will only return a raw <input> tag without the parent <div> tag.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Fixed the fallback field in 'LabelField' to be 'fields.ModelFieldRender' rather than the old name 'fields.Field'.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Renamed 'Field' -> 'LabelField' in formalchemy.forms
Alexandre Conrad
as conrad.alex
More... over 16 years ago
A minor comment change.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Removed 'import warnings' statement.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Implemented 'new_options' method in 'FormAlchemyDict' and adapted this new feature to all classes. Renamed 'get_config()' 'get_options()'. Reverted parsing class back to 'FormAlchemy' rather than 'FormAlchemyOptions'.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Renamed internal and public classes: BaseField -> BaseFieldRender, Field -> ModelFieldRender, ModelRender -> MultiFields, FieldRender -> Field. And a few docstrings fixes.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Mostly worked on table classes. Implemented 'TableItemConcat' to be able to display multiple model (as TableItem does) in one table.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Changed the code so options are passed at the reconfigure level rather than at the render level.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Some docstring fixing.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
updated CHANGELOG.txt
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Fixed an issue in 'TableBody' where the wrong message was displayed if the collection passed to 'TableCollection' was empty and the bound model is not instantiated, i.e.: TableCollection(bind=model.Client, collection=[])
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Switch from wrap to h.content_tag for rendering 'value' in 'TableData', this handles unicode.
Alexandre Conrad
as conrad.alex
More... over 16 years ago
Mostly changed import statments.
Alexandre Conrad
as conrad.alex
More... over 16 years ago