Modified $template->init_vars() to pivot to local page metadata and permissions from a PageProcessor object instead of global data from $paths and permissions from $session to allow redirects to affect on-page controls as well as the actual content (only partially complete, protection and several other elements still need to be localized)
#!/bin/bash
for f in *.svg; do
echo Converting $f
fname=`echo $f | cut -d '.' -f 1`
rm -f $fname.png
inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done