Skip to content

Commit

Permalink
prepare 0.5.13; translation fixes; updating dutch and russian transla…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
barseghyanartur committed Sep 1, 2015
1 parent 1c7c18e commit bc960a5
Show file tree
Hide file tree
Showing 16 changed files with 1,802 additions and 1,286 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ are used for versioning (schema follows below):
- All backwards incompatible changes are mentioned in this document.


0.5.13
------
2015-09-01

- Translation fixes.
- Updating Dutch and Russian translations.

0.5.12
------
2015-08-29
Expand Down
12 changes: 6 additions & 6 deletions TODOS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Must haves
+ Make a working demo (at the moment fails). NOTE: Test if this is still an
issue!
+ Awesome documentation.
+ Awesome themeing API. Change current one - make a theme to have all the
+ Awesome theming API. Change current one - make a theme to have all the
templates.
+ Generalise themes as much as possible.
+ Make sure nothing breaks if one or another element has invalid data.
Expand Down Expand Up @@ -244,7 +244,7 @@ Must haves
register in global scope, maybe just a context processor).
Make it pluggable and replaceable.
+ Check if it's safe to use the initial dynamic values.
- In the updated GUI (bootstrap3), if form names are too long, the layout
+ In the updated GUI (bootstrap3), if form names are too long, the layout
doesn't look nice anymore.
- Since tests have been made quite general, create them for all contrib
form elements and handlers (not yet for things like CAPTCHA).
Expand Down Expand Up @@ -295,7 +295,7 @@ Should haves
+ Add data export features to ``db_store`` plugin.
+ Make 3 base templates for the DjangoCMS integration app. Save things in
settings and make the template to be chosen depending on the fobi_theme (
likely, move the declation of the FOBI_THEME above the declaration of the
likely, move the declaration of the FOBI_THEME above the declaration of the
Django-CMS templates).
+ Improve the Django-CMS integration app (make sure it works with
Django-CMS < 3.0).
Expand Down Expand Up @@ -326,7 +326,7 @@ Should haves
set to True tests fail).
+ Fix the issue with `initial` for `select_multiple` plugin. At the moment,
setting initial doesn't seem to work.
- Make it possible to export form to JSON format. It should be possible to
+ Make it possible to export form to JSON format. It should be possible to
re-created form from saved JSON sa well.
- Wagtail integration.
- Document the changes.
Expand Down Expand Up @@ -369,15 +369,15 @@ Could haves
+ Make a django theme for jQuery UI.
- Fix the ``input_format`` option in the date and datetime fields.
- Think of making it possible to change (or even better - regenerate) the
form slug (preferrably - yes).
form slug (preferably - yes).
- Add a management command to remove broken form elements.
- Think of delegating the form rendering completely to third-party library
like `django-crispy-forms`.
- Make it possible to use something else than Django's ORM (django-mongoengine,
SQLAlchemy).
- Make it possible for themes to override the ``fobi.forms.FormEntryForm``
form?
- Make sure a better (SEO) URLs can be used in intergration packages (at
- Make sure a better (SEO) URLs can be used in integration packages (at
least the FeinCMS).
- Make sure that the form view return can be overridden?
- Add datetime range and date range fields.
Expand Down
10 changes: 5 additions & 5 deletions examples/mezzanine_example/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
urlpatterns += patterns('',
# DB Store plugin URLs
url(r'^fobi/plugins/form-handlers/db-store/',
include('fobi.contrib.plugins.form_handlers.db_store.urls',
namespace='fobi')),
include('fobi.contrib.plugins.form_handlers.db_store.urls')),
#, namespace='fobi'

# django-fobi URLs:
url(r'^fobi/', include('fobi.urls.view', namespace='fobi')),
url(r'^{0}fobi/'.format(FOBI_EDIT_URLS_PREFIX), include('fobi.urls.edit',
namespace='fobi')),
url(r'^fobi/', include('fobi.urls.view')), #, namespace='fobi'
url(r'^{0}fobi/'.format(FOBI_EDIT_URLS_PREFIX), include('fobi.urls.edit')),
#, namespace='fobi'

url(r'^fobi-home/$', TemplateView.as_view(template_name=fobi_home_template)),

Expand Down
10 changes: 6 additions & 4 deletions examples/quick_start/quick_start/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@

# DB Store plugin URLs
url(r'^fobi/plugins/form-handlers/db-store/',
include('fobi.contrib.plugins.form_handlers.db_store.urls',
namespace='fobi')),
include('fobi.contrib.plugins.form_handlers.db_store.urls')),
#, namespace='fobi'

# View URLs
url(r'^fobi/', include('fobi.urls.view', namespace='fobi')),
url(r'^fobi/', include('fobi.urls.view')),
#, namespace='fobi'

# Edit URLs
url(r'^fobi/', include('fobi.urls.edit', namespace='fobi')),
url(r'^fobi/', include('fobi.urls.edit')),
#, namespace='fobi'
)

0 comments on commit bc960a5

Please sign in to comment.