]> source.dussan.org Git - redmine.git/commitdiff
Further refine WikiCaps processing for Trac to eliminate problems in
authorJohn Goerzen <jgoerzen@complete.org>
Sat, 15 Mar 2008 13:24:08 +0000 (13:24 +0000)
committerJohn Goerzen <jgoerzen@complete.org>
Sat, 15 Mar 2008 13:24:08 +0000 (13:24 +0000)
some corner cases

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1258 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/migrate_from_trac.rake

index 51d85fe0fc5dceb71d850952ec4b1fed88caabb5..f1d754109d0d0c9102579e71f352a8a150eefd42 100644 (file)
@@ -217,8 +217,8 @@ namespace :redmine do
         text = text.gsub(/\[wiki:\"(.+)\".*\]/) {|s| "[[#{$1.delete(',./?;|:')}]]"}
         text = text.gsub(/\[wiki:([^\s\]]+).*\]/) {|s| "[[#{$1.delete(',./?;|:')}]]"}
 
-       # Links to pages UsingJustCaps
-       text = text.gsub(/[^!]\b([A-Z][a-z]+[A-Z][a-zA-Z]+)/, ' [[\1]]')
+       # Links to pages UsingJustWikiCaps
+       text = text.gsub(/([^!]|^)(^| )([A-Z][a-z]+[A-Z][a-zA-Z]+)/, '\\1\\2[[\3]]')
        # Normalize things that were supposed to not be links
        # like !NotALink
        text = text.gsub(/(^| )!([A-Z][A-Za-z]+)/, '\1\2')