<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Ola Bildtsen</title>
	<atom:link href="http://bildtsen.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bildtsen.com</link>
	<description>Flex, Groovy/Grails, and other neat stuff</description>
	<lastBuildDate>Wed, 04 Nov 2009 17:01:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Stark Security version 0.4.2 released by Ola Bildtsen</title>
		<link>http://bildtsen.com/2009/01/stark-security-version-042-released/comment-page-1/#comment-2717</link>
		<dc:creator>Ola Bildtsen</dc:creator>
		<pubDate>Wed, 04 Nov 2009 17:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=155#comment-2717</guid>
		<description>Doug,

This should be a rather simple change: the only two classes that know about the User class is the User class itself and UserLookupService.  Renaming the User class and the references to it in UserLookupService should be all you need to do.

If you&#039;d like to keep the class named &#039;User&#039; but just map it to a different table, you can just add something like this to the &#039;mapping&#039; section in the User.groovy class:

&lt;code&gt;
table &#039;person&#039;
&lt;/code&gt;

Please let me know if you run into issues.</description>
		<content:encoded><![CDATA[<p>Doug,</p>
<p>This should be a rather simple change: the only two classes that know about the User class is the User class itself and UserLookupService.  Renaming the User class and the references to it in UserLookupService should be all you need to do.</p>
<p>If you&#8217;d like to keep the class named &#8216;User&#8217; but just map it to a different table, you can just add something like this to the &#8216;mapping&#8217; section in the User.groovy class:</p>
<p><code><br />
table 'person'<br />
</code></p>
<p>Please let me know if you run into issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stark Security version 0.4.2 released by Douglas Hahn</title>
		<link>http://bildtsen.com/2009/01/stark-security-version-042-released/comment-page-1/#comment-2716</link>
		<dc:creator>Douglas Hahn</dc:creator>
		<pubDate>Wed, 04 Nov 2009 16:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=155#comment-2716</guid>
		<description>Been playing with grails a few days and came across your plugin.  Any thoughts on how I could make this work with MS SQL.  user is a reserved word and would need to be surrouned by brackets [user] to work.  Do you now of anyway I could change the table name it uses?  Is that defined anywhere globally?

-Doug</description>
		<content:encoded><![CDATA[<p>Been playing with grails a few days and came across your plugin.  Any thoughts on how I could make this work with MS SQL.  user is a reserved word and would need to be surrouned by brackets [user] to work.  Do you now of anyway I could change the table name it uses?  Is that defined anywhere globally?</p>
<p>-Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Flex Implementation using Modules with URLKit Deep-Linking by Asier Cayon</title>
		<link>http://bildtsen.com/2008/11/a-flex-implementation-using-modules-with-urlkit-deep-linking/comment-page-1/#comment-2667</link>
		<dc:creator>Asier Cayon</dc:creator>
		<pubDate>Wed, 28 Oct 2009 17:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=92#comment-2667</guid>
		<description>Hi Ola Bildtsen.

I found the solution (using facades) before read your reply, however I&#039;m happy to be able to solve this problem by my self.

Thanks for your reply ;).</description>
		<content:encoded><![CDATA[<p>Hi Ola Bildtsen.</p>
<p>I found the solution (using facades) before read your reply, however I&#8217;m happy to be able to solve this problem by my self.</p>
<p>Thanks for your reply <img src='http://bildtsen.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Flex Implementation using Modules with URLKit Deep-Linking by Ola Bildtsen</title>
		<link>http://bildtsen.com/2008/11/a-flex-implementation-using-modules-with-urlkit-deep-linking/comment-page-1/#comment-2630</link>
		<dc:creator>Ola Bildtsen</dc:creator>
		<pubDate>Fri, 23 Oct 2009 15:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=92#comment-2630</guid>
		<description>Hi Asier,

Thanks for your comment -- your English is just fine.  :)

The logic we implemented actually works in the order you&#039;re proposing.  We used Cairngorm in a very similar fashion, and the last step was to change the view (which in this case would load the module as appropriate, with the resulting update to the browser URL).  So in the result/fault function in step 4, we&#039;d simply use a Facade to set the bookId and load the module as per the last code snippet in this post.

I may be missing your point here -- please let me know if it&#039;s still unclear.</description>
		<content:encoded><![CDATA[<p>Hi Asier,</p>
<p>Thanks for your comment &#8212; your English is just fine.  <img src='http://bildtsen.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The logic we implemented actually works in the order you&#8217;re proposing.  We used Cairngorm in a very similar fashion, and the last step was to change the view (which in this case would load the module as appropriate, with the resulting update to the browser URL).  So in the result/fault function in step 4, we&#8217;d simply use a Facade to set the bookId and load the module as per the last code snippet in this post.</p>
<p>I may be missing your point here &#8212; please let me know if it&#8217;s still unclear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Flex Implementation using Modules with URLKit Deep-Linking by Asier Cayon</title>
		<link>http://bildtsen.com/2008/11/a-flex-implementation-using-modules-with-urlkit-deep-linking/comment-page-1/#comment-2592</link>
		<dc:creator>Asier Cayon</dc:creator>
		<pubDate>Mon, 19 Oct 2009 11:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=92#comment-2592</guid>
		<description>Hi Ola Bildtsen.

I have been testing your examples (URLKit with Modules and Cairngorm with Facades), and I have some questions about the right way to develope. I will try to explain the best as possible using my poor english :(

The nomal way to change views in a Flex application with Cairngorm or Swizframework is the next one:
1. Click button (or something similar) which dispatches event
2. Event will be catched by a command (or Controller if we use Swizframework
3. In command/controller we make all calls to Delegates in order to get data
4. The AsyncTokens from Delegates call to diferents results or faults functions
5. In one of our result/fault function, we will change view (we can use Facades in this methods)

In your examples you do my last step (step 5) at first, and then this visual changes, will dispatch event (your steps are the next one: 1,5,2,3,4)

Are there any way to do this steps in order (1,2,3,4,5) with URLKit?

At weekend I was thinking about this for long time but I don&#039;t know how to do and because of it I ask you.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Ola Bildtsen.</p>
<p>I have been testing your examples (URLKit with Modules and Cairngorm with Facades), and I have some questions about the right way to develope. I will try to explain the best as possible using my poor english <img src='http://bildtsen.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>The nomal way to change views in a Flex application with Cairngorm or Swizframework is the next one:<br />
1. Click button (or something similar) which dispatches event<br />
2. Event will be catched by a command (or Controller if we use Swizframework<br />
3. In command/controller we make all calls to Delegates in order to get data<br />
4. The AsyncTokens from Delegates call to diferents results or faults functions<br />
5. In one of our result/fault function, we will change view (we can use Facades in this methods)</p>
<p>In your examples you do my last step (step 5) at first, and then this visual changes, will dispatch event (your steps are the next one: 1,5,2,3,4)</p>
<p>Are there any way to do this steps in order (1,2,3,4,5) with URLKit?</p>
<p>At weekend I was thinking about this for long time but I don&#8217;t know how to do and because of it I ask you.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Flex Implementation using Modules with URLKit Deep-Linking by Ola Bildtsen</title>
		<link>http://bildtsen.com/2008/11/a-flex-implementation-using-modules-with-urlkit-deep-linking/comment-page-1/#comment-1055</link>
		<dc:creator>Ola Bildtsen</dc:creator>
		<pubDate>Wed, 15 Apr 2009 16:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=92#comment-1055</guid>
		<description>The GetBookDetailsEvent doesn&#039;t exist -- this is just an example.  The event would do something in the app (like go retrieve data, etc.).  The actual implementation of that event is not part of this mini example.</description>
		<content:encoded><![CDATA[<p>The GetBookDetailsEvent doesn&#8217;t exist &#8212; this is just an example.  The event would do something in the app (like go retrieve data, etc.).  The actual implementation of that event is not part of this mini example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Flex Implementation using Modules with URLKit Deep-Linking by Rodrigo Savian</title>
		<link>http://bildtsen.com/2008/11/a-flex-implementation-using-modules-with-urlkit-deep-linking/comment-page-1/#comment-992</link>
		<dc:creator>Rodrigo Savian</dc:creator>
		<pubDate>Thu, 09 Apr 2009 14:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=92#comment-992</guid>
		<description>ola!
please send-me codigo-font in email

rodrigosavian@live.nl

dificults implements
no have packages acme.book.events.GetBookDetailsEvent

tank you!</description>
		<content:encoded><![CDATA[<p>ola!<br />
please send-me codigo-font in email</p>
<p><a href="mailto:rodrigosavian@live.nl">rodrigosavian@live.nl</a></p>
<p>dificults implements<br />
no have packages acme.book.events.GetBookDetailsEvent</p>
<p>tank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stark Security version 0.4.2 released by Ola Bildtsen</title>
		<link>http://bildtsen.com/2009/01/stark-security-version-042-released/comment-page-1/#comment-847</link>
		<dc:creator>Ola Bildtsen</dc:creator>
		<pubDate>Thu, 26 Mar 2009 20:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=155#comment-847</guid>
		<description>Thanks for the note, Mike.  The plugin version 0.4.2 is released and compatible with grails 1.1 -- are you having specific issues with installing it?</description>
		<content:encoded><![CDATA[<p>Thanks for the note, Mike.  The plugin version 0.4.2 is released and compatible with grails 1.1 &#8212; are you having specific issues with installing it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stark Security version 0.4.2 released by Mike</title>
		<link>http://bildtsen.com/2009/01/stark-security-version-042-released/comment-page-1/#comment-809</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 24 Mar 2009 10:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=155#comment-809</guid>
		<description>Hi Ola,

thanks for the great plugin! I love the approach it takes. Do you have any plans on releasing a version compatible with Grails 1.1? I would love to upgrade, but there are still some plugin issues giving me headache.

Best regards,
Mike</description>
		<content:encoded><![CDATA[<p>Hi Ola,</p>
<p>thanks for the great plugin! I love the approach it takes. Do you have any plans on releasing a version compatible with Grails 1.1? I would love to upgrade, but there are still some plugin issues giving me headache.</p>
<p>Best regards,<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stark Security Version 0.4 Released by Ola Bildtsen</title>
		<link>http://bildtsen.com/2009/01/stark-security-version-04-released/comment-page-1/#comment-330</link>
		<dc:creator>Ola Bildtsen</dc:creator>
		<pubDate>Mon, 26 Jan 2009 22:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://bildtsen.com/?p=151#comment-330</guid>
		<description>Yes, others have noted this as well.  There&#039;s a JIRA defect out there for this: http://jira.codehaus.org/browse/GRAILSPLUGINS-804.  It has been resolved and will be available with the release of stark-security version 0.4.2, which is coming soon.  Thanks!</description>
		<content:encoded><![CDATA[<p>Yes, others have noted this as well.  There&#8217;s a JIRA defect out there for this: <a href="http://jira.codehaus.org/browse/GRAILSPLUGINS-804" rel="nofollow">http://jira.codehaus.org/browse/GRAILSPLUGINS-804</a>.  It has been resolved and will be available with the release of stark-security version 0.4.2, which is coming soon.  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
