Differences between revisions 3 and 4
Revision 3 as of 2009-02-08 08:10:12
Size: 1252
Editor: robertwb
Comment:
Revision 4 as of 2009-02-08 08:10:41
Size: 1264
Editor: robertwb
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
    embed math in pages using $ and $$ (which must be all on one line).     embed math in pages using {{{$}}} and {{{$$}}} (which must be all on one line).

This is the Moin Moin wiki:

By default moinmoin will typeset math using jsmath. To change this edit the configure for your particular wiki.

Modifications

  • (these are copied over from the sage subdirectory at build time).
  • I changed wiki/config/wikiconfig.py
    • In particular, it's set so one can directly

      embed math in pages using $ and $$ (which must be all on one line).

  • Added latex format support to the
    • wiki/data/plugin/parser wiki/data/plugin/macro
    • directories.
  • Added jsmath format support to
    • wiki/data/plugin/parser/
  • 2006-10-16: Fixed a bug that Justin Walker found in
    • MoinMoin/util/filesys.py (this is copied over at build time).

--- ../MoinMoin/util/filesys.py 2006-05-11 09:24:00.000000000 -0700 +++ filesys.py 2006-10-16 08:42:18.000000000 -0700 @@ -159,10 +159,12 @@

  • """ try:
    • from Carbon import File

+ except ImportError: + return None + try:

  • return File.FSRef(path).as_pathname()

- except (ImportError, File.Error): + except File.Error:

  • return None

-

  • else:
    • def realPathCase(path):