forked from jorgebastida/django-dajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
28 lines (19 loc) · 1.81 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Dajax is a powerfull tool to easily and super-fastly develop asynchronous presentation logic in web applications using python and almost no lines of JS source code.
It supports up to four of the most popular JS frameworks: Prototype, jQuery, Dojo and mootols.
Using dajaxice communication core, dajax implements an abstraction layer between the presentation logic managed with JS and your python business logic. With dajax you can modify your DOM structure directly from python.
Note: If you want to avoid mixing your Presentation logic within your Business logic, try dajaxice . Dajaxice implements an easy to use protocol to invoke your ajax functions asynchronously without any JavaScript Framework requirement.
Official site http://dajaxproject.com
Dajax Home http://wiki.github.com/jorgebastida/django-dajax/0751-0800-upgrade-manual
Upgrade Manual 0.7.5.1 -> 0.8.0.0 http://wiki.github.com/jorgebastida/django-dajax/0751-0800-upgrade-manual
Installation http://wiki.github.com/jorgebastida/django-dajax/installation
Dajaxice Home http://github.com/jorgebastida/django-dajaxice
NOTE About dajax.core.js flavours:
- django-dajax requires to include some static-flavoured js files in your html <head> section.
- django-dajax supports up to four js frameworks, so you need to include one that mach your js-framework requirements.
- This files reside inside:
- Unix: /usr/share/django-dajax
- OSX: /Library/Frameworks/Python.framework/Versions/2.X/share/django-dajax
- You must include one of this files in your html code, so you have three options:
- Symlink the file to your public static folder.
- Copy the file to your public static folder (Be Aware to re-copy that file after updating the package).
- Configure your HTTP server to serve the file statically from that folder.