forked from organicmaps/organicmaps
[generator] Update checks for wikimedia_commons tag
This tag is frequenty misused and a full url is provided. It's incorrect but happens so often that we should protect against it. Signed-off-by: ddpasa <emailformygitacc@proton.me>
This commit is contained in:
parent
48dc00b192
commit
408dc27152
1 changed files with 7 additions and 0 deletions
|
@ -289,6 +289,13 @@ string MetadataTagProcessorImpl::ValidateAndFormat_wikipedia(string v) const
|
|||
|
||||
string MetadataTagProcessorImpl::ValidateAndFormat_wikimedia_commons(string v) const
|
||||
{
|
||||
|
||||
// Putting the full wikimedia url to this tag is incorrect according to:
|
||||
// https://wiki.openstreetmap.org/wiki/Key:wikimedia_commons
|
||||
// But it happens often enough that we should guard against it.
|
||||
strings::ReplaceFirst(v, "https://commons.wikimedia.org/wiki/", "");
|
||||
strings::ReplaceFirst(v, "https://commons.m.wikimedia.org/wiki/", "");
|
||||
|
||||
if(strings::StartsWith(v, "File:") || strings::StartsWith(v, "Category:"))
|
||||
{
|
||||
return v;
|
||||
|
|
Loading…
Add table
Reference in a new issue