2004-08-16 Wikis

More work on Sage. ¹ I added author/contributor lines, and then noticed that the HTML/CSS was getting ugly, so I fiddled with the templates...

¹

If you want to do this, proceed as follows:

1. Install the extension. ²

2. Follow the CVS checkout instructions on their homepage. ³

3. Apply the patch from the email linked above.

4. Copy the little script below into your sage/src/sage directory (ie. in the same directory where *content* is).

5. Run the script using ._install content__.js content*res/*.txt content*res/*.css – this will locate your sage.jar file and update it._

6. Restart your browser.​#! /bin/sh if test -z "$1"; then echo Supply the filename to install in sage.jar exit fiFIREFOX=$HOME/.mozilla/firefox/ JAR=`find $FIREFOX -name sage.jar`if test -z "$JAR"; then echo Cannot find sage.jar in $FIREFOX exit fiecho Installing to $JAR zip -u $JAR $@ || echo Nothing to do

²

³

​#Wikis