<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-112</id>
	<title>Nabble - Cocoon - Users</title>
	<updated>2009-11-29T22:35:24Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Cocoon---Users-f112.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon---Users-f112.html" />
	<subtitle type="html">The general Cocoon list, for problems, bug reports, asking for advice on how best to implement a site, comparisons with other XML frameworks, etc.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26570175</id>
	<title>Re: REST / Can't find URLResponseBuilder</title>
	<published>2009-11-29T22:35:24Z</published>
	<updated>2009-11-29T22:35:24Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">If I understand you well, your assignment is to:
&lt;br&gt;&lt;br&gt;* catch a get URL emitted by Google Earch
&lt;br&gt;* this url contains coordinates
&lt;br&gt;* on the basis of these coordinates you lookup things in an XML file.
&lt;br&gt;&lt;br&gt;Here's my advice: forget about the RESTController and just write a
&lt;br&gt;generator, like:
&lt;br&gt;public class SehensWuerdigkeitenGenerator extends AbstractSAXGenerator
&lt;br&gt;implements CachingPipelineComponent {
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; @SitemapParameter
&lt;br&gt;&amp;nbsp; &amp;nbsp; private String language;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; @SitemapParameter
&lt;br&gt;&amp;nbsp; &amp;nbsp; private String cmd;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; private String pur;
&lt;br&gt;&amp;nbsp; &amp;nbsp; private String par;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; private HttpServletRequest request;
&lt;br&gt;&lt;br&gt;And you do the interesting bits within: 
&lt;br&gt;&lt;br&gt;public void execute() {
&lt;br&gt;&amp;nbsp; -&amp;gt; read your bits	
&lt;br&gt;&amp;nbsp; &amp;nbsp; SAXConsumer consumer = this.getSAXConsumer();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; consumer.startDocument();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; consumer.startElement(&amp;quot;&amp;quot;, &amp;quot;page&amp;quot;, &amp;quot;page&amp;quot;, new
&lt;br&gt;AttributesImpl());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;---&amp;gt; do the interesting stuff to be sent to XSLT
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Oh, by the way, another possibility: just read your XML file if it's
&lt;br&gt;just one. And extract the chunks you need in the XSLT transform, with
&lt;br&gt;XPath. The last could be the shorter.
&lt;br&gt;&lt;br&gt;Mmmm you are a student. I am an old man and I would say: bear in mind
&lt;br&gt;that 'REST' is just another concept, sometimes java people like to make
&lt;br&gt;things complicated... &amp;quot;Why make things simple and efficient if you can
&lt;br&gt;make them complex and wonderful&amp;quot;.
&lt;br&gt;By the way, I will redirect this discussion to cocoon users. 
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Sun, 2009-11-29 at 13:19 +0100, Johannes Lichtenberger wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sun, 2009-11-29 at 07:32 +0100, Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; In the samples, a typical use of StringTemplate is shown: a page is to
&lt;br&gt;&amp;gt; &amp;gt; be interpreted by the StringTemplate engine, and a number of properties
&lt;br&gt;&amp;gt; &amp;gt; are passed via the hashtable.
&lt;br&gt;&amp;gt; &amp;gt; The idea is that you would open a view on the object.
&lt;br&gt;&amp;gt; &amp;gt; So, 
&lt;br&gt;&amp;gt; &amp;gt; - the query points to a resource
&lt;br&gt;&amp;gt; &amp;gt; - the controller decodes what the resource is and what you want (view
&lt;br&gt;&amp;gt; &amp;gt; it, update it?)
&lt;br&gt;&amp;gt; &amp;gt; - the way to view it could be: pass my resource to a StringTemplate
&lt;br&gt;&amp;gt; &amp;gt; invocation: &amp;nbsp;new Page('stringtemplateinvocation',resource);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; However, I have not tried to elaborate this so far. Shall I post it when
&lt;br&gt;&amp;gt; &amp;gt; i have a useable example?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes it would be great. My concern is that I don't want to display a
&lt;br&gt;&amp;gt; template page. I want to process the request (the parameters Google
&lt;br&gt;&amp;gt; Earth sends when zooming in) and within my Generator query a native XML
&lt;br&gt;&amp;gt; database system and built the algorithmic logic inside the generator
&lt;br&gt;&amp;gt; (what data out of the shreddered xml file is needed and has to be
&lt;br&gt;&amp;gt; transformed with an XSLT stylesheet). So I basically know how RESTful
&lt;br&gt;&amp;gt; webservices work, but I don't know how to use cocoon3 in this case (I
&lt;br&gt;&amp;gt; assume new Page(...) isn't the right thing to return when I just want to
&lt;br&gt;&amp;gt; pass the request params to my generator. So I don't want to use
&lt;br&gt;&amp;gt; StringTemplate in this case (but it's nontheless a great thing). So the
&lt;br&gt;&amp;gt; query points to a controller, which decides that it's a GET request
&lt;br&gt;&amp;gt; (view) and passes the parameters on to my generator (which I still have
&lt;br&gt;&amp;gt; to write). 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Would be great if you or someone else could help me out (it's a project
&lt;br&gt;&amp;gt; in a course of our university ;-) and I thought cocoon is great for this
&lt;br&gt;&amp;gt; concern (get RESTful parameters, hand it on to a generator which selects
&lt;br&gt;&amp;gt; the needed data out of a shreddered xml file according to the
&lt;br&gt;&amp;gt; parameters, then transform the xml fragments with a XSLT stylesheet and
&lt;br&gt;&amp;gt; serialize the result, so that Google Earth can use the KML fragments
&lt;br&gt;&amp;gt; generated).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you,
&lt;br&gt;&amp;gt; Johannes
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26570175&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26570175&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-REST---Can%27t-find-URLResponseBuilder-tp26570175p26570175.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26566636</id>
	<title>FlowScript</title>
	<published>2009-11-29T13:56:23Z</published>
	<updated>2009-11-29T13:56:23Z</updated>
	<author>
		<name>Johannes Lichtenberger-2</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;is FlowScript obsolete in Cocoon3 (if using cocoon-controller and
&lt;br&gt;cocoon-rest)? It seems it can't or at least really shouldn't be used in
&lt;br&gt;a RESTful webservice and I think that's one of the main goals of
&lt;br&gt;cocoon3?
&lt;br&gt;&lt;br&gt;I'm currently preparing a short presentation about cocoon and I think to
&lt;br&gt;adhere to RESTful webservices is great (I'm not a huge fan of SOAP, but
&lt;br&gt;maybe I have to read more about it).
&lt;br&gt;&lt;br&gt;Maybe I'll just describe the basics like pipelines and the sitemap (and
&lt;br&gt;REST). 
&lt;br&gt;&lt;br&gt;greetings,
&lt;br&gt;Johannes
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566636&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566636&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FlowScript-tp26566636p26566636.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26539364</id>
	<title>Re: Cocoon &lt;-&gt; Wicket integration</title>
	<published>2009-11-27T00:41:43Z</published>
	<updated>2009-11-27T00:41:43Z</updated>
	<author>
		<name>vik tara</name>
	</author>
	<content type="html">On 26/11/09 10:33, Thorsten Scherler wrote:
&lt;br&gt;&amp;gt; On Thu, 2009-11-26 at 09:16 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; If you are interested in a Cocoon&amp;lt;-&amp;gt; &amp;nbsp;Wicket integration, see my mail
&lt;br&gt;&amp;gt;&amp;gt; that I sent to the dev@cocoon list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&lt;/a&gt;&amp;nbsp;and join the
&lt;br&gt;&amp;gt;&amp;gt; discussion there!
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;Excellent!
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26539364&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26539364&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-%3C-%3E-Wicket-integration-tp26525814p26539364.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26535768</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-26T14:35:37Z</published>
	<updated>2009-11-26T14:35:37Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Jos Snellings wrote:
&lt;br&gt;&amp;gt; I have seen these, they are in 'cocoon-optional', but how to configure
&lt;br&gt;&amp;gt; in the pipeline? 
&lt;br&gt;&amp;gt; &amp;lt;map:serialize type=&amp;quot;exhtml&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; or ehtml?
&lt;br&gt;&lt;br&gt;yes, ehtml, exhtml and exml.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26535768&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26535768&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26535768&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26535768.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533811</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-26T11:09:29Z</published>
	<updated>2009-11-26T11:09:29Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">I have seen these, they are in 'cocoon-optional', but how to configure
&lt;br&gt;in the pipeline? 
&lt;br&gt;&amp;lt;map:serialize type=&amp;quot;exhtml&amp;quot;/&amp;gt;
&lt;br&gt;or ehtml?
&lt;br&gt;(are there new samples? I did not know)
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu, 2009-11-26 at 18:22 +0100, Reinhard Pötz wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; Indeed, Robby, this is clearly the behaviour we are observing. But,
&lt;br&gt;&amp;gt; &amp;gt; even if you avoid the minimized tags, I have the impression that the
&lt;br&gt;&amp;gt; &amp;gt; XSLT step is converting empty tag pairs to minimized ones. Shouldn't
&lt;br&gt;&amp;gt; &amp;gt; we avoid this, given the recommendation?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Some weeks ago I added alternative serializers for HTML/XML/XHTML to
&lt;br&gt;&amp;gt; Cocoon 3 trunk. Those take care of many of those tricky serialization
&lt;br&gt;&amp;gt; problems. Look for &amp;quot;Encoding Serializers&amp;quot; in the samples.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533811&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533811&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26533811.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532586</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-26T09:22:12Z</published>
	<updated>2009-11-26T09:22:12Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Jos Snellings wrote:
&lt;br&gt;&amp;gt; Indeed, Robby, this is clearly the behaviour we are observing. But,
&lt;br&gt;&amp;gt; even if you avoid the minimized tags, I have the impression that the
&lt;br&gt;&amp;gt; XSLT step is converting empty tag pairs to minimized ones. Shouldn't
&lt;br&gt;&amp;gt; we avoid this, given the recommendation?
&lt;br&gt;&lt;br&gt;Some weeks ago I added alternative serializers for HTML/XML/XHTML to
&lt;br&gt;Cocoon 3 trunk. Those take care of many of those tricky serialization
&lt;br&gt;problems. Look for &amp;quot;Encoding Serializers&amp;quot; in the samples.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26532586&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26532586&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26532586&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26532586.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26530852</id>
	<title>Re: Samples for Cocoon 2.2</title>
	<published>2009-11-26T07:15:33Z</published>
	<updated>2009-11-26T07:15:33Z</updated>
	<author>
		<name>Peter Hargreaves-3</name>
	</author>
	<content type="html">Found the problem at last! Could a developer please review the following and 
&lt;br&gt;update the SVN repository if appropriate? Thanks.
&lt;br&gt;&lt;br&gt;Please also consider putting instructions for running Samples for Cocoon 2.2 
&lt;br&gt;under Getting Started or somewhere obvious. Thanks.
&lt;br&gt;&lt;br&gt;I've updated the following two dependancies in trunk/parent/pom.xml from 
&lt;br&gt;1.0.0-SNAPSHOT to 1.0.1-SNAPSHOT so they correspond with:
&lt;br&gt;/trunk/blocks/cocoon-serializers/cocoon-serializers-charsets/pom.xml and
&lt;br&gt;/trunk/blocks/cocoon-serializers/cocoon-serializers-impl/pom.xml
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;org.apache.cocoon&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;cocoon-serializers-charsets&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;version&amp;gt;1.0.1-SNAPSHOT&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;org.apache.cocoon&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;cocoon-serializers-impl&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;version&amp;gt;1.0.1-SNAPSHOT&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Peter.
&lt;br&gt;&lt;br&gt;On Thursday 26 Nov 2009, Peter Hargreaves wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Folks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm still struggling on this one. I've tried a few jdks and settled on
&lt;br&gt;&amp;gt; java-1.5.0-sun. I've also got my out of memory messages sorted. So, I'll
&lt;br&gt;&amp;gt; start again to explain the remaining problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;On this blog:
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&lt;/a&gt;&amp;nbsp;you can
&lt;br&gt;&amp;gt; &amp;gt;see step-by-step how to get the samples running.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Regards,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Job
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, I've checkedout the source code from:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I run either &amp;quot;mvn -P allblocks install -Dmaven.test.skip=true&amp;quot;
&lt;br&gt;&amp;gt; or &amp;quot;./build.sh clean install&amp;quot; I now get the error message as below.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If I look in my local repository I can see:
&lt;br&gt;&amp;gt; /home/peter/.m2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.
&lt;br&gt;&amp;gt;0.0-SNAPSHOT/ maven-metadata-apache.snapshots.xml
&lt;br&gt;&amp;gt; &amp;nbsp;maven-metadata-gkossakowski-maven2.xml
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and also:
&lt;br&gt;&amp;gt; /home/peter/.m2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.
&lt;br&gt;&amp;gt;0.1-SNAPSHOT/ cocoon-serializers-charsets-1.0.1-SNAPSHOT.jar
&lt;br&gt;&amp;gt; &amp;nbsp;cocoon-serializers-charsets-1.0.1-SNAPSHOT.pom
&lt;br&gt;&amp;gt; &amp;nbsp;maven-metadata-local.xml
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, please advise best way to fix, or another approach to get Samples of
&lt;br&gt;&amp;gt; 2.2 working.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Many thanks,
&lt;br&gt;&amp;gt; Peter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] Building Portal Block Implementation
&lt;br&gt;&amp;gt; [INFO] &amp;nbsp; &amp;nbsp;task-segment: [clean, install]
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] [clean:clean {execution: default-clean}]
&lt;br&gt;&amp;gt; [INFO] Deleting
&lt;br&gt;&amp;gt; directory
&lt;br&gt;&amp;gt; /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-por
&lt;br&gt;&amp;gt;tal-impl/target [INFO] Deleting
&lt;br&gt;&amp;gt; directory
&lt;br&gt;&amp;gt; /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-por
&lt;br&gt;&amp;gt;tal-impl/target/classes [INFO] Deleting
&lt;br&gt;&amp;gt; directory
&lt;br&gt;&amp;gt; /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-por
&lt;br&gt;&amp;gt;tal-impl/target/test-classes [INFO] Deleting
&lt;br&gt;&amp;gt; directory
&lt;br&gt;&amp;gt; /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-por
&lt;br&gt;&amp;gt;tal-impl/target/site [INFO] [enforcer:enforce-once {execution:
&lt;br&gt;&amp;gt; enforce-maven}]
&lt;br&gt;&amp;gt; [INFO] [resources:resources {execution: default-resources}]
&lt;br&gt;&amp;gt; [WARNING] Using platform encoding (UTF-8 actually) to copy filtered
&lt;br&gt;&amp;gt; resources, i.e. build is platform dependent!
&lt;br&gt;&amp;gt; [INFO] Copying 7 resources
&lt;br&gt;&amp;gt; [INFO] Copying 2 resources to META-INF
&lt;br&gt;&amp;gt; Downloading:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/&lt;/a&gt;&lt;br&gt;&amp;gt;cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0
&lt;br&gt;&amp;gt;-SNAPSHOT.pom [INFO] Unable to find
&lt;br&gt;&amp;gt; resource 'org.apache.cocoon:cocoon-serializers-charsets:pom:1.0.0-SNAPSHOT'
&lt;br&gt;&amp;gt; in repository gkossakowski-maven2
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; Downloading:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/coco&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/coco&lt;/a&gt;&lt;br&gt;&amp;gt;on-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNA
&lt;br&gt;&amp;gt;PSHOT.pom [INFO] Unable to find
&lt;br&gt;&amp;gt; resource 'org.apache.cocoon:cocoon-serializers-charsets:pom:1.0.0-SNAPSHOT'
&lt;br&gt;&amp;gt; in repository apache.snapshots
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; Downloading:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/&lt;/a&gt;&lt;br&gt;&amp;gt;cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0
&lt;br&gt;&amp;gt;-SNAPSHOT.jar [INFO] Unable to find
&lt;br&gt;&amp;gt; resource 'org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT'
&lt;br&gt;&amp;gt; in repository gkossakowski-maven2
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; Downloading:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/coco&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/coco&lt;/a&gt;&lt;br&gt;&amp;gt;on-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNA
&lt;br&gt;&amp;gt;PSHOT.jar [INFO] Unable to find
&lt;br&gt;&amp;gt; resource 'org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT'
&lt;br&gt;&amp;gt; in repository apache.snapshots
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [ERROR] BUILD ERROR
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] Failed to resolve artifact.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Missing:
&lt;br&gt;&amp;gt; ----------
&lt;br&gt;&amp;gt; 1) org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Try downloading the file manually from the project website.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Then, install it using the command:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn
&lt;br&gt;&amp;gt; install:install-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; -DartifactId=cocoon-serializers-charsets -Dversion=1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt; -Dpackaging=jar -Dfile=/path/to/file
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Alternatively, if you host your own repository you can deploy the file
&lt;br&gt;&amp;gt; there:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn
&lt;br&gt;&amp;gt; deploy:deploy-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; -DartifactId=cocoon-serializers-charsets -Dversion=1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt; -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Path to dependency:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1) org.apache.cocoon:cocoon-portal-impl:jar:1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2) org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----------
&lt;br&gt;&amp;gt; 1 required artifact is missing.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; for artifact:
&lt;br&gt;&amp;gt; &amp;nbsp; org.apache.cocoon:cocoon-portal-impl:jar:1.0.0-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; from the specified remote repositories:
&lt;br&gt;&amp;gt; &amp;nbsp; central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;nbsp; gkossakowski-maven2
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;nbsp; apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] For more information, run Maven with the -e switch
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] Total time: 3 minutes 8 seconds
&lt;br&gt;&amp;gt; [INFO] Finished at: Thu Nov 26 12:09:02 GMT 2009
&lt;br&gt;&amp;gt; [INFO] Final Memory: 172M/394M
&lt;br&gt;&amp;gt; [INFO]
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; peter@asus-p2:~/Desktop/eclipse-workspace/trunk$
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530852&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530852&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530852&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530852&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Samples-for-Cocoon-2.2-tp26477535p26530852.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26528781</id>
	<title>Re: Samples for Cocoon 2.2</title>
	<published>2009-11-26T04:31:24Z</published>
	<updated>2009-11-26T04:31:24Z</updated>
	<author>
		<name>Peter Hargreaves-3</name>
	</author>
	<content type="html">Hi Folks,
&lt;br&gt;&lt;br&gt;I'm still struggling on this one. I've tried a few jdks and settled on 
&lt;br&gt;java-1.5.0-sun. I've also got my out of memory messages sorted. So, I'll 
&lt;br&gt;start again to explain the remaining problem.
&lt;br&gt;&lt;br&gt;&amp;gt;On this blog:
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&lt;/a&gt;&amp;nbsp;you can
&lt;br&gt;&amp;gt;see step-by-step how to get the samples running.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Job
&lt;br&gt;&lt;br&gt;So, I've checkedout the source code from:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;When I run either &amp;quot;mvn -P allblocks install -Dmaven.test.skip=true&amp;quot; 
&lt;br&gt;or &amp;quot;./build.sh clean install&amp;quot; I now get the error message as below.
&lt;br&gt;&lt;br&gt;If I look in my local repository I can see:
&lt;br&gt;/home/peter/.m2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/
&lt;br&gt;&amp;nbsp;maven-metadata-apache.snapshots.xml
&lt;br&gt;&amp;nbsp;maven-metadata-gkossakowski-maven2.xml
&lt;br&gt;&lt;br&gt;and also:
&lt;br&gt;/home/peter/.m2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.1-SNAPSHOT/
&lt;br&gt;&amp;nbsp;cocoon-serializers-charsets-1.0.1-SNAPSHOT.jar
&lt;br&gt;&amp;nbsp;cocoon-serializers-charsets-1.0.1-SNAPSHOT.pom
&lt;br&gt;&amp;nbsp;maven-metadata-local.xml
&lt;br&gt;&lt;br&gt;So, please advise best way to fix, or another approach to get Samples of 2.2 
&lt;br&gt;working.
&lt;br&gt;&lt;br&gt;Many thanks,
&lt;br&gt;Peter.
&lt;br&gt;&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Building Portal Block Implementation
&lt;br&gt;[INFO] &amp;nbsp; &amp;nbsp;task-segment: [clean, install]
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] [clean:clean {execution: default-clean}]
&lt;br&gt;[INFO] Deleting 
&lt;br&gt;directory /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-portal-impl/target
&lt;br&gt;[INFO] Deleting 
&lt;br&gt;directory /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-portal-impl/target/classes
&lt;br&gt;[INFO] Deleting 
&lt;br&gt;directory /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-portal-impl/target/test-classes
&lt;br&gt;[INFO] Deleting 
&lt;br&gt;directory /home/peter/Desktop/eclipse-workspace/trunk/blocks/cocoon-portal/cocoon-portal-impl/target/site
&lt;br&gt;[INFO] [enforcer:enforce-once {execution: enforce-maven}]
&lt;br&gt;[INFO] [resources:resources {execution: default-resources}]
&lt;br&gt;[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, 
&lt;br&gt;i.e. build is platform dependent!
&lt;br&gt;[INFO] Copying 7 resources
&lt;br&gt;[INFO] Copying 2 resources to META-INF
&lt;br&gt;Downloading: 
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.pom&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.pom&lt;/a&gt;&lt;br&gt;[INFO] Unable to find 
&lt;br&gt;resource 'org.apache.cocoon:cocoon-serializers-charsets:pom:1.0.0-SNAPSHOT' 
&lt;br&gt;in repository gkossakowski-maven2 
&lt;br&gt;(&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;Downloading: 
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.pom&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.pom&lt;/a&gt;&lt;br&gt;[INFO] Unable to find 
&lt;br&gt;resource 'org.apache.cocoon:cocoon-serializers-charsets:pom:1.0.0-SNAPSHOT' 
&lt;br&gt;in repository apache.snapshots 
&lt;br&gt;(&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;Downloading: 
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.jar&lt;/a&gt;&lt;br&gt;[INFO] Unable to find 
&lt;br&gt;resource 'org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT' 
&lt;br&gt;in repository gkossakowski-maven2 
&lt;br&gt;(&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;Downloading: 
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository/org/apache/cocoon/cocoon-serializers-charsets/1.0.0-SNAPSHOT/cocoon-serializers-charsets-1.0.0-SNAPSHOT.jar&lt;/a&gt;&lt;br&gt;[INFO] Unable to find 
&lt;br&gt;resource 'org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT' 
&lt;br&gt;in repository apache.snapshots 
&lt;br&gt;(&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[ERROR] BUILD ERROR
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Failed to resolve artifact.
&lt;br&gt;&lt;br&gt;Missing:
&lt;br&gt;----------
&lt;br&gt;1) org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;&amp;nbsp; Try downloading the file manually from the project website.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Then, install it using the command:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; mvn 
&lt;br&gt;install:install-file -DgroupId=org.apache.cocoon -DartifactId=cocoon-serializers-charsets -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file
&lt;br&gt;&lt;br&gt;&amp;nbsp; Alternatively, if you host your own repository you can deploy the file 
&lt;br&gt;there:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; mvn 
&lt;br&gt;deploy:deploy-file -DgroupId=org.apache.cocoon -DartifactId=cocoon-serializers-charsets -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
&lt;br&gt;&lt;br&gt;&amp;nbsp; Path to dependency:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1) org.apache.cocoon:cocoon-portal-impl:jar:1.0.0-SNAPSHOT
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2) org.apache.cocoon:cocoon-serializers-charsets:jar:1.0.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;----------
&lt;br&gt;1 required artifact is missing.
&lt;br&gt;&lt;br&gt;for artifact:
&lt;br&gt;&amp;nbsp; org.apache.cocoon:cocoon-portal-impl:jar:1.0.0-SNAPSHOT
&lt;br&gt;&lt;br&gt;from the specified remote repositories:
&lt;br&gt;&amp;nbsp; central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;nbsp; gkossakowski-maven2 
&lt;br&gt;(&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;),
&lt;br&gt;&amp;nbsp; apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] For more information, run Maven with the -e switch
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Total time: 3 minutes 8 seconds
&lt;br&gt;[INFO] Finished at: Thu Nov 26 12:09:02 GMT 2009
&lt;br&gt;[INFO] Final Memory: 172M/394M
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;peter@asus-p2:~/Desktop/eclipse-workspace/trunk$ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528781&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528781&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Samples-for-Cocoon-2.2-tp26477535p26528781.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26527361</id>
	<title>Re: Cocoon &lt;-&gt; Wicket integration</title>
	<published>2009-11-26T02:33:19Z</published>
	<updated>2009-11-26T02:33:19Z</updated>
	<author>
		<name>Thorsten Scherler-3</name>
	</author>
	<content type="html">On Thu, 2009-11-26 at 09:16 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; If you are interested in a Cocoon &amp;lt;-&amp;gt; Wicket integration, see my mail
&lt;br&gt;&amp;gt; that I sent to the dev@cocoon list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&lt;/a&gt;&amp;nbsp;and join the
&lt;br&gt;&amp;gt; discussion there!
&lt;br&gt;&lt;br&gt;Very nice Reinhard, that is awesome news. :)
&lt;br&gt;&lt;br&gt;Thanks you very much!
&lt;br&gt;&lt;br&gt;salu2
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;-- 
&lt;br&gt;Thorsten Scherler &amp;lt;thorsten.at.apache.org&amp;gt;
&lt;br&gt;Open Source Java &amp;lt;consulting, training and solutions&amp;gt;
&lt;br&gt;&lt;br&gt;Sociedad Andaluza para el Desarrollo de la Sociedad 
&lt;br&gt;de la Información, S.A.U. (SADESI)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527361&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527361&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-%3C-%3E-Wicket-integration-tp26525814p26527361.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526943</id>
	<title>Re: Cocoon &lt;-&gt; Wicket integration</title>
	<published>2009-11-26T01:56:20Z</published>
	<updated>2009-11-26T01:56:20Z</updated>
	<author>
		<name>anishsneh</name>
	</author>
	<content type="html">&amp;gt;
&lt;br&gt;&amp;gt; If you are interested in a Cocoon &amp;lt;-&amp;gt; Wicket integration, see my mail
&lt;br&gt;&amp;gt; that I sent to the dev@cocoon list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&lt;/a&gt;&amp;nbsp;and join the
&lt;br&gt;&amp;gt; discussion there!
&lt;br&gt;Thanks Reinhard, it will be really helpful..... :-)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; If you are interested in a Cocoon &amp;lt;-&amp;gt; Wicket integration, see my mail
&lt;br&gt;&amp;gt; that I sent to the dev@cocoon list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&lt;/a&gt;&amp;nbsp;and join the
&lt;br&gt;&amp;gt; discussion there!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Anish Sneh
&lt;br&gt;Software Engineer
&lt;br&gt;Techblue Softwares Pvt. Ltd.
&lt;br&gt;www.technologyblueprint.co.uk
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526943&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526943&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;signature&quot;&gt;Thanks &amp; Regards,
&lt;br&gt;Anish Sneh&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-%3C-%3E-Wicket-integration-tp26525814p26526943.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525814</id>
	<title>Cocoon &lt;-&gt; Wicket integration</title>
	<published>2009-11-26T00:16:44Z</published>
	<updated>2009-11-26T00:16:44Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">&lt;br&gt;If you are interested in a Cocoon &amp;lt;-&amp;gt; Wicket integration, see my mail
&lt;br&gt;that I sent to the dev@cocoon list
&lt;br&gt;&lt;a href=&quot;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.markmail.org/message/dn3wj65bn3hikvhr&lt;/a&gt;&amp;nbsp;and join the
&lt;br&gt;discussion there!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525814&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525814&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525814&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-%3C-%3E-Wicket-integration-tp26525814p26525814.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515511</id>
	<title>RE: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-25T08:11:51Z</published>
	<updated>2009-11-25T08:11:51Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">Indeed, Robby, this is clearly the behaviour we are observing.
&lt;br&gt;But, even if you avoid the minimized tags, I have the impression 
&lt;br&gt;that the XSLT step is converting empty tag pairs to minimized ones.
&lt;br&gt;Shouldn't we avoid this, given the recommendation?
&lt;br&gt;&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 17:02 +0100, Robby Pelssers wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Some article explains a bit more:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?f=25&amp;t=297285&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.mozillazine.org/viewtopic.php?f=25&amp;t=297285&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The first empty DIV closes itself with the trailing slash. This is allowed in XML (XHTML is XML), but it is not allowed in HTML. If your document (1) has an XHTML doctype declaration at the beginning of the document, (2) has the proper namespace declaration, and (3) is being served with the proper mime type by the server (application/xhtml+xml), there is no difference between those two empty DIVs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; However, if you miss any of those three criteria, your document is not going to be rendered as XML, and you will not get the results you expect. With the wrong mime type sent by the server, the document will be rendered as HTML. In HTML, &amp;lt;div /&amp;gt; syntax will be read as an opening div tag, and the browser will expect a closing tag.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The XHTML compatibility guidelines advise you not to use the minimized tag syntax for compatibility reasons. Even if Firefox renders your XHTML properly, older browsers that only understand HTML will choke and die on the DIV that is not properly closed in HTML. Read 4.3 and 4.6 here.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Robby Pelssers [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robby.pelssers@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; Sent: Wednesday, November 25, 2009 4:58 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: RE: cocoon 3: xslt and pickup java scripts: Firebug
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've seen this behavior for other tags as well...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; For instance with empty &amp;lt;div&amp;gt; tags
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In that case subsequent tags are sometimes treated as children of the empty preceding &amp;lt;div&amp;gt; tag.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Robby
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Jos Snellings [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; Sent: Wednesday, November 25, 2009 4:51 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: cocoon 3: xslt and pickup java scripts: Firebug
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi !
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is what Firebug has to tell: 
&lt;br&gt;&amp;gt; when an xhtml serializer is selected, this is the output:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;script src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;script src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; 			});
&lt;br&gt;&amp;gt; 		})
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; &amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------
&lt;br&gt;&amp;gt; Firefox sees only the first javascript.
&lt;br&gt;&amp;gt; By the way: in het xslt rule the script tags are: 
&lt;br&gt;&amp;gt; &amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; but these are converted to single elements &amp;lt;script/&amp;gt;, and it looks as if Firefox has a problem.
&lt;br&gt;&amp;gt; -------------------------------------------------
&lt;br&gt;&amp;gt; A DOM inspection confirms this: 
&lt;br&gt;&amp;gt; It looks as if the subsequent script tags are regarded as sub-elements of the first script tag.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I haven't tested with other browsers.
&lt;br&gt;&amp;gt; Is this to be considered as an issue? Fact is that the produced xhtml is valid and *should* work.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Jos
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-11-25 at 13:16 +0100, Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; I was about to do that, it really points in the direction of firefox.
&lt;br&gt;&amp;gt; &amp;gt; I will let you know
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On Wed, 2009-11-25 at 12:44 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; This sounds like some browser caching issue.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Have you used Firebug to track down the problem?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515511&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26515511.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515349</id>
	<title>RE: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-25T08:02:18Z</published>
	<updated>2009-11-25T08:02:18Z</updated>
	<author>
		<name>Robby Pelssers-3</name>
	</author>
	<content type="html">Some article explains a bit more:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?f=25&amp;t=297285&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.mozillazine.org/viewtopic.php?f=25&amp;t=297285&lt;/a&gt;&lt;br&gt;&lt;br&gt;The first empty DIV closes itself with the trailing slash. This is allowed in XML (XHTML is XML), but it is not allowed in HTML. If your document (1) has an XHTML doctype declaration at the beginning of the document, (2) has the proper namespace declaration, and (3) is being served with the proper mime type by the server (application/xhtml+xml), there is no difference between those two empty DIVs.
&lt;br&gt;&lt;br&gt;However, if you miss any of those three criteria, your document is not going to be rendered as XML, and you will not get the results you expect. With the wrong mime type sent by the server, the document will be rendered as HTML. In HTML, &amp;lt;div /&amp;gt; syntax will be read as an opening div tag, and the browser will expect a closing tag.
&lt;br&gt;&lt;br&gt;The XHTML compatibility guidelines advise you not to use the minimized tag syntax for compatibility reasons. Even if Firefox renders your XHTML properly, older browsers that only understand HTML will choke and die on the DIV that is not properly closed in HTML. Read 4.3 and 4.6 here.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Robby Pelssers [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robby.pelssers@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, November 25, 2009 4:58 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;Subject: RE: cocoon 3: xslt and pickup java scripts: Firebug
&lt;br&gt;&lt;br&gt;I've seen this behavior for other tags as well...
&lt;br&gt;&lt;br&gt;For instance with empty &amp;lt;div&amp;gt; tags
&lt;br&gt;&lt;br&gt;In that case subsequent tags are sometimes treated as children of the empty preceding &amp;lt;div&amp;gt; tag.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Robby
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Jos Snellings [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, November 25, 2009 4:51 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;Subject: Re: cocoon 3: xslt and pickup java scripts: Firebug
&lt;br&gt;&lt;br&gt;Hi !
&lt;br&gt;&lt;br&gt;Here is what Firebug has to tell: 
&lt;br&gt;when an xhtml serializer is selected, this is the output:
&lt;br&gt;&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; collapsed: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;---------------------------------------
&lt;br&gt;Firefox sees only the first javascript.
&lt;br&gt;By the way: in het xslt rule the script tags are: 
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;but these are converted to single elements &amp;lt;script/&amp;gt;, and it looks as if Firefox has a problem.
&lt;br&gt;-------------------------------------------------
&lt;br&gt;A DOM inspection confirms this: 
&lt;br&gt;It looks as if the subsequent script tags are regarded as sub-elements of the first script tag.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I haven't tested with other browsers.
&lt;br&gt;Is this to be considered as an issue? Fact is that the produced xhtml is valid and *should* work.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 13:16 +0100, Jos Snellings wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I was about to do that, it really points in the direction of firefox.
&lt;br&gt;&amp;gt; I will let you know
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-11-25 at 12:44 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; &amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This sounds like some browser caching issue.
&lt;br&gt;&amp;gt; &amp;gt; Have you used Firebug to track down the problem?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515349&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26515349.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515257</id>
	<title>RE: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-25T07:57:47Z</published>
	<updated>2009-11-25T07:57:47Z</updated>
	<author>
		<name>Robby Pelssers-3</name>
	</author>
	<content type="html">I've seen this behavior for other tags as well...
&lt;br&gt;&lt;br&gt;For instance with empty &amp;lt;div&amp;gt; tags
&lt;br&gt;&lt;br&gt;In that case subsequent tags are sometimes treated as children of the empty preceding &amp;lt;div&amp;gt; tag.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Robby
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Jos Snellings [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, November 25, 2009 4:51 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;Subject: Re: cocoon 3: xslt and pickup java scripts: Firebug
&lt;br&gt;&lt;br&gt;Hi !
&lt;br&gt;&lt;br&gt;Here is what Firebug has to tell: 
&lt;br&gt;when an xhtml serializer is selected, this is the output:
&lt;br&gt;&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; collapsed: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;---------------------------------------
&lt;br&gt;Firefox sees only the first javascript.
&lt;br&gt;By the way: in het xslt rule the script tags are: 
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;but these are converted to single elements &amp;lt;script/&amp;gt;, and it looks as if Firefox has a problem.
&lt;br&gt;-------------------------------------------------
&lt;br&gt;A DOM inspection confirms this: 
&lt;br&gt;It looks as if the subsequent script tags are regarded as sub-elements of the first script tag.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I haven't tested with other browsers.
&lt;br&gt;Is this to be considered as an issue? Fact is that the produced xhtml is valid and *should* work.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 13:16 +0100, Jos Snellings wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I was about to do that, it really points in the direction of firefox.
&lt;br&gt;&amp;gt; I will let you know
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-11-25 at 12:44 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; &amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This sounds like some browser caching issue.
&lt;br&gt;&amp;gt; &amp;gt; Have you used Firebug to track down the problem?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515257&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26515257.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515118</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts: Firebug</title>
	<published>2009-11-25T07:51:00Z</published>
	<updated>2009-11-25T07:51:00Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">Hi !
&lt;br&gt;&lt;br&gt;Here is what Firebug has to tell: 
&lt;br&gt;when an xhtml serializer is selected, this is the output:
&lt;br&gt;&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; collapsed: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;---------------------------------------
&lt;br&gt;Firefox sees only the first javascript.
&lt;br&gt;By the way: in het xslt rule the script tags are: 
&lt;br&gt;&amp;lt;script src=&amp;quot;/thesaurus/js/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;but these are converted to single elements &amp;lt;script/&amp;gt;, and it looks as if Firefox has a problem.
&lt;br&gt;-------------------------------------------------
&lt;br&gt;A DOM inspection confirms this: 
&lt;br&gt;It looks as if the subsequent script tags are regarded as sub-elements of the first script tag.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I haven't tested with other browsers.
&lt;br&gt;Is this to be considered as an issue? Fact is that the produced xhtml is valid and *should* work.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 13:16 +0100, Jos Snellings wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I was about to do that, it really points in the direction of firefox.
&lt;br&gt;&amp;gt; I will let you know
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-11-25 at 12:44 +0100, Reinhard Pötz wrote:
&lt;br&gt;&amp;gt; &amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This sounds like some browser caching issue.
&lt;br&gt;&amp;gt; &amp;gt; Have you used Firebug to track down the problem?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515118&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515118&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515118&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515118&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26515118.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511715</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts</title>
	<published>2009-11-25T04:19:29Z</published>
	<updated>2009-11-25T04:19:29Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">Hi Glen, 
&lt;br&gt;&lt;br&gt;Just a very quick test (I have to leave in a minute) 
&lt;br&gt;shows that your trick works.
&lt;br&gt;Thank you very much for sharing it. Now it remains to find out why
&lt;br&gt;xhtml shows this behaviour and whether it is only a firefox issue or
&lt;br&gt;not.
&lt;br&gt;&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 11:32 +0000, Glen Robson wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I don't know if its related but I have had problems with firefox and &amp;nbsp;
&lt;br&gt;&amp;gt; javascript if the serializer was set to return xhtml. As soon as I set &amp;nbsp;
&lt;br&gt;&amp;gt; the serializer to html the javascript seems to work OK.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Glen
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 25 Nov 2009, at 10:59, Jos Snellings wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; 	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts
&lt;br&gt;&amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; Observation: when I place the same html under the form of a static &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; html
&lt;br&gt;&amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Kind regards,
&lt;br&gt;&amp;gt; &amp;gt; Jos
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511715&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26511715.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511686</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts</title>
	<published>2009-11-25T04:16:15Z</published>
	<updated>2009-11-25T04:16:15Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">I was about to do that, it really points in the direction of firefox.
&lt;br&gt;I will let you know
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2009-11-25 at 12:44 +0100, Reinhard Pötz wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jos Snellings wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hello !
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; &amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; &amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; &amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; &amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; &amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; 			});
&lt;br&gt;&amp;gt; &amp;gt; 		})
&lt;br&gt;&amp;gt; &amp;gt; 		
&lt;br&gt;&amp;gt; &amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; &amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; &amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; &amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; &amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; &amp;gt; know about this?
&lt;br&gt;&amp;gt; &amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; &amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; &amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This sounds like some browser caching issue.
&lt;br&gt;&amp;gt; Have you used Firebug to track down the problem?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511686&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511686&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26511686.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511318</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts</title>
	<published>2009-11-25T03:44:19Z</published>
	<updated>2009-11-25T03:44:19Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Jos Snellings wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello !
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; 			});
&lt;br&gt;&amp;gt; 		})
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 	&amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;&amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Observation: when I place the same html under the form of a static html
&lt;br&gt;&amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; know about this?
&lt;br&gt;&amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; different, so obviously I am.
&lt;/div&gt;&lt;br&gt;This sounds like some browser caching issue.
&lt;br&gt;Have you used Firebug to track down the problem?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511318&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511318&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511318&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26511318.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511202</id>
	<title>Re: cocoon 3:  xslt and pickup java scripts</title>
	<published>2009-11-25T03:32:25Z</published>
	<updated>2009-11-25T03:32:25Z</updated>
	<author>
		<name>Glen Robson</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I don't know if its related but I have had problems with firefox and &amp;nbsp;
&lt;br&gt;javascript if the serializer was set to return xhtml. As soon as I set &amp;nbsp;
&lt;br&gt;the serializer to html the javascript seems to work OK.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Glen
&lt;br&gt;&lt;br&gt;On 25 Nov 2009, at 10:59, Jos Snellings wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello !
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have a strange observation to share:
&lt;br&gt;&amp;gt; &amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;&amp;gt; land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;&amp;gt; fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;gt; &amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;&amp;gt; mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;html&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;&amp;gt; href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 		$(function() {
&lt;br&gt;&amp;gt; 			$(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;gt; 				collapsed: true,
&lt;br&gt;&amp;gt; 				animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;gt; 				control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;gt; 				persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;gt; 			});
&lt;br&gt;&amp;gt; 		})
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 	&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;&amp;gt; amazement, I find that the pipeline does not react at all: javascripts
&lt;br&gt;&amp;gt; jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Observation: when I place the same html under the form of a static &amp;nbsp;
&lt;br&gt;&amp;gt; html
&lt;br&gt;&amp;gt; page, all the scripts are nicely fetched.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;&amp;gt; Anybody observed a similar test case?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;&amp;gt; know about this?
&lt;br&gt;&amp;gt; Am I overlooking something essential?
&lt;br&gt;&amp;gt; I see no reason why the result of a xslt transformation would behave
&lt;br&gt;&amp;gt; different, so obviously I am.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Jos
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511202&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511202&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511202&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511202&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26511202.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510836</id>
	<title>cocoon 3:  xslt and pickup java scripts</title>
	<published>2009-11-25T02:59:51Z</published>
	<updated>2009-11-25T02:59:51Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">Hello !
&lt;br&gt;&lt;br&gt;I have a strange observation to share:
&lt;br&gt;&amp;quot;when multiple javascripts are included in an XSLT transformation, to
&lt;br&gt;land in the &amp;lt;head&amp;gt; of an html page, it is observed that some are never
&lt;br&gt;fetched, by FireFox 3.5.5 (Ubuntu).&amp;quot; 
&lt;br&gt;&lt;br&gt;I clarify: exerpt 1: from sitemap, pipeline for static resources:
&lt;br&gt;&amp;nbsp;&amp;lt;map:pipeline type=&amp;quot;async-caching&amp;quot;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;images/{name}.jpg&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.jpg&amp;quot;
&lt;br&gt;mime-type=&amp;quot;image/jpeg&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:match pattern=&amp;quot;images/{name}.gif&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/images/{map:name}.gif&amp;quot;
&lt;br&gt;mime-type=&amp;quot;image/gif&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/{name}.css&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/{map:name}.css&amp;quot;
&lt;br&gt;mime-type=&amp;quot;text/css&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;css/images/{name}&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;map:read src=&amp;quot;presentation/style/images/{map:name}&amp;quot;
&lt;br&gt;mime-type=&amp;quot;image/png&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:match pattern=&amp;quot;js/{name}.js&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;map:read src=&amp;quot;presentation/javascript/{map:name}.js&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/map:match&amp;gt;
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------------------
&lt;br&gt;&amp;lt;xsl:template match=&amp;quot;/&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;html&amp;gt;
&lt;br&gt;&amp;lt;head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt; Herein Thesaurus &amp;lt;/title&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;href=&amp;quot;/thesaurus/css/herein.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot;
&lt;br&gt;href=&amp;quot;/thesaurus/css/jquery_treeview.css&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;src=&amp;quot;/thesaurus/js/jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;src=&amp;quot;/thesaurus/js/jquery_cookie.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;src=&amp;quot;/thesaurus/js/jquery_treeview.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;src=&amp;quot;/thesaurus/js/thesaurus.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tree&amp;quot;).treeview({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; collapsed: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; animated: &amp;quot;medium&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; control:&amp;quot;#sidetreecontrol&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; persist: &amp;quot;location&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;lt;/head&amp;gt;
&lt;br&gt;---------------------------------------------------------------------------------------------------------
&lt;br&gt;I detailed the log to debug level for the cocoon output, and, to my
&lt;br&gt;amazement, I find that the pipeline does not react at all: javascripts 
&lt;br&gt;jquery_treeview and jquery_cookie are never fetched.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------------------------------------------
&lt;br&gt;Observation: when I place the same html under the form of a static html
&lt;br&gt;page, all the scripts are nicely fetched.
&lt;br&gt;&lt;br&gt;&lt;br&gt;What could be the cause of this - admittedly strange - phenomenon?
&lt;br&gt;Anybody observed a similar test case?
&lt;br&gt;&lt;br&gt;Reinhard, as you make heavy use of rich client javascripting, do you
&lt;br&gt;know about this?
&lt;br&gt;Am I overlooking something essential?
&lt;br&gt;I see no reason why the result of a xslt transformation would behave
&lt;br&gt;different, so obviously I am.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Jos
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510836&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510836&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cocoon-3%3A--xslt-and-pickup-java-scripts-tp26510836p26510836.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502610</id>
	<title>Re: Add custom servlet on cocoon 2.2.0 startup</title>
	<published>2009-11-24T12:19:26Z</published>
	<updated>2009-11-24T12:19:26Z</updated>
	<author>
		<name>Dominic Mitchell</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/24 Gintare Ragaisiene &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502610&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gintare.ragaisiene@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
Hi,&lt;br&gt;&lt;br&gt;   I need to initialize a servlet like &lt;br&gt;&lt;br&gt;public class TestServlet extends HttpServlet{&lt;br&gt;    &lt;br&gt;    @Override&lt;br&gt;    public void init(ServletConfig config) throws ServletException {&lt;br&gt;        super.init(config);&lt;br&gt;

        &lt;br&gt;        System.out.println(&amp;quot;TestServlet&amp;quot;);&lt;br&gt;    }&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;on cocoon 2.2 startup. &lt;br&gt;&lt;br&gt;Some servlets is set up in cocoon_home/target/rct/webapp/WEB-INF/web.xml. If I edit that web.xml to add servlet, after server restart input disappear.&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I &lt;i&gt;think&lt;/i&gt; that you need to make your servlet into a Spring bean.  If you add to your existing META-INF/cocoon/spring/servlet-service-framework.xml file:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;
  &amp;lt;bean name=&amp;quot;myservlet&amp;quot; class=&amp;quot;com.example.MyServlet&amp;quot;&amp;gt;&lt;/div&gt;&lt;div&gt;    &amp;lt;servlet:context mount-path=&amp;quot;/myBlock1&amp;quot; context-path=&amp;quot;blockcontext:/myBlock1/&amp;quot;/&amp;gt;&lt;/div&gt;&lt;div&gt;  &amp;lt;/bean&amp;gt;&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;It may work.  I&amp;#39;m not too familiar with the servlet service framework, and I haven&amp;#39;t tested this.  :-(&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;-Dom&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Add-custom-servlet-on-cocoon-2.2.0-startup-tp26495324p26502610.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26496742</id>
	<title>Re: Missing Artifact - cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT</title>
	<published>2009-11-24T06:22:05Z</published>
	<updated>2009-11-24T06:22:05Z</updated>
	<author>
		<name>Job van Ommen</name>
	</author>
	<content type="html">I don't suppose you are running a unit test so it seems to me you
&lt;br&gt;should only be needing the block I mentioned.
&lt;br&gt;&lt;br&gt;Atleast thats what I gather from
&lt;br&gt;&lt;a href=&quot;http://cocoon.apache.org/2.2/core-modules/core/2.2/dependencies.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cocoon.apache.org/2.2/core-modules/core/2.2/dependencies.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;&lt;br&gt;job
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 12:28 PM, Peter Hargreaves
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tuesday 24 Nov 2009, Job van Ommen wrote:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sit&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sit&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;emap-impl/
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Can't use that one?
&lt;br&gt;&amp;gt; Not sure what you mean?
&lt;br&gt;&amp;gt; Peter.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Tue, Nov 24, 2009 at 10:17 AM, Peter Hargreaves
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Hi folks,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Wanted dead or alive - have you seen this artifact?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I'm trying to run the samples. I've checkedout the source code from:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; When I:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; mvn -P allblocks install -Dmaven.test.skip=true
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I get error message as below, but I can't find the artifact on the
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; project website.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I must be missing the point so, please could someone advise best way to
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; fix.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Many thanks,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Peter.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Missing:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; 1) org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  Try downloading the file manually from the project website.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  Then, install it using the command:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; install:install-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  Alternatively, if you host your own repository you can deploy the file
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; there:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; deploy:deploy-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file -Durl=[url]
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -DrepositoryId=[id]
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  Path to dependency:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;        1) org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;        2)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; 1 required artifact is missing.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; for artifact:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; from the specified remote repositories:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;),
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  gkossakowski-maven2
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496742&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Missing-Artifact---cocoon-sitemap-impl%3Atest-jar%3Atests%3A1.1.0-SNAPSHOT-tp26492723p26496742.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495663</id>
	<title>Re: Cocoon 3 and Cforms</title>
	<published>2009-11-24T05:15:59Z</published>
	<updated>2009-11-24T05:15:59Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Robby Pelssers wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Reinhard (and others),
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Just curious which javascript clients you're using... I recently
&lt;br&gt;&amp;gt; build a highly dynamic form with CForms (combination of repeater /
&lt;br&gt;&amp;gt; case widgets) but I'm not entirely happy with the performance...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So if you have any good leads to an open-source javascript library
&lt;br&gt;&amp;gt; for handling advanced forms....that would be appreciated. &amp;nbsp;Personally
&lt;br&gt;&amp;gt; I'm using YUI for most of my work but they haven't really put much
&lt;br&gt;&amp;gt; effort into forms.
&lt;/div&gt;&lt;br&gt;I'm a Mootools fan and have written an own integration layer that does
&lt;br&gt;all the RESTful communication with the server running C3. Unfortunately
&lt;br&gt;I can't publish it because all this stuff is too much tied with the
&lt;br&gt;business logic and I don't have the time to split it up.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495663&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495663&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495663&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26495663.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495614</id>
	<title>Re: Cocoon 3 and Cforms</title>
	<published>2009-11-24T05:12:42Z</published>
	<updated>2009-11-24T05:12:42Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Florent André wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tue, 24 Nov 2009 12:26:27 +0100, Reinhard Pötz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495614&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Florent André wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi all, hi Reinhard,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I see this on your website : &amp;quot;Cocoon 3 doesn't provide a stateful forms
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; framework.&amp;quot; [1]
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Does it mean that there will not have Cforms / Xforms solutions in
&lt;br&gt;&amp;gt; Cocoon
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 3
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; And what about continuations (closely linked to forms no ?) ?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It's my *personal* opinion that currently Wicket offers the best
&lt;br&gt;&amp;gt;&amp;gt; solution for Java-based web form development in most cases. Recently I
&lt;br&gt;&amp;gt;&amp;gt; was convinced that there are some cases where cForms have advantages but
&lt;br&gt;&amp;gt;&amp;gt; these are edge cases IMHO.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ok, thanks
&lt;br&gt;&amp;gt; I just ask this question because I found Cform concept very &amp;quot;sexy&amp;quot;, but I'm
&lt;br&gt;&amp;gt; not as involved in for well see limitations...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There is a simple way to integrate Wicket and Cocoon 3 ? 
&lt;br&gt;&amp;gt; If yes, could you give some pointers ? Add a sample in the future will be
&lt;br&gt;&amp;gt; very useful for simple user like me, I think.
&lt;/div&gt;&lt;br&gt;I've almost finished a first prototype and will commit it soon to SVN. I
&lt;br&gt;will also start a discussion about it some time this week.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495614&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495614&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495614&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26495614.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495478</id>
	<title>Re: Cocoon 3 and Cforms</title>
	<published>2009-11-24T05:01:45Z</published>
	<updated>2009-11-24T05:01:45Z</updated>
	<author>
		<name>Andre Juffer</name>
	</author>
	<content type="html">Robby Pelssers wrote:
&lt;br&gt;&amp;gt; Hi Reinhard (and others),
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just curious which javascript clients you're using... I recently build a highly dynamic form with CForms (combination of repeater / case widgets) but I'm not entirely happy with the performance... 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So if you have any good leads to an open-source javascript library for handling advanced forms....that would be appreciated. &amp;nbsp;Personally I'm using YUI for most of my work but they haven't really put much effort into forms.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;How about Dojo: &lt;a href=&quot;http://dojotoolkit.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dojotoolkit.org/&lt;/a&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Robby
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Reinhard Pötz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495478&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; Sent: Tuesday, November 24, 2009 12:26 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495478&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: Cocoon 3 and Cforms
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Florent André wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi all, hi Reinhard,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I see this on your website : &amp;quot;Cocoon 3 doesn't provide a stateful forms
&lt;br&gt;&amp;gt;&amp;gt; framework.&amp;quot; [1]
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Does it mean that there will not have Cforms / Xforms solutions in Cocoon 3
&lt;br&gt;&amp;gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; And what about continuations (closely linked to forms no ?) ?
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It's my *personal* opinion that currently Wicket offers the best
&lt;br&gt;&amp;gt; solution for Java-based web form development in most cases. Recently I
&lt;br&gt;&amp;gt; was convinced that there are some cases where cForms have advantages but
&lt;br&gt;&amp;gt; these are edge cases IMHO.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I use Cocoon to build RESTful web applications with strong Javascript
&lt;br&gt;&amp;gt; clients running in the browser and all the form handling is done there.
&lt;br&gt;&amp;gt; So for me there's no need of cForms/continuations any longer and
&lt;br&gt;&amp;gt; therefore I don't invest time in any migration efforts. But as I said in
&lt;br&gt;&amp;gt; the beginning of the mail, that's my personal opinion and if it makes
&lt;br&gt;&amp;gt; sense to others a migration should be possible.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andre H. Juffer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| Phone: +358-8-553 1161
&lt;br&gt;Biocenter Oulu and &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | Fax: +358-8-553-1141
&lt;br&gt;Department of Biochemistry &amp;nbsp; | Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495478&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andre.juffer@...&lt;/a&gt;
&lt;br&gt;University of Oulu, Finland &amp;nbsp;| WWW: www.biochem.oulu.fi/Biocomputing/
&lt;br&gt;StruBioCat &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | WWW: www.strubiocat.oulu.fi
&lt;br&gt;NordProt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | WWW: www.nordprot.org
&lt;br&gt;Triacle Biocomputing &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | WWW: www.triacle-bc.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495478&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495478&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26495478.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495324</id>
	<title>Add custom servlet on cocoon 2.2.0 startup</title>
	<published>2009-11-24T04:50:38Z</published>
	<updated>2009-11-24T04:50:38Z</updated>
	<author>
		<name>gintare2009</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;   I need to initialize a servlet like &lt;br&gt;&lt;br&gt;public class TestServlet extends HttpServlet{&lt;br&gt;    &lt;br&gt;    @Override&lt;br&gt;    public void init(ServletConfig config) throws ServletException {&lt;br&gt;        super.init(config);&lt;br&gt;
        &lt;br&gt;        System.out.println(&amp;quot;TestServlet&amp;quot;);&lt;br&gt;    }&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;on cocoon 2.2 startup. &lt;br&gt;&lt;br&gt;Some servlets is set up in cocoon_home/target/rct/webapp/WEB-INF/web.xml. If I edit that web.xml to add servlet, after server restart input disappear.&lt;br&gt;
&lt;br&gt;Thanks,&lt;br&gt;Gintare&lt;br&gt;&lt;br&gt; &lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Add-custom-servlet-on-cocoon-2.2.0-startup-tp26495324p26495324.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495261</id>
	<title>RE: Cocoon 3 and Cforms</title>
	<published>2009-11-24T04:46:33Z</published>
	<updated>2009-11-24T04:46:33Z</updated>
	<author>
		<name>Robby Pelssers-3</name>
	</author>
	<content type="html">Hi Reinhard (and others),
&lt;br&gt;&lt;br&gt;Just curious which javascript clients you're using... I recently build a highly dynamic form with CForms (combination of repeater / case widgets) but I'm not entirely happy with the performance... 
&lt;br&gt;&lt;br&gt;So if you have any good leads to an open-source javascript library for handling advanced forms....that would be appreciated. &amp;nbsp;Personally I'm using YUI for most of my work but they haven't really put much effort into forms.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Robby
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Reinhard Pötz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495261&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 12:26 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495261&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;
&lt;br&gt;Subject: Re: Cocoon 3 and Cforms
&lt;br&gt;&lt;br&gt;Florent André wrote:
&lt;br&gt;&amp;gt; Hi all, hi Reinhard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I see this on your website : &amp;quot;Cocoon 3 doesn't provide a stateful forms
&lt;br&gt;&amp;gt; framework.&amp;quot; [1]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does it mean that there will not have Cforms / Xforms solutions in Cocoon 3
&lt;br&gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt; And what about continuations (closely linked to forms no ?) ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;It's my *personal* opinion that currently Wicket offers the best
&lt;br&gt;solution for Java-based web form development in most cases. Recently I
&lt;br&gt;was convinced that there are some cases where cForms have advantages but
&lt;br&gt;these are edge cases IMHO.
&lt;br&gt;&lt;br&gt;I use Cocoon to build RESTful web applications with strong Javascript
&lt;br&gt;clients running in the browser and all the form handling is done there.
&lt;br&gt;So for me there's no need of cForms/continuations any longer and
&lt;br&gt;therefore I don't invest time in any migration efforts. But as I said in
&lt;br&gt;the beginning of the mail, that's my personal opinion and if it makes
&lt;br&gt;sense to others a migration should be possible.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495261&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495261&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495261&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26495261.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495227</id>
	<title>Re: Cocoon 3 and Cforms</title>
	<published>2009-11-24T04:44:38Z</published>
	<updated>2009-11-24T04:44:38Z</updated>
	<author>
		<name>Florent André-2</name>
	</author>
	<content type="html">On Tue, 24 Nov 2009 12:26:27 +0100, Reinhard Pötz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495227&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; Florent André wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi all, hi Reinhard,
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I see this on your website : &amp;quot;Cocoon 3 doesn't provide a stateful forms
&lt;br&gt;&amp;gt;&amp;gt; framework.&amp;quot; [1]
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Does it mean that there will not have Cforms / Xforms solutions in
&lt;br&gt;Cocoon
&lt;br&gt;&amp;gt;&amp;gt; 3
&lt;br&gt;&amp;gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; And what about continuations (closely linked to forms no ?) ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's my *personal* opinion that currently Wicket offers the best
&lt;br&gt;&amp;gt; solution for Java-based web form development in most cases. Recently I
&lt;br&gt;&amp;gt; was convinced that there are some cases where cForms have advantages but
&lt;br&gt;&amp;gt; these are edge cases IMHO.
&lt;br&gt;&lt;br&gt;Ok, thanks
&lt;br&gt;I just ask this question because I found Cform concept very &amp;quot;sexy&amp;quot;, but I'm
&lt;br&gt;not as involved in for well see limitations...
&lt;br&gt;&lt;br&gt;There is a simple way to integrate Wicket and Cocoon 3 ? 
&lt;br&gt;If yes, could you give some pointers ? Add a sample in the future will be
&lt;br&gt;very useful for simple user like me, I think.
&lt;br&gt;&lt;br&gt;++
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I use Cocoon to build RESTful web applications with strong Javascript
&lt;br&gt;&amp;gt; clients running in the browser and all the form handling is done there.
&lt;br&gt;&amp;gt; So for me there's no need of cForms/continuations any longer and
&lt;br&gt;&amp;gt; therefore I don't invest time in any migration efforts. But as I said in
&lt;br&gt;&amp;gt; the beginning of the mail, that's my personal opinion and if it makes
&lt;br&gt;&amp;gt; sense to others a migration should be possible.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495227&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495227&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26495227.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495200</id>
	<title>Re: Timer on cocoon</title>
	<published>2009-11-24T04:41:05Z</published>
	<updated>2009-11-24T04:41:05Z</updated>
	<author>
		<name>gintare2009</name>
	</author>
	<content type="html">Jos,&lt;br&gt;&lt;br&gt;  thanks for nice answer and creating a bean helped. But I don&amp;#39;t know still how to load custom servlet on cocoon 2.2 startup. So I&amp;#39;ll breed new thread for this question.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Tue, Nov 24, 2009 at 1:35 PM, Jos Snellings &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Is MyTimerThread the task you want to schedule?&lt;br&gt;
- you could create a spring bean, with&lt;br&gt;
org.springframework.scheduling.quartz.JobDetailBean&lt;br&gt;
- you can start your timerthread in the init() method of a servlet to&lt;br&gt;
start a task off when cocoon starts working. Not sure if that works for&lt;br&gt;
2.2.&lt;br&gt;
&lt;br&gt;
Hope that helps...&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
On Tue, 2009-11-24 at 13:16 +0200, Gintare Ragaisiene wrote:&lt;br&gt;
&amp;gt; Hi, Jos,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;    Quartz is ok and Java Timer is ok for me. But haw and where I&lt;br&gt;
&amp;gt; should input lines like MyTimerThread.start() to start timer when&lt;br&gt;
&amp;gt; cocoon starts working on server ?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Gintare&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; On Tue, Nov 24, 2009 at 11:10 AM, Jos Snellings&lt;br&gt;
&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt;         Hi, Gintare,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;         Cocoon is not even remotely a system to schedule operations.&lt;br&gt;
&amp;gt;         Maybe you are looking for something like&lt;br&gt;
&amp;gt;         &lt;a href=&quot;http://www.quartz-scheduler.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.quartz-scheduler.org/&lt;/a&gt;&lt;br&gt;
&amp;gt;         Most OS let you schedule jobs.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;         Jos&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;         On Tue, 2009-11-24 at 10:53 +0200, Gintare Ragaisiene wrote:&lt;br&gt;
&amp;gt;         &amp;gt; Hello,&lt;br&gt;
&amp;gt;         &amp;gt;&lt;br&gt;
&amp;gt;         &amp;gt;    I need to do some job with db periodically. For this I&lt;br&gt;
&amp;gt;         need to set&lt;br&gt;
&amp;gt;         &amp;gt; up timer.&lt;br&gt;
&amp;gt;         &amp;gt;&lt;br&gt;
&amp;gt;         &amp;gt;    How can I do this in cocoon 2.2 ?&lt;br&gt;
&amp;gt;         &amp;gt;&lt;br&gt;
&amp;gt;         &amp;gt; Thanks,&lt;br&gt;
&amp;gt;         &amp;gt; Gintare&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;         ---------------------------------------------------------------------&lt;br&gt;
&amp;gt;         To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;&lt;br&gt;
&amp;gt;         For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
---------------------------------------------------------------------&lt;br&gt;
To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;&lt;br&gt;
For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495200&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Timer-on-cocoon-tp26492482p26495200.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494425</id>
	<title>Re: Timer on cocoon</title>
	<published>2009-11-24T03:35:41Z</published>
	<updated>2009-11-24T03:35:41Z</updated>
	<author>
		<name>Jos Snellings</name>
	</author>
	<content type="html">Is MyTimerThread the task you want to schedule?
&lt;br&gt;- you could create a spring bean, with
&lt;br&gt;org.springframework.scheduling.quartz.JobDetailBean
&lt;br&gt;- you can start your timerthread in the init() method of a servlet to
&lt;br&gt;start a task off when cocoon starts working. Not sure if that works for
&lt;br&gt;2.2.
&lt;br&gt;&lt;br&gt;Hope that helps...
&lt;br&gt;&lt;br&gt;On Tue, 2009-11-24 at 13:16 +0200, Gintare Ragaisiene wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, Jos,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Quartz is ok and Java Timer is ok for me. But haw and where I
&lt;br&gt;&amp;gt; should input lines like MyTimerThread.start() to start timer when
&lt;br&gt;&amp;gt; cocoon starts working on server ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Gintare
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Tue, Nov 24, 2009 at 11:10 AM, Jos Snellings
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494425&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hi, Gintare,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cocoon is not even remotely a system to schedule operations.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Maybe you are looking for something like
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.quartz-scheduler.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.quartz-scheduler.org/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Most OS let you schedule jobs.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jos
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; On Tue, 2009-11-24 at 10:53 +0200, Gintare Ragaisiene wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; Hello,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; &amp;nbsp; &amp;nbsp;I need to do some job with db periodically. For this I
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; need to set
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; up timer.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; &amp;nbsp; &amp;nbsp;How can I do this in cocoon 2.2 ?
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;gt; Gintare
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494425&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494425&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494425&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494425&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Timer-on-cocoon-tp26492482p26494425.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494330</id>
	<title>Re: Missing Artifact - cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT</title>
	<published>2009-11-24T03:28:41Z</published>
	<updated>2009-11-24T03:28:41Z</updated>
	<author>
		<name>Peter Hargreaves-3</name>
	</author>
	<content type="html">On Tuesday 24 Nov 2009, Job van Ommen wrote:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sit&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sit&lt;/a&gt;&lt;br&gt;&amp;gt;emap-impl/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can't use that one?
&lt;br&gt;Not sure what you mean?
&lt;br&gt;Peter.
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Nov 24, 2009 at 10:17 AM, Peter Hargreaves
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi folks,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Wanted dead or alive - have you seen this artifact?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'm trying to run the samples. I've checkedout the source code from:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; When I:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; mvn -P allblocks install -Dmaven.test.skip=true
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I get error message as below, but I can't find the artifact on the
&lt;br&gt;&amp;gt; &amp;gt; project website.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I must be missing the point so, please could someone advise best way to
&lt;br&gt;&amp;gt; &amp;gt; fix.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Many thanks,
&lt;br&gt;&amp;gt; &amp;gt; Peter.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Missing:
&lt;br&gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt; &amp;gt; 1) org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Try downloading the file manually from the project website.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Then, install it using the command:
&lt;br&gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt; &amp;gt; install:install-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Alternatively, if you host your own repository you can deploy the file
&lt;br&gt;&amp;gt; &amp;gt; there:
&lt;br&gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt; &amp;gt; deploy:deploy-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file -Durl=[url]
&lt;br&gt;&amp;gt; &amp;gt; -DrepositoryId=[id]
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Path to dependency:
&lt;br&gt;&amp;gt; &amp;gt;        1) org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;        2)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt; &amp;gt; 1 required artifact is missing.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; for artifact:
&lt;br&gt;&amp;gt; &amp;gt;  org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; from the specified remote repositories:
&lt;br&gt;&amp;gt; &amp;gt;  apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;gt;  central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;gt;  gkossakowski-maven2
&lt;br&gt;&amp;gt; &amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494330&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Missing-Artifact---cocoon-sitemap-impl%3Atest-jar%3Atests%3A1.1.0-SNAPSHOT-tp26492723p26494330.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494289</id>
	<title>Re: Cocoon 3 and Cforms</title>
	<published>2009-11-24T03:26:27Z</published>
	<updated>2009-11-24T03:26:27Z</updated>
	<author>
		<name>Reinhard Pötz-2</name>
	</author>
	<content type="html">Florent André wrote:
&lt;br&gt;&amp;gt; Hi all, hi Reinhard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I see this on your website : &amp;quot;Cocoon 3 doesn't provide a stateful forms
&lt;br&gt;&amp;gt; framework.&amp;quot; [1]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does it mean that there will not have Cforms / Xforms solutions in Cocoon 3
&lt;br&gt;&amp;gt; ?&amp;gt;
&lt;br&gt;&amp;gt; And what about continuations (closely linked to forms no ?) ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;It's my *personal* opinion that currently Wicket offers the best
&lt;br&gt;solution for Java-based web form development in most cases. Recently I
&lt;br&gt;was convinced that there are some cases where cForms have advantages but
&lt;br&gt;these are edge cases IMHO.
&lt;br&gt;&lt;br&gt;I use Cocoon to build RESTful web applications with strong Javascript
&lt;br&gt;clients running in the browser and all the form handling is done there.
&lt;br&gt;So for me there's no need of cForms/continuations any longer and
&lt;br&gt;therefore I don't invest time in any migration efforts. But as I said in
&lt;br&gt;the beginning of the mail, that's my personal opinion and if it makes
&lt;br&gt;sense to others a migration should be possible.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Reinhard Pötz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Managing Director, {Indoqa} GmbH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.indoqa.com/en/people/reinhard.poetz/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indoqa.com/en/people/reinhard.poetz/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Member of the Apache Software Foundation
&lt;br&gt;Apache Cocoon Committer, PMC member &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494289&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reinhard@...&lt;/a&gt;
&lt;br&gt;________________________________________________________________________
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494289&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494289&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cocoon-3-and-Cforms-tp26493700p26494289.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494299</id>
	<title>Re: Samples for Cocoon 2.2</title>
	<published>2009-11-24T03:26:19Z</published>
	<updated>2009-11-24T03:26:19Z</updated>
	<author>
		<name>Peter Hargreaves-3</name>
	</author>
	<content type="html">Hi Job,
&lt;br&gt;&lt;br&gt;Thanks for the feedbacks.
&lt;br&gt;&lt;br&gt;I've now found the README.txt so am trying to:
&lt;br&gt;&lt;br&gt;./build.sh clean install
&lt;br&gt;&lt;br&gt;but keep getting:
&lt;br&gt;&lt;br&gt;&amp;quot;The system is out of resources.
&lt;br&gt;Consult the following stack trace for details.
&lt;br&gt;java.lang.OutOfMemoryError: Java heap space&amp;quot;
&lt;br&gt;&lt;br&gt;I've tried:
&lt;br&gt;&lt;br&gt;MAVEN_OPTS=&amp;quot;-Xmx2048m&amp;quot;
&lt;br&gt;&lt;br&gt;But still out of heap space. Surely this should be enough?
&lt;br&gt;&lt;br&gt;Ideas anybody?????
&lt;br&gt;&lt;br&gt;Peter.
&lt;br&gt;&lt;br&gt;On Tuesday 24 Nov 2009, Job van Ommen wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; It looks like in one of the POM files there is a dependency of to a
&lt;br&gt;&amp;gt; block that is not available viz. the pom file of the cocoon-core
&lt;br&gt;&amp;gt; block.
&lt;br&gt;&amp;gt; You should check the file and try another version of the required
&lt;br&gt;&amp;gt; block or download it manually as the error message you get is
&lt;br&gt;&amp;gt; describing.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Im not entirly sure tho, its been a while since ive used cocoon but I
&lt;br&gt;&amp;gt; can remember getting a similar error.
&lt;br&gt;&amp;gt; I then changed the POM file for the form implementation to change the
&lt;br&gt;&amp;gt; dependency to another version. For example you could try 1.1.1 instead
&lt;br&gt;&amp;gt; of 1.1.0-SNAPSHOT if it's available!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Good luck
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Job
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Nov 23, 2009 at 1:00 PM, Peter Hargreaves &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;&amp;gt; 
&lt;/div&gt;wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; Thanks for the feedback folks - nearly there.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;On this blog:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&lt;a href=&quot;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mrhaki.blogspot.com/2008/09/running-cocoon-22-samples.html&lt;/a&gt;&amp;nbsp;you can
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;see step-by-step how to get the samples running.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;Regards,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;Job
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I followed your advice, Job, but when I try:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; mvn -P allblocks install -Dmaven.test.skip=true
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I get error message as below. So, please advise best way to fix.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Many thanks,
&lt;br&gt;&amp;gt; &amp;gt; Peter.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Missing:
&lt;br&gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt; &amp;gt; 1) org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Try downloading the file manually from the project website.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Then, install it using the command:
&lt;br&gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt; &amp;gt; install:install-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Alternatively, if you host your own repository you can deploy the file
&lt;br&gt;&amp;gt; &amp;gt; there:
&lt;br&gt;&amp;gt; &amp;gt;      mvn
&lt;br&gt;&amp;gt; &amp;gt; deploy:deploy-file -DgroupId=org.apache.cocoon
&lt;br&gt;&amp;gt; &amp;gt; -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file -Durl=[url]
&lt;br&gt;&amp;gt; &amp;gt; -DrepositoryId=[id]
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Path to dependency:
&lt;br&gt;&amp;gt; &amp;gt;        1) org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;        2)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ----------
&lt;br&gt;&amp;gt; &amp;gt; 1 required artifact is missing.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; for artifact:
&lt;br&gt;&amp;gt; &amp;gt;  org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; from the specified remote repositories:
&lt;br&gt;&amp;gt; &amp;gt;  apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;gt;  central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;gt; &amp;gt;  gkossakowski-maven2
&lt;br&gt;&amp;gt; &amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494299&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Samples-for-Cocoon-2.2-tp26477535p26494299.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494171</id>
	<title>Re: Timer on cocoon</title>
	<published>2009-11-24T03:16:11Z</published>
	<updated>2009-11-24T03:16:11Z</updated>
	<author>
		<name>gintare2009</name>
	</author>
	<content type="html">Hi, Jos,&lt;br&gt;&lt;br&gt;   Quartz is ok and Java Timer is ok for me. But haw and where I should input lines like MyTimerThread.start() to start timer when cocoon starts working on server ?&lt;br&gt;&lt;br&gt;Gintare&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Tue, Nov 24, 2009 at 11:10 AM, Jos Snellings &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494171&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jos.Snellings@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Hi, Gintare,&lt;br&gt;
&lt;br&gt;
Cocoon is not even remotely a system to schedule operations.&lt;br&gt;
Maybe you are looking for something like&lt;br&gt;
&lt;a href=&quot;http://www.quartz-scheduler.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.quartz-scheduler.org/&lt;/a&gt;&lt;br&gt;
Most OS let you schedule jobs.&lt;br&gt;
&lt;br&gt;
Jos&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
&lt;br&gt;
On Tue, 2009-11-24 at 10:53 +0200, Gintare Ragaisiene wrote:&lt;br&gt;
&amp;gt; Hello,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;    I need to do some job with db periodically. For this I need to set&lt;br&gt;
&amp;gt; up timer.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;    How can I do this in cocoon 2.2 ?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; Gintare&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;---------------------------------------------------------------------&lt;br&gt;
To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494171&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;&lt;br&gt;
For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494171&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Timer-on-cocoon-tp26492482p26494171.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494042</id>
	<title>Re: Missing Artifact - cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT</title>
	<published>2009-11-24T03:05:44Z</published>
	<updated>2009-11-24T03:05:44Z</updated>
	<author>
		<name>Job van Ommen</name>
	</author>
	<content type="html">&lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Can't use that one?
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 10:17 AM, Peter Hargreaves
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494042&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi folks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wanted dead or alive - have you seen this artifact?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to run the samples. I've checkedout the source code from:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://svn.apache.org/repos/asf/cocoon/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cocoon/trunk&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; mvn -P allblocks install -Dmaven.test.skip=true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I get error message as below, but I can't find the artifact on the project
&lt;br&gt;&amp;gt; website.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I must be missing the point so, please could someone advise best way to fix.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Many thanks,
&lt;br&gt;&amp;gt; Peter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Missing:
&lt;br&gt;&amp;gt; ----------
&lt;br&gt;&amp;gt; 1) org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  Try downloading the file manually from the project website.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  Then, install it using the command:
&lt;br&gt;&amp;gt;      mvn
&lt;br&gt;&amp;gt; install:install-file -DgroupId=org.apache.cocoon -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  Alternatively, if you host your own repository you can deploy the file
&lt;br&gt;&amp;gt; there:
&lt;br&gt;&amp;gt;      mvn
&lt;br&gt;&amp;gt; deploy:deploy-file -DgroupId=org.apache.cocoon -DartifactId=cocoon-sitemap-impl -Dversion=1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt; -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  Path to dependency:
&lt;br&gt;&amp;gt;        1) org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt;        2) org.apache.cocoon:cocoon-sitemap-impl:test-jar:tests:1.1.0-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----------
&lt;br&gt;&amp;gt; 1 required artifact is missing.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; for artifact:
&lt;br&gt;&amp;gt;  org.apache.cocoon:cocoon-core:jar:2.2.1-SNAPSHOT
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; from the specified remote repositories:
&lt;br&gt;&amp;gt;  apache.snapshots (&lt;a href=&quot;http://people.apache.org/repo/m2-snapshot-repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/repo/m2-snapshot-repository&lt;/a&gt;),
&lt;br&gt;&amp;gt;  central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),
&lt;br&gt;&amp;gt;  gkossakowski-maven2
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~gkossakowski/maven2/repository&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~gkossakowski/maven2/repository&lt;/a&gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494042&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494042&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494042&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494042&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Missing-Artifact---cocoon-sitemap-impl%3Atest-jar%3Atests%3A1.1.0-SNAPSHOT-tp26492723p26494042.html" />
</entry>

</feed>
