<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for JT Dev</title>
	<atom:link href="http://www.jtict.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jtict.com/blog</link>
	<description>About programming stuff</description>
	<pubDate>Mon, 01 Dec 2008 19:41:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Seam and URL rewriting with parameters and forms by Lincoln</title>
		<link>http://www.jtict.com/blog/seam-form-url-rewriting/#comment-548</link>
		<dc:creator>Lincoln</dc:creator>
		<pubDate>Tue, 18 Nov 2008 13:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=4#comment-548</guid>
		<description>Hey, check out PrettyFaces. I just finished the release. It's a lot simpler and (I think) more powerful than JBoss URLRewriting, but let me know what you think if you try it out.

http://ocpsoft.com/prettyfaces/

Thanks,
Lincoln</description>
		<content:encoded><![CDATA[<p>Hey, check out PrettyFaces. I just finished the release. It&#8217;s a lot simpler and (I think) more powerful than JBoss URLRewriting, but let me know what you think if you try it out.</p>
<p><a href="http://ocpsoft.com/prettyfaces/" rel="nofollow">http://ocpsoft.com/prettyfaces/</a></p>
<p>Thanks,<br />
Lincoln</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSF doesn&#8217;t validate empty forms by Benny's Blog</title>
		<link>http://www.jtict.com/blog/jsf-empty-form-validation/#comment-18</link>
		<dc:creator>Benny's Blog</dc:creator>
		<pubDate>Sat, 26 Jul 2008 15:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=7#comment-18</guid>
		<description>&lt;strong&gt;Parameterized JSF Facelets Validators...&lt;/strong&gt;

Parameterizable validators are a tricky thing; they need to be represented in various configuration files and on top of that need to be stateful. Read on to find out how you can use validator tags with custom attributes.
......</description>
		<content:encoded><![CDATA[<p><strong>Parameterized JSF Facelets Validators&#8230;</strong></p>
<p>Parameterizable validators are a tricky thing; they need to be represented in various configuration files and on top of that need to be stateful. Read on to find out how you can use validator tags with custom attributes.<br />
&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails &#038; Jetty with multiple contexts by j pimmel</title>
		<link>http://www.jtict.com/blog/grails-jetty-multiple-contexts/#comment-13</link>
		<dc:creator>j pimmel</dc:creator>
		<pubDate>Mon, 14 Jul 2008 09:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=12#comment-13</guid>
		<description>We used to 'patch' grails core scripts as you have done above but after several painful upgrades we have started to take another tack and now defer to using Gants event binding model. (See http://docs.codehaus.org/display/GRAILS/Scripting+events)

What this would mean is you create a %PROJECT_HOME%/scripts/Events.groovy file and add in (using your script as a reference above) 

eventConfigureJettyEnd = {
   // do stuff
}

The obvious thing that might be an issue is where you've removed the setHandler(webcontext) call, replacing it with two calls to addHandler(xxx)

Assuming that calling addHandler after the built in unmodified script has called setHandler still results in the same as two addHandler() calls, then it should be ok.</description>
		<content:encoded><![CDATA[<p>We used to &#8216;patch&#8217; grails core scripts as you have done above but after several painful upgrades we have started to take another tack and now defer to using Gants event binding model. (See <a href="http://docs.codehaus.org/display/GRAILS/Scripting+events" rel="nofollow">http://docs.codehaus.org/display/GRAILS/Scripting+events</a>)</p>
<p>What this would mean is you create a %PROJECT_HOME%/scripts/Events.groovy file and add in (using your script as a reference above) </p>
<p>eventConfigureJettyEnd = {<br />
   // do stuff<br />
}</p>
<p>The obvious thing that might be an issue is where you&#8217;ve removed the setHandler(webcontext) call, replacing it with two calls to addHandler(xxx)</p>
<p>Assuming that calling addHandler after the built in unmodified script has called setHandler still results in the same as two addHandler() calls, then it should be ok.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails &#038; Jetty with multiple contexts by dahernan</title>
		<link>http://www.jtict.com/blog/grails-jetty-multiple-contexts/#comment-11</link>
		<dc:creator>dahernan</dc:creator>
		<pubDate>Mon, 14 Jul 2008 06:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=12#comment-11</guid>
		<description>Few months ago I did a small plugin to server static resources with jetty in production.

Take a look.

http://dahernan.net/2008/03/grails-jettystatic-plugin-released.html</description>
		<content:encoded><![CDATA[<p>Few months ago I did a small plugin to server static resources with jetty in production.</p>
<p>Take a look.</p>
<p><a href="http://dahernan.net/2008/03/grails-jettystatic-plugin-released.html" rel="nofollow">http://dahernan.net/2008/03/grails-jettystatic-plugin-released.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails &#038; Jetty with multiple contexts by Colin Harrington</title>
		<link>http://www.jtict.com/blog/grails-jetty-multiple-contexts/#comment-10</link>
		<dc:creator>Colin Harrington</dc:creator>
		<pubDate>Mon, 14 Jul 2008 04:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.jtict.com/blog/?p=12#comment-10</guid>
		<description>JT, Thanks for the good write-up.  You reminded me of a post I had to write (http://colinharrington.net/blog/index.php/2008/07/13/grails-jetty-and-crossdomainxml/)

Keep rocking!</description>
		<content:encoded><![CDATA[<p>JT, Thanks for the good write-up.  You reminded me of a post I had to write (http://colinharrington.net/blog/index.php/2008/07/13/grails-jetty-and-crossdomainxml/)</p>
<p>Keep rocking!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
