-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update release notes, setup.py release notes, bump version
- Loading branch information
1 parent
e3dee27
commit 36f2804
Showing
3 changed files
with
80 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
recursive-include tests *.py | ||
recursive-include example *.py *.sh *.txt | ||
prune example/AJAXSELECTS | ||
prune example/ajax_select | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ | |
|
||
setup( | ||
name='django-ajax-selects', | ||
version='1.3.6', | ||
description='jQuery-UI powered auto-complete fields for editing ForeignKey, ManyToManyField and CharField', | ||
author='crucialfelix', | ||
version='1.4.0', | ||
description='Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.', | ||
author='Chris Sattinger', | ||
author_email='[email protected]', | ||
url='https://github.com/crucialfelix/django-ajax-selects/', | ||
packages=['ajax_select'], | ||
|
@@ -43,26 +43,18 @@ | |
"Framework :: Django", | ||
], | ||
long_description="""\ | ||
Enables editing of `ForeignKey`, `ManyToManyField` and `CharField` using jQuery UI AutoComplete. | ||
Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete. | ||
1. The user types a search term into the text field | ||
2. An ajax request is sent to the server. | ||
3. The dropdown menu is populated with results. | ||
4. User selects by clicking or using arrow keys | ||
5. Selected result displays in the "deck" area directly below the input field. | ||
6. User can click trashcan icon to remove a selected item | ||
+ Django 1.6+ | ||
+ Optional boostrap mode allows easy installation by automatic inclusion of jQueryUI from the googleapis CDN | ||
+ Compatible with staticfiles, appmedia, django-compressor etc | ||
+ Popup to add a new item is supported | ||
+ Admin inlines now supported | ||
+ Ajax Selects works in the admin and also in public facing forms. | ||
+ Rich formatting can be easily defined for the dropdown display and the selected "deck" display. | ||
+ Templates and CSS are fully customizable | ||
+ JQuery triggers enable you to add javascript to respond when items are added or removed, | ||
so other interface elements on the page can react | ||
+ Default (but customizable) security prevents griefers from pilfering your data via JSON requests | ||
- Customize search query | ||
- Query other resources besides Django ORM | ||
- Format results with HTML | ||
- Customize styling | ||
- Customize security policy | ||
- Add additional custom UI alongside widget | ||
- Integrate with other UI elements elsewhere on the page using the javascript API | ||
- Works in Admin as well as in normal views | ||
- Django >=1.5, <=1.9 | ||
- Python >=2.7, <=3.4 | ||
""" | ||
) |