Difference between revisions of "Workdocumentation 2021-03-30"
Jump to navigation
Jump to search
Musaab Khan (talk | contribs) |
Musaab Khan (talk | contribs) |
||
Line 14: | Line 14: | ||
**<source lang='bash'> | **<source lang='bash'> | ||
wikiedit -t wikiId -q "[[isA::Event]]" --search "(\|Ordinal=[0-9]+)(?:st|nd|rd|th)\b" --replace "\1" | wikiedit -t wikiId -q "[[isA::Event]]" --search "(\|Ordinal=[0-9]+)(?:st|nd|rd|th)\b" --replace "\1" | ||
− | + | </source> | |
** A code snippet can be used coupled with wikibackup and bash tools for specific editing of pages: | ** A code snippet can be used coupled with wikibackup and bash tools for specific editing of pages: | ||
Line 20: | Line 20: | ||
** Pipeline usage: | ** Pipeline usage: | ||
** <source lang='bash'> | ** <source lang='bash'> | ||
+ | grep Ordinal C:/Users/92031/wikibackup/ormk -l -r | python ordinal_to_cardinal.py -stdin -d '../dictionary.yaml' -ro -f | wikirestore -t ormk -stdinp -ui | ||
</source> | </source> |
Revision as of 21:53, 30 March 2021
Red Links and Data Fixations
Broken redirects
- The list of all broken redirects on openresearch can be found here: https://www.openresearch.org/mediawiki/index.php?title=Special:BrokenRedirects&limit=500&offset=0
Broken file links
- List of all broken links which contain a file path but the file does not exist can be found here: https://www.openresearch.org/wiki/Category:Pages_with_broken_file_links
Broken properties and errors
- The property Property:Has improper value for stores all invalid values.
- For the Fix for ordinals the following approaches can be used :
- This approach finds and edits all events with ordinals fixed:
wikiedit -t wikiId -q "[[isA::Event]]" --search "(\|Ordinal=[0-9]+)(?:st|nd|rd|th)\b" --replace "\1"
- A code snippet can be used coupled with wikibackup and bash tools for specific editing of pages:
- Code Snippet
- Pipeline usage:
grep Ordinal C:/Users/92031/wikibackup/ormk -l -r | python ordinal_to_cardinal.py -stdin -d '../dictionary.yaml' -ro -f | wikirestore -t ormk -stdinp -ui