MShah wrote: > Thanks Jorn. The problem is resolved. I edited the cocoon.conf file for the > new resource type and that resolved it. The build process was not pdating > the file.
to clarify: the build process does update the file, but not the way you (and any other sane person for that matter) would think. the xconf files are patches that are applied to the master cocoon.xconf. the patch behaviour is defined in the header of the patch: <xconf xpath="/cocoon/resource-types" unless="/cocoon/resource-types/component-instan...@name = 'homepage']"> <!--...--> </xconf> this means: patch the included xml snippet into /cocoon/resource-types *unless* such a snippet already exists. once you've applied a patch, the snippet does exist. that means that if you change the patchfile later, the updated patch will never be applied. all you can do about it is manually remove the snippet from cocoon.xconf, or delete the file altogether and do a full rebuild. if you think you did as described above, and the patch was still wrong, then my guess would be that you have another patchfile lying around somewhere from your earlier experiments. and the first patchfile to go in wins. grep through your source tree to make sure. best, jörn -- Jörn Nettingsmeier "One of my most productive days was throwing away 1000 lines of code." - Ken Thompson. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
