Tags:
create new tag
view all tags

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

TWiki version: TWikiRelease04x02x00
TWiki plugins: DefaultPlugin, EmptyPlugin, InterwikiPlugin
Server OS: FC8
Web server: Apache
Perl version: 5.8
Client OS: XP
Web Browser: Firefox 2.0.0.14
Categories: Browser Issue

-- RobKruciak - 17 May 2008

Answer

ALERT! If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is 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

Change status to:
Edit | Attach | Watch | Print version | History: r2 < r1 | Backlinks | Raw View | Raw edit | More topic actions
Topic revision: r2 - 2008-07-23 - PeterThoeny
 
  • Learn about TWiki  
  • Download TWiki
This site is powered by the TWiki collaboration platform Powered by Perl Hosted by OICcam.com Ideas, requests, problems regarding TWiki? Send feedback. Ask community in the support forum.
Copyright © 1999-2026 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.