You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bl...@apache.org on 2001/01/16 18:04:22 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/components/language/markup AbstractMarkupLanguage.java

bloritsch    01/01/16 09:04:22

  Modified:    src/org/apache/cocoon/components/language/markup Tag:
                        xml-cocoon2 AbstractMarkupLanguage.java
  Log:
  Fixes for step 2 of cocoon.xconf complexity cleanup
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.17  +5 -5      xml-cocoon/src/org/apache/cocoon/components/language/markup/Attic/AbstractMarkupLanguage.java
  
  Index: AbstractMarkupLanguage.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/components/language/markup/Attic/AbstractMarkupLanguage.java,v
  retrieving revision 1.1.2.16
  retrieving revision 1.1.2.17
  diff -u -r1.1.2.16 -r1.1.2.17
  --- AbstractMarkupLanguage.java	2001/01/12 15:31:17	1.1.2.16
  +++ AbstractMarkupLanguage.java	2001/01/16 17:04:22	1.1.2.17
  @@ -50,7 +50,7 @@
    * be decoupled from this context!!!
    *
    * @author <a href="mailto:ricardo@apache.org">Ricardo Rocha</a>
  - * @version CVS $Revision: 1.1.2.16 $ $Date: 2001/01/12 15:31:17 $
  + * @version CVS $Revision: 1.1.2.17 $ $Date: 2001/01/16 17:04:22 $
    */
   public abstract class AbstractMarkupLanguage
        implements MarkupLanguage, Composer, Configurable
  @@ -159,7 +159,7 @@
                       String namedLogicsheetName = namedLogicsheetURL.toExternalForm();
                       NamedLogicsheet namedLogicsheet = new NamedLogicsheet();
                       namedLogicsheet.setInputSource(
  -                        new InputSource(namedLogicsheetURL.toString())
  +                        new InputSource(namedLogicsheetName)
                       );
                       namedLogicsheet.setPrefix(namedLogicsheetPrefix);
                       namedLogicsheet.setUri(namedLogicsheetUri);
  @@ -235,9 +235,9 @@
   
       /**
       * Add a dependency on an external file to the document for inclusion in
  -    * generated code. This is used to populate a list of <code>File</code>'s 
  -	* tested for change on each invocation; this information is used to assert 
  -	* whether regeneration is necessary.
  +    * generated code. This is used to populate a list of <code>File</code>'s
  +    * tested for change on each invocation; this information is used to assert
  +    * whether regeneration is necessary.
       *
       * @param location The file path of the dependent file
       * @see <code>AbstractMarkupLanguage</code>, <code>ServerPagesGenerator</code>