H'lo. Long time no see. :P I'm in the process of converting our internal wiki back over to Trac; I don't remember precisely *why* it was ever decided to go to MediaWiki in the first place, which is pretty amusing.
The data conversion was fairly straight-forward and relatively easy: I got a list of all the pages, dumped them into mediaWiki's export utility, then had it export it all in a big ol' XML file. Five lines of code for chunking that out (Hello, ElementTree), and about ten simple string replacements, then a trac-admin wiki load, and the content is mostly over and at least present. Now comes the fun part. We had a number of specialized templates for formatting certain common data in a visually pleasing way. I'm writing simple macros for that (as one-file plugins from WikiMacroBase). The first big hiccup I've noticed? I like to use keyword arguments, since otherwise the peers won't remember what's what, and looking over the pages... I can't rely upon them ever being able to type them in with the proper case. [[APTBuild(build=256, Revision=4587, date=03/03/2007, path=/release/build256)]] Notice the R. :) The question: Am I missing anything obvious(a feature, option, etc) to make this not an issue? If not, then I'll probably end up making a patch to have parse_args return a case-insensitive dict. Thanks in advance. --Stephen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" 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/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
