Check relative link handling in webviews #11
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/wikiparser#11
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the dumps, links within the same language's wiki are written as relative
links (
./Article_Title
), while cross-wiki links (e.g.[[:fr:Pomme]]
) arealready expanded to absolute links (
https://fr.wikipedia.org/wiki/Pomme
).See https://en.wikipedia.org/wiki/Help:Interwiki_linking for more examples of wikitext linking.
The dump html includes a base element set to
//lang.wikipedia.org/wiki/
, but when opened as a file in firefox it assumes the scheme isfile:
so they don't work.We should see if the android/ios webviews have a similar problem, and if so updating the html processing to set the scheme in the base element should handle it.
Discussed more in #10.
Looks like current OM wiki articles do not have any links. It makes sense for compact article sizes. We can come back to this issue later if we need to enrich the wiki articles' functionality.