django-extended-ol 1.1.1__tar.gz → 1.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of django-extended-ol might be problematic. Click here for more details.
- {django_extended_ol-1.1.1/django_extended_ol.egg-info → django_extended_ol-1.1.3}/PKG-INFO +7 -7
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/README.md +4 -4
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/static/olwidget/css/WMTSWidget.css +1 -1
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3/django_extended_ol.egg-info}/PKG-INFO +7 -7
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/pyproject.toml +3 -3
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/LICENSE +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/MANIFEST.in +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/__init__.py +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/admin.py +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/apps.py +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/forms/__init__.py +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/forms/widgets.py +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/static/olwidget/js/WMTSWidget.js +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol/templates/gis/openlayers-wmts.html +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/SOURCES.txt +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/dependency_links.txt +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/requires.txt +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/top_level.txt +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/setup.cfg +0 -0
- {django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/setup.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-extended-ol
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: An openlayers widget for Django with extended capabilities
|
|
5
5
|
Author-email: SITN <sitn@ne.ch>, maltaesousa <stephane.maltaesousa@ne.ch>
|
|
6
|
-
Project-URL: Homepage, https://github.com/sitn/django-
|
|
7
|
-
Project-URL: Issues, https://github.com/sitn/django-
|
|
6
|
+
Project-URL: Homepage, https://github.com/sitn/sitn-django-plugins
|
|
7
|
+
Project-URL: Issues, https://github.com/sitn/sitn-django-plugins/issues
|
|
8
8
|
Classifier: Environment :: Web Environment
|
|
9
9
|
Classifier: Framework :: Django
|
|
10
10
|
Classifier: Framework :: Django :: 5.0
|
|
@@ -90,11 +90,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
|
|
|
90
90
|
4. You can also use it in your admin.py:
|
|
91
91
|
|
|
92
92
|
```python
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
from django.contrib.gis import admin
|
|
94
|
+
from .models import YourGeomModel
|
|
95
|
+
from olwidget.admin import WMTSGISModelAdmin
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
admin.site.register(YourGeomModel, WMTSGISModelAdmin)
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
|
|
@@ -63,11 +63,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
|
|
|
63
63
|
4. You can also use it in your admin.py:
|
|
64
64
|
|
|
65
65
|
```python
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
from django.contrib.gis import admin
|
|
67
|
+
from .models import YourGeomModel
|
|
68
|
+
from olwidget.admin import WMTSGISModelAdmin
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
admin.site.register(YourGeomModel, WMTSGISModelAdmin)
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-extended-ol
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: An openlayers widget for Django with extended capabilities
|
|
5
5
|
Author-email: SITN <sitn@ne.ch>, maltaesousa <stephane.maltaesousa@ne.ch>
|
|
6
|
-
Project-URL: Homepage, https://github.com/sitn/django-
|
|
7
|
-
Project-URL: Issues, https://github.com/sitn/django-
|
|
6
|
+
Project-URL: Homepage, https://github.com/sitn/sitn-django-plugins
|
|
7
|
+
Project-URL: Issues, https://github.com/sitn/sitn-django-plugins/issues
|
|
8
8
|
Classifier: Environment :: Web Environment
|
|
9
9
|
Classifier: Framework :: Django
|
|
10
10
|
Classifier: Framework :: Django :: 5.0
|
|
@@ -90,11 +90,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
|
|
|
90
90
|
4. You can also use it in your admin.py:
|
|
91
91
|
|
|
92
92
|
```python
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
from django.contrib.gis import admin
|
|
94
|
+
from .models import YourGeomModel
|
|
95
|
+
from olwidget.admin import WMTSGISModelAdmin
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
admin.site.register(YourGeomModel, WMTSGISModelAdmin)
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
|
|
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "django-extended-ol"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.3"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="SITN", email="sitn@ne.ch" },
|
|
10
10
|
{ name="maltaesousa", email="stephane.maltaesousa@ne.ch" },
|
|
@@ -33,5 +33,5 @@ classifiers = [
|
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
[project.urls]
|
|
36
|
-
Homepage = "https://github.com/sitn/django-
|
|
37
|
-
Issues = "https://github.com/sitn/django-
|
|
36
|
+
Homepage = "https://github.com/sitn/sitn-django-plugins"
|
|
37
|
+
Issues = "https://github.com/sitn/sitn-django-plugins/issues"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/requires.txt
RENAMED
|
File without changes
|
{django_extended_ol-1.1.1 → django_extended_ol-1.1.3}/django_extended_ol.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|