django-extended-ol 1.1.0__tar.gz → 1.1.2__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.

Files changed (20) hide show
  1. {django_extended_ol-1.1.0/django_extended_ol.egg-info → django_extended_ol-1.1.2}/PKG-INFO +9 -15
  2. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/README.md +5 -11
  3. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/static/olwidget/css/WMTSWidget.css +1 -1
  4. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2/django_extended_ol.egg-info}/PKG-INFO +9 -15
  5. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/pyproject.toml +4 -3
  6. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/LICENSE +0 -0
  7. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/MANIFEST.in +0 -0
  8. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/__init__.py +0 -0
  9. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/admin.py +0 -0
  10. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/apps.py +0 -0
  11. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/forms/__init__.py +0 -0
  12. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/forms/widgets.py +0 -0
  13. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/static/olwidget/js/WMTSWidget.js +0 -0
  14. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol/templates/gis/openlayers-wmts.html +0 -0
  15. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol.egg-info/SOURCES.txt +0 -0
  16. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol.egg-info/dependency_links.txt +0 -0
  17. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol.egg-info/requires.txt +0 -0
  18. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/django_extended_ol.egg-info/top_level.txt +0 -0
  19. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/setup.cfg +0 -0
  20. {django_extended_ol-1.1.0 → django_extended_ol-1.1.2}/setup.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-extended-ol
3
- Version: 1.1.0
3
+ Version: 1.1.2
4
4
  Summary: An openlayers widget for Django with extended capabilities
5
- Author-email: SITN <sitn@ne.ch>
6
- Project-URL: Homepage, https://github.com/sitn/django-extended-ol
7
- Project-URL: Issues, https://github.com/sitn/django-extended-ol/issues
5
+ Author-email: SITN <sitn@ne.ch>, maltaesousa <stephane.maltaesousa@ne.ch>
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
@@ -32,6 +32,7 @@ django-extended-ol is a Django app that extends the basic OpenLayers Widget.
32
32
  Features:
33
33
 
34
34
  * Custom WMTS base_layer with fixed resolutions
35
+ * Search on the map (third-party service needed)
35
36
 
36
37
  ## Quick start
37
38
 
@@ -89,11 +90,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
89
90
  4. You can also use it in your admin.py:
90
91
 
91
92
  ```python
92
- from django.contrib.gis import admin
93
- from .models import YourGeomModel
94
- from olwidget.admin import WMTSGISModelAdmin
93
+ from django.contrib.gis import admin
94
+ from .models import YourGeomModel
95
+ from olwidget.admin import WMTSGISModelAdmin
95
96
 
96
- admin.site.register(YourGeomModel, WMTSGISModelAdmin)
97
+ admin.site.register(YourGeomModel, WMTSGISModelAdmin)
97
98
  ```
98
99
 
99
100
  If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
@@ -105,10 +106,3 @@ If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please c
105
106
 
106
107
  You'll need a templated URL as showcased in the `settings.py` above.
107
108
  Such service should reply GeoJSON feature collection and each feature should have a `bbox` and a property named `label`.
108
-
109
- # Build this package
110
-
111
- ```sh
112
- py -m build
113
- py -m twine upload dist/*
114
- ```
@@ -5,6 +5,7 @@ django-extended-ol is a Django app that extends the basic OpenLayers Widget.
5
5
  Features:
6
6
 
7
7
  * Custom WMTS base_layer with fixed resolutions
8
+ * Search on the map (third-party service needed)
8
9
 
9
10
  ## Quick start
10
11
 
@@ -62,11 +63,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
62
63
  4. You can also use it in your admin.py:
63
64
 
64
65
  ```python
65
- from django.contrib.gis import admin
66
- from .models import YourGeomModel
67
- from olwidget.admin import WMTSGISModelAdmin
66
+ from django.contrib.gis import admin
67
+ from .models import YourGeomModel
68
+ from olwidget.admin import WMTSGISModelAdmin
68
69
 
69
- admin.site.register(YourGeomModel, WMTSGISModelAdmin)
70
+ admin.site.register(YourGeomModel, WMTSGISModelAdmin)
70
71
  ```
71
72
 
72
73
  If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
@@ -78,10 +79,3 @@ If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please c
78
79
 
79
80
  You'll need a templated URL as showcased in the `settings.py` above.
80
81
  Such service should reply GeoJSON feature collection and each feature should have a `bbox` and a property named `label`.
81
-
82
- # Build this package
83
-
84
- ```sh
85
- py -m build
86
- py -m twine upload dist/*
87
- ```
@@ -8,7 +8,7 @@
8
8
  border: 1px solid var(--border-color);
9
9
  max-height: 200px;
10
10
  overflow-y: auto;
11
- background-color: var(--body-bg);
11
+ background-color: red;
12
12
  color: var(--body-fg);
13
13
  width: 20em;
14
14
  position: absolute;
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-extended-ol
3
- Version: 1.1.0
3
+ Version: 1.1.2
4
4
  Summary: An openlayers widget for Django with extended capabilities
5
- Author-email: SITN <sitn@ne.ch>
6
- Project-URL: Homepage, https://github.com/sitn/django-extended-ol
7
- Project-URL: Issues, https://github.com/sitn/django-extended-ol/issues
5
+ Author-email: SITN <sitn@ne.ch>, maltaesousa <stephane.maltaesousa@ne.ch>
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
@@ -32,6 +32,7 @@ django-extended-ol is a Django app that extends the basic OpenLayers Widget.
32
32
  Features:
33
33
 
34
34
  * Custom WMTS base_layer with fixed resolutions
35
+ * Search on the map (third-party service needed)
35
36
 
36
37
  ## Quick start
37
38
 
@@ -89,11 +90,11 @@ If you want a search widget, you can use `WMTSWithSearchWidget`. Please check se
89
90
  4. You can also use it in your admin.py:
90
91
 
91
92
  ```python
92
- from django.contrib.gis import admin
93
- from .models import YourGeomModel
94
- from olwidget.admin import WMTSGISModelAdmin
93
+ from django.contrib.gis import admin
94
+ from .models import YourGeomModel
95
+ from olwidget.admin import WMTSGISModelAdmin
95
96
 
96
- admin.site.register(YourGeomModel, WMTSGISModelAdmin)
97
+ admin.site.register(YourGeomModel, WMTSGISModelAdmin)
97
98
  ```
98
99
 
99
100
  If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please check search service specification below.
@@ -105,10 +106,3 @@ If you want the search widget please use `WMTSGISWithSearchModelAdmin`. Please c
105
106
 
106
107
  You'll need a templated URL as showcased in the `settings.py` above.
107
108
  Such service should reply GeoJSON feature collection and each feature should have a `bbox` and a property named `label`.
108
-
109
- # Build this package
110
-
111
- ```sh
112
- py -m build
113
- py -m twine upload dist/*
114
- ```
@@ -4,9 +4,10 @@ build-backend = 'setuptools.build_meta'
4
4
 
5
5
  [project]
6
6
  name = "django-extended-ol"
7
- version = "1.1.0"
7
+ version = "1.1.2"
8
8
  authors = [
9
9
  { name="SITN", email="sitn@ne.ch" },
10
+ { name="maltaesousa", email="stephane.maltaesousa@ne.ch" },
10
11
  ]
11
12
  description = "An openlayers widget for Django with extended capabilities"
12
13
  readme = "README.md"
@@ -32,5 +33,5 @@ classifiers = [
32
33
  ]
33
34
 
34
35
  [project.urls]
35
- Homepage = "https://github.com/sitn/django-extended-ol"
36
- Issues = "https://github.com/sitn/django-extended-ol/issues"
36
+ Homepage = "https://github.com/sitn/sitn-django-plugins"
37
+ Issues = "https://github.com/sitn/sitn-django-plugins/issues"