Ok, so SourceForge completed a request to rename the help files in pd/doc/5.reference and it went over without a hitch. If anyone else wants to convert there helpfiles from help-*.pd to *-help.pd, let me know and I'll file the SourceForge support request.
Here's the script to do it locally:
#!/bin/sh
for helpfile in help-*.pd ; do
mv "$helpfile" "`echo $helpfile |
sed 's/^help-(.*).pd$/\1-help.pd/'`"
done
its also attached. Just run this script in the directory where the helpfiles in question are. It requires bourne shell and sed.
.hc
As we enjoy great advantages from inventions of others, we should be
glad of an opportunity to serve others by any invention of ours; and
this we should do freely and generously.
- Benjamin Franklin