From 49302ef2d5a7d818b0ec090064046e1019133a1e Mon Sep 17 00:00:00 2001 From: David Glick Date: Sun, 1 Dec 2024 17:15:30 -0300 Subject: [PATCH 1/5] update Node versions --- README.md | 2 +- docs/index.md | 2 +- site/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4d2740..676771f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Example `GET` request on the portal root ### Prerequisites -- [Node.js==16.x.x](https://nodejs.org/) +- [Node.js==22.x.x](https://nodejs.org/) - [PostgreSQL](https://www.postgresql.org/) ### Create Database diff --git a/docs/index.md b/docs/index.md index d955e10..010d8ae 100644 --- a/docs/index.md +++ b/docs/index.md @@ -27,7 +27,7 @@ Example `GET` request on the portal root ### Prerequisites -- [Node.js==16.x.x](https://nodejs.org/) +- [Node.js==22.x.x](https://nodejs.org/) - [PostgreSQL](https://www.postgresql.org/) ### Create Database diff --git a/site/index.html b/site/index.html index 42eb889..53d779b 100644 --- a/site/index.html +++ b/site/index.html @@ -449,7 +449,7 @@

Nick uses Node.js 16.xNode.js 22.x and Date: Sun, 1 Dec 2024 17:58:40 -0300 Subject: [PATCH 2/5] Avoid the need for special Volto settings --- config.js.sample | 2 +- docs/examples/breadcrumbs/get.res | 6 ++-- docs/examples/content/get.res | 18 +++++------ docs/examples/content/get_root.res | 24 +++++++------- docs/examples/content/post.res | 18 +++++------ docs/examples/controlpanels/get.res | 2 +- docs/examples/controlpanels/list.res | 8 ++--- docs/examples/copymove/copy.res | 4 +-- docs/examples/copymove/copy_multiple.res | 8 ++--- docs/examples/copymove/move.res | 4 +-- docs/examples/database/get.res | 2 +- docs/examples/groups/get.res | 2 +- docs/examples/groups/list.res | 2 +- docs/examples/groups/list_query.res | 2 +- docs/examples/groups/post.res | 2 +- docs/examples/history/get.res | 10 +++--- docs/examples/history/get_version.res | 18 +++++------ docs/examples/locking/get.res | 2 +- docs/examples/locking/patch.res | 2 +- docs/examples/locking/post.res | 2 +- docs/examples/locking/post_options.res | 2 +- docs/examples/navigation/get.res | 8 ++--- docs/examples/navroot/get.res | 8 ++--- docs/examples/querystring/get.res | 2 +- docs/examples/roles/get.res | 16 +++++----- docs/examples/search/get.res | 12 +++---- docs/examples/search/get_batch.res | 6 ++-- docs/examples/search/get_depth.res | 8 ++--- docs/examples/search/get_news.res | 4 +-- docs/examples/search/get_offset.res | 8 ++--- docs/examples/search/get_sort_date.res | 12 +++---- docs/examples/search/get_sort_reverse.res | 12 +++---- docs/examples/search/get_sort_title.res | 12 +++---- docs/examples/search/get_sort_unknown.res | 12 +++---- docs/examples/search/get_unknown.res | 12 +++---- docs/examples/search/post.res | 12 +++---- docs/examples/site/get.res | 2 +- docs/examples/system/get.res | 2 +- docs/examples/translations/get.res | 8 ++--- docs/examples/translations/get_expansion.res | 18 +++++------ .../translations/get_expansion_expanded.res | 24 +++++++------- docs/examples/translations/get_locator.res | 2 +- docs/examples/translations/post.res | 18 +++++------ docs/examples/translations/post_url.req | 2 +- docs/examples/types/list.res | 10 +++--- docs/examples/types/list_i18n.res | 10 +++--- docs/examples/users/get.res | 2 +- docs/examples/users/list.res | 4 +-- docs/examples/users/list_query.res | 2 +- docs/examples/users/post.res | 2 +- docs/examples/users/post_registration.res | 2 +- docs/examples/vocabularies/get.res | 2 +- docs/examples/vocabularies/get_actions.res | 2 +- docs/examples/vocabularies/get_behaviors.res | 2 +- docs/examples/vocabularies/get_boolean.res | 2 +- docs/examples/vocabularies/get_groups.res | 2 +- .../vocabularies/get_image_scales.res | 2 +- .../examples/vocabularies/get_permissions.res | 2 +- docs/examples/vocabularies/get_subjects.res | 2 +- .../vocabularies/get_supported_languages.res | 2 +- .../vocabularies/get_system_groups.res | 2 +- .../vocabularies/get_system_users.res | 2 +- docs/examples/vocabularies/get_types.res | 2 +- docs/examples/vocabularies/get_users.res | 2 +- .../vocabularies/get_workflow_states.res | 2 +- docs/examples/vocabularies/get_workflows.res | 2 +- docs/examples/vocabularies/list.res | 32 +++++++++---------- docs/examples/workflow/get.res | 6 ++-- frontend/src/config.js.sample | 2 -- jest.setup.js | 4 +-- .../generators/app/templates/config.js.tpl | 2 +- site/index.html | 4 +-- src/app.js | 3 +- src/helpers/url/url.test.js | 12 +++---- src/middleware/index.js | 1 + src/middleware/volto/volto.js | 10 ++++++ 76 files changed, 254 insertions(+), 244 deletions(-) create mode 100644 src/middleware/volto/volto.js diff --git a/config.js.sample b/config.js.sample index a1e0a7a..f6bbde1 100644 --- a/config.js.sample +++ b/config.js.sample @@ -9,7 +9,7 @@ export const config = { password: 'nick', }, blobsDir: `${__dirname}/var/blobstorage`, - port: 8000, + port: 8080, secret: 'secret', clientMaxSize: '64mb', systemUsers: ['admin', 'anonymous'], diff --git a/docs/examples/breadcrumbs/get.res b/docs/examples/breadcrumbs/get.res index dd54142..1f5b170 100644 --- a/docs/examples/breadcrumbs/get.res +++ b/docs/examples/breadcrumbs/get.res @@ -2,14 +2,14 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/events/event-1/@breadcrumbs", + "@id": "http://localhost:8080/events/event-1/@breadcrumbs", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "title": "Events" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "title": "Event 1" } ], diff --git a/docs/examples/content/get.res b/docs/examples/content/get.res index b8a058c..d674ddf 100644 --- a/docs/examples/content/get.res +++ b/docs/examples/content/get.res @@ -17,31 +17,31 @@ Content-Type: application/json "items": [], "@components": { "actions": { - "@id": "http://localhost:8000/news/@actions" + "@id": "http://localhost:8080/news/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/news/@breadcrumbs" + "@id": "http://localhost:8080/news/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/news/@catalog" + "@id": "http://localhost:8080/news/@catalog" }, "navigation": { - "@id": "http://localhost:8000/news/@navigation" + "@id": "http://localhost:8080/news/@navigation" }, "navroot": { - "@id": "http://localhost:8000/news/@navroot" + "@id": "http://localhost:8080/news/@navroot" }, "translations": { - "@id": "http://localhost:8000/news/@translations" + "@id": "http://localhost:8080/news/@translations" }, "types": { - "@id": "http://localhost:8000/news/@types" + "@id": "http://localhost:8080/news/@types" }, "workflow": { - "@id": "http://localhost:8000/news/@workflow" + "@id": "http://localhost:8080/news/@workflow" } }, - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "id": "news", "language": { diff --git a/docs/examples/content/get_root.res b/docs/examples/content/get_root.res index 19da5a1..6ad7ddf 100644 --- a/docs/examples/content/get_root.res +++ b/docs/examples/content/get_root.res @@ -153,7 +153,7 @@ Content-Type: application/json "blocks": { "79ba8858-1dd3-4719-b731-5951e32fbf79": { "@type": "title" } }, "effective": "2022-04-02T20:30:00.000Z", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "id": "events", "created": "2022-04-02T20:30:00.000Z", @@ -172,7 +172,7 @@ Content-Type: application/json "effective": "2022-04-02T20:22:00.000Z", "description": "News Items", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "id": "news", "created": "2022-04-02T20:22:00.000Z", @@ -190,7 +190,7 @@ Content-Type: application/json "blocks": { "79ba8858-1dd3-4719-b731-5951e32fbf79": { "@type": "title" } }, "effective": "2022-04-02T20:24:00.000Z", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "id": "users", "created": "2022-04-02T20:24:00.000Z", @@ -205,16 +205,16 @@ Content-Type: application/json } ], "@components": { - "catalog": { "@id": "http://localhost:8000/@catalog" }, - "actions": { "@id": "http://localhost:8000/@actions" }, - "breadcrumbs": { "@id": "http://localhost:8000/@breadcrumbs" }, - "navigation": { "@id": "http://localhost:8000/@navigation" }, - "navroot": { "@id": "http://localhost:8000/@navroot" }, - "types": { "@id": "http://localhost:8000/@types" }, - "workflow": { "@id": "http://localhost:8000/@workflow" }, - "translations": { "@id": "http://localhost:8000/@translations" } + "catalog": { "@id": "http://localhost:8080/@catalog" }, + "actions": { "@id": "http://localhost:8080/@actions" }, + "breadcrumbs": { "@id": "http://localhost:8080/@breadcrumbs" }, + "navigation": { "@id": "http://localhost:8080/@navigation" }, + "navroot": { "@id": "http://localhost:8080/@navroot" }, + "types": { "@id": "http://localhost:8080/@types" }, + "workflow": { "@id": "http://localhost:8080/@workflow" }, + "translations": { "@id": "http://localhost:8080/@translations" } }, - "@id": "http://localhost:8000", + "@id": "http://localhost:8080", "@type": "Site", "id": "root", "created": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/content/post.res b/docs/examples/content/post.res index c90a8cb..abf5a1f 100644 --- a/docs/examples/content/post.res +++ b/docs/examples/content/post.res @@ -6,31 +6,31 @@ Content-Type: application/json "description": "News Description", "@components": { "actions": { - "@id": "http://localhost:8000/news/@actions" + "@id": "http://localhost:8080/news/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/news/@breadcrumbs" + "@id": "http://localhost:8080/news/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/news/@catalog" + "@id": "http://localhost:8080/news/@catalog" }, "navigation": { - "@id": "http://localhost:8000/news/@navigation" + "@id": "http://localhost:8080/news/@navigation" }, "navroot": { - "@id": "http://localhost:8000/news/@navroot" + "@id": "http://localhost:8080/news/@navroot" }, "translations": { - "@id": "http://localhost:8000/news/@translations" + "@id": "http://localhost:8080/news/@translations" }, "types": { - "@id": "http://localhost:8000/news/@types" + "@id": "http://localhost:8080/news/@types" }, "workflow": { - "@id": "http://localhost:8000/news/@workflow" + "@id": "http://localhost:8080/news/@workflow" } }, - "@id": "http://localhost:8000/news/my-news-item", + "@id": "http://localhost:8080/news/my-news-item", "@type": "Page", "id": "my-news-item", "created": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/controlpanels/get.res b/docs/examples/controlpanels/get.res index 77cf797..9de2b20 100644 --- a/docs/examples/controlpanels/get.res +++ b/docs/examples/controlpanels/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@controlpanels/mail", + "@id": "http://localhost:8080/@controlpanels/mail", "group": "General", "title": "Mail", "data": { diff --git a/docs/examples/controlpanels/list.res b/docs/examples/controlpanels/list.res index dd077cb..9b313cf 100644 --- a/docs/examples/controlpanels/list.res +++ b/docs/examples/controlpanels/list.res @@ -3,22 +3,22 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@controlpanels/language", + "@id": "http://localhost:8080/@controlpanels/language", "group": "General", "title": "Language" }, { - "@id": "http://localhost:8000/@controlpanels/mail", + "@id": "http://localhost:8080/@controlpanels/mail", "group": "General", "title": "Mail" }, { - "@id": "http://localhost:8000/@controlpanels/navigation", + "@id": "http://localhost:8080/@controlpanels/navigation", "group": "General", "title": "Navigation" }, { - "@id": "http://localhost:8000/@controlpanels/site", + "@id": "http://localhost:8080/@controlpanels/site", "group": "General", "title": "Site" } diff --git a/docs/examples/copymove/copy.res b/docs/examples/copymove/copy.res index 6ae67ae..484aaa5 100644 --- a/docs/examples/copymove/copy.res +++ b/docs/examples/copymove/copy.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "source": "http://localhost:8000/events/event-1", - "target": "http://localhost:8000/news/event-1" + "source": "http://localhost:8080/events/event-1", + "target": "http://localhost:8080/news/event-1" } ] diff --git a/docs/examples/copymove/copy_multiple.res b/docs/examples/copymove/copy_multiple.res index 84c78f7..ea016b8 100644 --- a/docs/examples/copymove/copy_multiple.res +++ b/docs/examples/copymove/copy_multiple.res @@ -3,11 +3,11 @@ Content-Type: application/json [ { - "source": "http://localhost:8000/events", - "target": "http://localhost:8000/news/events" + "source": "http://localhost:8080/events", + "target": "http://localhost:8080/news/events" }, { - "source": "http://localhost:8000/users", - "target": "http://localhost:8000/news/users" + "source": "http://localhost:8080/users", + "target": "http://localhost:8080/news/users" } ] diff --git a/docs/examples/copymove/move.res b/docs/examples/copymove/move.res index 6ae67ae..484aaa5 100644 --- a/docs/examples/copymove/move.res +++ b/docs/examples/copymove/move.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "source": "http://localhost:8000/events/event-1", - "target": "http://localhost:8000/news/event-1" + "source": "http://localhost:8080/events/event-1", + "target": "http://localhost:8080/news/event-1" } ] diff --git a/docs/examples/database/get.res b/docs/examples/database/get.res index 9b2005b..ebed614 100644 --- a/docs/examples/database/get.res +++ b/docs/examples/database/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@database", + "@id": "http://localhost:8080/@database", "db_name": "nick", "db_size": "10 MB", "pool": { diff --git a/docs/examples/groups/get.res b/docs/examples/groups/get.res index 9b1ddea..e62b8c4 100644 --- a/docs/examples/groups/get.res +++ b/docs/examples/groups/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@groups/Administrators", + "@id": "http://localhost:8080/@groups/Administrators", "id": "Administrators", "title": "Administrators", "description": "", diff --git a/docs/examples/groups/list.res b/docs/examples/groups/list.res index 1e65222..7b117a3 100644 --- a/docs/examples/groups/list.res +++ b/docs/examples/groups/list.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@groups/Administrators", + "@id": "http://localhost:8080/@groups/Administrators", "description": "", "email": "", "groupname": "Administrators", diff --git a/docs/examples/groups/list_query.res b/docs/examples/groups/list_query.res index 1e65222..7b117a3 100644 --- a/docs/examples/groups/list_query.res +++ b/docs/examples/groups/list_query.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@groups/Administrators", + "@id": "http://localhost:8080/@groups/Administrators", "description": "", "email": "", "groupname": "Administrators", diff --git a/docs/examples/groups/post.res b/docs/examples/groups/post.res index 42829b5..922153f 100644 --- a/docs/examples/groups/post.res +++ b/docs/examples/groups/post.res @@ -2,7 +2,7 @@ HTTP/1.1 201 Created Content-Type: application/json { - "@id": "http://localhost:8000/@groups/nicks", + "@id": "http://localhost:8080/@groups/nicks", "id": "nicks", "groupname": "nicks", "description": "Nearly Headless Nicks", diff --git a/docs/examples/history/get.res b/docs/examples/history/get.res index e6aaca7..a69e998 100644 --- a/docs/examples/history/get.res +++ b/docs/examples/history/get.res @@ -3,10 +3,10 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/news/@history/1", + "@id": "http://localhost:8080/news/@history/1", "action": "Edited", "actor": { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "fullname": "Admin", "id": "admin", "username": "admin" @@ -21,7 +21,7 @@ Content-Type: application/json { "time": "2022-04-03T20:22:00.000Z", "actor": { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "fullname": "Admin", "id": "admin", "username": "admin" @@ -34,10 +34,10 @@ Content-Type: application/json "type": "workflow" }, { - "@id": "http://localhost:8000/news/@history/0", + "@id": "http://localhost:8080/news/@history/0", "action": "Edited", "actor": { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "fullname": "Admin", "id": "admin", "username": "admin" diff --git a/docs/examples/history/get_version.res b/docs/examples/history/get_version.res index ab4f97a..b583b96 100644 --- a/docs/examples/history/get_version.res +++ b/docs/examples/history/get_version.res @@ -15,35 +15,35 @@ Content-Type: application/json "items": [], "@components": { "actions": { - "@id": "http://localhost:8000/news/@actions" + "@id": "http://localhost:8080/news/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/news/@breadcrumbs" + "@id": "http://localhost:8080/news/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/news/@catalog" + "@id": "http://localhost:8080/news/@catalog" }, "navigation": { - "@id": "http://localhost:8000/news/@navigation" + "@id": "http://localhost:8080/news/@navigation" }, "navroot": { - "@id": "http://localhost:8000/news/@navroot" + "@id": "http://localhost:8080/news/@navroot" }, "translations": { - "@id": "http://localhost:8000/news/@translations" + "@id": "http://localhost:8080/news/@translations" }, "types": { - "@id": "http://localhost:8000/news/@types" + "@id": "http://localhost:8080/news/@types" }, "workflow": { - "@id": "http://localhost:8000/news/@workflow" + "@id": "http://localhost:8080/news/@workflow" } }, "language": { "title": "English", "token": "en" }, - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "id": "news", "created": "2022-04-02T20:22:00.000Z", diff --git a/docs/examples/locking/get.res b/docs/examples/locking/get.res index ed17d2d..82481fc 100644 --- a/docs/examples/locking/get.res +++ b/docs/examples/locking/get.res @@ -5,7 +5,7 @@ Content-Type: application/json "created": "2022-04-08T16:00:00.000Z", "creator": "admin", "creator_name": "Admin", - "creator_url": "http://localhost:8000/@users/admin", + "creator_url": "http://localhost:8080/@users/admin", "locked": true, "stealable": true, "time": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/locking/patch.res b/docs/examples/locking/patch.res index ed17d2d..82481fc 100644 --- a/docs/examples/locking/patch.res +++ b/docs/examples/locking/patch.res @@ -5,7 +5,7 @@ Content-Type: application/json "created": "2022-04-08T16:00:00.000Z", "creator": "admin", "creator_name": "Admin", - "creator_url": "http://localhost:8000/@users/admin", + "creator_url": "http://localhost:8080/@users/admin", "locked": true, "stealable": true, "time": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/locking/post.res b/docs/examples/locking/post.res index ed17d2d..82481fc 100644 --- a/docs/examples/locking/post.res +++ b/docs/examples/locking/post.res @@ -5,7 +5,7 @@ Content-Type: application/json "created": "2022-04-08T16:00:00.000Z", "creator": "admin", "creator_name": "Admin", - "creator_url": "http://localhost:8000/@users/admin", + "creator_url": "http://localhost:8080/@users/admin", "locked": true, "stealable": true, "time": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/locking/post_options.res b/docs/examples/locking/post_options.res index 85fca58..29a74da 100644 --- a/docs/examples/locking/post_options.res +++ b/docs/examples/locking/post_options.res @@ -5,7 +5,7 @@ Content-Type: application/json "created": "2022-04-08T16:00:00.000Z", "creator": "admin", "creator_name": "Admin", - "creator_url": "http://localhost:8000/@users/admin", + "creator_url": "http://localhost:8080/@users/admin", "locked": true, "stealable": false, "time": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/navigation/get.res b/docs/examples/navigation/get.res index a800c92..61d2952 100644 --- a/docs/examples/navigation/get.res +++ b/docs/examples/navigation/get.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/news/@navigation", + "@id": "http://localhost:8080/news/@navigation", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", diff --git a/docs/examples/navroot/get.res b/docs/examples/navroot/get.res index d8c164d..331b8fe 100644 --- a/docs/examples/navroot/get.res +++ b/docs/examples/navroot/get.res @@ -153,7 +153,7 @@ Content-Type: application/json "blocks": { "79ba8858-1dd3-4719-b731-5951e32fbf79": { "@type": "title" } }, "effective": "2022-04-02T20:30:00.000Z", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "id": "events", "created": "2022-04-02T20:30:00.000Z", @@ -172,7 +172,7 @@ Content-Type: application/json "effective": "2022-04-02T20:22:00.000Z", "description": "News Items", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "id": "news", "created": "2022-04-02T20:22:00.000Z", @@ -190,7 +190,7 @@ Content-Type: application/json "blocks": { "79ba8858-1dd3-4719-b731-5951e32fbf79": { "@type": "title" } }, "effective": "2022-04-02T20:24:00.000Z", "blocks_layout": { "items": ["79ba8858-1dd3-4719-b731-5951e32fbf79"] }, - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "id": "users", "created": "2022-04-02T20:24:00.000Z", @@ -204,7 +204,7 @@ Content-Type: application/json "lock": { "locked": false, "stealable": true } } ], - "@id": "http://localhost:8000", + "@id": "http://localhost:8080", "@type": "Site", "id": "root", "created": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/querystring/get.res b/docs/examples/querystring/get.res index dc6ef91..01cb19b 100644 --- a/docs/examples/querystring/get.res +++ b/docs/examples/querystring/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@querystring", + "@id": "http://localhost:8080/@querystring", "indexes": { "created": { "title": "Creation date", diff --git a/docs/examples/roles/get.res b/docs/examples/roles/get.res index 9bc991d..fbd305c 100644 --- a/docs/examples/roles/get.res +++ b/docs/examples/roles/get.res @@ -3,49 +3,49 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@roles/Anonymous", + "@id": "http://localhost:8080/@roles/Anonymous", "@type": "role", "id": "Anonymous", "title": "Anonymous" }, { - "@id": "http://localhost:8000/@roles/Authenticated", + "@id": "http://localhost:8080/@roles/Authenticated", "@type": "role", "id": "Authenticated", "title": "Authenticated" }, { - "@id": "http://localhost:8000/@roles/Owner", + "@id": "http://localhost:8080/@roles/Owner", "@type": "role", "id": "Owner", "title": "Owner" }, { - "@id": "http://localhost:8000/@roles/Reader", + "@id": "http://localhost:8080/@roles/Reader", "@type": "role", "id": "Reader", "title": "Reader" }, { - "@id": "http://localhost:8000/@roles/Contributor", + "@id": "http://localhost:8080/@roles/Contributor", "@type": "role", "id": "Contributor", "title": "Contributor" }, { - "@id": "http://localhost:8000/@roles/Editor", + "@id": "http://localhost:8080/@roles/Editor", "@type": "role", "id": "Editor", "title": "Editor" }, { - "@id": "http://localhost:8000/@roles/Reviewer", + "@id": "http://localhost:8080/@roles/Reviewer", "@type": "role", "id": "Reviewer", "title": "Reviewer" }, { - "@id": "http://localhost:8000/@roles/Administrator", + "@id": "http://localhost:8080/@roles/Administrator", "@type": "role", "id": "Administrator", "title": "Administrator" diff --git a/docs/examples/search/get.res b/docs/examples/search/get.res index fa9d154..4e2f60c 100644 --- a/docs/examples/search/get.res +++ b/docs/examples/search/get.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/search/get_batch.res b/docs/examples/search/get_batch.res index a43ec05..774ac6b 100644 --- a/docs/examples/search/get_batch.res +++ b/docs/examples/search/get_batch.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", diff --git a/docs/examples/search/get_depth.res b/docs/examples/search/get_depth.res index 70517ce..a31a1f0 100644 --- a/docs/examples/search/get_depth.res +++ b/docs/examples/search/get_depth.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", diff --git a/docs/examples/search/get_news.res b/docs/examples/search/get_news.res index 80b311b..9c273fe 100644 --- a/docs/examples/search/get_news.res +++ b/docs/examples/search/get_news.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", diff --git a/docs/examples/search/get_offset.res b/docs/examples/search/get_offset.res index 5bb9884..c4272a6 100644 --- a/docs/examples/search/get_offset.res +++ b/docs/examples/search/get_offset.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/search/get_sort_date.res b/docs/examples/search/get_sort_date.res index 376d49d..b8d2977 100644 --- a/docs/examples/search/get_sort_date.res +++ b/docs/examples/search/get_sort_date.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:00:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", diff --git a/docs/examples/search/get_sort_reverse.res b/docs/examples/search/get_sort_reverse.res index 5ea6b8a..420bb0d 100644 --- a/docs/examples/search/get_sort_reverse.res +++ b/docs/examples/search/get_sort_reverse.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:00:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", diff --git a/docs/examples/search/get_sort_title.res b/docs/examples/search/get_sort_title.res index a8e7078..2ac17e6 100644 --- a/docs/examples/search/get_sort_title.res +++ b/docs/examples/search/get_sort_title.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/search/get_sort_unknown.res b/docs/examples/search/get_sort_unknown.res index fa9d154..4e2f60c 100644 --- a/docs/examples/search/get_sort_unknown.res +++ b/docs/examples/search/get_sort_unknown.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/search/get_unknown.res b/docs/examples/search/get_unknown.res index fa9d154..4e2f60c 100644 --- a/docs/examples/search/get_unknown.res +++ b/docs/examples/search/get_unknown.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/search/post.res b/docs/examples/search/post.res index fa9d154..4e2f60c 100644 --- a/docs/examples/search/post.res +++ b/docs/examples/search/post.res @@ -2,10 +2,10 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@search", + "@id": "http://localhost:8080/@search", "items": [ { - "@id": "http://localhost:8000/events", + "@id": "http://localhost:8080/events", "@type": "Folder", "title": "Events", "UID": "1a2123ba-14e8-4910-8e6b-c04a40d72a41", @@ -35,7 +35,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:30:00.000Z" }, { - "@id": "http://localhost:8000/news", + "@id": "http://localhost:8080/news", "@type": "Folder", "title": "News", "UID": "32215c67-86de-462a-8cc0-eabcd2b39c26", @@ -65,7 +65,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:22:00.000Z" }, { - "@id": "http://localhost:8000/events/event-1", + "@id": "http://localhost:8080/events/event-1", "@type": "Page", "title": "Event 1", "UID": "405ca717-0c68-43a0-88ac-629a82658675", @@ -95,7 +95,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:10:00.000Z" }, { - "@id": "http://localhost:8000/users", + "@id": "http://localhost:8080/users", "@type": "Folder", "title": "Users", "UID": "80994493-74ca-4b94-9a7c-145a33a6dd80", @@ -125,7 +125,7 @@ Content-Type: application/json "ModificationDate": "2022-04-02T20:24:00.000Z" }, { - "@id": "http://localhost:8000/", + "@id": "http://localhost:8080/", "@type": "Site", "title": "Welcome to Nick!", "UID": "92a80817-f5b7-400d-8f58-b08126f0f09b", diff --git a/docs/examples/site/get.res b/docs/examples/site/get.res index 02e292e..a7c89e3 100644 --- a/docs/examples/site/get.res +++ b/docs/examples/site/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@site", + "@id": "http://localhost:8080/@site", "robots_txt": "Sitemap: {portal_url}/sitemap.xml.gz\n\n# Define access-restrictions for robots/spiders\n# http://www.robotstxt.org/wc/norobots.html\n\n\n\n# By default we allow robots to access all areas of our site\n# already accessible to anonymous users\n\nUser-agent: *\nDisallow:\n\n\n\n# Add Googlebot-specific syntax extension to exclude forms\n# that are repeated for each piece of content in the site\n# the wildcard is only supported by Googlebot\n# http://www.google.com/support/webmasters/bin/answer.py?answer=40367&ctx=sibling\n\nUser-Agent: Googlebot\nDisallow: /*?\nDisallow: /*atct_album_view$\nDisallow: /*folder_factories$\nDisallow: /*folder_summary_view$\nDisallow: /*login_form$\nDisallow: /*mail_password_form$\nDisallow: /@@search\nDisallow: /*search_rss$\nDisallow: /*sendto_form$\nDisallow: /*summary_view$\nDisallow: /*thumbnail_view$\nDisallow: /*view$\n", "site_logo": null, "site_title": "Nick" diff --git a/docs/examples/system/get.res b/docs/examples/system/get.res index 82c80d4..85758d7 100644 --- a/docs/examples/system/get.res +++ b/docs/examples/system/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@system", + "@id": "http://localhost:8080/@system", "nick_version": "2.8.0", "node_version": "v16.15.0", "express_version": "4.21.1", diff --git a/docs/examples/translations/get.res b/docs/examples/translations/get.res index 482898c..75aaee0 100644 --- a/docs/examples/translations/get.res +++ b/docs/examples/translations/get.res @@ -2,15 +2,15 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/en/events/@translations", + "@id": "http://localhost:8080/en/events/@translations", "items": [ { - "@id": "http://localhost:8000/nl/evenementen", + "@id": "http://localhost:8080/nl/evenementen", "language": "nl" } ], "root": { - "en": "http://localhost:8000/en", - "nl": "http://localhost:8000/nl" + "en": "http://localhost:8080/en", + "nl": "http://localhost:8080/nl" } } \ No newline at end of file diff --git a/docs/examples/translations/get_expansion.res b/docs/examples/translations/get_expansion.res index 72dc950..19388c6 100644 --- a/docs/examples/translations/get_expansion.res +++ b/docs/examples/translations/get_expansion.res @@ -5,31 +5,31 @@ Content-Type: application/json "title": "Events", "@components": { "actions": { - "@id": "http://localhost:8000/en/events/@actions" + "@id": "http://localhost:8080/en/events/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/en/events/@breadcrumbs" + "@id": "http://localhost:8080/en/events/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/en/events/@catalog" + "@id": "http://localhost:8080/en/events/@catalog" }, "navigation": { - "@id": "http://localhost:8000/en/events/@navigation" + "@id": "http://localhost:8080/en/events/@navigation" }, "navroot": { - "@id": "http://localhost:8000/en/events/@navroot" + "@id": "http://localhost:8080/en/events/@navroot" }, "translations": { - "@id": "http://localhost:8000/en/events/@translations" + "@id": "http://localhost:8080/en/events/@translations" }, "types": { - "@id": "http://localhost:8000/en/events/@types" + "@id": "http://localhost:8080/en/events/@types" }, "workflow": { - "@id": "http://localhost:8000/en/events/@workflow" + "@id": "http://localhost:8080/en/events/@workflow" } }, - "@id": "http://localhost:8000/en/events/my-news-item", + "@id": "http://localhost:8080/en/events/my-news-item", "@type": "Page", "id": "events", "created": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/translations/get_expansion_expanded.res b/docs/examples/translations/get_expansion_expanded.res index c38ed0b..abf0ece 100644 --- a/docs/examples/translations/get_expansion_expanded.res +++ b/docs/examples/translations/get_expansion_expanded.res @@ -5,41 +5,41 @@ Content-Type: application/json "title": "Events", "@components": { "actions": { - "@id": "http://localhost:8000/en/events/@actions" + "@id": "http://localhost:8080/en/events/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/en/events/@breadcrumbs" + "@id": "http://localhost:8080/en/events/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/en/events/@catalog" + "@id": "http://localhost:8080/en/events/@catalog" }, "navigation": { - "@id": "http://localhost:8000/en/events/@navigation" + "@id": "http://localhost:8080/en/events/@navigation" }, "navroot": { - "@id": "http://localhost:8000/en/events/@navroot" + "@id": "http://localhost:8080/en/events/@navroot" }, "translations": { - "@id": "http://localhost:8000/en/events/@translations", + "@id": "http://localhost:8080/en/events/@translations", "items": [ { - "@id": "http://localhost:8000/nl/evenementen", + "@id": "http://localhost:8080/nl/evenementen", "language": "nl" } ], "root": { - "en": "http://localhost:8000/en", - "nl": "http://localhost:8000/nl" + "en": "http://localhost:8080/en", + "nl": "http://localhost:8080/nl" } }, "types": { - "@id": "http://localhost:8000/en/events/@types" + "@id": "http://localhost:8080/en/events/@types" }, "workflow": { - "@id": "http://localhost:8000/en/events/@workflow" + "@id": "http://localhost:8080/en/events/@workflow" } }, - "@id": "http://localhost:8000/en/events/my-news-item", + "@id": "http://localhost:8080/en/events/my-news-item", "@type": "Page", "id": "events", "created": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/translations/get_locator.res b/docs/examples/translations/get_locator.res index 343cce0..5de0033 100644 --- a/docs/examples/translations/get_locator.res +++ b/docs/examples/translations/get_locator.res @@ -2,5 +2,5 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/nl" + "@id": "http://localhost:8080/nl" } diff --git a/docs/examples/translations/post.res b/docs/examples/translations/post.res index 26fbc97..47d81db 100644 --- a/docs/examples/translations/post.res +++ b/docs/examples/translations/post.res @@ -5,31 +5,31 @@ Content-Type: application/json "title": "Evenementen", "@components": { "actions": { - "@id": "http://localhost:8000/nl/evenementen/@actions" + "@id": "http://localhost:8080/nl/evenementen/@actions" }, "breadcrumbs": { - "@id": "http://localhost:8000/nl/evenementen/@breadcrumbs" + "@id": "http://localhost:8080/nl/evenementen/@breadcrumbs" }, "catalog": { - "@id": "http://localhost:8000/nl/evenementen/@catalog" + "@id": "http://localhost:8080/nl/evenementen/@catalog" }, "navigation": { - "@id": "http://localhost:8000/nl/evenementen/@navigation" + "@id": "http://localhost:8080/nl/evenementen/@navigation" }, "navroot": { - "@id": "http://localhost:8000/nl/evenementen/@navroot" + "@id": "http://localhost:8080/nl/evenementen/@navroot" }, "translations": { - "@id": "http://localhost:8000/nl/evenementen/@translations" + "@id": "http://localhost:8080/nl/evenementen/@translations" }, "types": { - "@id": "http://localhost:8000/nl/evenementen/@types" + "@id": "http://localhost:8080/nl/evenementen/@types" }, "workflow": { - "@id": "http://localhost:8000/nl/evenementen/@workflow" + "@id": "http://localhost:8080/nl/evenementen/@workflow" } }, - "@id": "http://localhost:8000/nl/evenementen/my-news-item", + "@id": "http://localhost:8080/nl/evenementen/my-news-item", "@type": "Page", "id": "evenementen", "created": "2022-04-08T16:00:00.000Z", diff --git a/docs/examples/translations/post_url.req b/docs/examples/translations/post_url.req index 8e8ca13..fb228b0 100644 --- a/docs/examples/translations/post_url.req +++ b/docs/examples/translations/post_url.req @@ -4,5 +4,5 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhZG1pbiIsI Content-Type: application/json { - "id": "http://localhost:8000/nl/evenementen" + "id": "http://localhost:8080/nl/evenementen" } diff --git a/docs/examples/types/list.res b/docs/examples/types/list.res index f1a9cb3..e5d8394 100644 --- a/docs/examples/types/list.res +++ b/docs/examples/types/list.res @@ -3,27 +3,27 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@types/File", + "@id": "http://localhost:8080/@types/File", "addable": true, "title": "File" }, { - "@id": "http://localhost:8000/@types/Folder", + "@id": "http://localhost:8080/@types/Folder", "addable": true, "title": "Folder" }, { - "@id": "http://localhost:8000/@types/Image", + "@id": "http://localhost:8080/@types/Image", "addable": true, "title": "Image" }, { - "@id": "http://localhost:8000/@types/Page", + "@id": "http://localhost:8080/@types/Page", "addable": true, "title": "Page" }, { - "@id": "http://localhost:8000/@types/Site", + "@id": "http://localhost:8080/@types/Site", "addable": false, "title": "Site" } diff --git a/docs/examples/types/list_i18n.res b/docs/examples/types/list_i18n.res index 2ffe7d6..adb16e2 100644 --- a/docs/examples/types/list_i18n.res +++ b/docs/examples/types/list_i18n.res @@ -3,27 +3,27 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@types/File", + "@id": "http://localhost:8080/@types/File", "addable": true, "title": "Bestand" }, { - "@id": "http://localhost:8000/@types/Folder", + "@id": "http://localhost:8080/@types/Folder", "addable": true, "title": "Map" }, { - "@id": "http://localhost:8000/@types/Image", + "@id": "http://localhost:8080/@types/Image", "addable": true, "title": "Afbeelding" }, { - "@id": "http://localhost:8000/@types/Page", + "@id": "http://localhost:8080/@types/Page", "addable": true, "title": "Pagina" }, { - "@id": "http://localhost:8000/@types/Site", + "@id": "http://localhost:8080/@types/Site", "addable": false, "title": "Site" } diff --git a/docs/examples/users/get.res b/docs/examples/users/get.res index e98828f..d7b14a5 100644 --- a/docs/examples/users/get.res +++ b/docs/examples/users/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "id": "admin", "fullname": "Admin", "email": "admin@example.com", diff --git a/docs/examples/users/list.res b/docs/examples/users/list.res index 0adf707..67c0c11 100644 --- a/docs/examples/users/list.res +++ b/docs/examples/users/list.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "id": "admin", "fullname": "Admin", "email": "admin@example.com", @@ -13,7 +13,7 @@ Content-Type: application/json "groups": [] }, { - "@id": "http://localhost:8000/@users/anonymous", + "@id": "http://localhost:8080/@users/anonymous", "id": "anonymous", "fullname": "Anonymous", "email": "anonymous@example.com", diff --git a/docs/examples/users/list_query.res b/docs/examples/users/list_query.res index 4a47e02..19b93f4 100644 --- a/docs/examples/users/list_query.res +++ b/docs/examples/users/list_query.res @@ -3,7 +3,7 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@users/admin", + "@id": "http://localhost:8080/@users/admin", "id": "admin", "fullname": "Admin", "email": "admin@example.com", diff --git a/docs/examples/users/post.res b/docs/examples/users/post.res index 63cab2b..22084ba 100644 --- a/docs/examples/users/post.res +++ b/docs/examples/users/post.res @@ -2,7 +2,7 @@ HTTP/1.1 201 Created Content-Type: application/json { - "@id": "http://localhost:8000/@users/headlessnick", + "@id": "http://localhost:8080/@users/headlessnick", "id": "headlessnick", "fullname": "Nearly Headless Nick", "email": "nearly.headless.nick@example.com", diff --git a/docs/examples/users/post_registration.res b/docs/examples/users/post_registration.res index 63cab2b..22084ba 100644 --- a/docs/examples/users/post_registration.res +++ b/docs/examples/users/post_registration.res @@ -2,7 +2,7 @@ HTTP/1.1 201 Created Content-Type: application/json { - "@id": "http://localhost:8000/@users/headlessnick", + "@id": "http://localhost:8080/@users/headlessnick", "id": "headlessnick", "fullname": "Nearly Headless Nick", "email": "nearly.headless.nick@example.com", diff --git a/docs/examples/vocabularies/get.res b/docs/examples/vocabularies/get.res index 00a6674..e37dfe9 100644 --- a/docs/examples/vocabularies/get.res +++ b/docs/examples/vocabularies/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/roles", + "@id": "http://localhost:8080/@vocabularies/roles", "items": [ { "title": "Administrator", diff --git a/docs/examples/vocabularies/get_actions.res b/docs/examples/vocabularies/get_actions.res index 7625b29..c9beb65 100644 --- a/docs/examples/vocabularies/get_actions.res +++ b/docs/examples/vocabularies/get_actions.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/actions", + "@id": "http://localhost:8080/@vocabularies/actions", "items": [ { "title": "View", diff --git a/docs/examples/vocabularies/get_behaviors.res b/docs/examples/vocabularies/get_behaviors.res index a179bc3..cdd17eb 100644 --- a/docs/examples/vocabularies/get_behaviors.res +++ b/docs/examples/vocabularies/get_behaviors.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/behaviors", + "@id": "http://localhost:8080/@vocabularies/behaviors", "items": [ { "title": "Basic metadata", diff --git a/docs/examples/vocabularies/get_boolean.res b/docs/examples/vocabularies/get_boolean.res index dd29d42..02b5d02 100644 --- a/docs/examples/vocabularies/get_boolean.res +++ b/docs/examples/vocabularies/get_boolean.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/boolean", + "@id": "http://localhost:8080/@vocabularies/boolean", "items": [ { "title": "Yes", diff --git a/docs/examples/vocabularies/get_groups.res b/docs/examples/vocabularies/get_groups.res index 2a554ad..64a3168 100644 --- a/docs/examples/vocabularies/get_groups.res +++ b/docs/examples/vocabularies/get_groups.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/groups", + "@id": "http://localhost:8080/@vocabularies/groups", "items": [ { "title": "Administrators", diff --git a/docs/examples/vocabularies/get_image_scales.res b/docs/examples/vocabularies/get_image_scales.res index bc9182b..ccde2d8 100644 --- a/docs/examples/vocabularies/get_image_scales.res +++ b/docs/examples/vocabularies/get_image_scales.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/imageScales", + "@id": "http://localhost:8080/@vocabularies/imageScales", "items": [ { "title": "large", diff --git a/docs/examples/vocabularies/get_permissions.res b/docs/examples/vocabularies/get_permissions.res index 4696e1e..5f0e722 100644 --- a/docs/examples/vocabularies/get_permissions.res +++ b/docs/examples/vocabularies/get_permissions.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/permissions", + "@id": "http://localhost:8080/@vocabularies/permissions", "items": [ { "title": "Add", diff --git a/docs/examples/vocabularies/get_subjects.res b/docs/examples/vocabularies/get_subjects.res index 5689ad6..6fbda68 100644 --- a/docs/examples/vocabularies/get_subjects.res +++ b/docs/examples/vocabularies/get_subjects.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/subjects", + "@id": "http://localhost:8080/@vocabularies/subjects", "items": [ { "title": "event", diff --git a/docs/examples/vocabularies/get_supported_languages.res b/docs/examples/vocabularies/get_supported_languages.res index c457d93..f54fa55 100644 --- a/docs/examples/vocabularies/get_supported_languages.res +++ b/docs/examples/vocabularies/get_supported_languages.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/supportedLanguages", + "@id": "http://localhost:8080/@vocabularies/supportedLanguages", "items": [ { "title": "Afrikaans", diff --git a/docs/examples/vocabularies/get_system_groups.res b/docs/examples/vocabularies/get_system_groups.res index ce58c45..adf359c 100644 --- a/docs/examples/vocabularies/get_system_groups.res +++ b/docs/examples/vocabularies/get_system_groups.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/systemGroups", + "@id": "http://localhost:8080/@vocabularies/systemGroups", "items": [ { "title": "Owner", diff --git a/docs/examples/vocabularies/get_system_users.res b/docs/examples/vocabularies/get_system_users.res index 5b4c11c..ad1d34b 100644 --- a/docs/examples/vocabularies/get_system_users.res +++ b/docs/examples/vocabularies/get_system_users.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/systemUsers", + "@id": "http://localhost:8080/@vocabularies/systemUsers", "items": [ { "title": "admin", diff --git a/docs/examples/vocabularies/get_types.res b/docs/examples/vocabularies/get_types.res index 8834b30..961eb24 100644 --- a/docs/examples/vocabularies/get_types.res +++ b/docs/examples/vocabularies/get_types.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/types", + "@id": "http://localhost:8080/@vocabularies/types", "items": [ { "title": "File", diff --git a/docs/examples/vocabularies/get_users.res b/docs/examples/vocabularies/get_users.res index d5ce2af..52fa7e5 100644 --- a/docs/examples/vocabularies/get_users.res +++ b/docs/examples/vocabularies/get_users.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/users", + "@id": "http://localhost:8080/@vocabularies/users", "items": [ { "title": "Admin", diff --git a/docs/examples/vocabularies/get_workflow_states.res b/docs/examples/vocabularies/get_workflow_states.res index fc66d18..5f02e8a 100644 --- a/docs/examples/vocabularies/get_workflow_states.res +++ b/docs/examples/vocabularies/get_workflow_states.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/workflowStates", + "@id": "http://localhost:8080/@vocabularies/workflowStates", "items": [ { "title": "Pending review", diff --git a/docs/examples/vocabularies/get_workflows.res b/docs/examples/vocabularies/get_workflows.res index 21582f5..f1e4a47 100644 --- a/docs/examples/vocabularies/get_workflows.res +++ b/docs/examples/vocabularies/get_workflows.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/@vocabularies/workflows", + "@id": "http://localhost:8080/@vocabularies/workflows", "items": [ { "title": "Simple Publication Workflow", diff --git a/docs/examples/vocabularies/list.res b/docs/examples/vocabularies/list.res index 98f7ed0..f461078 100644 --- a/docs/examples/vocabularies/list.res +++ b/docs/examples/vocabularies/list.res @@ -3,67 +3,67 @@ Content-Type: application/json [ { - "@id": "http://localhost:8000/@vocabularies/actions", + "@id": "http://localhost:8080/@vocabularies/actions", "title": "actions" }, { - "@id": "http://localhost:8000/@vocabularies/availableLanguages", + "@id": "http://localhost:8080/@vocabularies/availableLanguages", "title": "availableLanguages" }, { - "@id": "http://localhost:8000/@vocabularies/behaviors", + "@id": "http://localhost:8080/@vocabularies/behaviors", "title": "behaviors" }, { - "@id": "http://localhost:8000/@vocabularies/boolean", + "@id": "http://localhost:8080/@vocabularies/boolean", "title": "boolean" }, { - "@id": "http://localhost:8000/@vocabularies/groups", + "@id": "http://localhost:8080/@vocabularies/groups", "title": "groups" }, { - "@id": "http://localhost:8000/@vocabularies/imageScales", + "@id": "http://localhost:8080/@vocabularies/imageScales", "title": "imageScales" }, { - "@id": "http://localhost:8000/@vocabularies/permissions", + "@id": "http://localhost:8080/@vocabularies/permissions", "title": "permissions" }, { - "@id": "http://localhost:8000/@vocabularies/roles", + "@id": "http://localhost:8080/@vocabularies/roles", "title": "roles" }, { - "@id": "http://localhost:8000/@vocabularies/subjects", + "@id": "http://localhost:8080/@vocabularies/subjects", "title": "subjects" }, { - "@id": "http://localhost:8000/@vocabularies/supportedLanguages", + "@id": "http://localhost:8080/@vocabularies/supportedLanguages", "title": "supportedLanguages" }, { - "@id": "http://localhost:8000/@vocabularies/systemGroups", + "@id": "http://localhost:8080/@vocabularies/systemGroups", "title": "systemGroups" }, { - "@id": "http://localhost:8000/@vocabularies/systemUsers", + "@id": "http://localhost:8080/@vocabularies/systemUsers", "title": "systemUsers" }, { - "@id": "http://localhost:8000/@vocabularies/types", + "@id": "http://localhost:8080/@vocabularies/types", "title": "types" }, { - "@id": "http://localhost:8000/@vocabularies/users", + "@id": "http://localhost:8080/@vocabularies/users", "title": "users" }, { - "@id": "http://localhost:8000/@vocabularies/workflowStates", + "@id": "http://localhost:8080/@vocabularies/workflowStates", "title": "workflowStates" }, { - "@id": "http://localhost:8000/@vocabularies/workflows", + "@id": "http://localhost:8080/@vocabularies/workflows", "title": "workflows" } ] diff --git a/docs/examples/workflow/get.res b/docs/examples/workflow/get.res index d8c16d3..29521e8 100644 --- a/docs/examples/workflow/get.res +++ b/docs/examples/workflow/get.res @@ -2,7 +2,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@id": "http://localhost:8000/news/@workflow", + "@id": "http://localhost:8080/news/@workflow", "history": [], "state": { "id": "published", @@ -10,11 +10,11 @@ Content-Type: application/json }, "transitions": [ { - "@id": "http://localhost:8000/news/@workflow/reject", + "@id": "http://localhost:8080/news/@workflow/reject", "title": "Send back" }, { - "@id": "http://localhost:8000/news/@workflow/retract", + "@id": "http://localhost:8080/news/@workflow/retract", "title": "Retract" } ] diff --git a/frontend/src/config.js.sample b/frontend/src/config.js.sample index dcbdb9d..bd831ea 100644 --- a/frontend/src/config.js.sample +++ b/frontend/src/config.js.sample @@ -17,7 +17,5 @@ import '@plone/volto/config'; export default function applyConfig(config) { - config.settings.devProxyToApiPath = 'http://localhost:8000'; - config.settings.proxyRewriteTarget = new String(''); return config; } diff --git a/jest.setup.js b/jest.setup.js index c6b9182..11037e1 100644 --- a/jest.setup.js +++ b/jest.setup.js @@ -13,7 +13,7 @@ jest .spyOn(url, 'getUrl') .mockImplementation( (req) => - `http://localhost:8000${ + `http://localhost:8080${ req.document.path === '/' ? '' : req.document.path }`, ); @@ -21,7 +21,7 @@ jest // Mock get root url jest .spyOn(url, 'getRootUrl') - .mockImplementation((req) => 'http://localhost:8000'); + .mockImplementation((req) => 'http://localhost:8080'); // Mock JWT sign jest diff --git a/packages/generator-nick/generators/app/templates/config.js.tpl b/packages/generator-nick/generators/app/templates/config.js.tpl index 794371e..2a6c049 100644 --- a/packages/generator-nick/generators/app/templates/config.js.tpl +++ b/packages/generator-nick/generators/app/templates/config.js.tpl @@ -7,7 +7,7 @@ export const config = { password: '<%= projectName %>', }, blobsDir: `${__dirname}/var/blobstorage`, - port: 8000, + port: 8080, secret: 'secret', clientMaxSize: '64mb', systemUsers: ['admin', 'anonymous'], diff --git a/site/index.html b/site/index.html index 42eb889..919b77a 100644 --- a/site/index.html +++ b/site/index.html @@ -483,8 +483,8 @@


The rest api is now available at -
http://localhost:8000http://localhost:8080. If you want to run the Volto fronted follow the instructions in the README.md file in the frontend folder.

diff --git a/src/app.js b/src/app.js index 54b394d..66295d6 100644 --- a/src/app.js +++ b/src/app.js @@ -18,7 +18,7 @@ import { } from './helpers'; import { Document, Model, Redirect, Role, Type, User } from './models'; import routes from './routes'; -import { accessLogger, cors, i18n } from './middleware'; +import { accessLogger, cors, i18n, removeZopeVhosting } from './middleware'; import { applyBehaviors } from './behaviors'; const { config } = require(`${process.cwd()}/config`); @@ -33,6 +33,7 @@ const app = express(); // Add middleware app.use(bodyParser.json({ limit: config.clientMaxSize })); +app.use(removeZopeVhosting); app.use(accessLogger); app.use(i18n); app.use(cors); diff --git a/src/helpers/url/url.test.js b/src/helpers/url/url.test.js index 536dbd9..de4e998 100644 --- a/src/helpers/url/url.test.js +++ b/src/helpers/url/url.test.js @@ -5,25 +5,25 @@ describe('Url', () => { expect( getUrl({ protocol: 'http', - headers: { host: 'localhost:8000' }, + headers: { host: 'localhost:8080' }, document: { path: '/news' }, }), - ).toBe('http://localhost:8000/news')); + ).toBe('http://localhost:8080/news')); it('should get the url of the root', () => expect( getUrl({ protocol: 'http', - headers: { host: 'localhost:8000' }, + headers: { host: 'localhost:8080' }, document: { path: '/' }, }), - ).toBe('http://localhost:8000')); + ).toBe('http://localhost:8080')); it('should get the root url', () => expect( getRootUrl({ protocol: 'http', - headers: { host: 'localhost:8000' }, + headers: { host: 'localhost:8080' }, }), - ).toBe('http://localhost:8000')); + ).toBe('http://localhost:8080')); }); diff --git a/src/middleware/index.js b/src/middleware/index.js index fe91776..1665988 100644 --- a/src/middleware/index.js +++ b/src/middleware/index.js @@ -7,3 +7,4 @@ export { accessLogger } from './access-logger/access-logger'; export { cors } from './cors/cors'; export { i18n } from './i18n/i18n'; +export { removeZopeVhosting } from './volto/volto'; diff --git a/src/middleware/volto/volto.js b/src/middleware/volto/volto.js new file mode 100644 index 0000000..e6b1649 --- /dev/null +++ b/src/middleware/volto/volto.js @@ -0,0 +1,10 @@ +/** + * Middleware to work better with Volto. + * @module volto + */ + +// Export middleware +export function removeZopeVhosting(req, res, next) { + req.url = req.url.replace(/\/VirtualHostBase.*\/VirtualHostRoot/, ''); + next(); +} From 770f4dbc1cd68b9b30a17924c8af209df3864e64 Mon Sep 17 00:00:00 2001 From: David Glick Date: Sun, 1 Dec 2024 18:00:47 -0300 Subject: [PATCH 3/5] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32006a6..4adadd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,6 +66,7 @@ - Fix keywords endpoint @robgietema - Fix supported languages endpoint @robgietema - Fix site logo @robgietema +- Make it compatible with Volto without special settings @davisagli ### Internal From cb3b8dd6b26bf5cd99206254c082380975a6b36d Mon Sep 17 00:00:00 2001 From: Rob Gietema Date: Mon, 2 Dec 2024 07:09:05 -0300 Subject: [PATCH 4/5] Update translations. --- locales/en.json | 2 +- locales/en/LC_MESSAGES/nick.po | 273 +++++++++++++++++--------------- locales/nick.pot | 275 ++++++++++++++++++--------------- locales/nl.json | 2 +- locales/nl/LC_MESSAGES/nick.po | 273 +++++++++++++++++--------------- 5 files changed, 447 insertions(+), 378 deletions(-) diff --git a/locales/en.json b/locales/en.json index 00af80e..c6b0631 100644 --- a/locales/en.json +++ b/locales/en.json @@ -1 +1 @@ -{"A description of this item.":"defaultMessage:","A name given to this item.":"A name given to this item.","A related item from which this item is derived.":"A related item from which this item is derived.","Absolute path":"Absolute path","Accessibility":"Accessibility","Add":"Add","Add additional items to the navigation, one per line. In the format 'title|description|url'.":"Add additional items to the navigation, one per line. In the format 'title|description|url'.","Additional items":"Additional items","Adds effective and expiration dates.":"Adds effective and expiration dates.","Adds keywords and language fields.":"Adds keywords and language fields.","Adds ownership and rights fields.":"Adds ownership and rights fields.","Adds standard metadatafields":"Adds standard metadatafields","Adds title and description fields.":"Adds title and description fields.","Administrator":"Administrator","Administrators":"Administrators","After N days in the future":"After N days in the future","After date":"After date","After relative Date":"After relative Date","After the current day":"After the current day","After today":"After today","Already locked":"Already locked","An entity responsible for making this item available.":"An entity responsible for making this item available.","An item's description":"An item's description","An item's type (e.g. Event)":"An item's type (e.g. Event)","An item's workflow state (e.g.published)":"An item's workflow state (e.g.published)","Anonymous":"Anonymous","Authenticated":"Authenticated","Available languages":"Available languages","Basic metadata":"Basic metadata","Before N days in the past":"Before N days in the past","Before date":"Before date","Before relative Date":"Before relative Date","Before the current day":"Before the current day","Before today":"Before today","Between dates":"Between dates","Blocks":"Blocks","Blocks Layout":"Blocks Layout","Can only be seen and edited by the owner.":"Can only be seen and edited by the owner.","Categorization":"Categorization","Change Note":"Change Note","Contact":"Contact","Contains":"Contains","Contents":"Contents","Contributor":"Contributor","Copy":"Copy","Coverage":"Coverage","Creation date":"Creation date","Creator":"Creator","Current logged in user":"Current logged in user","Cut":"Cut","Dates":"Dates","Debug":"Debug","Default":"Default","Delete":"Delete","Description":"Description","Displayed content types":"Displayed content types","Document locked":"Document locked","Dublin Core metadata":"Dublin Core metadata","ESMTP password":"ESMTP password","ESMTP username":"ESMTP username","Edit":"Edit","Editor":"Editor","Effective date":"Effective date","Enables Volto Blocks support":"Enables Volto Blocks support","Enter a comment that describes the changes you made.":"Enter a comment that describes the changes you made.","Equals":"Equals","Event end date":"Event end date","Event start date":"Event start date","Exclude from navigation":"Exclude from navigation","Expiration Date":"Expiration Date","Expiration date":"Expiration date","File":"File","Find items related to the selected items":"Find items related to the selected items","Find items that can contain other objects":"Find items that can contain other objects","Folder":"Folder","Folder-like":"Folder-like","From and message are required fields.":"From and message are required fields.","Gives the ability to rename an item from its edit form.":"Gives the ability to rename an item from its edit form.","History":"History","Identifier":"Identifier","If enabled the mail is send to a test server.":"If enabled the mail is send to a test server.","If enabled the mail is send using a secure connection.":"If enabled the mail is send using a secure connection.","If selected, this item will not appear in the navigation tree.":"If selected, this item will not appear in the navigation tree.","If this date is in the future, the content will not show up in listings and searches until this date.":"If this date is in the future, the content will not show up in listings and searches until this date.","Image":"Image","Images can be referenced in pages or displayed in an album.":"Images can be referenced in pages or displayed in an album.","Information about rights held in and over this item.":"Information about rights held in and over this item.","Internal server error":"Internal server error","Invalid credentials":"Invalid credentials","Invalid session":"Invalid session","Is":"Is","Language":"Language","Languageroot":"Languageroot","Larger than":"Larger than","Layout":"Layout","Less than":"Less than","Lets you upload a file to the site.":"Lets you upload a file to the site.","Location":"Location","Location in the navigation structure":"Location in the navigation structure","Location in the site structure":"Location in the site structure","Log in":"Log in","Log out":"Log out","Login":"Login","Login and password must be provided in body.":"Login and password must be provided in body.","Logout":"Logout","Mail":"Mail","Manage Preferences":"Manage Preferences","Manage Site":"Manage Site","Manage Users":"Manage Users","Matches all of":"Matches all of","Matches any of":"Matches any of","Missing credentials":"Missing credentials","Modification date":"Modification date","Modify":"Modify","Navigation":"Navigation","Navigation path":"Navigation path","News":"News","No":"No","Not allowed":"Not allowed","Not found.":"Not found.","Order in folder":"Order in folder","Owner":"Owner","Ownership":"Ownership","Page":"Page","Password reset request":"Password reset request","Paste":"Paste","Pending review":"Pending review","Please enter the number in days.":"Please enter the number in days.","Please use YYYY/MM/DD.":"Please use YYYY/MM/DD.","Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.":"Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.","Plone generates e-mail using this name as the e-mail sender.":"Plone generates e-mail using this name as the e-mail sender.","Preferences":"Preferences","Private":"Private","Publish":"Publish","Published":"Published","Publisher":"Publisher","Publishing Date":"Publishing Date","Reader":"Reader","Register":"Register","Related":"Related","Related Items":"Related Items","Related To":"Related To","Related resources.":"Related resources.","Relative path":"Relative path","Rename":"Rename","Required field(s) missing.":"Required field(s) missing.","Retract":"Retract","Review":"Review","Review state":"Review state","Reviewer":"Reviewer","Rights":"Rights","Robots.txt":"Robots.txt","Rules":"Rules","SMTP port":"SMTP port","SMTP server":"SMTP server","Searchable text":"Searchable text","Secure":"Secure","Send back":"Send back","Settings":"Settings","Sharing":"Sharing","Short name":"Short name","Short name (id)":"Short name (id)","Simple Publication Workflow":"Simple Publication Workflow","Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.":"Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.","Site":"Site","Site 'From' address":"Site 'From' address","Site 'From' name":"Site 'From' name","Site Logo":"Site Logo","Site Setup":"Site Setup","Site language":"Site language","Site title":"Site title","Sitemap":"Sitemap","Sortable Title":"Sortable Title","Source":"Source","Submit":"Submit","Submit for publication":"Submit for publication","System group":"System group","System users":"System users","Tag":"Tag","Tags":"Tags","Tags are used for organization of content":"Tags are used for organization of content","Text search of an item's contents":"Text search of an item's contents","Text search of an item's title":"Text search of an item's title","The JSON representation of the object blocks information. Must be a JSON object.":"The JSON representation of the object blocks information. Must be a JSON object.","The JSON representation of the object blocks layout. Must be a JSON array.":"The JSON representation of the object blocks layout. Must be a JSON array.","The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.":"The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.","The content types that should be shown in the navigation and site map.":"The content types that should be shown in the navigation and site map.","The current day":"The current day","The date an item was created":"The date an item was created","The end date and time of an event":"The end date and time of an event","The following link takes you to a page where you can reset your password: {url}":"undefined","The item's title, transformed for sorting":"The item's title, transformed for sorting","The language of this item.":"The language of this item.","The language used for the content and the UI of this site.":"The language used for the content and the UI of this site.","The languages in which the site should be translatable.":"The languages in which the site should be translatable.","The location of an item":"The location of an item","The order of an item in its parent folder":"The order of an item in its parent folder","The password for the ESMTP user account.":"The password for the ESMTP user account.","The person that created an item":"The person that created an item","The port of your local SMTP (outgoing e-mail) server. Usually '25'.":"The port of your local SMTP (outgoing e-mail) server. Usually '25'.","The short name of an item (used in the url)":"The short name of an item (used in the url)","The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.":"The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.","The start date and time of an event":"The start date and time of an event","The time and date an item was expired":"The time and date an item was expired","The time and date an item was first published":"The time and date an item was first published","The time and date an item was last modified":"The time and date an item was last modified","The topic of this item.":"The topic of this item.","The user viewing the querystring results":"The user viewing the querystring results","This document is already locked by another user.":"This document is already locked by another user.","This is the contents of the robots.txt file.":"This is the contents of the robots.txt file.","This name will be displayed in the URL.":"This name will be displayed in the URL.","This shows a custom logo on your site.":"This shows a custom logo on your site.","This shows up in the title bar of browsers and in syndication feeds.":"This shows up in the title bar of browsers and in syndication feeds.","Tip: you can use * to autocomplete.":"Tip: you can use * to autocomplete.","Title":"Title","To, from and message are required fields.":"To, from and message are required fields.","Today":"Today","Transaction error.":"Transaction error.","Type":"Type","Type of the current document is not found.":"Type of the current document is not found.","Use '../' to navigate to parent objects.":"Use '../' to navigate to parent objects.","User doesn't exist or invalid credentials.":"User doesn't exist or invalid credentials.","User is not logged in.":"User is not logged in.","Username for authentication to your e-mail server. Not required unless you are using ESMTP.":"Username for authentication to your e-mail server. Not required unless you are using ESMTP.","Versioning":"Versioning","Versioning support":"Versioning support","View":"View","Visible to everyone, editable by the owner.":"Visible to everyone, editable by the owner.","Waiting to be reviewed, not editable by the owner.":"Waiting to be reviewed, not editable by the owner.","When this date is reached, the content will no longer be visible in listings and searches.":"When this date is reached, the content will no longer be visible in listings and searches.","Within last":"Within last","Within next":"Within next","Wrong login and/or password.":"Wrong login and/or password.","Yes":"Yes","You are not authorization to access this resource.":"You are not authorization to access this resource.","You can't delete system groups.":"You can't delete system groups.","You can't delete system users.":"You can't delete system users.","You don't have permission to save this document because it is locked by another user.":"You don't have permission to save this document because it is locked by another user.","You don't have permission to unlock this document.":"You don't have permission to unlock this document.","You don't have permissions to add a user.":"You don't have permissions to add a user.","boolean":"boolean"} \ No newline at end of file +{"A description of this item.":"defaultMessage:","A name given to this item.":"A name given to this item.","A related item from which this item is derived.":"A related item from which this item is derived.","Absolute path":"Absolute path","Accessibility":"Accessibility","Add":"Add","Add additional items to the navigation, one per line. In the format 'title|description|url'.":"Add additional items to the navigation, one per line. In the format 'title|description|url'.","Additional items":"Additional items","Adds effective and expiration dates.":"Adds effective and expiration dates.","Adds keywords and language fields.":"Adds keywords and language fields.","Adds ownership and rights fields.":"Adds ownership and rights fields.","Adds standard metadatafields":"Adds standard metadatafields","Adds title and description fields.":"Adds title and description fields.","Administrator":"Administrator","Administrators":"Administrators","After N days in the future":"After N days in the future","After date":"After date","After relative Date":"After relative Date","After the current day":"After the current day","After today":"After today","Already locked":"Already locked","An entity responsible for making this item available.":"An entity responsible for making this item available.","An item's description":"An item's description","An item's type (e.g. Event)":"An item's type (e.g. Event)","An item's workflow state (e.g.published)":"An item's workflow state (e.g.published)","Anonymous":"Anonymous","Authenticated":"Authenticated","Available languages":"Available languages","Basic metadata":"Basic metadata","Before N days in the past":"Before N days in the past","Before date":"Before date","Before relative Date":"Before relative Date","Before the current day":"Before the current day","Before today":"Before today","Between dates":"Between dates","Blocks":"Blocks","Blocks Layout":"Blocks Layout","Can only be seen and edited by the owner.":"Can only be seen and edited by the owner.","Categorization":"Categorization","Change Note":"Change Note","Contact":"Contact","Contains":"Contains","Contents":"Contents","Contributor":"Contributor","Copy":"Copy","Coverage":"Coverage","Creation date":"Creation date","Creator":"Creator","Current logged in user":"Current logged in user","Cut":"Cut","Dates":"Dates","Debug":"Debug","Default":"Default","Delete":"Delete","Description":"Description","Displayed content types":"Displayed content types","Document locked":"Document locked","Dublin Core metadata":"Dublin Core metadata","ESMTP password":"ESMTP password","ESMTP username":"ESMTP username","Edit":"Edit","Editor":"Editor","Effective date":"Effective date","Enables Volto Blocks support":"Enables Volto Blocks support","Enter a comment that describes the changes you made.":"Enter a comment that describes the changes you made.","Equals":"Equals","Event end date":"Event end date","Event start date":"Event start date","Exclude from navigation":"Exclude from navigation","Expiration Date":"Expiration Date","Expiration date":"Expiration date","File":"File","Find items related to the selected items":"Find items related to the selected items","Find items that can contain other objects":"Find items that can contain other objects","Folder":"Folder","Folder-like":"Folder-like","From and message are required fields.":"From and message are required fields.","Gives the ability to rename an item from its edit form.":"Gives the ability to rename an item from its edit form.","History":"History","Identifier":"Identifier","If enabled the mail is send to a test server.":"If enabled the mail is send to a test server.","If enabled the mail is send using a secure connection.":"If enabled the mail is send using a secure connection.","If selected, this item will not appear in the navigation tree.":"If selected, this item will not appear in the navigation tree.","If this date is in the future, the content will not show up in listings and searches until this date.":"If this date is in the future, the content will not show up in listings and searches until this date.","Image":"Image","Images can be referenced in pages or displayed in an album.":"Images can be referenced in pages or displayed in an album.","Information about rights held in and over this item.":"Information about rights held in and over this item.","Internal server error":"Internal server error","Invalid credentials":"Invalid credentials","Invalid session":"Invalid session","Is":"Is","Language":"Language","Languageroot":"Languageroot","Larger than":"Larger than","Layout":"Layout","Less than":"Less than","Lets you upload a file to the site.":"Lets you upload a file to the site.","Location":"Location","Location in the navigation structure":"Location in the navigation structure","Location in the site structure":"Location in the site structure","Log in":"Log in","Log out":"Log out","Login":"Login","Login and password must be provided in body.":"Login and password must be provided in body.","Logout":"Logout","Mail":"Mail","Manage Preferences":"Manage Preferences","Manage Site":"Manage Site","Manage Users":"Manage Users","Matches all of":"Matches all of","Matches any of":"Matches any of","Missing credentials":"Missing credentials","Modification date":"Modification date","Modify":"Modify","Navigation":"Navigation","Navigation path":"Navigation path","News":"News","No":"No","Not allowed":"Not allowed","Not found.":"Not found.","Order in folder":"Order in folder","Owner":"Owner","Ownership":"Ownership","Page":"Page","Password reset request":"Password reset request","Paste":"Paste","Pending review":"Pending review","Please enter the number in days.":"Please enter the number in days.","Please use YYYY/MM/DD.":"Please use YYYY/MM/DD.","Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.":"Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.","Plone generates e-mail using this name as the e-mail sender.":"Plone generates e-mail using this name as the e-mail sender.","Preferences":"Preferences","Preview Image Link":"Preview Image Link","Preview image":"Preview image","Preview image caption":"Preview image caption","Private":"Private","Publish":"Publish","Published":"Published","Publisher":"Publisher","Publishing Date":"Publishing Date","Reader":"Reader","Register":"Register","Related":"Related","Related Items":"Related Items","Related To":"Related To","Related resources.":"Related resources.","Relative path":"Relative path","Rename":"Rename","Required field(s) missing.":"Required field(s) missing.","Retract":"Retract","Review":"Review","Review state":"Review state","Reviewer":"Reviewer","Rights":"Rights","Robots.txt":"Robots.txt","Rules":"Rules","SMTP port":"SMTP port","SMTP server":"SMTP server","Searchable text":"Searchable text","Secure":"Secure","Select an image that will be used in listing and teaser blocks.":"Select an image that will be used in listing and teaser blocks.","Send back":"Send back","Settings":"Settings","Sharing":"Sharing","Short name":"Short name","Short name (id)":"Short name (id)","Simple Publication Workflow":"Simple Publication Workflow","Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.":"Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.","Site":"Site","Site 'From' address":"Site 'From' address","Site 'From' name":"Site 'From' name","Site Logo":"Site Logo","Site Setup":"Site Setup","Site language":"Site language","Site title":"Site title","Sitemap":"Sitemap","Sortable Title":"Sortable Title","Source":"Source","Submit":"Submit","Submit for publication":"Submit for publication","System group":"System group","System users":"System users","Tag":"Tag","Tags":"Tags","Tags are used for organization of content":"Tags are used for organization of content","Text search of an item's contents":"Text search of an item's contents","Text search of an item's title":"Text search of an item's title","The JSON representation of the object blocks information. Must be a JSON object.":"The JSON representation of the object blocks information. Must be a JSON object.","The JSON representation of the object blocks layout. Must be a JSON array.":"The JSON representation of the object blocks layout. Must be a JSON array.","The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.":"The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.","The content types that should be shown in the navigation and site map.":"The content types that should be shown in the navigation and site map.","The current day":"The current day","The date an item was created":"The date an item was created","The end date and time of an event":"The end date and time of an event","The following link takes you to a page where you can reset your password: {url}":"undefined","The item's title, transformed for sorting":"The item's title, transformed for sorting","The language of this item.":"The language of this item.","The language used for the content and the UI of this site.":"The language used for the content and the UI of this site.","The languages in which the site should be translatable.":"The languages in which the site should be translatable.","The location of an item":"The location of an item","The order of an item in its parent folder":"The order of an item in its parent folder","The password for the ESMTP user account.":"The password for the ESMTP user account.","The person that created an item":"The person that created an item","The port of your local SMTP (outgoing e-mail) server. Usually '25'.":"The port of your local SMTP (outgoing e-mail) server. Usually '25'.","The short name of an item (used in the url)":"The short name of an item (used in the url)","The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.":"The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.","The start date and time of an event":"The start date and time of an event","The time and date an item was expired":"The time and date an item was expired","The time and date an item was first published":"The time and date an item was first published","The time and date an item was last modified":"The time and date an item was last modified","The topic of this item.":"The topic of this item.","The user viewing the querystring results":"The user viewing the querystring results","This document is already locked by another user.":"This document is already locked by another user.","This is the contents of the robots.txt file.":"This is the contents of the robots.txt file.","This name will be displayed in the URL.":"This name will be displayed in the URL.","This shows a custom logo on your site.":"This shows a custom logo on your site.","This shows up in the title bar of browsers and in syndication feeds.":"This shows up in the title bar of browsers and in syndication feeds.","Tip: you can use * to autocomplete.":"Tip: you can use * to autocomplete.","Title":"Title","To, from and message are required fields.":"To, from and message are required fields.","Today":"Today","Transaction error.":"Transaction error.","Type":"Type","Type of the current document is not found.":"Type of the current document is not found.","Use '../' to navigate to parent objects.":"Use '../' to navigate to parent objects.","User doesn't exist or invalid credentials.":"User doesn't exist or invalid credentials.","User is not logged in.":"User is not logged in.","Username for authentication to your e-mail server. Not required unless you are using ESMTP.":"Username for authentication to your e-mail server. Not required unless you are using ESMTP.","Versioning":"Versioning","Versioning support":"Versioning support","View":"View","Visible to everyone, editable by the owner.":"Visible to everyone, editable by the owner.","Waiting to be reviewed, not editable by the owner.":"Waiting to be reviewed, not editable by the owner.","When this date is reached, the content will no longer be visible in listings and searches.":"When this date is reached, the content will no longer be visible in listings and searches.","Within last":"Within last","Within next":"Within next","Wrong login and/or password.":"Wrong login and/or password.","Yes":"Yes","You are not authorization to access this resource.":"You are not authorization to access this resource.","You can't delete system groups.":"You can't delete system groups.","You can't delete system users.":"You can't delete system users.","You don't have permission to save this document because it is locked by another user.":"You don't have permission to save this document because it is locked by another user.","You don't have permission to unlock this document.":"You don't have permission to unlock this document.","You don't have permissions to add a user.":"You don't have permissions to add a user.","boolean":"boolean"} \ No newline at end of file diff --git a/locales/en/LC_MESSAGES/nick.po b/locales/en/LC_MESSAGES/nick.po index 99886e7..a3bae70 100644 --- a/locales/en/LC_MESSAGES/nick.po +++ b/locales/en/LC_MESSAGES/nick.po @@ -17,16 +17,17 @@ msgstr "" "Domain: nick\n" #: src/profiles/core/behaviors/categorization.json:33 +#: src/profiles/core/behaviors/preview_image_link.json:22 #: src/profiles/core/catalog.json:58 #: src/profiles/core/catalog.json:64 #: src/profiles/core/catalog.json:70 #: src/profiles/core/catalog.json:235 #: src/profiles/core/catalog.json:254 #: src/profiles/core/catalog.json:273 -#: src/profiles/core/catalog.json:323 -#: src/profiles/core/catalog.json:342 +#: src/profiles/core/catalog.json:329 #: src/profiles/core/catalog.json:348 -#: src/profiles/core/catalog.json:467 +#: src/profiles/core/catalog.json:354 +#: src/profiles/core/catalog.json:473 #: src/profiles/core/types/file.json:18 #: src/profiles/core/types/folder.json:4 #: src/profiles/core/types/image.json:18 @@ -114,50 +115,50 @@ msgstr "" #: src/profiles/core/catalog.json:89 #: src/profiles/core/catalog.json:162 -#: src/profiles/core/catalog.json:492 -#: src/profiles/core/catalog.json:571 -#: src/profiles/core/catalog.json:644 -#: src/profiles/core/catalog.json:717 +#: src/profiles/core/catalog.json:498 +#: src/profiles/core/catalog.json:577 +#: src/profiles/core/catalog.json:650 +#: src/profiles/core/catalog.json:723 # defaultMessage: After N days in the future msgid "After N days in the future" msgstr "" #: src/profiles/core/catalog.json:118 #: src/profiles/core/catalog.json:191 -#: src/profiles/core/catalog.json:521 -#: src/profiles/core/catalog.json:600 -#: src/profiles/core/catalog.json:673 -#: src/profiles/core/catalog.json:746 +#: src/profiles/core/catalog.json:527 +#: src/profiles/core/catalog.json:606 +#: src/profiles/core/catalog.json:679 +#: src/profiles/core/catalog.json:752 # defaultMessage: After date msgid "After date" msgstr "" #: src/profiles/core/catalog.json:88 #: src/profiles/core/catalog.json:161 -#: src/profiles/core/catalog.json:491 -#: src/profiles/core/catalog.json:570 -#: src/profiles/core/catalog.json:643 -#: src/profiles/core/catalog.json:716 +#: src/profiles/core/catalog.json:497 +#: src/profiles/core/catalog.json:576 +#: src/profiles/core/catalog.json:649 +#: src/profiles/core/catalog.json:722 # defaultMessage: After relative Date msgid "After relative Date" msgstr "" #: src/profiles/core/catalog.json:95 #: src/profiles/core/catalog.json:168 -#: src/profiles/core/catalog.json:498 -#: src/profiles/core/catalog.json:577 -#: src/profiles/core/catalog.json:650 -#: src/profiles/core/catalog.json:723 +#: src/profiles/core/catalog.json:504 +#: src/profiles/core/catalog.json:583 +#: src/profiles/core/catalog.json:656 +#: src/profiles/core/catalog.json:729 # defaultMessage: After the current day msgid "After the current day" msgstr "" #: src/profiles/core/catalog.json:94 #: src/profiles/core/catalog.json:167 -#: src/profiles/core/catalog.json:497 -#: src/profiles/core/catalog.json:576 -#: src/profiles/core/catalog.json:649 -#: src/profiles/core/catalog.json:722 +#: src/profiles/core/catalog.json:503 +#: src/profiles/core/catalog.json:582 +#: src/profiles/core/catalog.json:655 +#: src/profiles/core/catalog.json:728 # defaultMessage: After today msgid "After today" msgstr "" @@ -178,12 +179,12 @@ msgstr "" msgid "An item's description" msgstr "" -#: src/profiles/core/catalog.json:422 +#: src/profiles/core/catalog.json:428 # defaultMessage: An item's type (e.g. Event) msgid "An item's type (e.g. Event)" msgstr "" -#: src/profiles/core/catalog.json:441 +#: src/profiles/core/catalog.json:447 # defaultMessage: An item's workflow state (e.g.published) msgid "An item's workflow state (e.g.published)" msgstr "" @@ -210,60 +211,60 @@ msgstr "" #: src/profiles/core/catalog.json:101 #: src/profiles/core/catalog.json:174 -#: src/profiles/core/catalog.json:504 -#: src/profiles/core/catalog.json:583 -#: src/profiles/core/catalog.json:656 -#: src/profiles/core/catalog.json:729 +#: src/profiles/core/catalog.json:510 +#: src/profiles/core/catalog.json:589 +#: src/profiles/core/catalog.json:662 +#: src/profiles/core/catalog.json:735 # defaultMessage: Before N days in the past msgid "Before N days in the past" msgstr "" #: src/profiles/core/catalog.json:130 #: src/profiles/core/catalog.json:203 -#: src/profiles/core/catalog.json:533 -#: src/profiles/core/catalog.json:612 -#: src/profiles/core/catalog.json:685 -#: src/profiles/core/catalog.json:758 +#: src/profiles/core/catalog.json:539 +#: src/profiles/core/catalog.json:618 +#: src/profiles/core/catalog.json:691 +#: src/profiles/core/catalog.json:764 # defaultMessage: Before date msgid "Before date" msgstr "" #: src/profiles/core/catalog.json:100 #: src/profiles/core/catalog.json:173 -#: src/profiles/core/catalog.json:503 -#: src/profiles/core/catalog.json:582 -#: src/profiles/core/catalog.json:655 -#: src/profiles/core/catalog.json:728 +#: src/profiles/core/catalog.json:509 +#: src/profiles/core/catalog.json:588 +#: src/profiles/core/catalog.json:661 +#: src/profiles/core/catalog.json:734 # defaultMessage: Before relative Date msgid "Before relative Date" msgstr "" #: src/profiles/core/catalog.json:107 #: src/profiles/core/catalog.json:180 -#: src/profiles/core/catalog.json:510 -#: src/profiles/core/catalog.json:589 -#: src/profiles/core/catalog.json:662 -#: src/profiles/core/catalog.json:735 +#: src/profiles/core/catalog.json:516 +#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:741 # defaultMessage: Before the current day msgid "Before the current day" msgstr "" #: src/profiles/core/catalog.json:106 #: src/profiles/core/catalog.json:179 -#: src/profiles/core/catalog.json:509 -#: src/profiles/core/catalog.json:588 -#: src/profiles/core/catalog.json:661 -#: src/profiles/core/catalog.json:734 +#: src/profiles/core/catalog.json:515 +#: src/profiles/core/catalog.json:594 +#: src/profiles/core/catalog.json:667 +#: src/profiles/core/catalog.json:740 # defaultMessage: Before today msgid "Before today" msgstr "" #: src/profiles/core/catalog.json:112 #: src/profiles/core/catalog.json:185 -#: src/profiles/core/catalog.json:515 -#: src/profiles/core/catalog.json:594 -#: src/profiles/core/catalog.json:667 -#: src/profiles/core/catalog.json:740 +#: src/profiles/core/catalog.json:521 +#: src/profiles/core/catalog.json:600 +#: src/profiles/core/catalog.json:673 +#: src/profiles/core/catalog.json:746 # defaultMessage: Between dates msgid "Between dates" msgstr "" @@ -303,7 +304,7 @@ msgstr "" #: src/profiles/core/catalog.json:234 #: src/profiles/core/catalog.json:253 #: src/profiles/core/catalog.json:272 -#: src/profiles/core/catalog.json:466 +#: src/profiles/core/catalog.json:472 # defaultMessage: Contains msgid "Contains" msgstr "" @@ -328,17 +329,17 @@ msgstr "" msgid "Coverage" msgstr "" -#: src/profiles/core/catalog.json:636 +#: src/profiles/core/catalog.json:642 # defaultMessage: Creation date msgid "Creation date" msgstr "" -#: src/profiles/core/catalog.json:390 +#: src/profiles/core/catalog.json:396 # defaultMessage: Creator msgid "Creator" msgstr "" -#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:409 # defaultMessage: Current logged in user msgid "Current logged in user" msgstr "" @@ -360,6 +361,7 @@ msgid "Debug" msgstr "" #: src/profiles/core/behaviors/basic.json:10 +#: src/profiles/core/behaviors/preview_image_link.json:10 #: src/profiles/core/behaviors/versioning.json:10 #: src/profiles/core/types/file.json:13 #: src/profiles/core/types/image.json:13 @@ -383,7 +385,7 @@ msgstr "" msgid "Displayed content types" msgstr "" -#: src/routes/content/content.js:565 +#: src/routes/content/content.js:571 #: src/routes/history/history.js:48 # defaultMessage: Document locked msgid "Document locked" @@ -414,7 +416,7 @@ msgstr "" msgid "Editor" msgstr "" -#: src/profiles/core/catalog.json:709 +#: src/profiles/core/catalog.json:715 # defaultMessage: Effective date msgid "Effective date" msgstr "" @@ -430,7 +432,7 @@ msgid "Enter a comment that describes the changes you made." msgstr "" #: src/profiles/core/catalog.json:57 -#: src/profiles/core/catalog.json:322 +#: src/profiles/core/catalog.json:328 # defaultMessage: Equals msgid "Equals" msgstr "" @@ -456,7 +458,7 @@ msgstr "" msgid "Expiration Date" msgstr "" -#: src/profiles/core/catalog.json:563 +#: src/profiles/core/catalog.json:569 # defaultMessage: Expiration date msgid "Expiration date" msgstr "" @@ -467,12 +469,12 @@ msgstr "" msgid "File" msgstr "" -#: src/profiles/core/catalog.json:316 +#: src/profiles/core/catalog.json:322 # defaultMessage: Find items related to the selected items msgid "Find items related to the selected items" msgstr "" -#: src/profiles/core/catalog.json:335 +#: src/profiles/core/catalog.json:341 # defaultMessage: Find items that can contain other objects msgid "Find items that can contain other objects" msgstr "" @@ -482,7 +484,7 @@ msgstr "" msgid "Folder" msgstr "" -#: src/profiles/core/catalog.json:334 +#: src/profiles/core/catalog.json:340 # defaultMessage: Folder-like msgid "Folder-like" msgstr "" @@ -493,6 +495,7 @@ msgstr "" msgid "From and message are required fields." msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:4 #: src/profiles/core/behaviors/short_name.json:4 # defaultMessage: Gives the ability to rename an item from its edit form. msgid "Gives the ability to rename an item from its edit form." @@ -545,7 +548,7 @@ msgstr "" msgid "Information about rights held in and over this item." msgstr "" -#: src/app.js:183 +#: src/app.js:184 # defaultMessage: Internal server error msgid "Internal server error" msgstr "" @@ -561,8 +564,8 @@ msgstr "" msgid "Invalid session" msgstr "" -#: src/profiles/core/catalog.json:378 -#: src/profiles/core/catalog.json:472 +#: src/profiles/core/catalog.json:384 +#: src/profiles/core/catalog.json:478 # defaultMessage: Is msgid "Is" msgstr "" @@ -664,9 +667,9 @@ msgid "Matches all of" msgstr "" #: src/profiles/core/catalog.json:299 -#: src/profiles/core/catalog.json:397 -#: src/profiles/core/catalog.json:428 -#: src/profiles/core/catalog.json:447 +#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:434 +#: src/profiles/core/catalog.json:453 # defaultMessage: Matches any of msgid "Matches any of" msgstr "" @@ -676,7 +679,7 @@ msgstr "" msgid "Missing credentials" msgstr "" -#: src/profiles/core/catalog.json:484 +#: src/profiles/core/catalog.json:490 # defaultMessage: Modification date msgid "Modification date" msgstr "" @@ -703,7 +706,7 @@ msgstr "" msgid "News" msgstr "" -#: src/profiles/core/catalog.json:341 +#: src/profiles/core/catalog.json:347 #: src/profiles/core/vocabularies/boolean.json:6 # defaultMessage: No msgid "No" @@ -714,7 +717,7 @@ msgstr "" msgid "Not allowed" msgstr "" -#: src/routes/controlpanels/controlpanels.js:31 +#: src/routes/controlpanels/controlpanels.js:32 #: src/routes/email/email.js:52 #: src/routes/groups/groups.js:26 #: src/routes/types/types.js:32 @@ -765,14 +768,14 @@ msgstr "" #: src/profiles/core/catalog.json:137 #: src/profiles/core/catalog.json:198 #: src/profiles/core/catalog.json:210 -#: src/profiles/core/catalog.json:528 -#: src/profiles/core/catalog.json:540 -#: src/profiles/core/catalog.json:607 -#: src/profiles/core/catalog.json:619 -#: src/profiles/core/catalog.json:680 -#: src/profiles/core/catalog.json:692 -#: src/profiles/core/catalog.json:753 -#: src/profiles/core/catalog.json:765 +#: src/profiles/core/catalog.json:534 +#: src/profiles/core/catalog.json:546 +#: src/profiles/core/catalog.json:613 +#: src/profiles/core/catalog.json:625 +#: src/profiles/core/catalog.json:686 +#: src/profiles/core/catalog.json:698 +#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:771 # defaultMessage: Please enter the number in days. msgid "Please enter the number in days." msgstr "" @@ -783,18 +786,18 @@ msgstr "" #: src/profiles/core/catalog.json:186 #: src/profiles/core/catalog.json:192 #: src/profiles/core/catalog.json:204 -#: src/profiles/core/catalog.json:516 #: src/profiles/core/catalog.json:522 -#: src/profiles/core/catalog.json:534 -#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:528 +#: src/profiles/core/catalog.json:540 #: src/profiles/core/catalog.json:601 -#: src/profiles/core/catalog.json:613 -#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:607 +#: src/profiles/core/catalog.json:619 #: src/profiles/core/catalog.json:674 -#: src/profiles/core/catalog.json:686 -#: src/profiles/core/catalog.json:741 +#: src/profiles/core/catalog.json:680 +#: src/profiles/core/catalog.json:692 #: src/profiles/core/catalog.json:747 -#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:753 +#: src/profiles/core/catalog.json:765 # defaultMessage: Please use YYYY/MM/DD. msgid "Please use YYYY/MM/DD." msgstr "" @@ -814,6 +817,21 @@ msgstr "" msgid "Preferences" msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:3 +# defaultMessage: Preview Image Link +msgid "Preview Image Link" +msgstr "" + +#: src/profiles/core/behaviors/preview_image_link.json:15 +# defaultMessage: Preview image +msgid "Preview image" +msgstr "" + +#: src/profiles/core/behaviors/preview_image_link.json:23 +# defaultMessage: Preview image caption +msgid "Preview image caption" +msgstr "" + #: src/profiles/core/workflows.json:12 # defaultMessage: Private msgid "Private" @@ -860,7 +878,7 @@ msgstr "" msgid "Related Items" msgstr "" -#: src/profiles/core/catalog.json:315 +#: src/profiles/core/catalog.json:321 # defaultMessage: Related To msgid "Related To" msgstr "" @@ -880,7 +898,7 @@ msgstr "" msgid "Rename" msgstr "" -#: src/routes/content/content.js:403 +#: src/routes/content/content.js:409 # defaultMessage: Required field(s) missing. msgid "Required field(s) missing." msgstr "" @@ -895,7 +913,7 @@ msgstr "" msgid "Review" msgstr "" -#: src/profiles/core/catalog.json:440 +#: src/profiles/core/catalog.json:446 # defaultMessage: Review state msgid "Review state" msgstr "" @@ -940,6 +958,11 @@ msgstr "" msgid "Secure" msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:16 +# defaultMessage: Select an image that will be used in listing and teaser blocks. +msgid "Select an image that will be used in listing and teaser blocks." +msgstr "" + #: src/profiles/core/workflows.json:52 # defaultMessage: Send back msgid "Send back" @@ -961,7 +984,7 @@ msgstr "" msgid "Short name" msgstr "" -#: src/profiles/core/catalog.json:371 +#: src/profiles/core/catalog.json:377 # defaultMessage: Short name (id) msgid "Short name (id)" msgstr "" @@ -1017,7 +1040,7 @@ msgstr "" msgid "Sitemap" msgstr "" -#: src/profiles/core/catalog.json:459 +#: src/profiles/core/catalog.json:465 # defaultMessage: Sortable Title msgid "Sortable Title" msgstr "" @@ -1094,15 +1117,15 @@ msgstr "" #: src/profiles/core/catalog.json:143 #: src/profiles/core/catalog.json:216 -#: src/profiles/core/catalog.json:546 -#: src/profiles/core/catalog.json:625 -#: src/profiles/core/catalog.json:698 -#: src/profiles/core/catalog.json:771 +#: src/profiles/core/catalog.json:552 +#: src/profiles/core/catalog.json:631 +#: src/profiles/core/catalog.json:704 +#: src/profiles/core/catalog.json:777 # defaultMessage: The current day msgid "The current day" msgstr "" -#: src/profiles/core/catalog.json:637 +#: src/profiles/core/catalog.json:643 # defaultMessage: The date an item was created msgid "The date an item was created" msgstr "" @@ -1118,7 +1141,7 @@ msgstr "" msgid "The following link takes you to a page where you can reset your password: {url}" msgstr "" -#: src/profiles/core/catalog.json:460 +#: src/profiles/core/catalog.json:466 # defaultMessage: The item's title, transformed for sorting msgid "The item's title, transformed for sorting" msgstr "" @@ -1153,7 +1176,7 @@ msgstr "" msgid "The password for the ESMTP user account." msgstr "" -#: src/profiles/core/catalog.json:391 +#: src/profiles/core/catalog.json:397 # defaultMessage: The person that created an item msgid "The person that created an item" msgstr "" @@ -1163,7 +1186,7 @@ msgstr "" msgid "The port of your local SMTP (outgoing e-mail) server. Usually '25'." msgstr "" -#: src/profiles/core/catalog.json:372 +#: src/profiles/core/catalog.json:378 # defaultMessage: The short name of an item (used in the url) msgid "The short name of an item (used in the url)" msgstr "" @@ -1178,17 +1201,17 @@ msgstr "" msgid "The start date and time of an event" msgstr "" -#: src/profiles/core/catalog.json:564 +#: src/profiles/core/catalog.json:570 # defaultMessage: The time and date an item was expired msgid "The time and date an item was expired" msgstr "" -#: src/profiles/core/catalog.json:710 +#: src/profiles/core/catalog.json:716 # defaultMessage: The time and date an item was first published msgid "The time and date an item was first published" msgstr "" -#: src/profiles/core/catalog.json:485 +#: src/profiles/core/catalog.json:491 # defaultMessage: The time and date an item was last modified msgid "The time and date an item was last modified" msgstr "" @@ -1198,7 +1221,7 @@ msgstr "" msgid "The topic of this item." msgstr "" -#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:410 # defaultMessage: The user viewing the querystring results msgid "The user viewing the querystring results" msgstr "" @@ -1231,11 +1254,11 @@ msgstr "" #: src/profiles/core/catalog.json:291 #: src/profiles/core/catalog.json:297 -#: src/profiles/core/catalog.json:379 -#: src/profiles/core/catalog.json:398 -#: src/profiles/core/catalog.json:429 -#: src/profiles/core/catalog.json:448 -#: src/profiles/core/catalog.json:473 +#: src/profiles/core/catalog.json:385 +#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:435 +#: src/profiles/core/catalog.json:454 +#: src/profiles/core/catalog.json:479 # defaultMessage: Tip: you can use * to autocomplete. msgid "Tip: you can use * to autocomplete." msgstr "" @@ -1253,25 +1276,25 @@ msgstr "" #: src/profiles/core/catalog.json:142 #: src/profiles/core/catalog.json:215 -#: src/profiles/core/catalog.json:545 -#: src/profiles/core/catalog.json:624 -#: src/profiles/core/catalog.json:697 -#: src/profiles/core/catalog.json:770 +#: src/profiles/core/catalog.json:551 +#: src/profiles/core/catalog.json:630 +#: src/profiles/core/catalog.json:703 +#: src/profiles/core/catalog.json:776 # defaultMessage: Today msgid "Today" msgstr "" -#: src/app.js:139 +#: src/app.js:140 # defaultMessage: Transaction error. msgid "Transaction error." msgstr "" -#: src/profiles/core/catalog.json:421 +#: src/profiles/core/catalog.json:427 # defaultMessage: Type msgid "Type" msgstr "" -#: src/app.js:100 +#: src/app.js:101 # defaultMessage: Type of the current document is not found. msgid "Type of the current document is not found." msgstr "" @@ -1329,20 +1352,20 @@ msgstr "" #: src/profiles/core/catalog.json:124 #: src/profiles/core/catalog.json:197 -#: src/profiles/core/catalog.json:527 -#: src/profiles/core/catalog.json:606 -#: src/profiles/core/catalog.json:679 -#: src/profiles/core/catalog.json:752 +#: src/profiles/core/catalog.json:533 +#: src/profiles/core/catalog.json:612 +#: src/profiles/core/catalog.json:685 +#: src/profiles/core/catalog.json:758 # defaultMessage: Within last msgid "Within last" msgstr "" #: src/profiles/core/catalog.json:136 #: src/profiles/core/catalog.json:209 -#: src/profiles/core/catalog.json:539 -#: src/profiles/core/catalog.json:618 -#: src/profiles/core/catalog.json:691 -#: src/profiles/core/catalog.json:764 +#: src/profiles/core/catalog.json:545 +#: src/profiles/core/catalog.json:624 +#: src/profiles/core/catalog.json:697 +#: src/profiles/core/catalog.json:770 # defaultMessage: Within next msgid "Within next" msgstr "" @@ -1353,13 +1376,13 @@ msgstr "" msgid "Wrong login and/or password." msgstr "" -#: src/profiles/core/catalog.json:347 +#: src/profiles/core/catalog.json:353 #: src/profiles/core/vocabularies/boolean.json:5 # defaultMessage: Yes msgid "Yes" msgstr "" -#: src/app.js:125 +#: src/app.js:126 #: src/routes/workflow/workflow.js:32 # defaultMessage: You are not authorization to access this resource. msgid "You are not authorization to access this resource." @@ -1375,7 +1398,7 @@ msgstr "" msgid "You can't delete system users." msgstr "" -#: src/routes/content/content.js:562 +#: src/routes/content/content.js:568 #: src/routes/history/history.js:45 # defaultMessage: You don't have permission to save this document because it is locked by another user. msgid "You don't have permission to save this document because it is locked by another user." diff --git a/locales/nick.pot b/locales/nick.pot index 4d6b57a..ace3657 100644 --- a/locales/nick.pot +++ b/locales/nick.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Nick\n" -"POT-Creation-Date: 2024-12-01T16:28:13.317Z\n" +"POT-Creation-Date: 2024-12-02T10:02:14.680Z\n" "Last-Translator: Rob Gietema\n" "Language-Team: Nick\n" "MIME-Version: 1.0\n" @@ -14,16 +14,17 @@ msgstr "" "Domain: nick\n" #: src/profiles/core/behaviors/categorization.json:33 +#: src/profiles/core/behaviors/preview_image_link.json:22 #: src/profiles/core/catalog.json:58 #: src/profiles/core/catalog.json:64 #: src/profiles/core/catalog.json:70 #: src/profiles/core/catalog.json:235 #: src/profiles/core/catalog.json:254 #: src/profiles/core/catalog.json:273 -#: src/profiles/core/catalog.json:323 -#: src/profiles/core/catalog.json:342 +#: src/profiles/core/catalog.json:329 #: src/profiles/core/catalog.json:348 -#: src/profiles/core/catalog.json:467 +#: src/profiles/core/catalog.json:354 +#: src/profiles/core/catalog.json:473 #: src/profiles/core/types/file.json:18 #: src/profiles/core/types/folder.json:4 #: src/profiles/core/types/image.json:18 @@ -114,50 +115,50 @@ msgstr "" #: src/profiles/core/catalog.json:89 #: src/profiles/core/catalog.json:162 -#: src/profiles/core/catalog.json:492 -#: src/profiles/core/catalog.json:571 -#: src/profiles/core/catalog.json:644 -#: src/profiles/core/catalog.json:717 +#: src/profiles/core/catalog.json:498 +#: src/profiles/core/catalog.json:577 +#: src/profiles/core/catalog.json:650 +#: src/profiles/core/catalog.json:723 # defaultMessage: After N days in the future msgid "After N days in the future" msgstr "" #: src/profiles/core/catalog.json:118 #: src/profiles/core/catalog.json:191 -#: src/profiles/core/catalog.json:521 -#: src/profiles/core/catalog.json:600 -#: src/profiles/core/catalog.json:673 -#: src/profiles/core/catalog.json:746 +#: src/profiles/core/catalog.json:527 +#: src/profiles/core/catalog.json:606 +#: src/profiles/core/catalog.json:679 +#: src/profiles/core/catalog.json:752 # defaultMessage: After date msgid "After date" msgstr "" #: src/profiles/core/catalog.json:88 #: src/profiles/core/catalog.json:161 -#: src/profiles/core/catalog.json:491 -#: src/profiles/core/catalog.json:570 -#: src/profiles/core/catalog.json:643 -#: src/profiles/core/catalog.json:716 +#: src/profiles/core/catalog.json:497 +#: src/profiles/core/catalog.json:576 +#: src/profiles/core/catalog.json:649 +#: src/profiles/core/catalog.json:722 # defaultMessage: After relative Date msgid "After relative Date" msgstr "" #: src/profiles/core/catalog.json:95 #: src/profiles/core/catalog.json:168 -#: src/profiles/core/catalog.json:498 -#: src/profiles/core/catalog.json:577 -#: src/profiles/core/catalog.json:650 -#: src/profiles/core/catalog.json:723 +#: src/profiles/core/catalog.json:504 +#: src/profiles/core/catalog.json:583 +#: src/profiles/core/catalog.json:656 +#: src/profiles/core/catalog.json:729 # defaultMessage: After the current day msgid "After the current day" msgstr "" #: src/profiles/core/catalog.json:94 #: src/profiles/core/catalog.json:167 -#: src/profiles/core/catalog.json:497 -#: src/profiles/core/catalog.json:576 -#: src/profiles/core/catalog.json:649 -#: src/profiles/core/catalog.json:722 +#: src/profiles/core/catalog.json:503 +#: src/profiles/core/catalog.json:582 +#: src/profiles/core/catalog.json:655 +#: src/profiles/core/catalog.json:728 # defaultMessage: After today msgid "After today" msgstr "" @@ -178,12 +179,12 @@ msgstr "" msgid "An item's description" msgstr "" -#: src/profiles/core/catalog.json:422 +#: src/profiles/core/catalog.json:428 # defaultMessage: An item's type (e.g. Event) msgid "An item's type (e.g. Event)" msgstr "" -#: src/profiles/core/catalog.json:441 +#: src/profiles/core/catalog.json:447 # defaultMessage: An item's workflow state (e.g.published) msgid "An item's workflow state (e.g.published)" msgstr "" @@ -210,60 +211,60 @@ msgstr "" #: src/profiles/core/catalog.json:101 #: src/profiles/core/catalog.json:174 -#: src/profiles/core/catalog.json:504 -#: src/profiles/core/catalog.json:583 -#: src/profiles/core/catalog.json:656 -#: src/profiles/core/catalog.json:729 +#: src/profiles/core/catalog.json:510 +#: src/profiles/core/catalog.json:589 +#: src/profiles/core/catalog.json:662 +#: src/profiles/core/catalog.json:735 # defaultMessage: Before N days in the past msgid "Before N days in the past" msgstr "" #: src/profiles/core/catalog.json:130 #: src/profiles/core/catalog.json:203 -#: src/profiles/core/catalog.json:533 -#: src/profiles/core/catalog.json:612 -#: src/profiles/core/catalog.json:685 -#: src/profiles/core/catalog.json:758 +#: src/profiles/core/catalog.json:539 +#: src/profiles/core/catalog.json:618 +#: src/profiles/core/catalog.json:691 +#: src/profiles/core/catalog.json:764 # defaultMessage: Before date msgid "Before date" msgstr "" #: src/profiles/core/catalog.json:100 #: src/profiles/core/catalog.json:173 -#: src/profiles/core/catalog.json:503 -#: src/profiles/core/catalog.json:582 -#: src/profiles/core/catalog.json:655 -#: src/profiles/core/catalog.json:728 +#: src/profiles/core/catalog.json:509 +#: src/profiles/core/catalog.json:588 +#: src/profiles/core/catalog.json:661 +#: src/profiles/core/catalog.json:734 # defaultMessage: Before relative Date msgid "Before relative Date" msgstr "" #: src/profiles/core/catalog.json:107 #: src/profiles/core/catalog.json:180 -#: src/profiles/core/catalog.json:510 -#: src/profiles/core/catalog.json:589 -#: src/profiles/core/catalog.json:662 -#: src/profiles/core/catalog.json:735 +#: src/profiles/core/catalog.json:516 +#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:741 # defaultMessage: Before the current day msgid "Before the current day" msgstr "" #: src/profiles/core/catalog.json:106 #: src/profiles/core/catalog.json:179 -#: src/profiles/core/catalog.json:509 -#: src/profiles/core/catalog.json:588 -#: src/profiles/core/catalog.json:661 -#: src/profiles/core/catalog.json:734 +#: src/profiles/core/catalog.json:515 +#: src/profiles/core/catalog.json:594 +#: src/profiles/core/catalog.json:667 +#: src/profiles/core/catalog.json:740 # defaultMessage: Before today msgid "Before today" msgstr "" #: src/profiles/core/catalog.json:112 #: src/profiles/core/catalog.json:185 -#: src/profiles/core/catalog.json:515 -#: src/profiles/core/catalog.json:594 -#: src/profiles/core/catalog.json:667 -#: src/profiles/core/catalog.json:740 +#: src/profiles/core/catalog.json:521 +#: src/profiles/core/catalog.json:600 +#: src/profiles/core/catalog.json:673 +#: src/profiles/core/catalog.json:746 # defaultMessage: Between dates msgid "Between dates" msgstr "" @@ -303,7 +304,7 @@ msgstr "" #: src/profiles/core/catalog.json:234 #: src/profiles/core/catalog.json:253 #: src/profiles/core/catalog.json:272 -#: src/profiles/core/catalog.json:466 +#: src/profiles/core/catalog.json:472 # defaultMessage: Contains msgid "Contains" msgstr "" @@ -328,17 +329,17 @@ msgstr "" msgid "Coverage" msgstr "" -#: src/profiles/core/catalog.json:636 +#: src/profiles/core/catalog.json:642 # defaultMessage: Creation date msgid "Creation date" msgstr "" -#: src/profiles/core/catalog.json:390 +#: src/profiles/core/catalog.json:396 # defaultMessage: Creator msgid "Creator" msgstr "" -#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:409 # defaultMessage: Current logged in user msgid "Current logged in user" msgstr "" @@ -360,6 +361,7 @@ msgid "Debug" msgstr "" #: src/profiles/core/behaviors/basic.json:10 +#: src/profiles/core/behaviors/preview_image_link.json:10 #: src/profiles/core/behaviors/versioning.json:10 #: src/profiles/core/types/file.json:13 #: src/profiles/core/types/image.json:13 @@ -383,7 +385,7 @@ msgstr "" msgid "Displayed content types" msgstr "" -#: src/routes/content/content.js:565 +#: src/routes/content/content.js:571 #: src/routes/history/history.js:48 # defaultMessage: Document locked msgid "Document locked" @@ -414,7 +416,7 @@ msgstr "" msgid "Editor" msgstr "" -#: src/profiles/core/catalog.json:709 +#: src/profiles/core/catalog.json:715 # defaultMessage: Effective date msgid "Effective date" msgstr "" @@ -430,7 +432,7 @@ msgid "Enter a comment that describes the changes you made." msgstr "" #: src/profiles/core/catalog.json:57 -#: src/profiles/core/catalog.json:322 +#: src/profiles/core/catalog.json:328 # defaultMessage: Equals msgid "Equals" msgstr "" @@ -456,7 +458,7 @@ msgstr "" msgid "Expiration Date" msgstr "" -#: src/profiles/core/catalog.json:563 +#: src/profiles/core/catalog.json:569 # defaultMessage: Expiration date msgid "Expiration date" msgstr "" @@ -467,12 +469,12 @@ msgstr "" msgid "File" msgstr "" -#: src/profiles/core/catalog.json:316 +#: src/profiles/core/catalog.json:322 # defaultMessage: Find items related to the selected items msgid "Find items related to the selected items" msgstr "" -#: src/profiles/core/catalog.json:335 +#: src/profiles/core/catalog.json:341 # defaultMessage: Find items that can contain other objects msgid "Find items that can contain other objects" msgstr "" @@ -482,7 +484,7 @@ msgstr "" msgid "Folder" msgstr "" -#: src/profiles/core/catalog.json:334 +#: src/profiles/core/catalog.json:340 # defaultMessage: Folder-like msgid "Folder-like" msgstr "" @@ -493,6 +495,7 @@ msgstr "" msgid "From and message are required fields." msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:4 #: src/profiles/core/behaviors/short_name.json:4 # defaultMessage: Gives the ability to rename an item from its edit form. msgid "Gives the ability to rename an item from its edit form." @@ -545,7 +548,7 @@ msgstr "" msgid "Information about rights held in and over this item." msgstr "" -#: src/app.js:183 +#: src/app.js:184 # defaultMessage: Internal server error msgid "Internal server error" msgstr "" @@ -561,8 +564,8 @@ msgstr "" msgid "Invalid session" msgstr "" -#: src/profiles/core/catalog.json:378 -#: src/profiles/core/catalog.json:472 +#: src/profiles/core/catalog.json:384 +#: src/profiles/core/catalog.json:478 # defaultMessage: Is msgid "Is" msgstr "" @@ -664,9 +667,9 @@ msgid "Matches all of" msgstr "" #: src/profiles/core/catalog.json:299 -#: src/profiles/core/catalog.json:397 -#: src/profiles/core/catalog.json:428 -#: src/profiles/core/catalog.json:447 +#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:434 +#: src/profiles/core/catalog.json:453 # defaultMessage: Matches any of msgid "Matches any of" msgstr "" @@ -676,7 +679,7 @@ msgstr "" msgid "Missing credentials" msgstr "" -#: src/profiles/core/catalog.json:484 +#: src/profiles/core/catalog.json:490 # defaultMessage: Modification date msgid "Modification date" msgstr "" @@ -703,7 +706,7 @@ msgstr "" msgid "News" msgstr "" -#: src/profiles/core/catalog.json:341 +#: src/profiles/core/catalog.json:347 #: src/profiles/core/vocabularies/boolean.json:6 # defaultMessage: No msgid "No" @@ -714,7 +717,7 @@ msgstr "" msgid "Not allowed" msgstr "" -#: src/routes/controlpanels/controlpanels.js:31 +#: src/routes/controlpanels/controlpanels.js:32 #: src/routes/email/email.js:52 #: src/routes/groups/groups.js:26 #: src/routes/types/types.js:32 @@ -765,14 +768,14 @@ msgstr "" #: src/profiles/core/catalog.json:137 #: src/profiles/core/catalog.json:198 #: src/profiles/core/catalog.json:210 -#: src/profiles/core/catalog.json:528 -#: src/profiles/core/catalog.json:540 -#: src/profiles/core/catalog.json:607 -#: src/profiles/core/catalog.json:619 -#: src/profiles/core/catalog.json:680 -#: src/profiles/core/catalog.json:692 -#: src/profiles/core/catalog.json:753 -#: src/profiles/core/catalog.json:765 +#: src/profiles/core/catalog.json:534 +#: src/profiles/core/catalog.json:546 +#: src/profiles/core/catalog.json:613 +#: src/profiles/core/catalog.json:625 +#: src/profiles/core/catalog.json:686 +#: src/profiles/core/catalog.json:698 +#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:771 # defaultMessage: Please enter the number in days. msgid "Please enter the number in days." msgstr "" @@ -783,18 +786,18 @@ msgstr "" #: src/profiles/core/catalog.json:186 #: src/profiles/core/catalog.json:192 #: src/profiles/core/catalog.json:204 -#: src/profiles/core/catalog.json:516 #: src/profiles/core/catalog.json:522 -#: src/profiles/core/catalog.json:534 -#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:528 +#: src/profiles/core/catalog.json:540 #: src/profiles/core/catalog.json:601 -#: src/profiles/core/catalog.json:613 -#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:607 +#: src/profiles/core/catalog.json:619 #: src/profiles/core/catalog.json:674 -#: src/profiles/core/catalog.json:686 -#: src/profiles/core/catalog.json:741 +#: src/profiles/core/catalog.json:680 +#: src/profiles/core/catalog.json:692 #: src/profiles/core/catalog.json:747 -#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:753 +#: src/profiles/core/catalog.json:765 # defaultMessage: Please use YYYY/MM/DD. msgid "Please use YYYY/MM/DD." msgstr "" @@ -814,6 +817,21 @@ msgstr "" msgid "Preferences" msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:3 +# defaultMessage: Preview Image Link +msgid "Preview Image Link" +msgstr "" + +#: src/profiles/core/behaviors/preview_image_link.json:15 +# defaultMessage: Preview image +msgid "Preview image" +msgstr "" + +#: src/profiles/core/behaviors/preview_image_link.json:23 +# defaultMessage: Preview image caption +msgid "Preview image caption" +msgstr "" + #: src/profiles/core/workflows.json:12 # defaultMessage: Private msgid "Private" @@ -860,7 +878,7 @@ msgstr "" msgid "Related Items" msgstr "" -#: src/profiles/core/catalog.json:315 +#: src/profiles/core/catalog.json:321 # defaultMessage: Related To msgid "Related To" msgstr "" @@ -880,7 +898,7 @@ msgstr "" msgid "Rename" msgstr "" -#: src/routes/content/content.js:403 +#: src/routes/content/content.js:409 # defaultMessage: Required field(s) missing. msgid "Required field(s) missing." msgstr "" @@ -895,7 +913,7 @@ msgstr "" msgid "Review" msgstr "" -#: src/profiles/core/catalog.json:440 +#: src/profiles/core/catalog.json:446 # defaultMessage: Review state msgid "Review state" msgstr "" @@ -940,6 +958,11 @@ msgstr "" msgid "Secure" msgstr "" +#: src/profiles/core/behaviors/preview_image_link.json:16 +# defaultMessage: Select an image that will be used in listing and teaser blocks. +msgid "Select an image that will be used in listing and teaser blocks." +msgstr "" + #: src/profiles/core/workflows.json:52 # defaultMessage: Send back msgid "Send back" @@ -961,7 +984,7 @@ msgstr "" msgid "Short name" msgstr "" -#: src/profiles/core/catalog.json:371 +#: src/profiles/core/catalog.json:377 # defaultMessage: Short name (id) msgid "Short name (id)" msgstr "" @@ -1017,7 +1040,7 @@ msgstr "" msgid "Sitemap" msgstr "" -#: src/profiles/core/catalog.json:459 +#: src/profiles/core/catalog.json:465 # defaultMessage: Sortable Title msgid "Sortable Title" msgstr "" @@ -1094,15 +1117,15 @@ msgstr "" #: src/profiles/core/catalog.json:143 #: src/profiles/core/catalog.json:216 -#: src/profiles/core/catalog.json:546 -#: src/profiles/core/catalog.json:625 -#: src/profiles/core/catalog.json:698 -#: src/profiles/core/catalog.json:771 +#: src/profiles/core/catalog.json:552 +#: src/profiles/core/catalog.json:631 +#: src/profiles/core/catalog.json:704 +#: src/profiles/core/catalog.json:777 # defaultMessage: The current day msgid "The current day" msgstr "" -#: src/profiles/core/catalog.json:637 +#: src/profiles/core/catalog.json:643 # defaultMessage: The date an item was created msgid "The date an item was created" msgstr "" @@ -1120,7 +1143,7 @@ msgid "The following link takes you to a page where you can reset your password: (This link will expire in 7 days)" msgstr "" -#: src/profiles/core/catalog.json:460 +#: src/profiles/core/catalog.json:466 # defaultMessage: The item's title, transformed for sorting msgid "The item's title, transformed for sorting" msgstr "" @@ -1155,7 +1178,7 @@ msgstr "" msgid "The password for the ESMTP user account." msgstr "" -#: src/profiles/core/catalog.json:391 +#: src/profiles/core/catalog.json:397 # defaultMessage: The person that created an item msgid "The person that created an item" msgstr "" @@ -1165,7 +1188,7 @@ msgstr "" msgid "The port of your local SMTP (outgoing e-mail) server. Usually '25'." msgstr "" -#: src/profiles/core/catalog.json:372 +#: src/profiles/core/catalog.json:378 # defaultMessage: The short name of an item (used in the url) msgid "The short name of an item (used in the url)" msgstr "" @@ -1180,17 +1203,17 @@ msgstr "" msgid "The start date and time of an event" msgstr "" -#: src/profiles/core/catalog.json:564 +#: src/profiles/core/catalog.json:570 # defaultMessage: The time and date an item was expired msgid "The time and date an item was expired" msgstr "" -#: src/profiles/core/catalog.json:710 +#: src/profiles/core/catalog.json:716 # defaultMessage: The time and date an item was first published msgid "The time and date an item was first published" msgstr "" -#: src/profiles/core/catalog.json:485 +#: src/profiles/core/catalog.json:491 # defaultMessage: The time and date an item was last modified msgid "The time and date an item was last modified" msgstr "" @@ -1200,7 +1223,7 @@ msgstr "" msgid "The topic of this item." msgstr "" -#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:410 # defaultMessage: The user viewing the querystring results msgid "The user viewing the querystring results" msgstr "" @@ -1233,11 +1256,11 @@ msgstr "" #: src/profiles/core/catalog.json:291 #: src/profiles/core/catalog.json:297 -#: src/profiles/core/catalog.json:379 -#: src/profiles/core/catalog.json:398 -#: src/profiles/core/catalog.json:429 -#: src/profiles/core/catalog.json:448 -#: src/profiles/core/catalog.json:473 +#: src/profiles/core/catalog.json:385 +#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:435 +#: src/profiles/core/catalog.json:454 +#: src/profiles/core/catalog.json:479 # defaultMessage: Tip: you can use * to autocomplete. msgid "Tip: you can use * to autocomplete." msgstr "" @@ -1255,25 +1278,25 @@ msgstr "" #: src/profiles/core/catalog.json:142 #: src/profiles/core/catalog.json:215 -#: src/profiles/core/catalog.json:545 -#: src/profiles/core/catalog.json:624 -#: src/profiles/core/catalog.json:697 -#: src/profiles/core/catalog.json:770 +#: src/profiles/core/catalog.json:551 +#: src/profiles/core/catalog.json:630 +#: src/profiles/core/catalog.json:703 +#: src/profiles/core/catalog.json:776 # defaultMessage: Today msgid "Today" msgstr "" -#: src/app.js:139 +#: src/app.js:140 # defaultMessage: Transaction error. msgid "Transaction error." msgstr "" -#: src/profiles/core/catalog.json:421 +#: src/profiles/core/catalog.json:427 # defaultMessage: Type msgid "Type" msgstr "" -#: src/app.js:100 +#: src/app.js:101 # defaultMessage: Type of the current document is not found. msgid "Type of the current document is not found." msgstr "" @@ -1331,20 +1354,20 @@ msgstr "" #: src/profiles/core/catalog.json:124 #: src/profiles/core/catalog.json:197 -#: src/profiles/core/catalog.json:527 -#: src/profiles/core/catalog.json:606 -#: src/profiles/core/catalog.json:679 -#: src/profiles/core/catalog.json:752 +#: src/profiles/core/catalog.json:533 +#: src/profiles/core/catalog.json:612 +#: src/profiles/core/catalog.json:685 +#: src/profiles/core/catalog.json:758 # defaultMessage: Within last msgid "Within last" msgstr "" #: src/profiles/core/catalog.json:136 #: src/profiles/core/catalog.json:209 -#: src/profiles/core/catalog.json:539 -#: src/profiles/core/catalog.json:618 -#: src/profiles/core/catalog.json:691 -#: src/profiles/core/catalog.json:764 +#: src/profiles/core/catalog.json:545 +#: src/profiles/core/catalog.json:624 +#: src/profiles/core/catalog.json:697 +#: src/profiles/core/catalog.json:770 # defaultMessage: Within next msgid "Within next" msgstr "" @@ -1355,13 +1378,13 @@ msgstr "" msgid "Wrong login and/or password." msgstr "" -#: src/profiles/core/catalog.json:347 +#: src/profiles/core/catalog.json:353 #: src/profiles/core/vocabularies/boolean.json:5 # defaultMessage: Yes msgid "Yes" msgstr "" -#: src/app.js:125 +#: src/app.js:126 #: src/routes/workflow/workflow.js:32 # defaultMessage: You are not authorization to access this resource. msgid "You are not authorization to access this resource." @@ -1377,7 +1400,7 @@ msgstr "" msgid "You can't delete system users." msgstr "" -#: src/routes/content/content.js:562 +#: src/routes/content/content.js:568 #: src/routes/history/history.js:45 # defaultMessage: You don't have permission to save this document because it is locked by another user. msgid "You don't have permission to save this document because it is locked by another user." diff --git a/locales/nl.json b/locales/nl.json index 49c5899..747e8c6 100644 --- a/locales/nl.json +++ b/locales/nl.json @@ -1 +1 @@ -{"A description of this item.":"Een omschrijving van dit item","A name given to this item.":"Een naam gegeven aan dit item.","A related item from which this item is derived.":"Een gerelateerd item waarvan deze is afgeleid.","Absolute path":"Absoluut pad","Accessibility":"Toegankelijkheid","Add":"Toevoegen","Add additional items to the navigation, one per line. In the format 'title|description|url'.":"Voeg items toe aan de navigatie, één per regel. In het formaatl 'titel|omschrijving|url'","Additional items":"Additionele items","Adds effective and expiration dates.":"Voegt ingangs- en vervaldatums toe.","Adds keywords and language fields.":"Voegt trefwoorden en taalvelden toe.","Adds ownership and rights fields.":"Voegt eigendoms- en rechtenvelden toe.","Adds standard metadatafields":"Voegt standaard metadatavelden toe","Adds title and description fields.":"Voegt titel- en beschrijvingsvelden toe.","Administrator":"Beheerder","Administrators":"Beheerders","After N days in the future":"Na N dagen in de toekomst","After date":"Na datum","After relative Date":"Na relatieve datum","After the current day":"Na de huidige dag","After today":"Na vandaag","Already locked":"Al op slot","An entity responsible for making this item available.":"Een entiteit die verantwoordelijk is voor het beschikbaar maken van dit item.","An item's description":"De beschijving van het item","An item's type (e.g. Event)":"Het type van een item (bijv. Evenement)","An item's workflow state (e.g.published)":"De workflowstatus van een item (bijvoorbeeld gepubliceerd)","Anonymous":"Anoniem","Authenticated":"Geauthenticeerd","Available languages":"Beschikbare talen","Basic metadata":"Basis metadata","Before N days in the past":"Voor N dagen in het verleden","Before date":"Voor datum","Before relative Date":"Voor relatieve datum","Before the current day":"Voor de huidige dag","Before today":"Voor vandaag","Between dates":"Tussen datums","Blocks":"Blokken","Blocks Layout":"Blokken Layout","Can only be seen and edited by the owner.":"Kan alleen bekeken en gewijzigd worden door de eigenaar.","Categorization":"Categorisatie","Change Note":"Wijzig Notitie","Contact":"Contact","Contains":"Bevat","Contents":"Inhoud","Contributor":"Bijdrager","Copy":"Kopiëren","Coverage":"Dekking","Creation date":"Aanmaakdatum","Creator":"Auteur","Current logged in user":"Huidige ingelogde gebruiker","Cut":"Knippen","Dates":"Data","Debug":"Debug","Default":"Standaard","Delete":"Verwijderen","Description":"Omschrijving","Displayed content types":"Getoonde content types","Document locked":"Document vergrendeld","Dublin Core metadata":"Dublin Core metadata","ESMTP password":"ESMTP wachtwoord","ESMTP username":"ESMTP gebruikersnaam","Edit":"Wijzigen","Editor":"Redacteur","Effective date":"Ingangsdatum","Enables Volto Blocks support":"Schakelt Volto Blocks-ondersteuning in\"","Enter a comment that describes the changes you made.":"Voer een opmerking in die de aangebrachte wijzigingen beschrijft.","Equals":"Gelijk aan","Event end date":"Einddatum evenement","Event start date":"Startdatum evenement","Exclude from navigation":"Uitsluiten van de navigatie","Expiration Date":"Vervaldatum","Expiration date":"Vervaldatum","File":"Bestand","Find items related to the selected items":"Zoek items gerelateerd aan de geselecteerde items","Find items that can contain other objects":"Zoek items die andere objecten kunnen bevatten","Folder":"Map","Folder-like":"Map-achtig","From and message are required fields.":"Afzender en bericht zijn verplichte velden.","Gives the ability to rename an item from its edit form.":"Geeft de mogelijkheid om een item te hernoemen vanuit het bewerkingsformulier.","History":"Geschiedenis","Identifier":"ID","If enabled the mail is send to a test server.":"Indien ingeschakeld wordt de mail naar een testserver gestuurd.","If enabled the mail is send using a secure connection.":"Indien ingeschakeld, wordt de e-mail verzonden via een beveiligde verbinding.","If selected, this item will not appear in the navigation tree.":"Indien geselecteerd, verschijnt dit item niet in de navigatiestructuur.","If this date is in the future, the content will not show up in listings and searches until this date.":"Als deze datum in de toekomst ligt, wordt de inhoud tot deze datum niet weergegeven in vermeldingen en zoekopdrachten.","Image":"Afbeelding","Images can be referenced in pages or displayed in an album.":"Naar afbeeldingen kan op pagina's worden verwezen of in een album worden weergegeven.","Information about rights held in and over this item.":"Informatie over rechten op en over dit item.","Internal server error":"Interne server fout","Invalid credentials":"Ongeldige inloggegevens","Invalid session":"Ongeldige sessie","Is":"Is","Language":"Taal","Languageroot":"Taal hoofdmap","Larger than":"Groter dan","Layout":"Layout","Less than":"Kleiner dan","Lets you upload a file to the site.":"Hiermee kunt u een bestand uploaden naar de site.","Location":"Locatie","Location in the navigation structure":"Locatie in de navigatiestructuur","Location in the site structure":"Locatie in de sitestructuur","Log in":"Log in","Log out":"Logout","Login":"Log in","Login and password must be provided in body.":"Login en wachtwoord moeten in de body worden opgegeven.","Logout":"Uitloggen","Mail":"Mail","Manage Preferences":"Voorkeuren beheren","Manage Site":"Site beheren","Manage Users":"Gebruikers Beheren","Matches all of":"Komt overeen met alle","Matches any of":"Komt overeen met een van","Missing credentials":"Ontbrekende inloggegevens","Modification date":"Wijzigingsdatum:","Modify":"Wijzigen","Navigation":"Navigatie","Navigation path":"Navigatiepad","News":"Nieuws","No":"Nee","Not allowed":"Niet toegestaan","Not found.":"Niet gevonden.","Order in folder":"Volgorde in map","Owner":"Eigenaar","Ownership":"Eigenaarschap","Page":"Pagina","Password reset request":"Wachtwoord herstel verzoek","Paste":"Plakken","Pending review":"Wacht op review","Please enter the number in days.":"Voer het aantal in dagen in.","Please use YYYY/MM/DD.":"Gebruik JJJJ/MM/DD.","Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.":"Plone genereert e-mail met dit adres als het e-mailretouradres. Het wordt ook gebruikt als bestemmingsadres voor het contactformulier voor de hele site en de functie 'Test-e-mail verzenden'.","Plone generates e-mail using this name as the e-mail sender.":"Plone genereert e-mail met deze naam als afzender van de e-mail.","Preferences":"Voorkeuren","Private":"Privé","Publish":"Publiceren","Published":"Gepubliceerd","Publisher":"Uitgever","Publishing Date":"Publicatiedatum","Reader":"Lezer","Register":"Registreren","Related":"Gerelateerd","Related Items":"Gerelateerde Items","Related To":"Gerelateerd aan","Related resources.":"Gerelateerde resources","Relative path":"Relatief pad","Rename":"Hernoemen","Required field(s) missing.":"Verplichte velden ontbreken.","Retract":"Intrekken","Review":"Review","Review state":"Beoordelingsstatus","Reviewer":"Reviewer","Rights":"Rechten","Robots.txt":"Robots.txt","Rules":"Regels","SMTP port":"SMTP poort","SMTP server":"SMTP server","Searchable text":"Doorzoekbare tekst","Secure":"Beveiligd","Send back":"Terugsturen","Settings":"Instellingen","Sharing":"Delen","Short name":"Verkorte naam","Short name (id)":"Verkorte naam (id)","Simple Publication Workflow":"Simpele Publicatie Workflow","Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.":"Eenvoudige workflow die handig is voor eenvoudige websites. Dingen beginnen als privé en kunnen ter beoordeling worden ingediend of rechtstreeks worden gepubliceerd. De maker van een inhoudsitem kan het item bewerken, zelfs nadat het is gepubliceerd.","Site":"Site","Site 'From' address":"Site 'Van'-adres","Site 'From' name":"Site 'Van' naam","Site Logo":"Site Logo","Site Setup":"Site Instellingen","Site language":"Website taal","Site title":"Site titel","Sitemap":"Sitemap","Sortable Title":"Sorteerbare titel","Source":"Bron","Submit":"Indienen","Submit for publication":"Indienen ter publicatie","System group":"Systeem groep","System users":"Systeem gebruikers","Tag":"Tag","Tags":"Tags","Tags are used for organization of content":"Tags worden gebruikt voor de organisatie van inhoud","Text search of an item's contents":"Tekst zoeken in de inhoud van een item","Text search of an item's title":"Tekst zoeken naar de titel van een item","The JSON representation of the object blocks information. Must be a JSON object.":"De JSON-representatie van het object blokkeert informatie. Moet een JSON-object zijn.","The JSON representation of the object blocks layout. Must be a JSON array.":"De JSON-weergave van de lay-out van objectblokken. Moet een JSON-array zijn.","The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.":"Het adres van uw lokale SMTP-server (uitgaande e-mail). Meestal 'localhost', tenzij je een externe server gebruikt om e-mail te versturen.","The content types that should be shown in the navigation and site map.":"Content types die in de navigatie en de site map getoond moeten worden.","The current day":"De huidige dag","The date an item was created":"De datum waarop een item is gemaakt","The end date and time of an event":"De einddatum en -tijd van een evenement","The following link takes you to a page where you can reset your password: {url}":"De volgende link brengt u naar een pagina waar u uw wachtwoord opnieuw kunt instellen: {url}","The item's title, transformed for sorting":"De titel van het item, getransformeerd om te sorteren","The language of this item.":"De taal van dit item","The language used for the content and the UI of this site.":"De taal die wordt gebruikt voor de inhoud en de gebruikersinterface van deze site.","The languages in which the site should be translatable.":"De talen waarin de site vertaalbaar moet zijn.","The location of an item":"De locatie van een item","The order of an item in its parent folder":"De volgorde van een item in de bovenliggende map","The password for the ESMTP user account.":"Het wachtwoord voor het ESMTP-gebruikersaccount.","The person that created an item":"De persoon die een item heeft gemaakt","The port of your local SMTP (outgoing e-mail) server. Usually '25'.":"De poort van uw lokale SMTP-server (uitgaande e-mail). Meestal '25'.","The short name of an item (used in the url)":"De korte naam van een item (gebruikt in de url)","The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.":"Het ruimtelijke of temporele onderwerp van dit item, de ruimtelijke toepasbaarheid van dit item of de jurisdictie waaronder dit item relevant is.","The start date and time of an event":"De startdatum en -tijd van een evenement","The time and date an item was expired":"De tijd en datum waarop een item is verlopen","The time and date an item was first published":"De tijd en datum waarop een item voor het eerst is gepubliceerd","The time and date an item was last modified":"De tijd en datum waarop een item voor het laatst is gewijzigd","The topic of this item.":"Het onderwerp van dit item.","The user viewing the querystring results":"De gebruiker die de resultaten van de querystring bekijkt","This document is already locked by another user.":"Dit document is al vergrendeld door een andere gebruiker.","This is the contents of the robots.txt file.":"Dit is de inhoud van het robots.txt bestand.","This name will be displayed in the URL.":"Deze naam wordt weergegeven in de URL.","This shows a custom logo on your site.":"Dit toont een aangepast logo op uw site","This shows up in the title bar of browsers and in syndication feeds.":"Dit verschijnt in de titelbalk van browsers en in syndicatiefeeds.","Tip: you can use * to autocomplete.":"Tip: u kunt * gebruiken om automatisch aan te vullen.","Title":"Titel","To, from and message are required fields.":"Aan, van en bericht zijn verplichte velden.","Today":"Vandaag","Transaction error.":"Transactiefout","Type":"Type","Type of the current document is not found.":"Type van het huidige document is niet gevonden.","Use '../' to navigate to parent objects.":"Gebruik '../' om naar bovenliggende objecten te navigeren.","User doesn't exist or invalid credentials.":"Gebruiker bestaat niet of ongeldige inloggegevens.","User is not logged in.":"Gebruiker is niet ingelogd.","Username for authentication to your e-mail server. Not required unless you are using ESMTP.":"Gebruikersnaam voor authenticatie naar uw e-mailserver. Niet vereist, tenzij u ESMTP gebruikt.","Versioning":"Versiebeheer","Versioning support":"Versiebeheer ondersteuning","View":"Bekijken","Visible to everyone, editable by the owner.":"Voor iedereen zichtbaar, bewerkbaar door de eigenaar.","Waiting to be reviewed, not editable by the owner.":"Wachten om te worden beoordeeld, kan niet worden bewerkt door de eigenaar.","When this date is reached, the content will no longer be visible in listings and searches.":"Wanneer deze datum is bereikt, is de inhoud niet langer zichtbaar in vermeldingen en zoekopdrachten.","Within last":"Binnen laatste","Within next":"Binnen volgende","Wrong login and/or password.":"Verkeerde login en/of wachtwoord.","Yes":"Ja","You are not authorization to access this resource.":"U heeft geen rechten om tot deze resource.","You can't delete system groups.":"U kunt geen systeemgroepen verwijderen.","You can't delete system users.":"U kunt geen systeem gebruikers verwijderen.","You don't have permission to save this document because it is locked by another user.":"U heeft geen toestemming om dit document op te slaan omdat het is vergrendeld door een andere gebruiker.","You don't have permission to unlock this document.":"U heeft geen toestemming om dit document te ontgrendelen.","You don't have permissions to add a user.":"U heeft geen rechten om een gebruiker toe te voegen.","boolean":"boolean"} \ No newline at end of file +{"A description of this item.":"Een omschrijving van dit item","A name given to this item.":"Een naam gegeven aan dit item.","A related item from which this item is derived.":"Een gerelateerd item waarvan deze is afgeleid.","Absolute path":"Absoluut pad","Accessibility":"Toegankelijkheid","Add":"Toevoegen","Add additional items to the navigation, one per line. In the format 'title|description|url'.":"Voeg items toe aan de navigatie, één per regel. In het formaatl 'titel|omschrijving|url'","Additional items":"Additionele items","Adds effective and expiration dates.":"Voegt ingangs- en vervaldatums toe.","Adds keywords and language fields.":"Voegt trefwoorden en taalvelden toe.","Adds ownership and rights fields.":"Voegt eigendoms- en rechtenvelden toe.","Adds standard metadatafields":"Voegt standaard metadatavelden toe","Adds title and description fields.":"Voegt titel- en beschrijvingsvelden toe.","Administrator":"Beheerder","Administrators":"Beheerders","After N days in the future":"Na N dagen in de toekomst","After date":"Na datum","After relative Date":"Na relatieve datum","After the current day":"Na de huidige dag","After today":"Na vandaag","Already locked":"Al op slot","An entity responsible for making this item available.":"Een entiteit die verantwoordelijk is voor het beschikbaar maken van dit item.","An item's description":"De beschijving van het item","An item's type (e.g. Event)":"Het type van een item (bijv. Evenement)","An item's workflow state (e.g.published)":"De workflowstatus van een item (bijvoorbeeld gepubliceerd)","Anonymous":"Anoniem","Authenticated":"Geauthenticeerd","Available languages":"Beschikbare talen","Basic metadata":"Basis metadata","Before N days in the past":"Voor N dagen in het verleden","Before date":"Voor datum","Before relative Date":"Voor relatieve datum","Before the current day":"Voor de huidige dag","Before today":"Voor vandaag","Between dates":"Tussen datums","Blocks":"Blokken","Blocks Layout":"Blokken Layout","Can only be seen and edited by the owner.":"Kan alleen bekeken en gewijzigd worden door de eigenaar.","Categorization":"Categorisatie","Change Note":"Wijzig Notitie","Contact":"Contact","Contains":"Bevat","Contents":"Inhoud","Contributor":"Bijdrager","Copy":"Kopiëren","Coverage":"Dekking","Creation date":"Aanmaakdatum","Creator":"Auteur","Current logged in user":"Huidige ingelogde gebruiker","Cut":"Knippen","Dates":"Data","Debug":"Debug","Default":"Standaard","Delete":"Verwijderen","Description":"Omschrijving","Displayed content types":"Getoonde content types","Document locked":"Document vergrendeld","Dublin Core metadata":"Dublin Core metadata","ESMTP password":"ESMTP wachtwoord","ESMTP username":"ESMTP gebruikersnaam","Edit":"Wijzigen","Editor":"Redacteur","Effective date":"Ingangsdatum","Enables Volto Blocks support":"Schakelt Volto Blocks-ondersteuning in\"","Enter a comment that describes the changes you made.":"Voer een opmerking in die de aangebrachte wijzigingen beschrijft.","Equals":"Gelijk aan","Event end date":"Einddatum evenement","Event start date":"Startdatum evenement","Exclude from navigation":"Uitsluiten van de navigatie","Expiration Date":"Vervaldatum","Expiration date":"Vervaldatum","File":"Bestand","Find items related to the selected items":"Zoek items gerelateerd aan de geselecteerde items","Find items that can contain other objects":"Zoek items die andere objecten kunnen bevatten","Folder":"Map","Folder-like":"Map-achtig","From and message are required fields.":"Afzender en bericht zijn verplichte velden.","Gives the ability to rename an item from its edit form.":"Geeft de mogelijkheid om een item te hernoemen vanuit het bewerkingsformulier.","History":"Geschiedenis","Identifier":"ID","If enabled the mail is send to a test server.":"Indien ingeschakeld wordt de mail naar een testserver gestuurd.","If enabled the mail is send using a secure connection.":"Indien ingeschakeld, wordt de e-mail verzonden via een beveiligde verbinding.","If selected, this item will not appear in the navigation tree.":"Indien geselecteerd, verschijnt dit item niet in de navigatiestructuur.","If this date is in the future, the content will not show up in listings and searches until this date.":"Als deze datum in de toekomst ligt, wordt de inhoud tot deze datum niet weergegeven in vermeldingen en zoekopdrachten.","Image":"Afbeelding","Images can be referenced in pages or displayed in an album.":"Naar afbeeldingen kan op pagina's worden verwezen of in een album worden weergegeven.","Information about rights held in and over this item.":"Informatie over rechten op en over dit item.","Internal server error":"Interne server fout","Invalid credentials":"Ongeldige inloggegevens","Invalid session":"Ongeldige sessie","Is":"Is","Language":"Taal","Languageroot":"Taal hoofdmap","Larger than":"Groter dan","Layout":"Layout","Less than":"Kleiner dan","Lets you upload a file to the site.":"Hiermee kunt u een bestand uploaden naar de site.","Location":"Locatie","Location in the navigation structure":"Locatie in de navigatiestructuur","Location in the site structure":"Locatie in de sitestructuur","Log in":"Log in","Log out":"Logout","Login":"Log in","Login and password must be provided in body.":"Login en wachtwoord moeten in de body worden opgegeven.","Logout":"Uitloggen","Mail":"Mail","Manage Preferences":"Voorkeuren beheren","Manage Site":"Site beheren","Manage Users":"Gebruikers Beheren","Matches all of":"Komt overeen met alle","Matches any of":"Komt overeen met een van","Missing credentials":"Ontbrekende inloggegevens","Modification date":"Wijzigingsdatum:","Modify":"Wijzigen","Navigation":"Navigatie","Navigation path":"Navigatiepad","News":"Nieuws","No":"Nee","Not allowed":"Niet toegestaan","Not found.":"Niet gevonden.","Order in folder":"Volgorde in map","Owner":"Eigenaar","Ownership":"Eigenaarschap","Page":"Pagina","Password reset request":"Wachtwoord herstel verzoek","Paste":"Plakken","Pending review":"Wacht op review","Please enter the number in days.":"Voer het aantal in dagen in.","Please use YYYY/MM/DD.":"Gebruik JJJJ/MM/DD.","Plone generates e-mail using this address as the e-mail return address. It is also used as the destination address for the site-wide contact form and the 'Send test e-mail' feature.":"Plone genereert e-mail met dit adres als het e-mailretouradres. Het wordt ook gebruikt als bestemmingsadres voor het contactformulier voor de hele site en de functie 'Test-e-mail verzenden'.","Plone generates e-mail using this name as the e-mail sender.":"Plone genereert e-mail met deze naam als afzender van de e-mail.","Preferences":"Voorkeuren","Preview Image Link":"Voorbeeld afbeelding link","Preview image":"Voorbeeld afbeelding","Preview image caption":"Voorbeeld afbeelding bijschrift","Private":"Privé","Publish":"Publiceren","Published":"Gepubliceerd","Publisher":"Uitgever","Publishing Date":"Publicatiedatum","Reader":"Lezer","Register":"Registreren","Related":"Gerelateerd","Related Items":"Gerelateerde Items","Related To":"Gerelateerd aan","Related resources.":"Gerelateerde resources","Relative path":"Relatief pad","Rename":"Hernoemen","Required field(s) missing.":"Verplichte velden ontbreken.","Retract":"Intrekken","Review":"Review","Review state":"Beoordelingsstatus","Reviewer":"Reviewer","Rights":"Rechten","Robots.txt":"Robots.txt","Rules":"Regels","SMTP port":"SMTP poort","SMTP server":"SMTP server","Searchable text":"Doorzoekbare tekst","Secure":"Beveiligd","Select an image that will be used in listing and teaser blocks.":"Selecteer een afbeelding die u wilt gebruiken in de lijst- en teaserblokken.","Send back":"Terugsturen","Settings":"Instellingen","Sharing":"Delen","Short name":"Verkorte naam","Short name (id)":"Verkorte naam (id)","Simple Publication Workflow":"Simpele Publicatie Workflow","Simple workflow that is useful for basic web sites. Things start out as private, and can either be submitted for review, or published directly. The creator of a content item can edit the item even after it is published.":"Eenvoudige workflow die handig is voor eenvoudige websites. Dingen beginnen als privé en kunnen ter beoordeling worden ingediend of rechtstreeks worden gepubliceerd. De maker van een inhoudsitem kan het item bewerken, zelfs nadat het is gepubliceerd.","Site":"Site","Site 'From' address":"Site 'Van'-adres","Site 'From' name":"Site 'Van' naam","Site Logo":"Site Logo","Site Setup":"Site Instellingen","Site language":"Website taal","Site title":"Site titel","Sitemap":"Sitemap","Sortable Title":"Sorteerbare titel","Source":"Bron","Submit":"Indienen","Submit for publication":"Indienen ter publicatie","System group":"Systeem groep","System users":"Systeem gebruikers","Tag":"Tag","Tags":"Tags","Tags are used for organization of content":"Tags worden gebruikt voor de organisatie van inhoud","Text search of an item's contents":"Tekst zoeken in de inhoud van een item","Text search of an item's title":"Tekst zoeken naar de titel van een item","The JSON representation of the object blocks information. Must be a JSON object.":"De JSON-representatie van het object blokkeert informatie. Moet een JSON-object zijn.","The JSON representation of the object blocks layout. Must be a JSON array.":"De JSON-weergave van de lay-out van objectblokken. Moet een JSON-array zijn.","The address of your local SMTP (outgoing e-mail) server. Usually 'localhost', unless you use an external server to send e-mail.":"Het adres van uw lokale SMTP-server (uitgaande e-mail). Meestal 'localhost', tenzij je een externe server gebruikt om e-mail te versturen.","The content types that should be shown in the navigation and site map.":"Content types die in de navigatie en de site map getoond moeten worden.","The current day":"De huidige dag","The date an item was created":"De datum waarop een item is gemaakt","The end date and time of an event":"De einddatum en -tijd van een evenement","The following link takes you to a page where you can reset your password: {url}":"De volgende link brengt u naar een pagina waar u uw wachtwoord opnieuw kunt instellen: {url}","The item's title, transformed for sorting":"De titel van het item, getransformeerd om te sorteren","The language of this item.":"De taal van dit item","The language used for the content and the UI of this site.":"De taal die wordt gebruikt voor de inhoud en de gebruikersinterface van deze site.","The languages in which the site should be translatable.":"De talen waarin de site vertaalbaar moet zijn.","The location of an item":"De locatie van een item","The order of an item in its parent folder":"De volgorde van een item in de bovenliggende map","The password for the ESMTP user account.":"Het wachtwoord voor het ESMTP-gebruikersaccount.","The person that created an item":"De persoon die een item heeft gemaakt","The port of your local SMTP (outgoing e-mail) server. Usually '25'.":"De poort van uw lokale SMTP-server (uitgaande e-mail). Meestal '25'.","The short name of an item (used in the url)":"De korte naam van een item (gebruikt in de url)","The spatial or temporal topic of this item, spatial applicability of this item, or jurisdiction under which this item is relevant.":"Het ruimtelijke of temporele onderwerp van dit item, de ruimtelijke toepasbaarheid van dit item of de jurisdictie waaronder dit item relevant is.","The start date and time of an event":"De startdatum en -tijd van een evenement","The time and date an item was expired":"De tijd en datum waarop een item is verlopen","The time and date an item was first published":"De tijd en datum waarop een item voor het eerst is gepubliceerd","The time and date an item was last modified":"De tijd en datum waarop een item voor het laatst is gewijzigd","The topic of this item.":"Het onderwerp van dit item.","The user viewing the querystring results":"De gebruiker die de resultaten van de querystring bekijkt","This document is already locked by another user.":"Dit document is al vergrendeld door een andere gebruiker.","This is the contents of the robots.txt file.":"Dit is de inhoud van het robots.txt bestand.","This name will be displayed in the URL.":"Deze naam wordt weergegeven in de URL.","This shows a custom logo on your site.":"Dit toont een aangepast logo op uw site","This shows up in the title bar of browsers and in syndication feeds.":"Dit verschijnt in de titelbalk van browsers en in syndicatiefeeds.","Tip: you can use * to autocomplete.":"Tip: u kunt * gebruiken om automatisch aan te vullen.","Title":"Titel","To, from and message are required fields.":"Aan, van en bericht zijn verplichte velden.","Today":"Vandaag","Transaction error.":"Transactiefout","Type":"Type","Type of the current document is not found.":"Type van het huidige document is niet gevonden.","Use '../' to navigate to parent objects.":"Gebruik '../' om naar bovenliggende objecten te navigeren.","User doesn't exist or invalid credentials.":"Gebruiker bestaat niet of ongeldige inloggegevens.","User is not logged in.":"Gebruiker is niet ingelogd.","Username for authentication to your e-mail server. Not required unless you are using ESMTP.":"Gebruikersnaam voor authenticatie naar uw e-mailserver. Niet vereist, tenzij u ESMTP gebruikt.","Versioning":"Versiebeheer","Versioning support":"Versiebeheer ondersteuning","View":"Bekijken","Visible to everyone, editable by the owner.":"Voor iedereen zichtbaar, bewerkbaar door de eigenaar.","Waiting to be reviewed, not editable by the owner.":"Wachten om te worden beoordeeld, kan niet worden bewerkt door de eigenaar.","When this date is reached, the content will no longer be visible in listings and searches.":"Wanneer deze datum is bereikt, is de inhoud niet langer zichtbaar in vermeldingen en zoekopdrachten.","Within last":"Binnen laatste","Within next":"Binnen volgende","Wrong login and/or password.":"Verkeerde login en/of wachtwoord.","Yes":"Ja","You are not authorization to access this resource.":"U heeft geen rechten om tot deze resource.","You can't delete system groups.":"U kunt geen systeemgroepen verwijderen.","You can't delete system users.":"U kunt geen systeem gebruikers verwijderen.","You don't have permission to save this document because it is locked by another user.":"U heeft geen toestemming om dit document op te slaan omdat het is vergrendeld door een andere gebruiker.","You don't have permission to unlock this document.":"U heeft geen toestemming om dit document te ontgrendelen.","You don't have permissions to add a user.":"U heeft geen rechten om een gebruiker toe te voegen.","boolean":"boolean"} \ No newline at end of file diff --git a/locales/nl/LC_MESSAGES/nick.po b/locales/nl/LC_MESSAGES/nick.po index f3b0b64..89609de 100644 --- a/locales/nl/LC_MESSAGES/nick.po +++ b/locales/nl/LC_MESSAGES/nick.po @@ -17,16 +17,17 @@ msgstr "" "Domain: nick\n" #: src/profiles/core/behaviors/categorization.json:33 +#: src/profiles/core/behaviors/preview_image_link.json:22 #: src/profiles/core/catalog.json:58 #: src/profiles/core/catalog.json:64 #: src/profiles/core/catalog.json:70 #: src/profiles/core/catalog.json:235 #: src/profiles/core/catalog.json:254 #: src/profiles/core/catalog.json:273 -#: src/profiles/core/catalog.json:323 -#: src/profiles/core/catalog.json:342 +#: src/profiles/core/catalog.json:329 #: src/profiles/core/catalog.json:348 -#: src/profiles/core/catalog.json:467 +#: src/profiles/core/catalog.json:354 +#: src/profiles/core/catalog.json:473 #: src/profiles/core/types/file.json:18 #: src/profiles/core/types/folder.json:4 #: src/profiles/core/types/image.json:18 @@ -114,50 +115,50 @@ msgstr "Beheerders" #: src/profiles/core/catalog.json:89 #: src/profiles/core/catalog.json:162 -#: src/profiles/core/catalog.json:492 -#: src/profiles/core/catalog.json:571 -#: src/profiles/core/catalog.json:644 -#: src/profiles/core/catalog.json:717 +#: src/profiles/core/catalog.json:498 +#: src/profiles/core/catalog.json:577 +#: src/profiles/core/catalog.json:650 +#: src/profiles/core/catalog.json:723 # defaultMessage: After N days in the future msgid "After N days in the future" msgstr "Na N dagen in de toekomst" #: src/profiles/core/catalog.json:118 #: src/profiles/core/catalog.json:191 -#: src/profiles/core/catalog.json:521 -#: src/profiles/core/catalog.json:600 -#: src/profiles/core/catalog.json:673 -#: src/profiles/core/catalog.json:746 +#: src/profiles/core/catalog.json:527 +#: src/profiles/core/catalog.json:606 +#: src/profiles/core/catalog.json:679 +#: src/profiles/core/catalog.json:752 # defaultMessage: After date msgid "After date" msgstr "Na datum" #: src/profiles/core/catalog.json:88 #: src/profiles/core/catalog.json:161 -#: src/profiles/core/catalog.json:491 -#: src/profiles/core/catalog.json:570 -#: src/profiles/core/catalog.json:643 -#: src/profiles/core/catalog.json:716 +#: src/profiles/core/catalog.json:497 +#: src/profiles/core/catalog.json:576 +#: src/profiles/core/catalog.json:649 +#: src/profiles/core/catalog.json:722 # defaultMessage: After relative Date msgid "After relative Date" msgstr "Na relatieve datum" #: src/profiles/core/catalog.json:95 #: src/profiles/core/catalog.json:168 -#: src/profiles/core/catalog.json:498 -#: src/profiles/core/catalog.json:577 -#: src/profiles/core/catalog.json:650 -#: src/profiles/core/catalog.json:723 +#: src/profiles/core/catalog.json:504 +#: src/profiles/core/catalog.json:583 +#: src/profiles/core/catalog.json:656 +#: src/profiles/core/catalog.json:729 # defaultMessage: After the current day msgid "After the current day" msgstr "Na de huidige dag" #: src/profiles/core/catalog.json:94 #: src/profiles/core/catalog.json:167 -#: src/profiles/core/catalog.json:497 -#: src/profiles/core/catalog.json:576 -#: src/profiles/core/catalog.json:649 -#: src/profiles/core/catalog.json:722 +#: src/profiles/core/catalog.json:503 +#: src/profiles/core/catalog.json:582 +#: src/profiles/core/catalog.json:655 +#: src/profiles/core/catalog.json:728 # defaultMessage: After today msgid "After today" msgstr "Na vandaag" @@ -178,12 +179,12 @@ msgstr "Een entiteit die verantwoordelijk is voor het beschikbaar maken van dit msgid "An item's description" msgstr "De beschijving van het item" -#: src/profiles/core/catalog.json:422 +#: src/profiles/core/catalog.json:428 # defaultMessage: An item's type (e.g. Event) msgid "An item's type (e.g. Event)" msgstr "Het type van een item (bijv. Evenement)" -#: src/profiles/core/catalog.json:441 +#: src/profiles/core/catalog.json:447 # defaultMessage: An item's workflow state (e.g.published) msgid "An item's workflow state (e.g.published)" msgstr "De workflowstatus van een item (bijvoorbeeld gepubliceerd)" @@ -210,60 +211,60 @@ msgstr "Basis metadata" #: src/profiles/core/catalog.json:101 #: src/profiles/core/catalog.json:174 -#: src/profiles/core/catalog.json:504 -#: src/profiles/core/catalog.json:583 -#: src/profiles/core/catalog.json:656 -#: src/profiles/core/catalog.json:729 +#: src/profiles/core/catalog.json:510 +#: src/profiles/core/catalog.json:589 +#: src/profiles/core/catalog.json:662 +#: src/profiles/core/catalog.json:735 # defaultMessage: Before N days in the past msgid "Before N days in the past" msgstr "Voor N dagen in het verleden" #: src/profiles/core/catalog.json:130 #: src/profiles/core/catalog.json:203 -#: src/profiles/core/catalog.json:533 -#: src/profiles/core/catalog.json:612 -#: src/profiles/core/catalog.json:685 -#: src/profiles/core/catalog.json:758 +#: src/profiles/core/catalog.json:539 +#: src/profiles/core/catalog.json:618 +#: src/profiles/core/catalog.json:691 +#: src/profiles/core/catalog.json:764 # defaultMessage: Before date msgid "Before date" msgstr "Voor datum" #: src/profiles/core/catalog.json:100 #: src/profiles/core/catalog.json:173 -#: src/profiles/core/catalog.json:503 -#: src/profiles/core/catalog.json:582 -#: src/profiles/core/catalog.json:655 -#: src/profiles/core/catalog.json:728 +#: src/profiles/core/catalog.json:509 +#: src/profiles/core/catalog.json:588 +#: src/profiles/core/catalog.json:661 +#: src/profiles/core/catalog.json:734 # defaultMessage: Before relative Date msgid "Before relative Date" msgstr "Voor relatieve datum" #: src/profiles/core/catalog.json:107 #: src/profiles/core/catalog.json:180 -#: src/profiles/core/catalog.json:510 -#: src/profiles/core/catalog.json:589 -#: src/profiles/core/catalog.json:662 -#: src/profiles/core/catalog.json:735 +#: src/profiles/core/catalog.json:516 +#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:741 # defaultMessage: Before the current day msgid "Before the current day" msgstr "Voor de huidige dag" #: src/profiles/core/catalog.json:106 #: src/profiles/core/catalog.json:179 -#: src/profiles/core/catalog.json:509 -#: src/profiles/core/catalog.json:588 -#: src/profiles/core/catalog.json:661 -#: src/profiles/core/catalog.json:734 +#: src/profiles/core/catalog.json:515 +#: src/profiles/core/catalog.json:594 +#: src/profiles/core/catalog.json:667 +#: src/profiles/core/catalog.json:740 # defaultMessage: Before today msgid "Before today" msgstr "Voor vandaag" #: src/profiles/core/catalog.json:112 #: src/profiles/core/catalog.json:185 -#: src/profiles/core/catalog.json:515 -#: src/profiles/core/catalog.json:594 -#: src/profiles/core/catalog.json:667 -#: src/profiles/core/catalog.json:740 +#: src/profiles/core/catalog.json:521 +#: src/profiles/core/catalog.json:600 +#: src/profiles/core/catalog.json:673 +#: src/profiles/core/catalog.json:746 # defaultMessage: Between dates msgid "Between dates" msgstr "Tussen datums" @@ -303,7 +304,7 @@ msgstr "Contact" #: src/profiles/core/catalog.json:234 #: src/profiles/core/catalog.json:253 #: src/profiles/core/catalog.json:272 -#: src/profiles/core/catalog.json:466 +#: src/profiles/core/catalog.json:472 # defaultMessage: Contains msgid "Contains" msgstr "Bevat" @@ -328,17 +329,17 @@ msgstr "Kopiëren" msgid "Coverage" msgstr "Dekking" -#: src/profiles/core/catalog.json:636 +#: src/profiles/core/catalog.json:642 # defaultMessage: Creation date msgid "Creation date" msgstr "Aanmaakdatum" -#: src/profiles/core/catalog.json:390 +#: src/profiles/core/catalog.json:396 # defaultMessage: Creator msgid "Creator" msgstr "Auteur" -#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:409 # defaultMessage: Current logged in user msgid "Current logged in user" msgstr "Huidige ingelogde gebruiker" @@ -360,6 +361,7 @@ msgid "Debug" msgstr "Debug" #: src/profiles/core/behaviors/basic.json:10 +#: src/profiles/core/behaviors/preview_image_link.json:10 #: src/profiles/core/behaviors/versioning.json:10 #: src/profiles/core/types/file.json:13 #: src/profiles/core/types/image.json:13 @@ -383,7 +385,7 @@ msgstr "Omschrijving" msgid "Displayed content types" msgstr "Getoonde content types" -#: src/routes/content/content.js:565 +#: src/routes/content/content.js:571 #: src/routes/history/history.js:48 # defaultMessage: Document locked msgid "Document locked" @@ -414,7 +416,7 @@ msgstr "Wijzigen" msgid "Editor" msgstr "Redacteur" -#: src/profiles/core/catalog.json:709 +#: src/profiles/core/catalog.json:715 # defaultMessage: Effective date msgid "Effective date" msgstr "Ingangsdatum" @@ -430,7 +432,7 @@ msgid "Enter a comment that describes the changes you made." msgstr "Voer een opmerking in die de aangebrachte wijzigingen beschrijft." #: src/profiles/core/catalog.json:57 -#: src/profiles/core/catalog.json:322 +#: src/profiles/core/catalog.json:328 # defaultMessage: Equals msgid "Equals" msgstr "Gelijk aan" @@ -456,7 +458,7 @@ msgstr "Uitsluiten van de navigatie" msgid "Expiration Date" msgstr "Vervaldatum" -#: src/profiles/core/catalog.json:563 +#: src/profiles/core/catalog.json:569 # defaultMessage: Expiration date msgid "Expiration date" msgstr "Vervaldatum" @@ -467,12 +469,12 @@ msgstr "Vervaldatum" msgid "File" msgstr "Bestand" -#: src/profiles/core/catalog.json:316 +#: src/profiles/core/catalog.json:322 # defaultMessage: Find items related to the selected items msgid "Find items related to the selected items" msgstr "Zoek items gerelateerd aan de geselecteerde items" -#: src/profiles/core/catalog.json:335 +#: src/profiles/core/catalog.json:341 # defaultMessage: Find items that can contain other objects msgid "Find items that can contain other objects" msgstr "Zoek items die andere objecten kunnen bevatten" @@ -482,7 +484,7 @@ msgstr "Zoek items die andere objecten kunnen bevatten" msgid "Folder" msgstr "Map" -#: src/profiles/core/catalog.json:334 +#: src/profiles/core/catalog.json:340 # defaultMessage: Folder-like msgid "Folder-like" msgstr "Map-achtig" @@ -493,6 +495,7 @@ msgstr "Map-achtig" msgid "From and message are required fields." msgstr "Afzender en bericht zijn verplichte velden." +#: src/profiles/core/behaviors/preview_image_link.json:4 #: src/profiles/core/behaviors/short_name.json:4 # defaultMessage: Gives the ability to rename an item from its edit form. msgid "Gives the ability to rename an item from its edit form." @@ -545,7 +548,7 @@ msgstr "Naar afbeeldingen kan op pagina's worden verwezen of in een album worden msgid "Information about rights held in and over this item." msgstr "Informatie over rechten op en over dit item." -#: src/app.js:183 +#: src/app.js:184 # defaultMessage: Internal server error msgid "Internal server error" msgstr "Interne server fout" @@ -561,8 +564,8 @@ msgstr "Ongeldige inloggegevens" msgid "Invalid session" msgstr "Ongeldige sessie" -#: src/profiles/core/catalog.json:378 -#: src/profiles/core/catalog.json:472 +#: src/profiles/core/catalog.json:384 +#: src/profiles/core/catalog.json:478 # defaultMessage: Is msgid "Is" msgstr "Is" @@ -664,9 +667,9 @@ msgid "Matches all of" msgstr "Komt overeen met alle" #: src/profiles/core/catalog.json:299 -#: src/profiles/core/catalog.json:397 -#: src/profiles/core/catalog.json:428 -#: src/profiles/core/catalog.json:447 +#: src/profiles/core/catalog.json:403 +#: src/profiles/core/catalog.json:434 +#: src/profiles/core/catalog.json:453 # defaultMessage: Matches any of msgid "Matches any of" msgstr "Komt overeen met een van" @@ -676,7 +679,7 @@ msgstr "Komt overeen met een van" msgid "Missing credentials" msgstr "Ontbrekende inloggegevens" -#: src/profiles/core/catalog.json:484 +#: src/profiles/core/catalog.json:490 # defaultMessage: Modification date msgid "Modification date" msgstr "Wijzigingsdatum:" @@ -703,7 +706,7 @@ msgstr "Navigatiepad" msgid "News" msgstr "Nieuws" -#: src/profiles/core/catalog.json:341 +#: src/profiles/core/catalog.json:347 #: src/profiles/core/vocabularies/boolean.json:6 # defaultMessage: No msgid "No" @@ -714,7 +717,7 @@ msgstr "Nee" msgid "Not allowed" msgstr "Niet toegestaan" -#: src/routes/controlpanels/controlpanels.js:31 +#: src/routes/controlpanels/controlpanels.js:32 #: src/routes/email/email.js:52 #: src/routes/groups/groups.js:26 #: src/routes/types/types.js:32 @@ -765,14 +768,14 @@ msgstr "Wacht op review" #: src/profiles/core/catalog.json:137 #: src/profiles/core/catalog.json:198 #: src/profiles/core/catalog.json:210 -#: src/profiles/core/catalog.json:528 -#: src/profiles/core/catalog.json:540 -#: src/profiles/core/catalog.json:607 -#: src/profiles/core/catalog.json:619 -#: src/profiles/core/catalog.json:680 -#: src/profiles/core/catalog.json:692 -#: src/profiles/core/catalog.json:753 -#: src/profiles/core/catalog.json:765 +#: src/profiles/core/catalog.json:534 +#: src/profiles/core/catalog.json:546 +#: src/profiles/core/catalog.json:613 +#: src/profiles/core/catalog.json:625 +#: src/profiles/core/catalog.json:686 +#: src/profiles/core/catalog.json:698 +#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:771 # defaultMessage: Please enter the number in days. msgid "Please enter the number in days." msgstr "Voer het aantal in dagen in." @@ -783,18 +786,18 @@ msgstr "Voer het aantal in dagen in." #: src/profiles/core/catalog.json:186 #: src/profiles/core/catalog.json:192 #: src/profiles/core/catalog.json:204 -#: src/profiles/core/catalog.json:516 #: src/profiles/core/catalog.json:522 -#: src/profiles/core/catalog.json:534 -#: src/profiles/core/catalog.json:595 +#: src/profiles/core/catalog.json:528 +#: src/profiles/core/catalog.json:540 #: src/profiles/core/catalog.json:601 -#: src/profiles/core/catalog.json:613 -#: src/profiles/core/catalog.json:668 +#: src/profiles/core/catalog.json:607 +#: src/profiles/core/catalog.json:619 #: src/profiles/core/catalog.json:674 -#: src/profiles/core/catalog.json:686 -#: src/profiles/core/catalog.json:741 +#: src/profiles/core/catalog.json:680 +#: src/profiles/core/catalog.json:692 #: src/profiles/core/catalog.json:747 -#: src/profiles/core/catalog.json:759 +#: src/profiles/core/catalog.json:753 +#: src/profiles/core/catalog.json:765 # defaultMessage: Please use YYYY/MM/DD. msgid "Please use YYYY/MM/DD." msgstr "Gebruik JJJJ/MM/DD." @@ -814,6 +817,21 @@ msgstr "Plone genereert e-mail met deze naam als afzender van de e-mail." msgid "Preferences" msgstr "Voorkeuren" +#: src/profiles/core/behaviors/preview_image_link.json:3 +# defaultMessage: Preview Image Link +msgid "Preview Image Link" +msgstr "Voorbeeld afbeelding link" + +#: src/profiles/core/behaviors/preview_image_link.json:15 +# defaultMessage: Preview image +msgid "Preview image" +msgstr "Voorbeeld afbeelding" + +#: src/profiles/core/behaviors/preview_image_link.json:23 +# defaultMessage: Preview image caption +msgid "Preview image caption" +msgstr "Voorbeeld afbeelding bijschrift" + #: src/profiles/core/workflows.json:12 # defaultMessage: Private msgid "Private" @@ -860,7 +878,7 @@ msgstr "Gerelateerd" msgid "Related Items" msgstr "Gerelateerde Items" -#: src/profiles/core/catalog.json:315 +#: src/profiles/core/catalog.json:321 # defaultMessage: Related To msgid "Related To" msgstr "Gerelateerd aan" @@ -880,7 +898,7 @@ msgstr "Relatief pad" msgid "Rename" msgstr "Hernoemen" -#: src/routes/content/content.js:403 +#: src/routes/content/content.js:409 # defaultMessage: Required field(s) missing. msgid "Required field(s) missing." msgstr "Verplichte velden ontbreken." @@ -895,7 +913,7 @@ msgstr "Intrekken" msgid "Review" msgstr "Review" -#: src/profiles/core/catalog.json:440 +#: src/profiles/core/catalog.json:446 # defaultMessage: Review state msgid "Review state" msgstr "Beoordelingsstatus" @@ -940,6 +958,11 @@ msgstr "Doorzoekbare tekst" msgid "Secure" msgstr "Beveiligd" +#: src/profiles/core/behaviors/preview_image_link.json:16 +# defaultMessage: Select an image that will be used in listing and teaser blocks. +msgid "Select an image that will be used in listing and teaser blocks." +msgstr "Selecteer een afbeelding die u wilt gebruiken in de lijst- en teaserblokken." + #: src/profiles/core/workflows.json:52 # defaultMessage: Send back msgid "Send back" @@ -961,7 +984,7 @@ msgstr "Delen" msgid "Short name" msgstr "Verkorte naam" -#: src/profiles/core/catalog.json:371 +#: src/profiles/core/catalog.json:377 # defaultMessage: Short name (id) msgid "Short name (id)" msgstr "Verkorte naam (id)" @@ -1017,7 +1040,7 @@ msgstr "Site titel" msgid "Sitemap" msgstr "Sitemap" -#: src/profiles/core/catalog.json:459 +#: src/profiles/core/catalog.json:465 # defaultMessage: Sortable Title msgid "Sortable Title" msgstr "Sorteerbare titel" @@ -1094,15 +1117,15 @@ msgstr "Content types die in de navigatie en de site map getoond moeten worden." #: src/profiles/core/catalog.json:143 #: src/profiles/core/catalog.json:216 -#: src/profiles/core/catalog.json:546 -#: src/profiles/core/catalog.json:625 -#: src/profiles/core/catalog.json:698 -#: src/profiles/core/catalog.json:771 +#: src/profiles/core/catalog.json:552 +#: src/profiles/core/catalog.json:631 +#: src/profiles/core/catalog.json:704 +#: src/profiles/core/catalog.json:777 # defaultMessage: The current day msgid "The current day" msgstr "De huidige dag" -#: src/profiles/core/catalog.json:637 +#: src/profiles/core/catalog.json:643 # defaultMessage: The date an item was created msgid "The date an item was created" msgstr "De datum waarop een item is gemaakt" @@ -1118,7 +1141,7 @@ msgstr "De einddatum en -tijd van een evenement" msgid "The following link takes you to a page where you can reset your password: {url}" msgstr "De volgende link brengt u naar een pagina waar u uw wachtwoord opnieuw kunt instellen: {url}" -#: src/profiles/core/catalog.json:460 +#: src/profiles/core/catalog.json:466 # defaultMessage: The item's title, transformed for sorting msgid "The item's title, transformed for sorting" msgstr "De titel van het item, getransformeerd om te sorteren" @@ -1153,7 +1176,7 @@ msgstr "De volgorde van een item in de bovenliggende map" msgid "The password for the ESMTP user account." msgstr "Het wachtwoord voor het ESMTP-gebruikersaccount." -#: src/profiles/core/catalog.json:391 +#: src/profiles/core/catalog.json:397 # defaultMessage: The person that created an item msgid "The person that created an item" msgstr "De persoon die een item heeft gemaakt" @@ -1163,7 +1186,7 @@ msgstr "De persoon die een item heeft gemaakt" msgid "The port of your local SMTP (outgoing e-mail) server. Usually '25'." msgstr "De poort van uw lokale SMTP-server (uitgaande e-mail). Meestal '25'." -#: src/profiles/core/catalog.json:372 +#: src/profiles/core/catalog.json:378 # defaultMessage: The short name of an item (used in the url) msgid "The short name of an item (used in the url)" msgstr "De korte naam van een item (gebruikt in de url)" @@ -1178,17 +1201,17 @@ msgstr "Het ruimtelijke of temporele onderwerp van dit item, de ruimtelijke toep msgid "The start date and time of an event" msgstr "De startdatum en -tijd van een evenement" -#: src/profiles/core/catalog.json:564 +#: src/profiles/core/catalog.json:570 # defaultMessage: The time and date an item was expired msgid "The time and date an item was expired" msgstr "De tijd en datum waarop een item is verlopen" -#: src/profiles/core/catalog.json:710 +#: src/profiles/core/catalog.json:716 # defaultMessage: The time and date an item was first published msgid "The time and date an item was first published" msgstr "De tijd en datum waarop een item voor het eerst is gepubliceerd" -#: src/profiles/core/catalog.json:485 +#: src/profiles/core/catalog.json:491 # defaultMessage: The time and date an item was last modified msgid "The time and date an item was last modified" msgstr "De tijd en datum waarop een item voor het laatst is gewijzigd" @@ -1198,7 +1221,7 @@ msgstr "De tijd en datum waarop een item voor het laatst is gewijzigd" msgid "The topic of this item." msgstr "Het onderwerp van dit item." -#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:410 # defaultMessage: The user viewing the querystring results msgid "The user viewing the querystring results" msgstr "De gebruiker die de resultaten van de querystring bekijkt" @@ -1231,11 +1254,11 @@ msgstr "Dit verschijnt in de titelbalk van browsers en in syndicatiefeeds." #: src/profiles/core/catalog.json:291 #: src/profiles/core/catalog.json:297 -#: src/profiles/core/catalog.json:379 -#: src/profiles/core/catalog.json:398 -#: src/profiles/core/catalog.json:429 -#: src/profiles/core/catalog.json:448 -#: src/profiles/core/catalog.json:473 +#: src/profiles/core/catalog.json:385 +#: src/profiles/core/catalog.json:404 +#: src/profiles/core/catalog.json:435 +#: src/profiles/core/catalog.json:454 +#: src/profiles/core/catalog.json:479 # defaultMessage: Tip: you can use * to autocomplete. msgid "Tip: you can use * to autocomplete." msgstr "Tip: u kunt * gebruiken om automatisch aan te vullen." @@ -1253,25 +1276,25 @@ msgstr "Aan, van en bericht zijn verplichte velden." #: src/profiles/core/catalog.json:142 #: src/profiles/core/catalog.json:215 -#: src/profiles/core/catalog.json:545 -#: src/profiles/core/catalog.json:624 -#: src/profiles/core/catalog.json:697 -#: src/profiles/core/catalog.json:770 +#: src/profiles/core/catalog.json:551 +#: src/profiles/core/catalog.json:630 +#: src/profiles/core/catalog.json:703 +#: src/profiles/core/catalog.json:776 # defaultMessage: Today msgid "Today" msgstr "Vandaag" -#: src/app.js:139 +#: src/app.js:140 # defaultMessage: Transaction error. msgid "Transaction error." msgstr "Transactiefout" -#: src/profiles/core/catalog.json:421 +#: src/profiles/core/catalog.json:427 # defaultMessage: Type msgid "Type" msgstr "Type" -#: src/app.js:100 +#: src/app.js:101 # defaultMessage: Type of the current document is not found. msgid "Type of the current document is not found." msgstr "Type van het huidige document is niet gevonden." @@ -1329,20 +1352,20 @@ msgstr "Wanneer deze datum is bereikt, is de inhoud niet langer zichtbaar in ver #: src/profiles/core/catalog.json:124 #: src/profiles/core/catalog.json:197 -#: src/profiles/core/catalog.json:527 -#: src/profiles/core/catalog.json:606 -#: src/profiles/core/catalog.json:679 -#: src/profiles/core/catalog.json:752 +#: src/profiles/core/catalog.json:533 +#: src/profiles/core/catalog.json:612 +#: src/profiles/core/catalog.json:685 +#: src/profiles/core/catalog.json:758 # defaultMessage: Within last msgid "Within last" msgstr "Binnen laatste" #: src/profiles/core/catalog.json:136 #: src/profiles/core/catalog.json:209 -#: src/profiles/core/catalog.json:539 -#: src/profiles/core/catalog.json:618 -#: src/profiles/core/catalog.json:691 -#: src/profiles/core/catalog.json:764 +#: src/profiles/core/catalog.json:545 +#: src/profiles/core/catalog.json:624 +#: src/profiles/core/catalog.json:697 +#: src/profiles/core/catalog.json:770 # defaultMessage: Within next msgid "Within next" msgstr "Binnen volgende" @@ -1353,13 +1376,13 @@ msgstr "Binnen volgende" msgid "Wrong login and/or password." msgstr "Verkeerde login en/of wachtwoord." -#: src/profiles/core/catalog.json:347 +#: src/profiles/core/catalog.json:353 #: src/profiles/core/vocabularies/boolean.json:5 # defaultMessage: Yes msgid "Yes" msgstr "Ja" -#: src/app.js:125 +#: src/app.js:126 #: src/routes/workflow/workflow.js:32 # defaultMessage: You are not authorization to access this resource. msgid "You are not authorization to access this resource." @@ -1375,7 +1398,7 @@ msgstr "U kunt geen systeemgroepen verwijderen." msgid "You can't delete system users." msgstr "U kunt geen systeem gebruikers verwijderen." -#: src/routes/content/content.js:562 +#: src/routes/content/content.js:568 #: src/routes/history/history.js:45 # defaultMessage: You don't have permission to save this document because it is locked by another user. msgid "You don't have permission to save this document because it is locked by another user." From a837d5bb2cadcabeb45083dc0a200bd95a412d4f Mon Sep 17 00:00:00 2001 From: Rob Gietema Date: Mon, 2 Dec 2024 07:33:36 -0300 Subject: [PATCH 5/5] Fix tests. --- docs/examples/navigation/get.res | 12 ++++++++++++ docs/examples/search/get.res | 15 +++++++++++++++ docs/examples/search/get_batch.res | 6 ++++++ docs/examples/search/get_depth.res | 9 +++++++++ docs/examples/search/get_news.res | 3 +++ docs/examples/search/get_offset.res | 9 +++++++++ docs/examples/search/get_sort_date.res | 15 +++++++++++++++ docs/examples/search/get_sort_reverse.res | 15 +++++++++++++++ docs/examples/search/get_sort_title.res | 15 +++++++++++++++ docs/examples/search/get_sort_unknown.res | 15 +++++++++++++++ docs/examples/search/get_unknown.res | 15 +++++++++++++++ docs/examples/search/post.res | 15 +++++++++++++++ docs/examples/site/get.res | 6 +++--- docs/examples/vocabularies/get_behaviors.res | 6 +++++- 14 files changed, 152 insertions(+), 4 deletions(-) diff --git a/docs/examples/navigation/get.res b/docs/examples/navigation/get.res index 61d2952..118aa3e 100644 --- a/docs/examples/navigation/get.res +++ b/docs/examples/navigation/get.res @@ -14,11 +14,14 @@ Content-Type: application/json "Title": "Events", "Subject": null, "is_folderish": true, + "items": [], "exclude_from_nav": false, "Type": "Folder", "getId": "events", "Creator": "admin", "id": "events", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:30:00.000Z", @@ -27,6 +30,7 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -44,11 +48,14 @@ Content-Type: application/json "Title": "News", "Subject": null, "is_folderish": true, + "items": [], "exclude_from_nav": false, "Type": "Folder", "getId": "news", "Creator": "admin", "id": "news", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:22:00.000Z", @@ -57,6 +64,7 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -74,11 +82,14 @@ Content-Type: application/json "Title": "Users", "Subject": null, "is_folderish": true, + "items": [], "exclude_from_nav": false, "Type": "Folder", "getId": "users", "Creator": "admin", "id": "users", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:24:00.000Z", @@ -87,6 +98,7 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", diff --git a/docs/examples/search/get.res b/docs/examples/search/get.res index 4e2f60c..c5487e5 100644 --- a/docs/examples/search/get.res +++ b/docs/examples/search/get.res @@ -19,6 +19,8 @@ Content-Type: application/json "getId": "events", "Creator": "admin", "id": "events", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:30:00.000Z", @@ -27,6 +29,7 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -49,6 +52,8 @@ Content-Type: application/json "getId": "news", "Creator": "admin", "id": "news", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:22:00.000Z", @@ -57,6 +62,7 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -79,6 +85,8 @@ Content-Type: application/json "getId": "event-1", "Creator": "admin", "id": "event-1", + "image_field": "", + "image_scales": {}, "portal_type": "Page", "review_state": "published", "modified": "2022-04-02T20:10:00.000Z", @@ -87,6 +95,7 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -109,6 +118,8 @@ Content-Type: application/json "getId": "users", "Creator": "admin", "id": "users", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:24:00.000Z", @@ -117,6 +128,7 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -139,6 +151,8 @@ Content-Type: application/json "getId": "root", "Creator": "admin", "id": "root", + "image_field": "", + "image_scales": {}, "portal_type": "Site", "review_state": "published", "modified": "2022-04-02T20:00:00.000Z", @@ -147,6 +161,7 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/search/get_batch.res b/docs/examples/search/get_batch.res index 774ac6b..bae1cc6 100644 --- a/docs/examples/search/get_batch.res +++ b/docs/examples/search/get_batch.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", diff --git a/docs/examples/search/get_depth.res b/docs/examples/search/get_depth.res index a31a1f0..2e8d30f 100644 --- a/docs/examples/search/get_depth.res +++ b/docs/examples/search/get_depth.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", diff --git a/docs/examples/search/get_news.res b/docs/examples/search/get_news.res index 9c273fe..75f7d11 100644 --- a/docs/examples/search/get_news.res +++ b/docs/examples/search/get_news.res @@ -19,6 +19,8 @@ Content-Type: application/json "getId": "news", "Creator": "admin", "id": "news", + "image_field": "", + "image_scales": {}, "portal_type": "Folder", "review_state": "published", "modified": "2022-04-02T20:22:00.000Z", @@ -27,6 +29,7 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", diff --git a/docs/examples/search/get_offset.res b/docs/examples/search/get_offset.res index c4272a6..40e9bf8 100644 --- a/docs/examples/search/get_offset.res +++ b/docs/examples/search/get_offset.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/search/get_sort_date.res b/docs/examples/search/get_sort_date.res index b8d2977..1065747 100644 --- a/docs/examples/search/get_sort_date.res +++ b/docs/examples/search/get_sort_date.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", diff --git a/docs/examples/search/get_sort_reverse.res b/docs/examples/search/get_sort_reverse.res index 420bb0d..7850c2d 100644 --- a/docs/examples/search/get_sort_reverse.res +++ b/docs/examples/search/get_sort_reverse.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", diff --git a/docs/examples/search/get_sort_title.res b/docs/examples/search/get_sort_title.res index 2ac17e6..8a3fbcf 100644 --- a/docs/examples/search/get_sort_title.res +++ b/docs/examples/search/get_sort_title.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/search/get_sort_unknown.res b/docs/examples/search/get_sort_unknown.res index 4e2f60c..0c1d424 100644 --- a/docs/examples/search/get_sort_unknown.res +++ b/docs/examples/search/get_sort_unknown.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/search/get_unknown.res b/docs/examples/search/get_unknown.res index 4e2f60c..0c1d424 100644 --- a/docs/examples/search/get_unknown.res +++ b/docs/examples/search/get_unknown.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/search/post.res b/docs/examples/search/post.res index 4e2f60c..0c1d424 100644 --- a/docs/examples/search/post.res +++ b/docs/examples/search/post.res @@ -27,6 +27,9 @@ Content-Type: application/json "created": "2022-04-02T20:30:00.000Z", "effective": "2022-04-02T20:30:00.000Z", "getObjSize": 192, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:30:00.000Z", @@ -57,6 +60,9 @@ Content-Type: application/json "created": "2022-04-02T20:22:00.000Z", "effective": "2022-04-02T20:22:00.000Z", "getObjSize": 217, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:22:00.000Z", @@ -87,6 +93,9 @@ Content-Type: application/json "created": "2022-04-02T20:10:00.000Z", "effective": "2022-04-02T20:10:00.000Z", "getObjSize": 421, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:10:00.000Z", @@ -117,6 +126,9 @@ Content-Type: application/json "created": "2022-04-02T20:24:00.000Z", "effective": "2022-04-02T20:24:00.000Z", "getObjSize": 191, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:24:00.000Z", @@ -147,6 +159,9 @@ Content-Type: application/json "created": "2022-04-02T20:00:00.000Z", "effective": "2022-04-02T20:00:00.000Z", "getObjSize": 1806, + "image_field": "", + "image_scales": {}, + "hasPreviewImage": false, "listCreators": ["admin"], "mime_type": null, "CreationDate": "2022-04-02T20:00:00.000Z", diff --git a/docs/examples/site/get.res b/docs/examples/site/get.res index a7c89e3..9a266fd 100644 --- a/docs/examples/site/get.res +++ b/docs/examples/site/get.res @@ -3,7 +3,7 @@ Content-Type: application/json { "@id": "http://localhost:8080/@site", - "robots_txt": "Sitemap: {portal_url}/sitemap.xml.gz\n\n# Define access-restrictions for robots/spiders\n# http://www.robotstxt.org/wc/norobots.html\n\n\n\n# By default we allow robots to access all areas of our site\n# already accessible to anonymous users\n\nUser-agent: *\nDisallow:\n\n\n\n# Add Googlebot-specific syntax extension to exclude forms\n# that are repeated for each piece of content in the site\n# the wildcard is only supported by Googlebot\n# http://www.google.com/support/webmasters/bin/answer.py?answer=40367&ctx=sibling\n\nUser-Agent: Googlebot\nDisallow: /*?\nDisallow: /*atct_album_view$\nDisallow: /*folder_factories$\nDisallow: /*folder_summary_view$\nDisallow: /*login_form$\nDisallow: /*mail_password_form$\nDisallow: /@@search\nDisallow: /*search_rss$\nDisallow: /*sendto_form$\nDisallow: /*summary_view$\nDisallow: /*thumbnail_view$\nDisallow: /*view$\n", - "site_logo": null, - "site_title": "Nick" + "plone.robots_txt": "Sitemap: {portal_url}/sitemap.xml.gz\n\n# Define access-restrictions for robots/spiders\n# http://www.robotstxt.org/wc/norobots.html\n\n\n\n# By default we allow robots to access all areas of our site\n# already accessible to anonymous users\n\nUser-agent: *\nDisallow:\n\n\n\n# Add Googlebot-specific syntax extension to exclude forms\n# that are repeated for each piece of content in the site\n# the wildcard is only supported by Googlebot\n# http://www.google.com/support/webmasters/bin/answer.py?answer=40367&ctx=sibling\n\nUser-Agent: Googlebot\nDisallow: /*?\nDisallow: /*atct_album_view$\nDisallow: /*folder_factories$\nDisallow: /*folder_summary_view$\nDisallow: /*login_form$\nDisallow: /*mail_password_form$\nDisallow: /@@search\nDisallow: /*search_rss$\nDisallow: /*sendto_form$\nDisallow: /*summary_view$\nDisallow: /*thumbnail_view$\nDisallow: /*view$\n", + "plone.site_logo": null, + "plone.site_title": "Nick" } \ No newline at end of file diff --git a/docs/examples/vocabularies/get_behaviors.res b/docs/examples/vocabularies/get_behaviors.res index cdd17eb..9bed3ce 100644 --- a/docs/examples/vocabularies/get_behaviors.res +++ b/docs/examples/vocabularies/get_behaviors.res @@ -32,6 +32,10 @@ Content-Type: application/json "title": "Ownership", "token": "ownership" }, + { + "title": "Preview Image Link", + "token": "preview_image_link" + }, { "title": "Short name", "token": "short_name" @@ -41,5 +45,5 @@ Content-Type: application/json "token": "versioning" } ], - "items_total": 9 + "items_total": 10 }