diff --git a/README.textile b/README.textile index e993d82fc76d48ad33e08b7e339d75b0c5a3ba9a..665908fe966732d221160e558cce84111befd4b8 100644 --- a/README.textile +++ b/README.textile @@ -122,6 +122,10 @@ h3. TODO * [_] add code (which should go into a library) to retrieve selected items from wdq files * [_] add a section describing similar known projects +h3. alternative download + +see [5] + h2. Wikitionary fetch dumps from [2], [3] and [4] and possibly other wiktionaries @@ -136,6 +140,7 @@ h2. Links * [2] https://dumps.wikimedia.org/enwiktionary/ * [3] https://dumps.wikimedia.org/dewiktionary/ * [4] https://dumps.wikimedia.org/nlwiktionary/ +* [5] https://dumps.wikimedia.org/wikidatawiki/entities/ h3. Todo: add a way to get the proper date diff --git a/wdq1.pl b/wdq1.pl index 2e47fb49c0f6260b0dc3c888dd701c828fe98dcd..1ccc219952652c0d0907109586a5129fbbce3d13 100755 --- a/wdq1.pl +++ b/wdq1.pl @@ -179,7 +179,6 @@ my %filters= 'P360' => wdpf ('P360', 'is a list of', 1), 'P361' => wdpf ('P361', 'part 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.) 'P213' => wdpf ('P213', 'ISNI'), # International Standard Name Identifier for an identity @@ -283,6 +282,18 @@ my %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 my @authctrl= qw(P213 P214 P227 P244 P496); my %authctrl= map { $_ => 1 } @authctrl;