upayavira    2003/09/22 13:10:47

  Modified:    src/blocks/mail/java/org/apache/cocoon/mail
                        MailContentHandlerDelegate.java
               src/blocks/woody/java/org/apache/cocoon/woody/formmodel
                        AbstractWidgetDefinitionBuilder.java
               src/java/org/apache/cocoon/transformation
                        XIncludeTransformer.java
  Log:
  unkown-->unknown
  
  Revision  Changes    Path
  1.5       +5 -5      
cocoon-2.1/src/blocks/mail/java/org/apache/cocoon/mail/MailContentHandlerDelegate.java
  
  Index: MailContentHandlerDelegate.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/mail/java/org/apache/cocoon/mail/MailContentHandlerDelegate.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MailContentHandlerDelegate.java   24 Mar 2003 14:33:56 -0000      1.4
  +++ MailContentHandlerDelegate.java   22 Sep 2003 20:10:46 -0000      1.5
  @@ -657,7 +657,7 @@
               } else if (o instanceof InputStream) {
                   encodeInputStreamForXML((InputStream) o);
               } else {
  -                // unkown type
  +                // unknown type
                   InputStream is = part.getInputStream();
                   encodeInputStreamForXML(is);
               }
  
  
  
  1.4       +1 -1      
cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/formmodel/AbstractWidgetDefinitionBuilder.java
  
  Index: AbstractWidgetDefinitionBuilder.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/formmodel/AbstractWidgetDefinitionBuilder.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AbstractWidgetDefinitionBuilder.java      16 Jul 2003 13:59:36 -0000      
1.3
  +++ AbstractWidgetDefinitionBuilder.java      22 Sep 2003 20:10:47 -0000      
1.4
  @@ -100,7 +100,7 @@
           try {
               builder = 
(WidgetDefinitionBuilder)widgetDefinitionBuilderSelector.select(widgetName);
           } catch (ServiceException e) {
  -            throw new CascadingException("Unkown kind of widget \"" + 
widgetName + "\" specified at " + DomHelper.getLocation(widgetDefinition), e);
  +            throw new CascadingException("Unknown kind of widget \"" + 
widgetName + "\" specified at " + DomHelper.getLocation(widgetDefinition), e);
           }
           return builder.buildWidgetDefinition(widgetDefinition);
       }
  
  
  
  1.8       +2 -2      
cocoon-2.1/src/java/org/apache/cocoon/transformation/XIncludeTransformer.java
  
  Index: XIncludeTransformer.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/transformation/XIncludeTransformer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XIncludeTransformer.java  4 Jul 2003 13:55:09 -0000       1.7
  +++ XIncludeTransformer.java  22 Sep 2003 20:10:47 -0000      1.8
  @@ -363,7 +363,7 @@
                   // an empty href is a reference to the current document -- 
this can be different than the current base
                   if (href.equals("")) {
                       if (this.href == null)
  -                        throw new SAXException("XIncludeTransformer: 
encountered empty href (= href pointing to the current document) but the 
location of the current document is unkown.");
  +                        throw new SAXException("XIncludeTransformer: 
encountered empty href (= href pointing to the current document) but the 
location of the current document is unknown.");
                       int fragmentIdentifierPos2 = this.href.indexOf('#');
                       if (fragmentIdentifierPos2 != -1)
                           href = this.href.substring(0, 
fragmentIdentifierPos2);
  
  
  

Reply via email to