Skip to content

Commit a6750bb

Browse files
edit doc
1 parent a1ba2a1 commit a6750bb

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88

99
### Fixed
1010

11-
- Fixed error when "Properties to ignore" field is empty, or contains empty lines.
11+
- Fixed error when "Properties to ignore" field is empty, or contains empty lines
1212

1313
### Changed
1414

15-
- Removed warning regarding "Fetch namespace prefixes from prefix.cc" parameter in documentation,
16-
since no information about the used namespaces is revealed when downloading the namespace list.
15+
- Edit warning regarding "Fetch namespace prefixes from prefix.cc" parameter
1716

1817
## [3.0.0] 2025-03-05
1918

cmem_plugin_shapes/doc/shapes_doc.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,17 @@ If the graph is not imported, the new shapes are not activated and used.
2828

2929
**<a id="parameter_doc_prefix_cc">Fetch namespace prefixes from prefix.cc</a>**
3030

31+
Fetch the list of namespace prefixes from https://prefix.cc instead of using the local prefix database. If unavailable,
32+
fall back to the local database. Prefixes defined in the Corporate Memory project override database prefixes. Enabling this
33+
option exposes your IP address to prefix.cc but no other data is shared. If unsure, keep this option disabled. See
34+
https://prefix.cc/about.
35+
3136
Attempt to fetch the list of namespace prefixes from https://prefix.cc instead of using the local database. If this fails,
3237
fall back on the local database. Prefixes defined in the Corporate Memory project will override prefixes defined in the database.
3338

39+
When enabled, your IP address is exposed to this external service but no other data (e.g., graph content) is shared.
40+
For details, see https://prefix.cc/about. If unsure, keep this option disabled.
41+
3442
**<a id="parameter_doc_ignore_properties">Properties to ignore</a>**
3543

3644
Provide the list of properties (as IRIs) for which you do not want to create property shapes.

cmem_plugin_shapes/plugin_shapes.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,11 @@ def str2bool(value: str) -> bool:
119119
param_type=BoolParameterType(),
120120
name="prefix_cc",
121121
label="Fetch namespace prefixes from prefix.cc",
122-
description="Attempt to fetch the list of namespace prefixes from https://prefix.cc "
123-
"instead of using the local database. If this fails, fall back on the local database. "
124-
"Prefixes defined in the Corporate Memory project will override prefixes defined in "
125-
"the database.",
122+
description="Fetch the list of namespace prefixes from https://prefix.cc instead of "
123+
"using the local prefix database. If unavailable, fall back to the local database. "
124+
"Prefixes defined in the Corporate Memory project override database prefixes. Enabling "
125+
"this option exposes your IP address to prefix.cc but no other data is shared. If "
126+
"unsure, keep this option disabled. See https://prefix.cc/about.",
126127
advanced=True,
127128
),
128129
PluginParameter(

0 commit comments

Comments
 (0)