On May 17, 2002 08:33 am, Aaron Held wrote: > There are some minor bugs that I see, such as using a '\' for the URL path > rather then a '/', so use IE until I can rerun the docs on Linux. (And a > newer version of Webkit)
You can convert the backslashes fairly easily using a tool that comes with Cheetah: $ python >>> from Cheetah.FileUtils import * >>> happydocDirectory = "?????" >>> files = findFiles(happydocDirectory, ["*html"]) >>> replaceRegexInFiles(files, r'(?<=[a-zA-Z_0-9])\\(?=[a-zA-Z_0-9])', '/') # a fairly braindead regex should work fine Cheers, Tavis _______________________________________________________________ Hundreds of nodes, one monster rendering program. Now that�s a super model! Visit http://clustering.foundries.sf.net/ _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
