I spent yesterday moving a lot of text formatting rules from the Oddmuse core to a new module that I will call *UseMod Text Formatting Extension*. Once these are out of the way, I can implement modules for MoinMoin markup rules, for example. Or for whatever comes out of the attempts at a WikiMarkupStandard.
I should also implement a very simple form of a Local Names Server ¹... Then I could link people’s names directly to their homepage URLs instead of redirecting via PeopleUpdates.
I’m also trying to find all the *unlinked images* on my wiki. Here’s what I use:
#!/bin/sh cat /org/org.emacswiki/htdocs/alex/page/*/*.pg > /tmp/alex.pages cd /org/org.emacswiki/htdocs/alex/pics for f in *.jpg; do if ! grep -q "$f" /tmp/alex.pages; then echo "-> $f"; fi done
The output:
-> CityLife1.jpg -> alex-face-wiedikon.jpg -> alex.jpg -> baum-b\374rkliplatz-2003-02.jpg -> fraum\374nster-2003-02.jpg -> gem\374sebr\374cke-2003-02.jpg -> gem\374sebr\374cke-in-blau-2003-02.jpg -> hydrant-2003-06.jpg -> lion.jpg -> marokko-joel-0824.jpg -> m\374nster-2003-02.jpg
Heh. Gotta find them. 😄
#Wikis