Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Templates missing translations #760

Closed
jvanulde opened this issue Aug 24, 2021 · 0 comments
Closed

Templates missing translations #760

jvanulde opened this issue Aug 24, 2021 · 0 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@jvanulde
Copy link

Description
The following templates are missing translations:

  • ../collections/collection.html
  • ../collections/index.html
  • ../collections/queryables.html

Steps to Reproduce
Steps to reproduce the behavior:

  1. dereference http://localhost:5000/collections?lang=fr-CA

Expected behaviour
Page is translated in the requested language (e.g. fr-CA)

@jvanulde jvanulde added the bug Something isn't working label Aug 24, 2021
@tomkralidis tomkralidis added this to the 0.11.0 milestone Aug 24, 2021
@tomkralidis tomkralidis self-assigned this Aug 24, 2021
tomkralidis added a commit to tomkralidis/pygeoapi that referenced this issue Aug 25, 2021
tomkralidis added a commit that referenced this issue Sep 1, 2021
* update translations (#760)

* fix syntax

* update translations

* update docs

* fix typos
webb-ben pushed a commit to webb-ben/pygeoapi that referenced this issue Sep 2, 2021
commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)
webb-ben pushed a commit to webb-ben/pygeoapi that referenced this issue Sep 3, 2021
commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests
jvanulde added a commit to OpenDRR/pygeoapi that referenced this issue Oct 4, 2021
* add support for OpenAPI document as JSON

* Pre-generate openapi.json

Also limited the number of items in the browser to 10 or 100, and changed the base map to OSM.

* Updated configuration files

* Begin bilingual support

* Updated configuration

* Add language parameter to urls in collections template and API output

* Added language parameter to remaining templates and breadcrumbs

* update TinyDB q= support for multiple terms (geopython#765)

* Update plugins.rst (geopython#770)

* Add language toggle links to nav bar

* update translations (geopython#760) (geopython#762)

* update translations (geopython#760)

* fix syntax

* update translations

* update docs

* fix typos

* Added missing translations

* Added OpenDRR configurations

* Update entrypoint.sh

* Removing static openapi.json temporarily

* Switched to using request.locale for url parameters

* Fixed an issue with navigation in job templates

On the job detail page (`/processes/PROCESS/jobs/JOB`), the link to "Jobs" used to be `./`. This
creates the url `/processes/PROCESS/jobs/`.

On that page, the link to "Jobs" is `./jobs`, which then leads you to
`/processes/PROCESS/jobs/jobs`. This however is the URL for the job with
the id `jobs`.

This patch fixes this by changing the link to jobs on the job detail page to `../jobs`.

I'm not sure if this is the best fix. Just using `.` as link doesn't seem to lead to the
desired outcome, it also generates the link `/processes/PROCESS/jobs/`.

* Patch sta provider

Fixes the STA provider when there is a stac-collection or process in the resources block. Also iterates through to return as many hits as specified by pygeoapi. This happened when the sta provider had an internal limit lower than the requested number of items.

* Update test_sensorthings_provider.py

* map geometry queryables to GeoJSON schema

* bind TinyDB item query to record GeoJSON id required property

* update to latest OARec metadata model updates

* fix OpenAPI JSON file rendering (geopython#775)

* Language structs (dicts) must consist of valid locale keys only (geopython#769)

* mark HTML as safe in templates

* Support for building pygeoapi as a lambda container and deploying to AWS Lambda (#2) (geopython#709)

* fix flake8 and add MIME types to lambda setup (geopython#781)

* fix flake8 and add MIME types to lambda setup

* add fixes per geopython#660)

* 782: Replaced the literal strings 'x_axis_label' and 'y_axis_label' in the query_params submitted to xarray with the values for the axis labels stored in self._coverage_properties.

* Update SECURITY.md

* Update pygeoapi-config.yml

* fix flake8

* Add postgres provider query parameters (geopython#784)

* Add sortby, skip_geometry, and select_properties

* some pytest fixes

* Update main.yml

* Update main.yml

* fix geom in response feature

* more pytest fixes

* Update postgresql.py

* Update test_postgresql_provider.py

* Update test_postgresql_provider.py

* Add to docs, fix pytest

* fix for when when 'name' = None

* Update test_postgresql_provider.py

* Update test_postgresql_provider.py

* Remove optional comparator

* use secrets with default password

* Add secret to load postgres data

* docs: make CSV table more readable (geopython#785)

* add queryable support for CSV and GeoJSON providers (geopython#555) (geopython#786)

* fix configuration JSON schema (geopython#788)

* Sensorthings API Provider Patch (geopython#789)

* return correct limits & faster hits query

* Fix hits behavior (and break pytest)

* fix pytest for sensorthings provider

* check before unpacking properties

* add q string

* enclose id in single quotes for entities with non-literal id values

* Undo accidental branch merging

* Undo other part of accident branch merging

* add uri_field to config schema

* Remove uri_field from schema for config file

* Updated layer definitions

* Add link translations to test configurations

* Update api.py

Fixed conformance rendering error.

* Update test_api.py

Modify assertion to accommodate the additional language parameter.

* Update test_api.py

Replaced contains statement with in.

* Update api.py

Switched the URI parameter order to satisfy tests.

* Create separate configuration for opendrr

* Update api.py

Fixed malformed URI parameter format

* Update api.py

* Update api.py

* Update test_api.py

* Update api.py

* Update api.py

* Update api.py

* Update api.py

Fixed flake8 linting issues.

Co-authored-by: Tom Kralidis <tomkralidis@gmail.com>
Co-authored-by: Bernhard Mallinger <bernhard.mallinger@eox.at>
Co-authored-by: Benjamin Webb <bmwebb20@colby.edu>
Co-authored-by: Sander Schaminee <sander.schaminee@geocat.net>
Co-authored-by: Chris Barrett <cbarrett@flexion.us>
Co-authored-by: Michael Lane <michael.lane@metservice.com>
Co-authored-by: Benjamin Webb <40066515+webb-ben@users.noreply.github.com>
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Nov 4, 2021
* Update plugin.py for SPARQL

* Create sparql.py

* Update requirements-provider.txt

* Add files via upload

* Update requirements-provider.txt

* Update api.py

* Update plugin.py

* Update plugin.py

* Update plugin.py

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Prepare for merge into internetofwater/pygeoapi
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Nov 4, 2021
* Reload server on update of pygeoapi config

* Add flask login and simple admin page

* add docker examples

* separate flask_admin.py from flask_app.py and add pbkdf2_hmac digest

* Add vueify to _base.html (incomplete)

* remove (some) vueify

* Update admin GUI

* switch from Jinja

* link GUI items to root tree

* fix flake8

* Small flask & config fixes

* vue admin editable form

* rebase with pygeoapi/master

* Expand form block options

* split dialog blocks better

* Squashed commit of the following:

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

* Update docker-compose

* link more gui and form data

* Form array indexing

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* create template config

* Update resource form behavior

* Upload and apply server config changes

* flask login fixes

* addition block

* Upload files

* datetime formating and valid resources added

* Update admin.config.yml

* add languages to admin config

* (some) UI improvements

* Improve ux

* better file handling

* Add admin option to config
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Dec 7, 2021
* Update plugin.py for SPARQL

* Create sparql.py

* Update requirements-provider.txt

* Add files via upload

* Update requirements-provider.txt

* Update api.py

* Update plugin.py

* Update plugin.py

* Update plugin.py

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Prepare for merge into internetofwater/pygeoapi
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Dec 7, 2021
* Reload server on update of pygeoapi config

* Add flask login and simple admin page

* add docker examples

* separate flask_admin.py from flask_app.py and add pbkdf2_hmac digest

* Add vueify to _base.html (incomplete)

* remove (some) vueify

* Update admin GUI

* switch from Jinja

* link GUI items to root tree

* fix flake8

* Small flask & config fixes

* vue admin editable form

* rebase with pygeoapi/master

* Expand form block options

* split dialog blocks better

* Squashed commit of the following:

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

* Update docker-compose

* link more gui and form data

* Form array indexing

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* create template config

* Update resource form behavior

* Upload and apply server config changes

* flask login fixes

* addition block

* Upload files

* datetime formating and valid resources added

* Update admin.config.yml

* add languages to admin config

* (some) UI improvements

* Improve ux

* better file handling

* Add admin option to config
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Feb 23, 2022
* Update plugin.py for SPARQL

* Create sparql.py

* Update requirements-provider.txt

* Add files via upload

* Update requirements-provider.txt

* Update api.py

* Update plugin.py

* Update plugin.py

* Update plugin.py

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

commit 995ab2f
Author: paul van genuchten <paul.vangenuchten@geocat.net>
Date:   Mon Aug 23 02:42:10 2021 +0200

    add translation system to pygeoapi (geopython#725)

    * adds translation keys to templates

    * adds translation keys to templates

    * suggestions from github pr 2

commit bc97ed4
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Sun Aug 22 08:28:56 2021 -0400

    add geometry to queryables (geopython#755)

commit 9d92090
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 18 15:28:55 2021 -0400

    update OAProc execute handling (geopython#754)

    * fix OAProc default output to raw

    * control outputs list from api machinery

    * fix tests

* Prepare for merge into internetofwater/pygeoapi
webb-ben added a commit to internetofwater/pygeoapi that referenced this issue Feb 23, 2022
* Reload server on update of pygeoapi config

* Add flask login and simple admin page

* add docker examples

* separate flask_admin.py from flask_app.py and add pbkdf2_hmac digest

* Add vueify to _base.html (incomplete)

* remove (some) vueify

* Update admin GUI

* switch from Jinja

* link GUI items to root tree

* fix flake8

* Small flask & config fixes

* vue admin editable form

* rebase with pygeoapi/master

* Expand form block options

* split dialog blocks better

* Squashed commit of the following:

commit 1ff9dfa
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 08:24:28 2021 -0400

    update id field passing to HTML template (geopython#764)

commit 6fb64e6
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 07:22:53 2021 -0400

    fix JSON filter in HTML items/item templates (geopython#761) (geopython#763)

commit 6dcd10b
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Aug 25 06:34:39 2021 -0400

    test for item prev and next links on item queries (geopython#752) (geopython#757)

commit 7192012
Author: Alexandre Leroux <alexandreleroux@gmail.com>
Date:   Tue Aug 24 06:37:03 2021 -0400

    updates to French translation (geopython#759)

* Update docker-compose

* link more gui and form data

* Form array indexing

* Squashed commit of the following:

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* Squashed commit of the following:

commit 774ff49
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Wed Sep 1 09:02:28 2021 -0400

    update translations (geopython#760) (geopython#762)

    * update translations (geopython#760)

    * fix syntax

    * update translations

    * update docs

    * fix typos

commit cf9bd22
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Tue Aug 31 10:11:31 2021 -0400

    Update plugins.rst (geopython#770)

commit 70edc3c
Author: Tom Kralidis <tomkralidis@gmail.com>
Date:   Thu Aug 26 16:30:46 2021 -0400

    update TinyDB q= support for multiple terms (geopython#765)

* create template config

* Update resource form behavior

* Upload and apply server config changes

* flask login fixes

* addition block

* Upload files

* datetime formating and valid resources added

* Update admin.config.yml

* add languages to admin config

* (some) UI improvements

* Improve ux

* better file handling

* Add admin option to config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants