diff --git a/docs/user_manual/configuration_file/index.md b/docs/user_manual/configuration_file/index.md index 0badb4b24..bca1aea05 100644 --- a/docs/user_manual/configuration_file/index.md +++ b/docs/user_manual/configuration_file/index.md @@ -65,7 +65,27 @@ Optional properties can be set to segment the requested dataset. * The graph of the endpoint can be specified directly ofter the `ENDPOINT` tag using the `GRAPH` tag. * The limits of the query can be set with the `MINOFFSET` and `MAXOFFSET` tags directly after the `PAGESIZE` tag. The resulting query will ask about the statements in the interval [`MINOFFSET`, `MAXOFFSET`]. Note that `MINOFFSET` must be smaller than `MAXOFFSET`! If both `SOURCE` and `TARGET` are restricted, a warning is generated. -Please note that LIMES does not allow namespace IRIs to be used in the `PROPERTY`, `RESTRICTION`, and `OPTIONAL_PROPERTY` tag. Please use namespace prefixes and reference the namespace IRI using a prefix. +Please note that LIMES does not allow namespace IRIs to be used in the `PROPERTY`, `RESTRICTION`, and `OPTIONAL_PROPERTY` tag. Please use namespace prefixes and reference the namespace IRI using a prefix. Example: Do not use +``` + + ... + http://xmlns.com/foaf/0.1#name + ... + +``` +instead use the following +``` + + http://xmlns.com/foaf/0.1/ + + + + ... + foaf:name + ... + +``` + ### Preprocessing Functions #### Simple diff --git a/docs/user_manual/running_limes.md b/docs/user_manual/running_limes.md index 41e6832b3..2ac973224 100644 --- a/docs/user_manual/running_limes.md +++ b/docs/user_manual/running_limes.md @@ -136,7 +136,8 @@ The Prefixes component consists of two parts: The Data source and data target consists of the two similar components, which include three input fields: * *Sparql endpoint/Local file*: One of two options can be chosen. Sparql endpoint means that the user will select the endpont from the list. Local file means that the file should be provided as an endpoint. -* *Endpoint*: A dropdown list of available endpoints. Moreover, the user can try to search for the endpoint, typing it in the input field or write your own endpoint. After clicking on the endpoint from the list or writing it by hand and press the Enter, the user will get the list of restriction classes according to this endpoint. +* *Endpoint*: A dropdown list of available endpoints. Moreover, the user can try to search for the endpoint, typing it in the input field or write your own endpoint. After clicking on the endpoint from the list or writing it by hand and press the Enter, the user will get the list of restriction classes according to this endpoint. +If you upload files for the data source and target, and upload a configuration file after that, then you must upload the data source and target file again as the file path of them gets overwritten by the value of the later uploaded configuration file. * *Restriction*: Contains of three parameters splitted by space (?s rdf:type some:Type). The third parameter will be changed automatically after changing the restriction class. * *Restriction class*: A dropdown list of restriction classes according to the endpoint. You can start typing the name of the class and the list will be filtered automatically. After choosing the restriction class, you will get all the properties related to this class.