X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/4d0b142412f5f9312ae47d891bd00ef73b283aa9..07ec1372387b8c6fd8f3d8c6c0fdf10aabc9a706:/doc/bugs/Filenames_with_colons_cause_problems_for_Windows_users.mdwn diff --git a/doc/bugs/Filenames_with_colons_cause_problems_for_Windows_users.mdwn b/doc/bugs/Filenames_with_colons_cause_problems_for_Windows_users.mdwn index 8460f0c83..7559e6d0a 100644 --- a/doc/bugs/Filenames_with_colons_cause_problems_for_Windows_users.mdwn +++ b/doc/bugs/Filenames_with_colons_cause_problems_for_Windows_users.mdwn @@ -60,6 +60,16 @@ Windows does not support filenames containing any of these characters: `/ \ * : >>> source on windows systems is desired, you'd have to remember to turn >>> that on when setting up a wiki, even if the wiki was hosted on unix. >>> +>>> Ok, `wiki_file_chars` config option added, set to +>>> `"-[:alnum:]+/._"` to exclude colons from filenames read or written by +>>> ikiwiki. [[done]] +>>> >>> BTW, I suspect there are lots of other problems with actually running >>> ikiwiki on windows, including its assumption that the directory ->>> separator is "/". --[[Joey]] +>>> separator is "/". Windows will be supported when someone sends me a +>>> comprehansive and not ugly or performance impacting patch. :-) --[[Joey]] + +> Speaking of Windows filename problems, how do I keep directories ending in a +> period from being created? The following didn't seem to work. +> `wiki_file_chars => "-[:alnum:]+/._",` +> `wiki_file_regex => '[-[:alnum:]+_]$',`