Differences between revisions 1 and 2
Revision 1 as of 2008-12-27 23:51:19
Size: 1252
Comment: initial version: moinmoin
Revision 2 as of 2009-02-08 08:09:14
Size: 1258
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). $3^5$

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). 3^5$

  • 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):