Skip to content

Commit

Permalink
[MIG] base_geoengine: Migration to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peluko00 committed Jan 10, 2025
1 parent 7ef84d8 commit 1388783
Show file tree
Hide file tree
Showing 92 changed files with 800 additions and 11,997 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
makepot: "true"
services:
postgres:
image: postgres:9.6
image: postgis/postgis:12-3.3
env:
POSTGRES_USER: odoo
POSTGRES_PASSWORD: odoo
Expand Down
12 changes: 7 additions & 5 deletions base_geoengine/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Geospatial support for Odoo
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fgeospatial-lightgray.png?logo=github
:target: https://github.com/OCA/geospatial/tree/14.0/base_geoengine
:target: https://github.com/OCA/geospatial/tree/15.0/base_geoengine
:alt: OCA/geospatial
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/geospatial-14-0/geospatial-14-0-base_geoengine
:target: https://translation.odoo-community.org/projects/geospatial-15-0/geospatial-15-0-base_geoengine
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/geospatial&target_branch=14.0
:target: https://runboat.odoo-community.org/builds?repo=OCA/geospatial&target_branch=15.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|
Expand Down Expand Up @@ -89,7 +89,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/geospatial/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/geospatial/issues/new?body=module:%20base_geoengine%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/geospatial/issues/new?body=module:%20base_geoengine%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Expand Down Expand Up @@ -124,6 +124,8 @@ Contributors
* Thomas Nowicki <thomas.nowicki@camptocamp.com>
* Alexandre Saunier <alexandre.saunier@camptocamp.com>
* Sandip Mangukiya <smangukiya@opensourceintegrators.com>
* [APSL-Nagarro](https://www.apsl.tech):
- Antoni Marroig \<<amarroig@apsl.net>\>

Maintainers
~~~~~~~~~~~
Expand All @@ -138,6 +140,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/geospatial <https://github.com/OCA/geospatial/tree/14.0/base_geoengine>`_ project on GitHub.
This module is part of the `OCA/geospatial <https://github.com/OCA/geospatial/tree/15.0/base_geoengine>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
10 changes: 4 additions & 6 deletions base_geoengine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""The GeoEngine module"""
from . import geo_model
from . import geo_operators
from . import geo_view
from . import geo_helper
from . import geo_ir
from . import models
from . import expressions
from . import fields
from . import geo_convertion_helper
from . import geo_operators
from .geo_db import init_postgis
34 changes: 26 additions & 8 deletions base_geoengine/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,42 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Geospatial support for Odoo",
"version": "14.0.1.0.1",
"version": "15.0.1.0.0",
"category": "GeoBI",
"author": "Camptocamp,ACSONE SA/NV,Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/geospatial",
"depends": ["base", "web"],
"data": [
"security/data.xml",
"views/assets.xml",
"views/base_geoengine_view.xml",
"geo_ir/ir_model_view.xml",
"geo_view/ir_view_view.xml",
"geo_view/geo_raster_layer_view.xml",
"geo_view/geo_vector_layer_view.xml",
"views/base_geoengine_views.xml",
"views/ir_model_views.xml",
"views/ir_view_views.xml",
"views/geo_raster_layer_views.xml",
"views/geo_vector_layer_views.xml",
"security/ir.model.access.csv",
],
"external_dependencies": {"python": ["shapely", "geojson", "simplejson"]},
"qweb": ["static/src/xml/geoengine.xml"],
"assets": {
"web.assets_backend": [
"base_geoengine/static/src/js/views/form_renderer.js",
"base_geoengine/static/src/js/views/view_registry.js",
"base_geoengine/static/src/js/views/geoengine/geoengine_controller.js",
"base_geoengine/static/src/js/views/geoengine/geoengine_renderer.js",
"base_geoengine/static/src/js/views/geoengine/geoengine_view.js",
"base_geoengine/static/src/js/widgets/geoengine_record.js",
"base_geoengine/static/src/js/widgets/geoengine_template_widgets.js",
"base_geoengine/static/src/js/widgets/geoengine_widgets.js",
"base_geoengine/static/src/js/geoengine_common.js",
"base_geoengine/static/src/css/style.css",
("include", "web._assets_helpers"),
"web/static/lib/bootstrap/scss/_variables.scss",
("include", "web._assets_bootstrap"),
],
"web.assets_qweb": [
"base_geoengine/static/src/xml/geoengine.xml",
],
},
"installable": True,
"pre_init_hook": "init_postgis",
}
130 changes: 0 additions & 130 deletions base_geoengine/doc/Makefile

This file was deleted.

4 changes: 0 additions & 4 deletions base_geoengine/doc/build/.buildinfo

This file was deleted.

Binary file not shown.
Binary file removed base_geoengine/doc/build/.doctrees/api_doc.doctree
Binary file not shown.
Binary file not shown.
Binary file removed base_geoengine/doc/build/.doctrees/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 0 additions & 3 deletions base_geoengine/doc/build/_sources/_templates/prerequisite.txt

This file was deleted.

63 changes: 0 additions & 63 deletions base_geoengine/doc/build/_sources/api_doc.txt

This file was deleted.

31 changes: 0 additions & 31 deletions base_geoengine/doc/build/_sources/index.txt

This file was deleted.

39 changes: 0 additions & 39 deletions base_geoengine/doc/build/_sources/installation.txt

This file was deleted.

Loading

0 comments on commit 1388783

Please sign in to comment.