You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2005/04/25 19:03:56 UTC

svn commit: r164601 - in /cocoon/branches/BRANCH_2_1_X/src: blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java java/org/apache/cocoon/transformation/SimpleFormTransformer.java

Author: vgritsenko
Date: Mon Apr 25 10:03:55 2005
New Revision: 164601

URL: http://svn.apache.org/viewcvs?rev=164601&view=rev
Log:
call super.configure

Modified:
    cocoon/branches/BRANCH_2_1_X/src/blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java
    cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/transformation/SimpleFormTransformer.java

Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java
URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java?rev=164601&r1=164600&r2=164601&view=diff
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/src/blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java (original)
+++ cocoon/branches/BRANCH_2_1_X/src/blocks/html/java/org/apache/cocoon/transformation/HTMLTransformer.java Mon Apr 25 10:03:55 2005
@@ -1,12 +1,12 @@
 /*
  * Copyright 1999-2004 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -40,7 +40,7 @@
 import org.xml.sax.SAXException;
 
 /**
- * Converts (escaped) HTML snippets into JTidied HTML. 
+ * Converts (escaped) HTML snippets into JTidied HTML.
  * This transformer expects a list of elements, passed as comma separated
  * values of the "tags" parameter. It records the text enclosed in such
  * elements and pass it thru JTidy to obtain valid XHTML.
@@ -61,7 +61,7 @@
      * Properties for Tidy format
      */
     private Properties properties;
-    
+
     /**
      * Tags that must be normalized
      */
@@ -109,6 +109,8 @@
      * a jtidy configuration file location.
      */
     public void configure(Configuration config) throws ConfigurationException {
+        super.configure(config);
+
         String configUrl = config.getChild("jtidy-config").getValue(null);
         if (configUrl != null) {
             org.apache.excalibur.source.SourceResolver resolver = null;
@@ -200,10 +202,10 @@
         Parameters par)
         throws ProcessingException, SAXException, IOException {
         super.setup(resolver, objectModel, src, par);
-        String tagsParam = par.getParameter("tags", "");        
+        String tagsParam = par.getParameter("tags", "");
         if (getLogger().isDebugEnabled()) {
         	getLogger().debug("tags: " + tagsParam);
-        }        
+        }
         this.tags = new HashMap();
         StringTokenizer tokenizer = new StringTokenizer(tagsParam, ",");
         while (tokenizer.hasMoreElements()) {

Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/transformation/SimpleFormTransformer.java
URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/transformation/SimpleFormTransformer.java?rev=164601&r1=164600&r2=164601&view=diff
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/transformation/SimpleFormTransformer.java (original)
+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/transformation/SimpleFormTransformer.java Mon Apr 25 10:03:55 2005
@@ -345,6 +345,8 @@
      * Avalon Configurable Interface
      */
     public void configure(Configuration config) throws ConfigurationException {
+        super.configure(config);
+
         this.defaultInputConf = config.getChild("input-module");
         this.defaultInput = this.defaultInputConf.getAttribute("name", this.defaultInput);
         this.separator = config.getChild("separator").getValue(this.separator);