Index: openacs-4/packages/xowiki/www/resources/wymeditor/wym_css_parser.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/wymeditor/wym_css_parser.js,v diff -u -r1.1 -r1.2 --- openacs-4/packages/xowiki/www/resources/wymeditor/wym_css_parser.js 15 Jul 2007 16:07:45 -0000 1.1 +++ openacs-4/packages/xowiki/www/resources/wymeditor/wym_css_parser.js 14 Sep 2007 17:53:31 -0000 1.2 @@ -24,7 +24,7 @@ this.addExitPattern("\\\x2a/", 'WymCssFeddbackStyle'); return this; -} +}; function WymCssParser() { @@ -33,19 +33,19 @@ this.only_wym_blocks = true; this.css_settings = {'classesItems':[], 'editorStyles':[], 'dialogStyles':[]}; return this; -} +}; WymCssParser.prototype.parse = function(raw, only_wym_blocks) { var only_wym_blocks = (only_wym_blocks == undefined ? this.only_wym_blocks : only_wym_blocks); this._Lexer = new WymCssLexer(this, only_wym_blocks); this._Lexer.parse(raw); -} +}; WymCssParser.prototype.Ignore = function(match, state) { return true; -} +}; WymCssParser.prototype.WymCssComment = function(text, status) { @@ -68,7 +68,7 @@ this._in_style = true; } return true; -} +}; WymCssParser.prototype.WymCssStyle = function(match, status) { @@ -83,15 +83,15 @@ this.addStyleSetting(this._current_item); } return true; -} +}; WymCssParser.prototype.WymCssFeddbackStyle = function(match, status) { if(status == LEXER_UNMATCHED){ this._current_item[this._current_element].feedback_style = match.replace(/^([\s\/\*]*)|([\s\/\*]*)$/gm,''); } return true; -} +}; WymCssParser.prototype.WymCssStyleDeclaration = function(match) { @@ -122,7 +122,7 @@ } } return true; -} +}; WymCssParser.prototype.addStyleSetting = function(style_details) { @@ -149,5 +149,5 @@ } } } -} +};