Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ This function allows storing the HTML content of static pages and displaying lin

To add new static pages go to **Admin Console** --> **Settings** --> **Static Pages** and select the **+ New Static Page** option, providing the following information:

- **Language**: User interface language in which the static page will be displayed.
- **Page identifier**: A unique text identifier for the page.
- **Language**: User interface language in which the static page will be displayed.
(3 letters like 'eng', 'ita', 'fra' ...)
- **Page identifier**: A unique text identifier for the page.
This value should be encoded
- **Page label**: Label to display on the link.
- **Page icon**: (Optional) Icon to display next to the link label.
- **Format**: Format of the static page:
Expand All @@ -18,7 +20,7 @@ To add new static pages go to **Admin Console** --> **Settings** --> **Static

- **Link**: Available for **Web link** / **Email link** formats.

- For **Web link** the link to a web page.
- For **Web link** the URL link to another web page. The URL should be encoded.
- For **Email link**, the email address to which the email will be sent.

- **Page content file**: For formats other than **Web link** or **Email link**, allows uploading a file with the HTML content / text to be displayed.
Expand Down
19 changes: 14 additions & 5 deletions docs/manual/docs/user-guide/harvesting/harvesting-simpleurl.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Provide the following information:
- *API Key header name*: The HTTP header name to use (default is `Authorization`).
If both Basic Auth and API Key are configured, both will be sent in the request as headers. This supports servers that require or accept multiple authentication schemes.
- *Element to loop on*: Property/element containing a list of the record entries. (Indicated as an absolute path from the document root.) eg. `/datasets`
- *Element for the UUID of each record* : Property containing the record id. eg. `datasetid`
- *Element for the UUID of each record* : Property containing the record id. eg. `/datasetid`
- *Pagination parameters*: (optional)
- *Element for the number of records to collect*: Property indicating the total count of record entries. (Indicated as an absolute path from the document root.) eg. `/nhits`
- *From URL parameter*: Property indicating the first record item on the current "page" eg. `start`
Expand Down Expand Up @@ -57,11 +57,20 @@ If Basic Auth is also set, both forms of authentication will be sent.

## Sample configurations

### Sample configuration for opendatasoft
### Sample configuration for opendatasoft v1

- *Element to loop on* - `/datasets`
- *Element for the number of records to collect* : `/nhits`
- *Element for the UUID of each record* : `datasetid`
- *Element for the UUID of each record* : `/datasetid`
- *From URL parameter* : `start`
- *Size URL parameter* : `rows`
- *XSL transformation to apply* : `OPENDATASOFT-to-ISO19115-3-2018`

### Sample configuration for opendatasoft v2

- *Element to loop on* - `/datasets`
- *Element for the number of records to collect* : `/nhits`
- *Element for the UUID of each record* : `/dataset/datasetid`
- *From URL parameter* : `start`
- *Size URL parameter* : `rows`
- *XSL transformation to apply* : `OPENDATASOFT-to-ISO19115-3-2018`
Expand All @@ -70,7 +79,7 @@ If Basic Auth is also set, both forms of authentication will be sent.

- *Element to loop on* - `/dataset`
- *Element for the number of records to collect* : `/result/count`
- *Element for the UUID of each record* : `landingPage`
- *Element for the UUID of each record* : `/landingPage`
- *From URL parameter* : `start`
- *Size URL parameter* : `rows`
- *XSL transformation to apply* : `ESRIDCAT-to-ISO19115-3-2018`
Expand All @@ -79,7 +88,7 @@ If Basic Auth is also set, both forms of authentication will be sent.

- *Element to loop on* - `/result/0`
- *Element for the number of records to collect* : `/result/count`
- *Element for the UUID of each record* : `id`
- *Element for the UUID of each record* : `/id`
- *From URL parameter* : `start`
- *Size URL parameter* : `rows`
- *XSL transformation to apply* : `DKAN-to-ISO19115-3-2018`
Loading