https://bugzilla.novell.com/show_bug.cgi?id=431622
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=431622#c1 --- Comment #1 from Rolf Bjarne Kvinge <[EMAIL PROTECTED]> 2008-10-02 09:11:59 MDT --- This patch fixes it, however it might be interesting to test for other characters than + too. Index: TemplateParser.cs =================================================================== --- TemplateParser.cs (revision 113039) +++ TemplateParser.cs (working copy) @@ -1027,11 +1027,13 @@ className = inputFile.Substring (physPath.Length).ToLower (CultureInfo.InvariantCulture); className = className.Replace ('.', '_'); className = className.Replace ('/', '_').Replace ('\\', '_'); + className = className.Replace ('+', '_'); } else #endif className = Path.GetFileName (inputFile).Replace ('.', '_'); className = className.Replace ('-', '_'); className = className.Replace (' ', '_'); + className = className.Replace ('+', '_'); if (Char.IsDigit(className[0])) { className = "_" + className; -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
