Compare commits

...

36 commits

Author SHA1 Message Date
Benbb96
e7fa49a6e2
Prevent literal "None" placeholders (#591) 2020-02-25 11:50:21 +01:00
Johannes Hoppe
39ab326884 Add support for Django 3.0 2020-01-05 17:23:31 +01:00
Mario Frasca
d63f410bca Improve getting started documentation (#542) 2019-12-13 14:52:03 +01:00
Adrien Delhorme
5680f0daf9 Update Select2 library to version 4.0.12 2019-11-21 22:27:02 +07:00
Johannes Hoppe
8deb2b6a11
Create FUNDING.yml 2019-10-30 10:09:30 +09:00
Johannes Hoppe
37e2515be6
Add name to setup.py to enable GH dependency graph 2019-10-29 11:30:12 +09:00
Johannes Hoppe
cc8989a625 Fix typo 2019-10-10 13:09:03 -10:00
Johannes Hoppe
1ae52d7436 Fix #574 -- Update jQuery documentation
Update jQuery documentation to reflect jQuery versino support.
2019-10-10 13:09:03 -10:00
Johannes Hoppe
dca7dbc5d1 Fix #565 -- Support empty_label on ModelSelect fields. 2019-08-26 17:13:27 +02:00
predatell
8bd7f7209f Try to get queryset form choices, if possible (#509)
Get queryset for model widgets from choices. This omits the need to explicitly supply a queryset or model to the widget.
2019-07-09 18:38:59 +02:00
Johannes Hoppe
6b1ca10b06 Fix typo 2019-07-08 18:57:23 +02:00
Johannes Hoppe
4f96e21333 Resolve #557 -- Improve documentation for ModelSelect2TagWidget 2019-07-08 18:57:23 +02:00
Johannes Hoppe
8494b10fcc Fix pycodestyle issue 2019-06-10 18:03:23 +02:00
Johannes Hoppe
ff68bf1050 Fix #550 -- Omit tests from wheel 2019-06-10 18:03:23 +02:00
Mario Frasca
c15de464d5 Fix #544 -- Ensure correct attribute defaults (#547)
dict.setdefault() does not change the default value if called twice.
Therefore, defaults need to passed to the super call instead.
2019-06-10 17:09:04 +02:00
Vipul Chaudhary
898b2e84dd Fix #418 –– Remove extra Q created in the ORM query (#548)
The iterator for reduce function should not have the first element
select &= reduce(lambda x, y: x | Q(**{y: t}), search_fields[1:], Q(**{search_fields[0]: t}))
2019-06-10 16:57:17 +02:00
Pablo Montepagano
1e4056bd62 fixed typo in docs 2019-06-10 16:54:36 +02:00
Johannes Hoppe
2bb6f3a974 Set Sphinx project settings in conf.py file 2019-04-11 12:29:40 +02:00
Johannes Hoppe
fa9d8baba8 Set master_doc for readthedocs 2019-04-11 12:21:12 +02:00
Johannes Hoppe
df5bf9e893 Fix travis deployment pipeline 2019-04-10 14:05:57 +02:00
Johannes Hoppe
4d0d702aaf Don't skip after_success 2019-04-10 13:50:22 +02:00
Johannes Hoppe
0c82edf65c Fix release process 2019-04-10 13:34:15 +02:00
Johannes Hoppe
0021f35b2a Use setuptools_scm for versioning 2019-04-10 11:58:40 +02:00
Johannes Hoppe
ad42a01083 Fix #535 -- Add static files to dist package 2019-04-10 11:58:40 +02:00
Johannes Hoppe
3a7ecd1666 Move deploy to base level 2019-04-08 20:20:51 +02:00
Johannes Hoppe
2f17e21b0b Simplify package setup 2019-04-08 19:57:22 +02:00
Johannes Hoppe
9de7f29815
Update issue templates 2019-04-05 15:33:02 +02:00
Johannes Hoppe
ffe91627d8 Add documentation for new request argument 2019-03-23 13:57:13 +01:00
Johannes Hoppe
66d2051c20 Fix django master 2019-03-23 13:57:13 +01:00
Johannes Hoppe
48ceeaa312 Update travis-contif 2019-03-23 13:57:13 +01:00
Johannes Hoppe
9b54cc30c7 Add Django 2.2 support
Add Django 2.2 LTS support
Drop Django 1.11 LTS support
Add request argument to `ModelSelect2Mixin.filter_queryset`
2019-03-23 13:57:13 +01:00
Andrew Benedict Wallace
82859121a6 Update get_started.rst (#513)
explicit import to help us find Select2MultipleWidget
2018-09-06 08:13:59 +02:00
Johannes Hoppe
d34cd2e5de
Enable check suite (#508) 2018-08-27 14:14:19 +02:00
Thomas Grainger
e4efaab6f1 Fix automated NPM deployment process (#505)
Use skip_cleanup to distribute build artifacts.
2018-08-23 18:59:21 +02:00
Johannes Hoppe
1e8971c12b
Fix travis config (#504) 2018-08-22 13:49:55 +02:00
Thomas Grainger
de7e7a1903 Publish django-select2 JavaScript code on NPM (#479) 2018-08-22 12:04:02 +02:00
37 changed files with 631 additions and 577 deletions

20
.editorconfig Normal file
View file

@ -0,0 +1,20 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf
[*.{json,yml,yaml,js,jsx}]
indent_size = 2
[LICENSE]
insert_final_newline = false
[Makefile]
indent_style = tab

4
.fussyfox.yml Normal file
View file

@ -0,0 +1,4 @@
- bandit
- flake8
- isort
- pydocstyle

2
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,2 @@
github: codingjoe
custom: https://paypal.me/codingjoe

30
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,30 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: codingjoe
---
**Describe the bug**
A clear and concise description of what the bug is.
**Exception & Traceback**
Should you have run into an exception, please provide us with the exception as well as with the full traceback.
**Code Snippet**
Please provide us with a code example on how to reproduce the error.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.

View file

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View file

@ -0,0 +1,13 @@
---
name: Problem with Django admin
about: You are facing a problem integrating django-select2 into Django's admin interface
title: ''
labels: wontfix
assignees: ''
---
Django-Select2 does NOT support Django admin, since Django admin has a built-in feature called `autocomplete_fields`. Autocomplete fields are superior and we recommend using them, instead of this package for the admin.
You can find more information here:
https://docs.djangoproject.com/en/stable/ref/contrib/admin/#django.contrib.admin.ModelAdmin.autocomplete_fields

17
.github/ISSUE_TEMPLATE/question.md vendored Normal file
View file

@ -0,0 +1,17 @@
---
name: Question
about: You have a question about Django-Select2
title: ''
labels: question
assignees: ''
---
**Goal**
Please describe your goal in all detail. What are you trying to do
**Problem**
Please describe your problem in all detail. Where are you struggling?
**Code Snippet**
Please provide a code snippet of your problem.

3
.gitignore vendored
View file

@ -20,3 +20,6 @@ venv/
geckodriver.log geckodriver.log
ghostdriver.log ghostdriver.log
.coverage .coverage
coverage.xml
.eggs/

View file

@ -1,63 +1,87 @@
language: python language: python
sudo: true
dist: xenial dist: xenial
cache:
- apt
- pip
services:
- redis
addons:
apt:
packages:
- chromium-chromedriver
- python3-enchant
- python-enchant
- graphviz
python: python:
- "3.6" - "3.6"
- "3.7" - "3.7"
- "3.8"
env: env:
matrix: - DJANGO=22
- DJANGO=111 - DJANGO=30
- DJANGO=20
- DJANGO=21
- DJANGO=master - DJANGO=master
- TOXENV=qa
- TOXENV=docs
matrix: matrix:
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- env: DJANGO=master - env: DJANGO=master
exclude:
addons:
apt:
packages:
- chromium-chromedriver
install: pip install tox-travis codecov
before_script:
- ln -s /usr/lib/chromium-browser/chromedriver ~/bin/chromedriver
- |
if [[ -z $TOXENV ]]; then
export TOXENV=py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/\.//g')-dj$DJANGO
fi
- echo $TOXENV
script: tox
after_success: codecov
stages:
- test
- name: deploy
if: tag is present
jobs:
include:
- python: "3.7" - python: "3.7"
env: TOXENV=docs env: TOXENV=docs
- python: "3.7" addons:
env: DJANGO=111 apt:
- python: "3.6" packages:
env: TOXENV=qa - python3-enchant
install: - python-enchant
- pip install --upgrade pip tox - graphviz
- pip install -U codecov - language: node_js
before_script: addons: {}
- ln -s /usr/lib/chromium-browser/chromedriver ~/bin/chromedriver install: npm install
- nvm install --lts script: npm test
- npm install -g standard node_js: lts/*
- | cache: npm
if [[ -z $TOXENV ]]; then - stage: deploy
export TOXENV=py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/\.//g')-dj$DJANGO python: "3.8"
fi install: skip
- echo $TOXENV script: skip
script: after_success: true
- standard deploy:
- tox -e $TOXENV provider: pypi
after_success: distributions: sdist bdist_wheel
- codecov on:
deploy: tags: true
provider: pypi user: codingjoe
user: codingjoe password:
password: secure: fEP9K7y0ZF9fRvQEUN4kgPXQEZvi3Cx3ikUebG2UM/2uhcaUQm0+KpgZ2S+lvOTYcBnNgzPzFsVIZMcVcTxwIKuQDEMq9y2eop2hnisb9KXsIm9qPYSzOnRm74VuiOt4hNOZMe0qVBK2cO3vC9NDXuzdI8A0JynJhthfl4t+kFM=
secure: fEP9K7y0ZF9fRvQEUN4kgPXQEZvi3Cx3ikUebG2UM/2uhcaUQm0+KpgZ2S+lvOTYcBnNgzPzFsVIZMcVcTxwIKuQDEMq9y2eop2hnisb9KXsIm9qPYSzOnRm74VuiOt4hNOZMe0qVBK2cO3vC9NDXuzdI8A0JynJhthfl4t+kFM= - stage: deploy
on: language: node_js
tags: true node_js: lts/*
distributions: sdist bdist_wheel python: "3.8"
repo: applegrew/django-select2 install: skip
script: skip
after_success: true
skip_cleanup: true
before_deploy:
- ./set_version.py
deploy:
provider: npm
on:
tags: true
email: info@johanneshoppe.com
api_key:
secure: PV38cQx9qhEFkpSdytbM72UzIMCfhpjmRJ8dzT+bCAaOIs5rEcyKN+h1r5ranunCxWyuFsMW4A2iW/SCxnKCR/oPAguuwUbT5ogBXlsskqPFWUxuoTHYMrd+zB+SC6+bMgq+o5ul+kJCYtEkWP6cMlIEzKyTLab7m5PsnDXNVnI=

View file

@ -1,218 +0,0 @@
Changelog Summary
=================
Changes for django-select2 v6.0.1 and later are logged on the [github releases page](https://github.com/applegrew/django-select2/releases).
### v6.0.0
* Add Support for Django 2.0
* Drop Python 2 support
* Drop Python 3.5 support
* Drop Django 1.8 support
* Drop Django 1.10 support
### v5.10.0
* Add support for dependent select fields [321](github.com/applegrew/django-select2/pull/321/).
### v5.9.0
* Add support for Django 1.11 LTS
* Drop support for Django 1.9
### v5.8.10
* Fixes tests for Django 1.10+
* retain order of choices [299](https://github.com/applegrew/django-select2/pull/299)
### v5.8.9
* Fixes tests. No functional change from 5.8.8.
### v5.8.8
* Upgrade Select2 to version 4.0.3
### v5.8.7
* Fix #285 -- Do not evaluate queryset in `render_options`.
### v5.8.3
* Remove six dependency -- User django.utils.six instead.
### v5.8.2
* Fixes #260 -- Fixes bug in render choices
### v5.8.0
* Changed signature of `render` and `render_choices` to satisfy Django 1.10 changes.
* Changed widgets' inheritance tree to be more consistent.
### v5.7.1
* Fixes pickle bug of lazy object
### v5.7.0
* Security fix that allows a `field_id` to only be used for the intended JSON endpoint.
Prior to that change you could use any `field_id` on any select2 JSON endpoint.
Even if the id was intended to be used on a private endpoint if could be used on
the default one and therefore leak sensitive data.
* Breaking change on how `Heavy` widgets are being cached.
Heavy widgets used to add themselves to the cache. Now they add a dictionary to
the cache containing themselves and the target url.
```python
{
'widget': self,
'url': self.get_url(),
}
```
### v5.6.0
* Added `label_from_instance` method for model widgets to define custom option labels.
### v5.5.0
* Added settings to delivery static assets from different source.
### v5.4.2
* Fixed initial data not being shown for heavy widgets.
### v5.4.1
* Fixed memory leak in `ModelSelect2Mixin` and subclasses
### v5.4.0
* Added `Select2TagWidget` a light widget with tagging support
### v5.3.0
* Added djangoSelect2 jQuery plugin to support
dynamic field initialisation
### v5.2.0
* Added pagination
### v5.1.0
* Added search term splitting
* Model widgets get smarter pickling to reduce size and avoid pickling issues
### v5.0.0
Version 5 is a complete rewrite of the package to drastically reduce
the code base and to ensure a future maintainability.
While we feature set remained unchanged, the API changed completely.
Major changes:
* Fields have been removed in favor of widgets.
* All version 4 settings have been removed.
* Template tags have been removed.
* 3rd party javascript is served by a CDN.
* No more inline javascript code.
### v4.3.2
* Use `django.contrib.staticfiles.templatetags.staticfiles.static` over `django.templatetags.static.static` to allow hashing.
* Py23 unicode fixes
### v4.3.1
* Build failure fix.
### v4.3.0
* Now the package supports both Python2 and Python3.
* Django 1.8 support added.
* Many bug fixes.
### v4.2.2
* Misc fixes and enhancements - [61](https://github.com/applegrew/django-select2/pull/61), [64](https://github.com/applegrew/django-select2/issues/64).
### v4.2.1
* Finally fixed performance issue[#54](https://github.com/applegrew/django-select2/issues/54) (and issue[#41](https://github.com/applegrew/django-select2/issues/41)) in widgets when backing field is based on models and the field has an initial value.
### v4.2.0
* Updated Select2 to version 3.4.2. **Please note**, that if you need any of the Select2 locale files, then you need to download them yourself from http://ivaynberg.github.com/select2/ and add to your project.
* Tagging support added. See [Field API reference](http://django-select2.readthedocs.org/en/latest/ref_fields.html) in documentation.
### v4.1.0
* Updated Select2 to version 3.4.1. **Please note**, that if you need any of the Select2 locale files, then you need to download them yourself from http://ivaynberg.github.com/select2/ and add to your project.
* Address isssue[#36](https://github.com/applegrew/django-select2/issues/36) - Fix importerror under django1.6.
* Fixed the way `setup.py` handles Unicode files while minifying them during package build.
* Address isssue[#39](https://github.com/applegrew/django-select2/issues/39) - MultipleSelect2HiddenInput.render() should use mark_safe().
* Address isssue[#45](https://github.com/applegrew/django-select2/issues/45) - MultipleSelect2HiddenInput returns bad has_changed value.
### v4.0.0
* Main version number bumped to bring your attention to the fact that the default Id generation scheme has now changed. Now Django Select2 will use hashed paths of fields to generate their Ids. The old scheme of generating random Ids are still there. You can enable that by setting `GENERATE_RANDOM_SELECT2_ID` to `True`.
### v3.3.1
* Addressed issue[#30](https://github.com/applegrew/django-select2/issues/30).
* Merged pull request[#31](https://github.com/applegrew/django-select2/issues/31).
* Added `light` parameter to `import_django_select2_js`, `import_django_select2_css` and `import_django_select2_js_css` template tags. Please see doc's "Getting Started", for more details.
### v3.3.0
* Updated Select2 to version 3.3.1.
* Added multi-process support. ([Issue#28](https://github.com/applegrew/django-select2/issues/28)).
* Addressed issue[#26](https://github.com/applegrew/django-select2/issues/26).
* Addressed issue[#24](https://github.com/applegrew/django-select2/issues/24).
* Addressed issue[#23](https://github.com/applegrew/django-select2/issues/23).
* Addressed some typos.
### v3.2.0
* Fixed issue[#20](https://github.com/applegrew/django-select2/issues/20). Infact while fixing that I realised that heavy components do not need the help of cookies, infact due to a logic error in previous code the cookies were not being used anyway. Now Django Select2 does not use cookies etc.
* Few more bugs fixed in `heav_data.js`.
* Now production code will use minimized versions of js and css files.
* Codes added in `setup.py` to automate the task of minimizing js and css files, using a web service.
### v3.1.5
* Merged pull request (issue[#17](https://github.com/applegrew/django-select2/issues/17)). Which allows the user to pass some extra data to Select2 clients-side component.
* Updated License. The previous one was inadequently worded. Now this project use Apache 2.0 license.
### v3.1.4
* Manually merged changes from pull request (issue[#16](https://github.com/applegrew/django-select2/issues/16)).
* Django Select2 widgets now allow passing of any Select2 Js options. Previously it used to allow only white-listed options. Now it will block only black-listed options. For example, Light Select2 widgets won't allow you to set `multiple` option, since it is an error to set them when Select2 Js is bound to `<select>` fields.
### v3.1.3
* Addressed enhancement issue[#12](https://github.com/applegrew/django-select2/issues/12).
* Addressed enhancement issue[#11](https://github.com/applegrew/django-select2/issues/11).
* Addressed performance issue[#8](https://github.com/applegrew/django-select2/issues/8).
### v3.1.2
* Fixed issue[#7](https://github.com/applegrew/django-select2/issues/7).
### v3.1.1
* Bumping up minor version since Select2 JS has been updated to version 3.2. It seems Select2 JS now includes new higher resolution icons for [Retina displays](http://en.wikipedia.org/wiki/Retina_Display).
* Fixed an issue in `setup.py` because of which `templatetags` directory was not included in last PIP releases' tar file.
### v3.0.2
* Added `AUTO_RENDER_SELECT2_STATICS` settings. This, when specified and set to `False` in `settings.py` then Django_Select2 widgets won't automatically include the required scripts and stylesheets. When this setting is `True` (default) then every Select2 field on the page will output `<script>` and `<link>` tags to include the required JS and CSS files. This is convinient but will output the same JS and CSS files multiple times if there are more than one Select2 fields on the page.
* Added `django_select2_tags` template tags to manually include the required JS and CSS files, when `AUTO_RENDER_SELECT2_STATICS` is turned off.
### v3.0.1
* Revised the design of heavy fields. The previous design didn't quite make it easy to back heavy fields by big data sources. See `fields.HeavyChoiceField` class and its methods' docs for more info.
* Updated docs.
* Some more fixes for issue[#4](https://github.com/applegrew/django-select2/issues/4).
* Updated Select2 JS to version 3.1.
### v3.0
* Added docs.
* Some bug fixes. See issue[#4](https://github.com/applegrew/django-select2/issues/4).
* `widgets.Select2Mixin.__init__` now accepts `select2_options` kwarg to override its `options` settings. Previously `attrs` were being used for this too. This means backward compatibility has been broken here. `attrs` will no longer override `options` values. **The major release version has been changed to 3, because of this backward incompatible change.**
### v2.0.1
* Auto id registration fixes.
### v2.0
* Mostly major bug fixes in code and design. The changes were many, raising the possibility of backward incompatibility. However, the backward incompatibility would be subtle.
* Auto fields (sub-classes of AutoViewFieldMixin) now accepts `auto_id` parameter. This can be used to provide custom id for the field. The default is 'module.field_class_name'. Ideally only the first instance of an auto field is registered. This parameter can be used to force registration of additional instances by passing a unique value.

22
CONTRIBUTING.rst Normal file
View file

@ -0,0 +1,22 @@
Contributing
============
This package uses the pyTest test runner. To run the tests locally simply run::
python setup.py test
If you need to the development dependencies installed of you local IDE, you can run::
python setup.py develop
Documentation pull requests welcome. The Sphinx documentation can be compiled via::
python setup.py build_sphinx
Bug reports welcome, even more so if they include a correct patch. Much
more so if you start your patch by adding a failing unit test, and correct
the code until zero unit tests fail.
The list of supported Django and Python version can be found in the CI suite setup.
Please make sure to verify that none of the linters or tests failed, before you submit
a patch for review.

28
LICENSE
View file

@ -1,13 +1,21 @@
Copyright 2017 Johannes Hoppe MIT License
Licensed under the Apache License, Version 2.0 (the "License"); Copyright (c) 2017 Johannes Hoppe
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Unless required by applicable law or agreed to in writing, software The above copyright notice and this permission notice shall be included in all
distributed under the License is distributed on an "AS IS" BASIS, copies or substantial portions of the Software.
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
limitations under the License. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

6
MANIFEST.in Normal file
View file

@ -0,0 +1,6 @@
include django_select2/static/django_select2/django_select2.js
prune tests
prune .github
exclude .fussyfox.yml
exclude .travis.yml
exclude .gitignore

View file

@ -8,7 +8,7 @@ __all__ = ('settings', 'Select2Conf')
class Select2Conf(AppConf): class Select2Conf(AppConf):
"""Settings for Django-Select2.""" """Settings for Django-Select2."""
LIB_VERSION = '4.0.5' LIB_VERSION = '4.0.12'
"""Version of the Select2 library.""" """Version of the Select2 library."""
CACHE_BACKEND = 'default' CACHE_BACKEND = 'default'

View file

@ -20,10 +20,11 @@ Widgets are generally of two types:
drop-in-replacement for Django's default drop-in-replacement for Django's default
select widgets. select widgets.
2. **Heavy** -- 2(a). **Heavy** --
They are suited for scenarios when the number of options They are suited for scenarios when the number of options
are large and need complex queries (from maybe different are large and need complex queries (from maybe different
sources) to get the options. sources) to get the options.
This dynamic fetching of options undoubtedly requires This dynamic fetching of options undoubtedly requires
Ajax communication with the server. Django-Select2 includes Ajax communication with the server. Django-Select2 includes
a helper JS file which is included automatically, a helper JS file which is included automatically,
@ -31,15 +32,15 @@ Widgets are generally of two types:
Although on the server side you do need to create a view Although on the server side you do need to create a view
specifically to respond to the queries. specifically to respond to the queries.
3. **Model** -- 2(b). **Model** --
Model-widgets are a further specialized versions of Heavies. Model-widgets are a further specialized versions of Heavies.
These do not require views to serve Ajax requests. These do not require views to serve Ajax requests.
When they are instantiated, they register themselves When they are instantiated, they register themselves
with one central view which handles Ajax requests for them. with one central view which handles Ajax requests for them.
Heavy widgets have the word 'Heavy' in their name. Heavy and Model widgets have respectively the word 'Heavy' and 'Model' in
Light widgets are normally named, i.e. there is no their name. Light widgets are normally named, i.e. there is no 'Light' word
'Light' word in their names. in their names.
.. inheritance-diagram:: django_select2.forms .. inheritance-diagram:: django_select2.forms
:parts: 1 :parts: 1
@ -50,6 +51,7 @@ from itertools import chain
from pickle import PicklingError # nosec from pickle import PicklingError # nosec
from django import forms from django import forms
from django.contrib.admin.widgets import SELECT2_TRANSLATIONS
from django.core import signing from django.core import signing
from django.db.models import Q from django.db.models import Q
from django.forms.models import ModelChoiceIterator from django.forms.models import ModelChoiceIterator
@ -60,7 +62,7 @@ from .cache import cache
from .conf import settings from .conf import settings
class Select2Mixin(object): class Select2Mixin:
""" """
The base mixin of all Select2 widgets. The base mixin of all Select2 widgets.
@ -69,16 +71,20 @@ class Select2Mixin(object):
form media. form media.
""" """
def build_attrs(self, *args, **kwargs): empty_label = ''
"""Add select2 data attributes."""
attrs = super(Select2Mixin, self).build_attrs(*args, **kwargs) def build_attrs(self, base_attrs, extra_attrs=None):
if self.is_required: """Add select2 data attributes."""
attrs.setdefault('data-allow-clear', 'false') default_attrs = {'data-minimum-input-length': 0}
else: if self.is_required:
attrs.setdefault('data-allow-clear', 'true') default_attrs['data-allow-clear'] = 'false'
attrs.setdefault('data-placeholder', '') else:
default_attrs['data-allow-clear'] = 'true'
default_attrs['data-placeholder'] = self.empty_label or ""
default_attrs.update(base_attrs)
attrs = super().build_attrs(default_attrs, extra_attrs=extra_attrs)
attrs.setdefault('data-minimum-input-length', 0)
if 'class' in attrs: if 'class' in attrs:
attrs['class'] += ' django-select2' attrs['class'] += ' django-select2'
else: else:
@ -99,22 +105,12 @@ class Select2Mixin(object):
https://docs.djangoproject.com/en/stable/topics/forms/media/#media-as-a-dynamic-property https://docs.djangoproject.com/en/stable/topics/forms/media/#media-as-a-dynamic-property
""" """
lang = get_language() lang = get_language()
i18n_name = None
select2_js = (settings.SELECT2_JS,) if settings.SELECT2_JS else () select2_js = (settings.SELECT2_JS,) if settings.SELECT2_JS else ()
select2_css = (settings.SELECT2_CSS,) if settings.SELECT2_CSS else () select2_css = (settings.SELECT2_CSS,) if settings.SELECT2_CSS else ()
try: i18n_name = SELECT2_TRANSLATIONS.get(lang)
from django.contrib.admin.widgets import SELECT2_TRANSLATIONS if i18n_name not in settings.SELECT2_I18N_AVAILABLE_LANGUAGES:
i18n_name = SELECT2_TRANSLATIONS.get(lang) i18n_name = None
if i18n_name not in settings.SELECT2_I18N_AVAILABLE_LANGUAGES:
i18n_name = None
except ImportError:
# TODO: select2 widget feature needs to be backported into Django 1.11
try:
i = [x.lower() for x in settings.SELECT2_I18N_AVAILABLE_LANGUAGES].index(lang)
i18n_name = settings.SELECT2_I18N_AVAILABLE_LANGUAGES[i]
except ValueError:
pass
i18n_file = ('%s/%s.js' % (settings.SELECT2_I18N_PATH, i18n_name),) if i18n_name else () i18n_file = ('%s/%s.js' % (settings.SELECT2_I18N_PATH, i18n_name),) if i18n_name else ()
@ -126,15 +122,18 @@ class Select2Mixin(object):
media = property(_get_media) media = property(_get_media)
class Select2TagMixin(object): class Select2TagMixin:
"""Mixin to add select2 tag functionality.""" """Mixin to add select2 tag functionality."""
def build_attrs(self, *args, **kwargs): def build_attrs(self, base_attrs, extra_attrs=None):
"""Add select2's tag attributes.""" """Add select2's tag attributes."""
self.attrs.setdefault('data-minimum-input-length', 1) default_attrs = {
self.attrs.setdefault('data-tags', 'true') 'data-minimum-input-length': 1,
self.attrs.setdefault('data-token-separators', '[",", " "]') 'data-tags': 'true',
return super(Select2TagMixin, self).build_attrs(*args, **kwargs) 'data-token-separators': '[",", " "]'
}
default_attrs.update(base_attrs)
return super().build_attrs(default_attrs, extra_attrs=extra_attrs)
class Select2Widget(Select2Mixin, forms.Select): class Select2Widget(Select2Mixin, forms.Select):
@ -194,7 +193,7 @@ class Select2TagWidget(Select2TagMixin, Select2Mixin, forms.SelectMultiple):
pass pass
class HeavySelect2Mixin(object): class HeavySelect2Mixin:
"""Mixin that adds select2's AJAX options and registers itself on Django's cache.""" """Mixin that adds select2's AJAX options and registers itself on Django's cache."""
dependent_fields = {} dependent_fields = {}
@ -212,6 +211,7 @@ class HeavySelect2Mixin(object):
widget could be dependent on a country. widget could be dependent on a country.
Key is a name of a field in a form. Key is a name of a field in a form.
Value is a name of a field in a model (used in `queryset`). Value is a name of a field in a model (used in `queryset`).
""" """
self.choices = choices self.choices = choices
if attrs is not None: if attrs is not None:
@ -235,20 +235,26 @@ class HeavySelect2Mixin(object):
return self.data_url return self.data_url
return reverse(self.data_view) return reverse(self.data_view)
def build_attrs(self, *args, **kwargs): def build_attrs(self, base_attrs, extra_attrs=None):
"""Set select2's AJAX attributes.""" """Set select2's AJAX attributes."""
attrs = super(HeavySelect2Mixin, self).build_attrs(*args, **kwargs) default_attrs = {
'data-ajax--url': self.get_url(),
'data-ajax--cache': "true",
'data-ajax--type': "GET",
'data-minimum-input-length': 2,
}
if self.dependent_fields:
default_attrs['data-select2-dependent-fields'] = " ".join(self.dependent_fields)
default_attrs.update(base_attrs)
attrs = super().build_attrs(default_attrs, extra_attrs=extra_attrs)
# encrypt instance Id # encrypt instance Id
self.widget_id = signing.dumps(id(self)) self.widget_id = signing.dumps(id(self))
attrs['data-field_id'] = self.widget_id attrs['data-field_id'] = self.widget_id
attrs.setdefault('data-ajax--url', self.get_url())
attrs.setdefault('data-ajax--cache', "true")
attrs.setdefault('data-ajax--type', "GET")
attrs.setdefault('data-minimum-input-length', 2)
if self.dependent_fields:
attrs.setdefault('data-select2-dependent-fields', " ".join(self.dependent_fields))
attrs['class'] += ' django-select2-heavy' attrs['class'] += ' django-select2-heavy'
return attrs return attrs
@ -317,7 +323,7 @@ class HeavySelect2TagWidget(HeavySelect2Mixin, Select2TagWidget):
# Auto Heavy widgets # Auto Heavy widgets
class ModelSelect2Mixin(object): class ModelSelect2Mixin:
"""Widget mixin that provides attributes and methods for :class:`.AutoResponseView`.""" """Widget mixin that provides attributes and methods for :class:`.AutoResponseView`."""
model = None model = None
@ -337,6 +343,12 @@ class ModelSelect2Mixin(object):
max_results = 25 max_results = 25
"""Maximal results returned by :class:`.AutoResponseView`.""" """Maximal results returned by :class:`.AutoResponseView`."""
@property
def empty_label(self):
if isinstance(self.choices, ModelChoiceIterator):
return self.choices.field.empty_label
return ''
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
""" """
Overwrite class parameters if passed as keyword arguments. Overwrite class parameters if passed as keyword arguments.
@ -352,7 +364,7 @@ class ModelSelect2Mixin(object):
self.queryset = kwargs.pop('queryset', self.queryset) self.queryset = kwargs.pop('queryset', self.queryset)
self.search_fields = kwargs.pop('search_fields', self.search_fields) self.search_fields = kwargs.pop('search_fields', self.search_fields)
self.max_results = kwargs.pop('max_results', self.max_results) self.max_results = kwargs.pop('max_results', self.max_results)
defaults = {'data_view': 'django_select2-json'} defaults = {'data_view': 'django_select2:auto-json'}
defaults.update(kwargs) defaults.update(kwargs)
super(ModelSelect2Mixin, self).__init__(*args, **defaults) super(ModelSelect2Mixin, self).__init__(*args, **defaults)
@ -370,17 +382,19 @@ class ModelSelect2Mixin(object):
queryset.query, queryset.query,
], ],
'cls': self.__class__, 'cls': self.__class__,
'search_fields': self.search_fields, 'search_fields': tuple(self.search_fields),
'max_results': self.max_results, 'max_results': int(self.max_results),
'url': self.get_url(), 'url': str(self.get_url()),
'dependent_fields': self.dependent_fields, 'dependent_fields': dict(self.dependent_fields),
}) })
def filter_queryset(self, term, queryset=None, **dependent_fields): def filter_queryset(self, request, term, queryset=None, **dependent_fields):
""" """
Return QuerySet filtered by search_fields matching the passed term. Return QuerySet filtered by search_fields matching the passed term.
Args: Args:
request (django.http.request.HttpRequest): The request is being passed from
the JSON view and can be used to dynamically alter the response queryset.
term (str): Search term term (str): Search term
queryset (django.db.models.query.QuerySet): QuerySet to select choices from. queryset (django.db.models.query.QuerySet): QuerySet to select choices from.
**dependent_fields: Dependent fields and their values. If you want to inherit **dependent_fields: Dependent fields and their values. If you want to inherit
@ -398,7 +412,7 @@ class ModelSelect2Mixin(object):
term = term.replace('\t', ' ') term = term.replace('\t', ' ')
term = term.replace('\n', ' ') term = term.replace('\n', ' ')
for t in [t for t in term.split(' ') if not t == '']: for t in [t for t in term.split(' ') if not t == '']:
select &= reduce(lambda x, y: x | Q(**{y: t}), search_fields, select &= reduce(lambda x, y: x | Q(**{y: t}), search_fields[1:],
Q(**{search_fields[0]: t})) Q(**{search_fields[0]: t}))
if dependent_fields: if dependent_fields:
select &= Q(**dependent_fields) select &= Q(**dependent_fields)
@ -415,6 +429,8 @@ class ModelSelect2Mixin(object):
""" """
if self.queryset is not None: if self.queryset is not None:
queryset = self.queryset queryset = self.queryset
elif hasattr(self.choices, 'queryset'):
queryset = self.choices.queryset
elif self.model is not None: elif self.model is not None:
queryset = self.model._default_manager.all() queryset = self.model._default_manager.all()
else: else:
@ -548,14 +564,15 @@ class ModelSelect2TagWidget(ModelSelect2Mixin, HeavySelect2TagWidget):
queryset = MyModel.objects.all() queryset = MyModel.objects.all()
def value_from_datadict(self, data, files, name): def value_from_datadict(self, data, files, name):
values = super().value_from_datadict(self, data, files, name) '''Create objects for given non-pimary-key values. Return list of all primary keys.'''
qs = self.queryset.filter(**{'pk__in': list(values)}) values = set(super().value_from_datadict(data, files, name))
pks = set(str(getattr(o, pk)) for o in qs) # This may only work for MyModel, if MyModel has title field.
cleaned_values = [] # You need to implement this method yourself, to ensure proper object creation.
for val in value: pks = self.queryset.filter(**{'pk__in': list(values)}).values_list('pk', flat=True)
if str(val) not in pks: pks = set(map(str, pks))
val = queryset.create(title=val).pk cleaned_values = list(values)
cleaned_values.append(val) for val in values - pks:
cleaned_values.append(self.queryset.create(title=val).pk)
return cleaned_values return cleaned_values
""" """

View file

@ -1,4 +1,15 @@
(function ($) { /* global define, jQuery */
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory)
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('jquery'))
} else {
// Browser globals
factory(jQuery)
}
}(function ($) {
'use strict'
var init = function ($element, options) { var init = function ($element, options) {
$element.select2(options) $element.select2(options)
} }
@ -53,4 +64,6 @@
$(function () { $(function () {
$('.django-select2').djangoSelect2() $('.django-select2').djangoSelect2()
}) })
}(this.jQuery))
return $.fn.djangoSelect2
}))

View file

@ -3,14 +3,18 @@ Django-Select2 URL configuration.
Add `django_select` to your ``urlconf`` **if** you use any 'Model' fields:: Add `django_select` to your ``urlconf`` **if** you use any 'Model' fields::
url(r'^select2/', include('django_select2.urls')), from django.urls import path
path('select2/', include('django_select2.urls')),
""" """
from django.conf.urls import url from django.urls import path
from .views import AutoResponseView from .views import AutoResponseView
app_name = 'django_select2'
urlpatterns = [ urlpatterns = [
url(r"^fields/auto.json$", path("fields/auto.json", AutoResponseView.as_view(), name="auto-json"),
AutoResponseView.as_view(), name="django_select2-json"),
] ]

View file

@ -54,7 +54,7 @@ class AutoResponseView(BaseListView):
for form_field_name, model_field_name in self.widget.dependent_fields.items() for form_field_name, model_field_name in self.widget.dependent_fields.items()
if form_field_name in self.request.GET and self.request.GET.get(form_field_name, '') != '' if form_field_name in self.request.GET and self.request.GET.get(form_field_name, '') != ''
} }
return self.widget.filter_queryset(self.term, self.queryset, **kwargs) return self.widget.filter_queryset(self.request, self.term, self.queryset, **kwargs)
def get_paginate_by(self, queryset): def get_paginate_by(self, queryset):
"""Paginate response by size of widget's `max_results` parameter.""" """Paginate response by size of widget's `max_results` parameter."""

1
docs/CONTRIBUTING.rst Normal file
View file

@ -0,0 +1 @@
.. include:: ../CONTRIBUTING.rst

View file

@ -1,53 +1,52 @@
import datetime import os
import os import sys
import sys
from pkg_resources import get_distribution
# This is needed since django_select2 requires django model modules
# and those modules assume that django settings is configured and # This is needed since django_select2 requires django model modules
# have proper DB settings. # and those modules assume that django settings is configured and
# Using this we give a proper environment with working django settings. # have proper DB settings.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.testapp.settings") # Using this we give a proper environment with working django settings.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.testapp.settings")
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # If extensions (or modules to document with autodoc) are in another directory,
# documentation root, use os.path.abspath to make it absolute, like shown here. # add these directories to sys.path here. If the directory is relative to the
sys.path.insert(0, os.path.abspath('../tests.testapp')) # documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('..')) sys.path.insert(0, os.path.abspath('../tests.testapp'))
sys.path.insert(0, os.path.abspath('..'))
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon', project = "Django-Select2"
'sphinx.ext.inheritance_diagram', author = "Johannes Hoppe"
'sphinx.ext.intersphinx', copyright = "2017, Johannes Hoppe"
'sphinx.ext.viewcode', release = get_distribution('django_select2').version
'sphinxcontrib.spelling', version = '.'.join(release.split('.')[:2])
]
intersphinx_mapping = { master_doc = 'index' # default in Sphinx v2
'python': ('http://docs.python.org/3', None),
'django': ('https://docs.djangoproject.com/en/stable/',
'https://docs.djangoproject.com/en/stable/_objects/'), extensions = [
} 'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
# spell check 'sphinx.ext.inheritance_diagram',
spelling_word_list_filename = 'spelling_wordlist.txt' 'sphinx.ext.intersphinx',
spelling_show_suggestions = True 'sphinx.ext.viewcode',
'sphinx.ext.doctest',
master_doc = 'index' ]
# General information about the project. intersphinx_mapping = {
project = 'django-select2' 'python': ('http://docs.python.org/3', None),
year = datetime.datetime.now().strftime("%Y") 'django': ('https://docs.djangoproject.com/en/stable/',
copyright = '%s, Johannes Hoppe' % year 'https://docs.djangoproject.com/en/stable/_objects/'),
}
autodoc_default_flags = ['members', 'show-inheritance']
autodoc_member_order = 'bysource' autodoc_default_flags = ['members', 'show-inheritance']
autodoc_member_order = 'bysource'
inheritance_graph_attrs = dict(rankdir='TB')
inheritance_graph_attrs = dict(rankdir='TB')
inheritance_node_attrs = dict(shape='rect', fontsize=14, fillcolor='gray90',
color='gray30', style='filled') inheritance_node_attrs = dict(shape='rect', fontsize=14, fillcolor='gray90',
color='gray30', style='filled')
inheritance_edge_attrs = dict(penwidth=0.75)
inheritance_edge_attrs = dict(penwidth=0.75)
html_theme = 'sphinx_rtd_theme'

View file

@ -49,8 +49,9 @@ DjangoSelect2 handles the initialization of select2 fields automatically. Just i
``{{ form.media.js }}`` in your template before the closing ``body`` tag. That's it! ``{{ form.media.js }}`` in your template before the closing ``body`` tag. That's it!
If you insert forms after page load or if you want to handle the initialization If you insert forms after page load or if you want to handle the initialization
yourself, DjangoSelect2 provides a jQuery plugin. It will handle both normal and yourself, DjangoSelect2 provides a jQuery plugin, replacing and enhancing the Select2
heavy fields. Simply call ``djangoSelect2(options)`` on your select fields.:: plugin. It will handle both normal and heavy fields. Simply call
``djangoSelect2(options)`` on your select fields.::
$('.django-select2').djangoSelect2(); $('.django-select2').djangoSelect2();
@ -59,6 +60,9 @@ You can pass see `Select2 options <https://select2.github.io/options.html>`_ if
$('.django-select2').djangoSelect2({placeholder: 'Select an option'}); $('.django-select2').djangoSelect2({placeholder: 'Select an option'});
Please replace all your ``.select2`` invocations with the here provided
``.djangoSelect2``.
Security & Authentication Security & Authentication
------------------------- -------------------------
@ -81,6 +85,6 @@ want to be accessible to the general public. Doing so is easy::
kwargs['data_view'] = 'user-select2-view' kwargs['data_view'] = 'user-select2-view'
super(UserSelect2WidgetMixin, self).__init__(*args, **kwargs) super(UserSelect2WidgetMixin, self).__init__(*args, **kwargs)
class MySecretWidget(UserSelect2WidgetMixin, Select2ModelWidget): class MySecretWidget(UserSelect2WidgetMixin, ModelSelect2Widget):
model = MySecretModel model = MySecretModel
search_fields = ['title__icontains'] search_fields = ['title__icontains']

View file

@ -8,6 +8,12 @@ Overview
.. automodule:: django_select2 .. automodule:: django_select2
:members: :members:
Assumptions
-----------
* You have a running Django up and running.
* You have form fully working without Django-Select2.
Installation Installation
------------ ------------
@ -17,11 +23,12 @@ Installation
2. Add ``django_select2`` to your ``INSTALLED_APPS`` in your project settings. 2. Add ``django_select2`` to your ``INSTALLED_APPS`` in your project settings.
3. Add ``django_select`` to your ``urlconf``::
3. Add ``django_select`` to your ``urlconf`` **if** you use any path('select2/', include('django_select2.urls')),
:class:`ModelWidgets <.django_select2.forms.ModelSelect2Mixin>`::
url(r'^select2/', include('django_select2.urls')), You can safely skip this one if you do not use any
:class:`ModelWidgets <.django_select2.forms.ModelSelect2Mixin>`
Quick Start Quick Start
----------- -----------
@ -30,17 +37,22 @@ Here is a quick example to get you started:
0. Follow the installation instructions above. 0. Follow the installation instructions above.
1. Add a select2 widget to the form. For example if you wanted Select2 with multi-select you would use 1. Replace native Django forms widgets with one of the several ``django_select2.form`` widgets.
``Select2MultipleWidget`` Start by importing them into your ``forms.py``, right next to Django own ones::
Replacing::
class MyForm(forms.Form): from django import forms
things = ModelMultipleChoiceField(queryset=Thing.objects.all()) from django_select2 import forms as s2forms
with:: Then let's assume you have a model with a choice, a :class:`.ForeignKey`, and a
:class:`.ManyToManyField`, you would add this information to your Form Meta
class::
class MyForm(forms.Form): widgets = {
things = ModelMultipleChoiceField(queryset=Thing.objects.all(), widget=Select2MultipleWidget) 'category': s2forms.Select2Widget,
'author': s2forms.ModelSelect2Widget(model=auth.get_user_model(),
search_fields=['first_name__istartswith', 'last_name__icontains']),
'attending': s2forms.ModelSelect2MultipleWidget …
}
2. Add the CSS to the ``head`` of your Django template:: 2. Add the CSS to the ``head`` of your Django template::
@ -55,9 +67,9 @@ with::
External Dependencies External Dependencies
--------------------- ---------------------
* jQuery version 2 * jQuery (version >=2)
This is not included in the package since it is expected jQuery is not included in the package since it is expected
that in most scenarios this would already be available. that in most scenarios jQuery is already loaded.
Example Application Example Application
------------------- -------------------

View file

@ -15,6 +15,7 @@ Contents:
get_started get_started
django_select2 django_select2
extra extra
CONTRIBUTING
Indices and tables Indices and tables
================== ==================

37
package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "django-select2",
"version": "0.0.0",
"description": "This is a Django integration of Select2.",
"files": [
"django_select2/static/**/*"
],
"main": "django_select2/static/django_select2/django_select2.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "standard"
},
"repository": {
"type": "git",
"url": "git://github.com/applegrew/django-select2.git"
},
"keywords": [
"django",
"select2"
],
"author": "Johannes Hoppe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/applegrew/django-select2/issues"
},
"homepage": "https://github.com/applegrew/django-select2#readme",
"peerDependencies": {
"select2": "*",
"jquery": ">= 1.2"
},
"devDependencies": {
"standard": "*"
}
}

View file

@ -1,15 +0,0 @@
coverage
django-appconf
flake8
pep8-naming
mccabe
isort
pydocstyle
pytest
pytest-django
selenium
sphinx
sphinx_rtd_theme
sphinxcontrib-spelling
pyenchant
django-redis

View file

@ -1 +0,0 @@
django-appconf>=0.6.0

12
set_version.py Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""Set the version in NPM's package.json to match the git tag."""
import json
import os
if __name__ == '__main__':
with open('package.json', 'r+') as f:
data = json.load(f)
f.seek(0)
data['version'] = os.environ['TRAVIS_TAG']
json.dump(data, f)
f.truncate()

View file

@ -1,11 +1,12 @@
[metadata] [metadata]
name = django-select2 name = django-select2
author = Johannes Hoppe author = Johannes Hoppe
author-email = info@johanneshoppe.com author_email = info@johanneshoppe.com
summary = Select2 option fields for Django. description = Select2 option fields for Django
description-file = README.rst long_description = file: README.rst
home-page = https://github.com/applegrew/django-select2 url = https://github.com/applegrew/django-select2
license = Apache-2 license = MIT
license_file = LICENSE
classifier = classifier =
Development Status :: 5 - Production/Stable Development Status :: 5 - Production/Stable
Environment :: Web Environment Environment :: Web Environment
@ -16,44 +17,67 @@ classifier =
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Framework :: Django Framework :: Django
[files] [options]
packages = include_package_data = True
django_select2 packages = django_select2
install_requires =
django>=2.2
django-appconf>=0.6.0
setup_requires =
setuptools_scm
sphinx
pytest-runner
tests_require =
pytest
pytest-cov
pytest-django
selenium
[pbr] [bdist_wheel]
skip_authors = true universal = 1
skip_changelog = true
[bdist_rpm]
requires =
python-django-appconf >= 2.0
python-django-appconf >= 0.6
[aliases]
test = pytest
[build_sphinx] [build_sphinx]
builders = spelling,html
source-dir = docs source-dir = docs
build-dir = docs/_build build-dir = docs/_build
warning-is-error = 1
[tool:pytest] [tool:pytest]
norecursedirs = env docs addopts = --cov=django_select2 --cov-report xml
addopts = --tb=short -rxs
DJANGO_SETTINGS_MODULE=tests.testapp.settings DJANGO_SETTINGS_MODULE=tests.testapp.settings
[tox:tox]
envlist = py{36,37,38}-dj{22,30,master},docs
[testenv]
passenv=CI
deps =
dj22: django~=2.2
dj30: django~=3.0
djmaster: https://github.com/django/django/archive/master.tar.gz#egg=django
commands = python setup.py test
[testenv:docs]
commands = python setup.py build_sphinx -W -b doctest -b html
[flake8] [flake8]
max-line-length = 120 max-line-length = 120
max-complexity = 10
statistics = true statistics = true
show-source = true show-source = true
exclude = docs,runtests.py,setup.py,.tox,env
[pep257] [pydocstyle]
match = (?!setup).*.py add_ignore = D1
match-dir = (?!tests|env|docs|\.).*
[isort] [isort]
atomic = true atomic = true
multi_line_output = 5 multi_line_output = 5
line_length = 79 line_length = 79
skip = manage.py,docs,.tox,env
known_first_party = django_select2, tests known_first_party = django_select2, tests
known_third_party = django default_section=THIRDPARTY
combine_as_imports = true combine_as_imports = true
[bdist_rpm]
requires = python-django-appconf >= 0.6

View file

@ -2,7 +2,4 @@
from setuptools import setup from setuptools import setup
setup( setup(name='django-select2', use_scm_version=True)
setup_requires=['pbr'],
pbr=True,
)

View file

@ -2,7 +2,6 @@ import random
import string import string
import pytest import pytest
from django.utils.encoding import force_text
from selenium import webdriver from selenium import webdriver
from selenium.common.exceptions import WebDriverException from selenium.common.exceptions import WebDriverException
@ -22,12 +21,11 @@ def random_name(n):
@pytest.yield_fixture(scope='session') @pytest.yield_fixture(scope='session')
def driver(): def driver():
chrome_options = webdriver.ChromeOptions() chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('headless') chrome_options.headless = True
chrome_options.add_argument('window-size=1200x800')
try: try:
b = webdriver.Chrome(chrome_options=chrome_options) b = webdriver.Chrome(options=chrome_options)
except WebDriverException as e: except WebDriverException as e:
pytest.skip(force_text(e)) pytest.skip(str(e))
else: else:
yield b yield b
b.quit() b.quit()

View file

@ -1,13 +1,13 @@
import collections
import json import json
import os import os
from collections.abc import Iterable
import pytest import pytest
from django.core import signing from django.core import signing
from django.db.models import QuerySet from django.db.models import QuerySet
from django.urls import reverse
from django.utils import translation from django.utils import translation
from django.utils.encoding import force_text from django.utils.encoding import force_text
from django.utils.six import text_type
from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.by import By from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions from selenium.webdriver.support import expected_conditions
@ -25,13 +25,8 @@ from tests.testapp.forms import (
) )
from tests.testapp.models import Artist, City, Country, Genre, Groupie from tests.testapp.models import Artist, City, Country, Genre, Groupie
try:
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse
class TestSelect2Mixin:
class TestSelect2Mixin(object):
url = reverse('select2_widget') url = reverse('select2_widget')
form = forms.AlbumSelect2WidgetForm() form = forms.AlbumSelect2WidgetForm()
multiple_form = forms.AlbumSelect2MultipleWidgetForm() multiple_form = forms.AlbumSelect2MultipleWidgetForm()
@ -40,7 +35,7 @@ class TestSelect2Mixin(object):
def test_initial_data(self, genres): def test_initial_data(self, genres):
genre = genres[0] genre = genres[0]
form = self.form.__class__(initial={'primary_genre': genre.pk}) form = self.form.__class__(initial={'primary_genre': genre.pk})
assert text_type(genre) in form.as_p() assert str(genre) in form.as_p()
def test_initial_form_class(self): def test_initial_form_class(self):
widget = self.widget_cls(attrs={'class': 'my-class'}) widget = self.widget_cls(attrs={'class': 'my-class'})
@ -100,7 +95,9 @@ class TestSelect2Mixin(object):
multiple_select = self.multiple_form.fields['featured_artists'] multiple_select = self.multiple_form.fields['featured_artists']
assert multiple_select.required is False assert multiple_select.required is False
assert multiple_select.widget.allow_multiple_selected assert multiple_select.widget.allow_multiple_selected
assert '<option value=""></option>' not in multiple_select.widget.render('featured_artists', None) output = multiple_select.widget.render('featured_artists', None)
assert '<option value=""></option>' not in output
assert 'data-placeholder=""' in output
def test_i18n(self): def test_i18n(self):
translation.activate('de') translation.activate('de')
@ -147,7 +144,7 @@ class TestSelect2Mixin(object):
) )
class TestSelect2MixinSettings(object): class TestSelect2MixinSettings:
def test_default_media(self): def test_default_media(self):
sut = Select2Widget() sut = Select2Widget()
result = sut.media.render() result = sut.media.render()
@ -222,12 +219,17 @@ class TestHeavySelect2Mixin(TestSelect2Mixin):
driver.find_element_by_css_selector('.select2-results') driver.find_element_by_css_selector('.select2-results')
elem1, elem2 = driver.find_elements_by_css_selector('.select2-selection') elem1, elem2 = driver.find_elements_by_css_selector('.select2-selection')
elem1.click()
elem1.click()
search1 = driver.find_element_by_css_selector('.select2-search__field')
search1.send_keys('fo')
result1 = WebDriverWait(driver, 60).until( result1 = WebDriverWait(driver, 60).until(
expected_conditions.presence_of_element_located((By.CSS_SELECTOR, '.select2-results li:first-child')) expected_conditions.presence_of_element_located((By.CSS_SELECTOR, '.select2-results li:first-child'))
).text ).text
elem2.click() elem2.click()
search2 = driver.find_element_by_css_selector('.select2-search__field')
search2.send_keys('fo')
result2 = WebDriverWait(driver, 60).until( result2 = WebDriverWait(driver, 60).until(
expected_conditions.presence_of_element_located((By.CSS_SELECTOR, '.select2-results li:first-child')) expected_conditions.presence_of_element_located((By.CSS_SELECTOR, '.select2-results li:first-child'))
).text ).text
@ -240,12 +242,12 @@ class TestHeavySelect2Mixin(TestSelect2Mixin):
def test_get_url(self): def test_get_url(self):
widget = self.widget_cls(data_view='heavy_data_1', attrs={'class': 'my-class'}) widget = self.widget_cls(data_view='heavy_data_1', attrs={'class': 'my-class'})
assert isinstance(widget.get_url(), text_type) assert isinstance(widget.get_url(), str)
def test_can_not_pickle(self): def test_can_not_pickle(self):
widget = self.widget_cls(data_view='heavy_data_1', attrs={'class': 'my-class'}) widget = self.widget_cls(data_view='heavy_data_1', attrs={'class': 'my-class'})
class NoPickle(object): class NoPickle:
pass pass
widget.no_pickle = NoPickle() widget.no_pickle = NoPickle()
@ -260,7 +262,7 @@ class TestModelSelect2Mixin(TestHeavySelect2Mixin):
def test_initial_data(self, genres): def test_initial_data(self, genres):
genre = genres[0] genre = genres[0]
form = self.form.__class__(initial={'primary_genre': genre.pk}) form = self.form.__class__(initial={'primary_genre': genre.pk})
assert text_type(genre) in form.as_p() assert str(genre) in form.as_p()
def test_label_from_instance_initial(self, genres): def test_label_from_instance_initial(self, genres):
genre = genres[0] genre = genres[0]
@ -320,40 +322,71 @@ class TestModelSelect2Mixin(TestHeavySelect2Mixin):
widget.queryset = Genre.objects.all() widget.queryset = Genre.objects.all()
assert isinstance(widget.get_queryset(), QuerySet) assert isinstance(widget.get_queryset(), QuerySet)
def test_tag_attrs_Select2Widget(self):
widget = Select2Widget()
output = widget.render('name', 'value')
assert 'data-minimum-input-length="0"' in output
def test_custom_tag_attrs_Select2Widget(self):
widget = Select2Widget(attrs={'data-minimum-input-length': '3'})
output = widget.render('name', 'value')
assert 'data-minimum-input-length="3"' in output
def test_tag_attrs_ModelSelect2Widget(self):
widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
output = widget.render('name', 'value')
assert 'data-minimum-input-length="2"' in output
def test_tag_attrs_ModelSelect2TagWidget(self):
widget = ModelSelect2TagWidget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
output = widget.render('name', 'value')
assert 'data-minimum-input-length="2"' in output
def test_tag_attrs_HeavySelect2Widget(self):
widget = HeavySelect2Widget(data_url='/foo/bar/')
output = widget.render('name', 'value')
assert 'data-minimum-input-length="2"' in output
def test_custom_tag_attrs_ModelSelect2Widget(self):
widget = ModelSelect2Widget(
queryset=Genre.objects.all(), search_fields=['title__icontains'], attrs={'data-minimum-input-length': '3'})
output = widget.render('name', 'value')
assert 'data-minimum-input-length="3"' in output
def test_get_search_fields(self): def test_get_search_fields(self):
widget = ModelSelect2Widget() widget = ModelSelect2Widget()
with pytest.raises(NotImplementedError): with pytest.raises(NotImplementedError):
widget.get_search_fields() widget.get_search_fields()
widget.search_fields = ['title__icontains'] widget.search_fields = ['title__icontains']
assert isinstance(widget.get_search_fields(), collections.Iterable) assert isinstance(widget.get_search_fields(), Iterable)
assert all(isinstance(x, text_type) for x in widget.get_search_fields()) assert all(isinstance(x, str) for x in widget.get_search_fields())
def test_filter_queryset(self, genres): def test_filter_queryset(self, genres):
widget = TitleModelSelect2Widget(queryset=Genre.objects.all()) widget = TitleModelSelect2Widget(queryset=Genre.objects.all())
assert widget.filter_queryset(genres[0].title[:3]).exists() assert widget.filter_queryset(None, genres[0].title[:3]).exists()
widget = TitleModelSelect2Widget(search_fields=['title__icontains'], widget = TitleModelSelect2Widget(search_fields=['title__icontains'],
queryset=Genre.objects.all()) queryset=Genre.objects.all())
qs = widget.filter_queryset(" ".join([genres[0].title[:3], genres[0].title[3:]])) qs = widget.filter_queryset(None, " ".join([genres[0].title[:3], genres[0].title[3:]]))
assert qs.exists() assert qs.exists()
def test_model_kwarg(self): def test_model_kwarg(self):
widget = ModelSelect2Widget(model=Genre, search_fields=['title__icontains']) widget = ModelSelect2Widget(model=Genre, search_fields=['title__icontains'])
genre = Genre.objects.last() genre = Genre.objects.last()
result = widget.filter_queryset(genre.title) result = widget.filter_queryset(None, genre.title)
assert result.exists() assert result.exists()
def test_queryset_kwarg(self): def test_queryset_kwarg(self):
widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains']) widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
genre = Genre.objects.last() genre = Genre.objects.last()
result = widget.filter_queryset(genre.title) result = widget.filter_queryset(None, genre.title)
assert result.exists() assert result.exists()
def test_ajax_view_registration(self, client): def test_ajax_view_registration(self, client):
widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains']) widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
widget.render('name', 'value') widget.render('name', 'value')
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
genre = Genre.objects.last() genre = Genre.objects.last()
response = client.get(url, data=dict(field_id=signing.dumps(id(widget)), term=genre.title)) response = client.get(url, data=dict(field_id=signing.dumps(id(widget)), term=genre.title))
assert response.status_code == 200, response.content assert response.status_code == 200, response.content
@ -366,14 +399,14 @@ class TestModelSelect2Mixin(TestHeavySelect2Mixin):
widget.render('name', 'value') widget.render('name', 'value')
cached_widget = cache.get(widget._get_cache_key()) cached_widget = cache.get(widget._get_cache_key())
assert cached_widget['max_results'] == widget.max_results assert cached_widget['max_results'] == widget.max_results
assert cached_widget['search_fields'] == widget.search_fields assert cached_widget['search_fields'] == tuple(widget.search_fields)
qs = widget.get_queryset() qs = widget.get_queryset()
assert isinstance(cached_widget['queryset'][0], qs.__class__) assert isinstance(cached_widget['queryset'][0], qs.__class__)
assert text_type(cached_widget['queryset'][1]) == text_type(qs.query) assert str(cached_widget['queryset'][1]) == str(qs.query)
def test_get_url(self): def test_get_url(self):
widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains']) widget = ModelSelect2Widget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
assert isinstance(widget.get_url(), text_type) assert isinstance(widget.get_url(), str)
def test_custom_to_field_name(self): def test_custom_to_field_name(self):
the_best_band_in_the_world = Artist.objects.create(title='Take That') the_best_band_in_the_world = Artist.objects.create(title='Take That')
@ -381,13 +414,21 @@ class TestModelSelect2Mixin(TestHeavySelect2Mixin):
form = forms.GroupieForm(instance=groupie) form = forms.GroupieForm(instance=groupie)
assert '<option value="Take That" selected>TAKE THAT</option>' in form.as_p() assert '<option value="Take That" selected>TAKE THAT</option>' in form.as_p()
def test_empty_label(self, db):
# Empty options is only required for single selects
# https://select2.github.io/options.html#allowClear
single_select = self.form.fields['primary_genre']
single_select.empty_label = 'Hello World'
assert single_select.required is False
assert 'data-placeholder="Hello World"' in single_select.widget.render('primary_genre', None)
class TestHeavySelect2TagWidget(TestHeavySelect2Mixin): class TestHeavySelect2TagWidget(TestHeavySelect2Mixin):
def test_tag_attrs(self): def test_tag_attrs(self):
widget = ModelSelect2TagWidget(queryset=Genre.objects.all(), search_fields=['title__icontains']) widget = ModelSelect2TagWidget(queryset=Genre.objects.all(), search_fields=['title__icontains'])
output = widget.render('name', 'value') output = widget.render('name', 'value')
assert 'data-minimum-input-length="1"' in output assert 'data-minimum-input-length="2"' in output
assert 'data-tags="true"' in output assert 'data-tags="true"' in output
assert 'data-token-separators' in output assert 'data-token-separators' in output
@ -398,7 +439,7 @@ class TestHeavySelect2TagWidget(TestHeavySelect2Mixin):
assert 'data-minimum-input-length="3"' in output assert 'data-minimum-input-length="3"' in output
class TestHeavySelect2MultipleWidget(object): class TestHeavySelect2MultipleWidget:
url = reverse('heavy_select2_multiple_widget') url = reverse('heavy_select2_multiple_widget')
form = forms.HeavySelect2MultipleWidgetForm() form = forms.HeavySelect2MultipleWidgetForm()
widget_cls = HeavySelect2MultipleWidget widget_cls = HeavySelect2MultipleWidget
@ -428,7 +469,7 @@ class TestHeavySelect2MultipleWidget(object):
assert result_title == 'One' assert result_title == 'One'
class TestAddressChainedSelect2Widget(object): class TestAddressChainedSelect2Widget:
url = reverse('model_chained_select2_widget') url = reverse('model_chained_select2_widget')
form = forms.AddressChainedSelect2WidgetForm() form = forms.AddressChainedSelect2WidgetForm()

View file

@ -16,13 +16,13 @@ except ImportError:
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
class TestAutoResponseView(object): class TestAutoResponseView:
def test_get(self, client, artists): def test_get(self, client, artists):
artist = artists[0] artist = artists[0]
form = AlbumModelSelect2WidgetForm() form = AlbumModelSelect2WidgetForm()
assert form.as_p() assert form.as_p()
field_id = signing.dumps(id(form.fields['artist'].widget)) field_id = signing.dumps(id(form.fields['artist'].widget))
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
response = client.get(url, {'field_id': field_id, 'term': artist.title}) response = client.get(url, {'field_id': field_id, 'term': artist.title})
assert response.status_code == 200 assert response.status_code == 200
data = json.loads(response.content.decode('utf-8')) data = json.loads(response.content.decode('utf-8'))
@ -31,25 +31,25 @@ class TestAutoResponseView(object):
def test_no_field_id(self, client, artists): def test_no_field_id(self, client, artists):
artist = artists[0] artist = artists[0]
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
response = client.get(url, {'term': artist.title}) response = client.get(url, {'term': artist.title})
assert response.status_code == 404 assert response.status_code == 404
def test_wrong_field_id(self, client, artists): def test_wrong_field_id(self, client, artists):
artist = artists[0] artist = artists[0]
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
response = client.get(url, {'field_id': 123, 'term': artist.title}) response = client.get(url, {'field_id': 123, 'term': artist.title})
assert response.status_code == 404 assert response.status_code == 404
def test_field_id_not_found(self, client, artists): def test_field_id_not_found(self, client, artists):
artist = artists[0] artist = artists[0]
field_id = signing.dumps(123456789) field_id = signing.dumps(123456789)
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
response = client.get(url, {'field_id': field_id, 'term': artist.title}) response = client.get(url, {'field_id': field_id, 'term': artist.title})
assert response.status_code == 404 assert response.status_code == 404
def test_pagination(self, genres, client): def test_pagination(self, genres, client):
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
widget = ModelSelect2Widget( widget = ModelSelect2Widget(
max_results=10, max_results=10,
model=Genre, model=Genre,
@ -72,7 +72,7 @@ class TestAutoResponseView(object):
assert data['more'] is False assert data['more'] is False
def test_label_from_instance(self, artists, client): def test_label_from_instance(self, artists, client):
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
form = AlbumModelSelect2WidgetForm() form = AlbumModelSelect2WidgetForm()
form.fields['artist'].widget = ArtistCustomTitleWidget() form.fields['artist'].widget = ArtistCustomTitleWidget()
@ -96,6 +96,6 @@ class TestAutoResponseView(object):
widget_dict = cache.get(cache_key) widget_dict = cache.get(cache_key)
widget_dict['url'] = 'yet/another/url' widget_dict['url'] = 'yet/another/url'
cache.set(cache_key, widget_dict) cache.set(cache_key, widget_dict)
url = reverse('django_select2-json') url = reverse('django_select2:auto-json')
response = client.get(url, {'field_id': field_id, 'term': artist.title}) response = client.get(url, {'field_id': field_id, 'term': artist.title})
assert response.status_code == 404 assert response.status_code == 404

View file

@ -10,7 +10,7 @@ from tests.testapp import models
from tests.testapp.models import Album, City, Country from tests.testapp.models import Album, City, Country
class TitleSearchFieldMixin(object): class TitleSearchFieldMixin:
search_fields = [ search_fields = [
'title__icontains', 'title__icontains',
'pk__startswith' 'pk__startswith'
@ -149,11 +149,19 @@ class HeavySelect2WidgetForm(forms.Form):
class HeavySelect2MultipleWidgetForm(forms.Form): class HeavySelect2MultipleWidgetForm(forms.Form):
title = forms.CharField(max_length=50) title = forms.CharField(max_length=50)
genres = forms.MultipleChoiceField( genres = forms.MultipleChoiceField(
widget=HeavySelect2MultipleWidget(data_view='heavy_data_1', choices=NUMBER_CHOICES), widget=HeavySelect2MultipleWidget(
data_view='heavy_data_1',
choices=NUMBER_CHOICES,
attrs={'data-minimum-input-length': 0},
),
choices=NUMBER_CHOICES choices=NUMBER_CHOICES
) )
featured_artists = forms.MultipleChoiceField( featured_artists = forms.MultipleChoiceField(
widget=HeavySelect2MultipleWidget(data_view='heavy_data_2', choices=NUMBER_CHOICES), widget=HeavySelect2MultipleWidget(
data_view='heavy_data_2',
choices=NUMBER_CHOICES,
attrs={'data-minimum-input-length': 0},
),
choices=NUMBER_CHOICES, choices=NUMBER_CHOICES,
required=False required=False
) )
@ -178,10 +186,10 @@ class AddressChainedSelect2WidgetForm(forms.Form):
queryset=Country.objects.all(), queryset=Country.objects.all(),
label='Country', label='Country',
widget=ModelSelect2Widget( widget=ModelSelect2Widget(
model=Country,
search_fields=['name__icontains'], search_fields=['name__icontains'],
max_results=500, max_results=500,
dependent_fields={'city': 'cities'}, dependent_fields={'city': 'cities'},
attrs={'data-minimum-input-length': 0},
) )
) )
@ -189,10 +197,10 @@ class AddressChainedSelect2WidgetForm(forms.Form):
queryset=City.objects.all(), queryset=City.objects.all(),
label='City', label='City',
widget=ModelSelect2Widget( widget=ModelSelect2Widget(
model=City,
search_fields=['name__icontains'], search_fields=['name__icontains'],
dependent_fields={'country': 'country'}, dependent_fields={'country': 'country'},
max_results=500, max_results=500,
attrs={'data-minimum-input-length': 0},
) )
) )

View file

@ -20,12 +20,6 @@ INSTALLED_APPS = (
'tests.testapp', 'tests.testapp',
) )
MIDDLEWARE = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
STATIC_URL = '/static/' STATIC_URL = '/static/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
@ -50,14 +44,3 @@ SECRET_KEY = '123456'
USE_L10N = True USE_L10N = True
USE_I18N = True USE_I18N = True
if os.environ.get('TRAVIS'):
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379/1",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
}
}
}

View file

@ -1,4 +1,4 @@
{% load staticfiles %} {% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>

View file

@ -1,4 +1,4 @@
from django.conf.urls import include, url from django.urls import include, path
from .forms import ( from .forms import (
AddressChainedSelect2WidgetForm, AlbumModelSelect2WidgetForm, AddressChainedSelect2WidgetForm, AlbumModelSelect2WidgetForm,
@ -8,28 +8,28 @@ from .forms import (
from .views import TemplateFormView, heavy_data_1, heavy_data_2 from .views import TemplateFormView, heavy_data_1, heavy_data_2
urlpatterns = [ urlpatterns = [
url(r'^select2_widget/$', path('select2_widget',
TemplateFormView.as_view(form_class=Select2WidgetForm), name='select2_widget'), TemplateFormView.as_view(form_class=Select2WidgetForm), name='select2_widget'),
url(r'^heavy_select2_widget/$', path('heavy_select2_widget',
TemplateFormView.as_view(form_class=HeavySelect2WidgetForm), name='heavy_select2_widget'), TemplateFormView.as_view(form_class=HeavySelect2WidgetForm), name='heavy_select2_widget'),
url(r'^heavy_select2_multiple_widget/$', path('heavy_select2_multiple_widget',
TemplateFormView.as_view(form_class=HeavySelect2MultipleWidgetForm, success_url='/'), TemplateFormView.as_view(form_class=HeavySelect2MultipleWidgetForm, success_url='/'),
name='heavy_select2_multiple_widget'), name='heavy_select2_multiple_widget'),
url(r'^model_select2_widget/$', path('model_select2_widget',
TemplateFormView.as_view(form_class=AlbumModelSelect2WidgetForm), TemplateFormView.as_view(form_class=AlbumModelSelect2WidgetForm),
name='model_select2_widget'), name='model_select2_widget'),
url(r'^model_select2_tag_widget/$', path('model_select2_tag_widget',
TemplateFormView.as_view(form_class=ModelSelect2TagWidgetForm), TemplateFormView.as_view(form_class=ModelSelect2TagWidgetForm),
name='model_select2_tag_widget'), name='model_select2_tag_widget'),
url(r'^model_chained_select2_widget/$', path('model_chained_select2_widget',
TemplateFormView.as_view(form_class=AddressChainedSelect2WidgetForm), TemplateFormView.as_view(form_class=AddressChainedSelect2WidgetForm),
name='model_chained_select2_widget'), name='model_chained_select2_widget'),
url(r'^heavy_data_1/$', heavy_data_1, name='heavy_data_1'), path('heavy_data_1', heavy_data_1, name='heavy_data_1'),
url(r'^heavy_data_2/$', heavy_data_2, name='heavy_data_2'), path('heavy_data_2', heavy_data_2, name='heavy_data_2'),
url(r'^select2/', include('django_select2.urls')), path('select2/', include('django_select2.urls')),
] ]

32
tox.ini
View file

@ -1,32 +0,0 @@
[tox]
envlist = py{36}-dj{111,20,21,master},qa,docs
[testenv]
setenv=
PYTHONPATH = {toxinidir}
passenv=CI
deps=
-rrequirements-dev.txt
dj111: https://github.com/django/django/archive/stable/1.11.x.tar.gz#egg=django
dj20: https://github.com/django/django/archive/stable/2.0.x.tar.gz#egg=django
dj21: https://github.com/django/django/archive/stable/2.1.x.tar.gz#egg=django
djmaster: https://github.com/django/django/archive/master.tar.gz#egg=django
commands=
coverage run --source=django_select2 -m 'pytest' \
--basetemp={envtmpdir} \
--ignore=.tox \
{posargs}
[testenv:qa]
changedir={toxinidir}
deps=
-rrequirements-dev.txt
commands=
isort --check-only --recursive --diff {posargs}
flake8 --jobs=2 {posargs}
pydocstyle --verbose --explain --source --count {posargs}
[testenv:docs]
deps=
-rrequirements-dev.txt
https://github.com/django/django/archive/stable/1.11.x.tar.gz#egg=django
commands=python setup.py build_sphinx