Question
I renamed one of my webs today and it appeared to go fairly well despite the fact that I had to manually redo a couple of links to topics in this web in other webs, but I ran into a specific problem with Mozilla 2.0. When I go to add a new topic in the renamed web, the following is displayed at the top:
unicode_chars.js will overwrite the regexes below Info on unicode: http://www.fileformat.info/info/unicode/ */ twiki.StringConstants = function () { this.init(); } twiki.StringConstants.__instance__ = null; // define the static property twiki.StringConstants.getInstance = function () { if (this.__instance__ == null) { this.__instance__ = new twiki.StringConstants(); } return this.__instance__; } twiki.StringConstants.prototype.UPPER_ALPHA_CHARS = "A-Z"; twiki.StringConstants.prototype.LOWER_ALPHA_CHARS = "a-z"; twiki.StringConstants.prototype.NUMERIC_CHARS = "\\d"; twiki.StringConstants.prototype.MIXED_ALPHA_CHARS; twiki.StringConstants.prototype.MIXED_ALPHANUM_CHARS; twiki.StringConstants.prototype.LOWER_ALPHANUM_CHARS; twiki.StringConstants.prototype.WIKIWORD_REGEX; twiki.StringConstants.prototype.ALLOWED_URL_CHARS; twiki.StringConstants.prototype.init = function () { twiki.StringConstants.prototype.MIXED_ALPHA_CHARS = twiki.StringConstants.prototype.LOWER_ALPHA_CHARS + twiki.StringConstants.prototype.UPPER_ALPHA_CHARS; twiki.StringConstants.prototype.MIXED_ALPHANUM_CHARS = twiki.StringConstants.prototype.MIXED_ALPHA_CHARS + twiki.StringConstants.prototype.NUMERIC_CHARS; twiki.StringConstants.prototype.LOWER_ALPHANUM_CHARS = twiki.StringConstants.prototype.LOWER_ALPHA_CHARS + twiki.StringConstants.prototype.NUMERIC_CHARS; twiki.StringConstants.prototype.WIKIWORD_REGEX = "^" + "[" + twiki.StringConstants.prototype.UPPER_ALPHA_CHARS + "]" + "+" + "[" + twiki.StringConstants.prototype.LOWER_ALPHANUM_CHARS + "]" + "+" + "[" + twiki.StringConstants.prototype.UPPER_ALPHA_CHARS + "]" + "+" + "[" + twiki.StringConstants.prototype.MIXED_ALPHANUM_CHARS + "]" + "*"; twiki.StringConstants.prototype.ALLOWED_URL_CHARS = twiki.StringConstants.prototype.MIXED_ALPHANUM_CHARS + "-_^"; } //-->
Any ideas?
Environment
--
RobKruciak - 17 May 2008
Answer
If you answer a question - or have a question you asked answered by someone - please remember to edit the page and set the status to answered. The status is in a drop-down list below the edit box.
Sorry, closing this question after more than 30 days of inactivity. Please feel free to re-open if necessary.
--
PeterThoeny - 23 Jul 2008
Topic revision: r2 - 23 Jul 2008 - 07:31:12 -
PeterThoeny