A Django Application for creating jQTouch websites
Project description
Introduction
jQTouch is a jQuery based library for touch/mobile web applications. django-jqtouch builds on jQTouch to provide easier content management with Django. django-jqtouch adds a model for creating individually displayed screens or panels. When rendering, the contents of the panel is inspected and other referenced panels are rendered as well in order to combine the content and provide a more seamless experience.
Panels
The Panel model consists of a unique identifier, the body of the panel, and a flag for whether the panel can be embedded or should be loaded with an XMLHttpRequest when requested by the user.
Recursive Rendering
When rendering, the body of the panel is searched for anchor tags. Each anchor destination is checked to see if it is a local URL. If it is a local URL, the configurable list of panel resolvers is checked in order to see if it resolves to a panel. If the panel can be embedded, the render method on the panel is called and the results are included as a sibling in the output of the current panel.
Installation
Install the django-jqtouch package in your preferred method: easy_install, setup.py install, pip or buildout.
Add jqtouch to the list of INSTALLED_APPS in your settings file
Include jqtouch.urls in your project’s url patterns:
urlpatterns = patterns('', (r'', include('jqtouch.urls')), )
Additional Settings
- JQTOUCH_BASE_IDENTIFIER
Default default. This is the identifier to use with the default URL when using the jqtouch.urls include. Requesting ‘/’ will load this panel identifier.
- JQTOUCH_PANEL_RESOLVERS
Default ('jqtouch.resolvers.panel_model_resolver',). A list or tuple of panel resolving functions in the order they should be tried. Strings can be used to specify the resolving function or the actual functions can be entered.
History
0.1 (2010-09-08)
Panel model
Optional recursive rendering of panels (using introspection into content)
Configurable panel resolvers for including panels from other products
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-jqtouch-0.1.tar.gz
.
File metadata
- Download URL: django-jqtouch-0.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ca40cba71ccd435b1615fe196914c5564ba1a0333e8f49db0839f3e2fc7f0de |
|
MD5 | e9d51d5145013f9ba2256822c0f734c3 |
|
BLAKE2b-256 | 43e88bd17f69536b96ba87327a4eb2d4bb984d3b38fd1354390b674a9e935f9e |