Differences between revisions 4 and 5
Revision 4 as of 2009-02-08 08:10:41
Size: 1264
Editor: robertwb
Comment:
Revision 5 as of 2022-04-05 01:17:41
Size: 0
Editor: mkoeppe
Comment: outdated
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This is the Moin Moin wiki:

     http://moinmoin.wikiwikiweb.de/

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