I finally got it to work.
mwlib tries to write files that contain a colon ("File:Archi1.gif"),
this does not work under Windows.
So I added this:
utils.py, Line 85: (fsescape)
elif c==58: # ord(":")==58
res.append("-")
After that, you will find out that os.symlink( ) is not supported
under Windows, so I changed this:
nuwiki.py, Line 147:
#os.symlink(os.path.join("..", utils.fsescape(fqname)), safe_path)
shutil.copy(p, safe_path)
I don't know python, so use at your own risk ;-)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"mwlib" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/mwlib?hl=en
-~----------~----~----~----~------~----~------~--~---