You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by Vadim Gritsenko <va...@reverycodes.com> on 2004/02/28 19:37:45 UTC

Re: cvs commit: cocoon-2.1/src/blocks/html/lib jtidy-04aug2000r7-dev.jar.license

cziegeler@apache.org wrote:

>  Start placing license next to the jars. 
>  This enables us 
>  - to check which licenses are missing
>  - to write tools to check this
>  - to easily update a license of a jar if the license changes
>

But does it make any sense? I don't see it. legal/ was much more elegant 
- and user friendly.


PS cvs up, clean build, localhost:8888, result:

    Message: Lookup of serializer 'html' failed at 
file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xmap:781:45

    Cause:  
org.apache.avalon.framework.configuration.ConfigurationException: No 
value is associated with the configuration element 
"cdata-section-elements" at 
file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xmap:212:182


What could be the reason?

Vadim


RE: cvs commit: cocoon-2.1/src/blocks/html/lib jtidy-04aug2000r7-dev.jar.license

Posted by Carsten Ziegeler <cz...@s-und-n.de>.
Carsten Ziegeler [mailto:cziegeler@s-und-n.de] 
> > 
> > PS cvs up, clean build, localhost:8888, result:
> > 
> >     Message: Lookup of serializer 'html' failed at 
> > file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xm
> > ap:781:45
> > 
> >     Cause:  
> > 
> org.apache.avalon.framework.configuration.ConfigurationException: No 
> > value is associated with the configuration element 
> > "cdata-section-elements" at 
> > file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xm
> > ap:212:182
> > 
> I guess it's the update to avalon framework 4.1.5. Strange...
> 
Ok, got it: there is an incompatible change between 4.1.4 and 4.1.5
in the DefaultConfiguration implementation :(

If you do a getChild("xyx") for a Configuration if the child does
not exist it is created new. In this case the child got until
4.1.4 the location "-" which is tested in some serializers.
With 4.1.5 the location is "<generated>*" :(

So, I think our assumption that the location is always "-" if
the child has been created new is wrong and we have to change
our code...

Carsten


RE: cvs commit: cocoon-2.1/src/blocks/html/lib jtidy-04aug2000r7-dev.jar.license

Posted by Carsten Ziegeler <cz...@s-und-n.de>.
> 
> PS cvs up, clean build, localhost:8888, result:
> 
>     Message: Lookup of serializer 'html' failed at 
> file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xm
> ap:781:45
> 
>     Cause:  
> org.apache.avalon.framework.configuration.ConfigurationException: No 
> value is associated with the configuration element 
> "cdata-section-elements" at 
> file:/C:/Work/OCTOWorkspace/cocoon-2.1/build/webapp/sitemap.xm
> ap:212:182
> 
I guess it's the update to avalon framework 4.1.5. Strange...

Carsten