Skip to content
Snippets Groups Projects
Commit 635d868f authored by Gerhard Gonter's avatar Gerhard Gonter :speech_balloon:
Browse files

minor changes

parent f2e76cba
Branches
No related tags found
No related merge requests found
...@@ -122,6 +122,10 @@ h3. TODO ...@@ -122,6 +122,10 @@ h3. TODO
* [_] add code (which should go into a library) to retrieve selected items from wdq files * [_] add code (which should go into a library) to retrieve selected items from wdq files
* [_] add a section describing similar known projects * [_] add a section describing similar known projects
h3. alternative download
see [5]
h2. Wikitionary h2. Wikitionary
fetch dumps from [2], [3] and [4] and possibly other wiktionaries fetch dumps from [2], [3] and [4] and possibly other wiktionaries
...@@ -136,6 +140,7 @@ h2. Links ...@@ -136,6 +140,7 @@ h2. Links
* [2] https://dumps.wikimedia.org/enwiktionary/ * [2] https://dumps.wikimedia.org/enwiktionary/
* [3] https://dumps.wikimedia.org/dewiktionary/ * [3] https://dumps.wikimedia.org/dewiktionary/
* [4] https://dumps.wikimedia.org/nlwiktionary/ * [4] https://dumps.wikimedia.org/nlwiktionary/
* [5] https://dumps.wikimedia.org/wikidatawiki/entities/
h3. Todo: add a way to get the proper date h3. Todo: add a way to get the proper date
......
...@@ -179,7 +179,6 @@ my %filters= ...@@ -179,7 +179,6 @@ my %filters=
'P360' => wdpf ('P360', 'is a list of', 1), 'P360' => wdpf ('P360', 'is a list of', 1),
'P361' => wdpf ('P361', 'part of', 1), 'P361' => wdpf ('P361', 'part of', 1),
'P1269' => wdpf ('P1269', 'facet of', 1), 'P1269' => wdpf ('P1269', 'facet of', 1),
'P2429' => wdpf ('P2429', 'label_en | expected completeness', 1), # describes whether a property is intended to represent a complete set of real-world items having that property
# item identifer (persons, places, etc.) # item identifer (persons, places, etc.)
'P213' => wdpf ('P213', 'ISNI'), # International Standard Name Identifier for an identity 'P213' => wdpf ('P213', 'ISNI'), # International Standard Name Identifier for an identity
...@@ -283,6 +282,18 @@ my %filters= ...@@ -283,6 +282,18 @@ my %filters=
); );
my @filters= sort keys %filters; my @filters= sort keys %filters;
=begin comment
meta-properties: properties about properties
'P2429' => wdpf ('P2429', 'expected completeness', 1), # describes whether a property is intended to represent a complete set of real-world items having that property
this points to several values, e.g.:
Q21873886 => will always be incomplete
Q21873974 => will eventually be incomplete
=end comment
=cut
# Authority Control # Authority Control
my @authctrl= qw(P213 P214 P227 P244 P496); my @authctrl= qw(P213 P214 P227 P244 P496);
my %authctrl= map { $_ => 1 } @authctrl; my %authctrl= map { $_ => 1 } @authctrl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment