MediaWiki HSL Migration: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 16: | Line 16: | ||
</pre> | </pre> | ||
<pre> | <pre> | ||
perl -ne 'print "$ | cat files-*.html | perl -ne 'print "$1\n" while m|a href="(File:[^"]*)"|g' | ||
</pre> | |||
== Handling Files == | |||
# Hit the /wiki/File:... page | |||
# grep for "Full resolution" | |||
# get the URL from: a href="/w/images/1/1c/zoom-into-rectangle.png" class="internal" | |||
<pre> | |||
curl 'https://wiki.heatsynclabs.org/wiki/File:zoom-into-rectangle.png' | grep 'Full resolution' | perl -ne 'print "$1\n" while m|a href="(/w/images/[^"]*)" class="internal"|g' | |||
</pre> | </pre> |
Revision as of 23:15, 30 March 2024
2024-03-30 Attempt
Fixing Broken Categories
cd /var/www/mediawiki/maintenance/ php update.php # this didn't do it php rebuildall.php # this worked
Perl Regex for Page Names
perl -ne 'print "$2\n" while m|<a href="[^"]*"( class="mw-redirect")* title="[^"]*">([^<>]*)</|g' < pages-02.html
Perl Regex for File Links
a href="/wiki/File:01mendel-ABS_solid-bed-height-spacer-31m.jpg"
cat files-*.html | perl -ne 'print "$1\n" while m|a href="(File:[^"]*)"|g'
Handling Files
- Hit the /wiki/File:... page
- grep for "Full resolution"
- get the URL from: a href="/w/images/1/1c/zoom-into-rectangle.png" class="internal"
curl 'https://wiki.heatsynclabs.org/wiki/File:zoom-into-rectangle.png' | grep 'Full resolution' | perl -ne 'print "$1\n" while m|a href="(/w/images/[^"]*)" class="internal"|g'