-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwhiteList.xml
More file actions
73 lines (57 loc) · 2.62 KB
/
whiteList.xml
File metadata and controls
73 lines (57 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file holds URL patterns for whitelisted resources that the DIGGS Context Validation Scenario may access
This file may be modified to include resource locations that are not whitelisted by the DIGGS project, in order to allow local implementations
to run the DIGGS Context Validation Scenario on DIGGS instance files that reference non-DIGGS Standard resources. Only trusted locations should
be listed in this file to avoid security issues..
-->
<whitelist>
<!-- ******** Standard DIGGS, OGC, and EPSG Resource Patterns DO NOT REMOVE ******** -->
<resource>
<pattern>https://diggsml.org</pattern>
<description>DIGGS Standard resources - schema, code list, CRS, Unit and Authority
Dictionaries</description>
</resource>
<resource>
<pattern>http://diggsml.org</pattern>
<description>DIGGS Standard resources - schema, code list, CRS, Unit and Authority
Dictionaries</description>
</resource>
<resource>
<pattern>http://www.opengis.net/def</pattern>
<description>OGC API Resources</description>
</resource>
<resource>
<pattern>https://www.opengis.net/def</pattern>
<description>OGC API Resources</description>
</resource>
<resource>
<pattern>https://epsg.org/api</pattern>
<description>EPSG API Resources</description>
</resource>
<!-- ***************************************************************************** -->
<!-- ********* Patterns to access a local dictionary or other resource ********** -->
<resource>
<pattern>file:///</pattern>
<!-- Pattern to find local files by absolute path -->
<description>Local file resources by absolute path</description>
</resource>
<resource>
<pattern>./</pattern>
<!-- Pattern to find local files by relative path -->
<description>Local file resources by relative pathin same or subdirectories from main xslt
file</description>
</resource>
<resource>
<pattern>../</pattern>
<!-- Pattern to find local files by relative path -->
<description>Local file resources by relative path from parent directories to main xslt
file</description>
</resource>
<!-- ***************************************************************************** -->
<!-- Example pattern to add other resource
<resource>
<pattern>https://example.com/dictionaries/</pattern>
<description>Company-specific DIGGS dictionary files</description>
</resource>
-->
</whitelist>