<?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 Random Ramblings</title>
	<atom:link href="http://www.codedivision.com/modules/wordpress/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedivision.com/modules/wordpress</link>
	<description></description>
	<lastBuildDate>Wed, 29 Apr 2009 09:09:09 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Keeping up with the train &#8211; Lots of work for little features by Tiran Kenja</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/01/22/keeping-up-with-the-train-lots-of-work-for-little-features/comment-page-1/#comment-21494</link>
		<dc:creator>Tiran Kenja</dc:creator>
		<pubDate>Wed, 29 Apr 2009 09:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/01/22/keeping-up-with-the-train-lots-of-work-for-little-features/#comment-21494</guid>
		<description>Looking back in my Subversion it seems that it was mostly fixing reference to code that is no longer in Rails. Specifically I changed auth_helper.rb like so:

&lt;pre lang=&quot;diff&quot;&gt;
Index: auth_helper.rb
===================================================================
--- auth_helper.rb	(revision 647)
+++ auth_helper.rb	(revision 863)
@@ -1,11 +1,11 @@
 module AuthHelper
-
+  
   # For theme support. Idea from Typo.
   def search_paths(path)
     [&quot;#{path}/theme/#{this_auth[:theme]}/&quot;,
     ]
   end
-
+  
   def full_template_path(template_path, extension)
     template_path_dirs = template_path.split(&#039;/&#039;)
     dir = template_path_dirs[0]
@@ -17,7 +17,7 @@
     end
     super
   end
-
+  
   # Taken from the webrick server
   module Utils
     if !const_defined? &quot;RAND_CHARS&quot;
@@ -32,60 +32,64 @@
       ret
     end
     module_function :random_string
-
+    
     # define a regexp for valid IPv4 host
     def valid_ipv4_host_regex
       zero_to_254 = &quot;([0-9][0-9]?&#124;1[0-9]{2}&#124;2[0-4][0-9]&#124;25[0-4])&quot;
       one_to_254  = &quot;([1-9][0-9]?&#124;1[0-9]{2}&#124;2[0-4][0-9]&#124;25[0-4])&quot;
-
+      
       /\A#{one_to_254}\.#{zero_to_254}\.#{zero_to_254}\.#{one_to_254}\z/
     end
     module_function :valid_ipv4_host_regex
-
+    
   end
-
+  
   # Show user informations using Ajax. Can be used on static pages / cached pages.
   def ajax_account_infos()
     &quot;&quot; + javascript_tag(&#039;function showloginform() {&#039;+ 
-        remote_function(:update =&gt; &quot;accountinfo&quot;, :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }) +
-        &#039; document.getElementById(\&#039;post_login\&#039;).focus();}&#039;) + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+
-        link_to(auth_icon(&#039;buddy&#039;), auth_url) + &quot;&lt;/div&gt;&quot; +
-        javascript_tag(&quot;new Ajax.Updater(&#039;accountinfo&#039;, &#039;/auth/remoteinfo&#039;, {asynchronous:true});&quot;)
+    remote_function(:update =&gt; &quot;accountinfo&quot;, 
+    :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }, 
+    :success =&gt; &quot;document.getElementById(\&#039;post_login\&#039;).focus();&quot;) + &quot;}&quot;) + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+
+    link_to(auth_icon(&#039;buddy&#039;), auth_url) + &quot;&lt;/div&gt;&quot; +
+    javascript_tag(&quot;new Ajax.Updater(&#039;accountinfo&#039;, &#039;/auth/remoteinfo&#039;, {asynchronous:true});&quot;)
   end
-
+  
   # Show user information, don&#039;t use for static or cached page!
   def account_infos()
     &quot;&quot; + javascript_tag(&#039;function showloginform() {&#039;+ 
-        remote_function(:update =&gt; &quot;accountinfo&quot;, :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }) +
-    &#039; document.getElementById(\&#039;post_login\&#039;).focus();}&#039;) + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+
+    remote_function(:update =&gt; &quot;accountinfo&quot;, 
+    :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }, 
+    :success =&gt; &quot;document.getElementById(\&#039;post_login\&#039;).focus();&quot;) + &quot;}&quot;) +
+     &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+
     render(:partial =&gt; &quot;auth/remoteinfo&quot;) + &quot;&lt;/div&gt;&quot;
   end
-
+  
   # Javascript version to show user information. Can be used on static pages / cached pages.
   def js_account_infos()
     &quot;&quot; + javascript_tag(&#039;function showloginform() {&#039;+ 
-        remote_function(:update =&gt; &quot;accountinfo&quot;, :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }) +
-    &#039; document.getElementById(\&#039;post_login\&#039;).focus();}&#039;) + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot; +
+    remote_function(:update =&gt; &quot;accountinfo&quot;, 
+    :url =&gt; { :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; }, 
+    :success =&gt; &quot;document.getElementById(\&#039;post_login\&#039;).focus();&quot;) + &quot;}&quot;) + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot; +
     &quot;&lt;script src=\&quot;/auth/jsinfo\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;+
     &#039;&lt;script type=&quot;text/javascript&quot;&gt;displayAccountInfo();&lt;/script&gt;&#039; + &quot;&lt;/div&gt;&quot;
   end
-
+  
   # store current uri in the ccokies
   # we can return to this location by calling return_location
   def store_location
     cookies[:return_to] = {:value =&gt; request.request_uri, :expires =&gt; nil }
   end
-
+  
   # Loading spinner indicator icon tag
   def spinner_tag(id = &#039;ident&#039;)
     image_tag(&#039;auth/spinner.gif&#039;, :id=&gt;&quot;#{id}_spinner&quot;, :align =&gt; &#039;absmiddle&#039;, :border=&gt; 0, :style=&gt; &#039;display: none;&#039;, :alt =&gt; &#039;loading...&#039; )
   end
-
+  
   # auth_generator&#039;s images tags
   def auth_icon(name)
     image_tag(&quot;auth/#{name}.png&quot;, :align =&gt; &#039;absmiddle&#039;, :border =&gt; 0, :alt =&gt; name)
   end
-
+  
   # image tag for user
   def user_icon(user)
     if @app[:gravatar] == true
@@ -99,9 +103,9 @@
       auth_icon(&#039;buddy&#039;)
     end
   end
-
+  
   def user_logged_in?
     not @user.nil? and @user.ident == true
   end
-
+  
 end
&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;

Also I fixed a small deprecation in auth_helper.rb by replacing redirect_to_url with redirect_to</description>
		<content:encoded><![CDATA[<p>Looking back in my Subversion it seems that it was mostly fixing reference to code that is no longer in Rails. Specifically I changed auth_helper.rb like so:</p>

<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">Index: auth_helper.rb
===================================================================
<span style="color: #888822;">--- auth_helper.rb	<span style="">&#40;</span>revision <span style="">647</span><span style="">&#41;</span></span>
<span style="color: #888822;">+++ auth_helper.rb	<span style="">&#40;</span>revision <span style="">863</span><span style="">&#41;</span></span>
<span style="color: #440088;">@@ -<span style="">1</span>,<span style="">11</span> +<span style="">1</span>,<span style="">11</span> @@</span>
 module AuthHelper
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # For theme support. Idea from Typo.
   def search_paths<span style="">&#40;</span>path<span style="">&#41;</span>
     <span style="">&#91;</span>&quot;#<span style="">&#123;</span>path<span style="">&#125;</span>/theme/#<span style="">&#123;</span>this_auth<span style="">&#91;</span>:theme<span style="">&#93;</span><span style="">&#125;</span>/&quot;,
     <span style="">&#93;</span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   def full_template_path<span style="">&#40;</span>template_path, extension<span style="">&#41;</span>
     template_path_dirs = template_path.split<span style="">&#40;</span>'/'<span style="">&#41;</span>
     dir = template_path_dirs<span style="">&#91;</span><span style="">0</span><span style="">&#93;</span>
<span style="color: #440088;">@@ -<span style="">17</span>,<span style="">7</span> +<span style="">17</span>,<span style="">7</span> @@</span>
     end
     super
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # Taken from the webrick server
   module Utils
     if !const_defined? &quot;RAND_CHARS&quot;
<span style="color: #440088;">@@ -<span style="">32</span>,<span style="">60</span> +<span style="">32</span>,<span style="">64</span> @@</span>
       ret
     end
     module_function :random_string
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+    </span>
     # define a regexp for valid IPv4 host
     def valid_ipv4_host_regex
       zero_to_254 = &quot;<span style="">&#40;</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span>?|<span style="">1</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span><span style="">&#123;</span><span style="">2</span><span style="">&#125;</span>|<span style="">2</span><span style="">&#91;</span><span style="">0</span>-<span style="">4</span><span style="">&#93;</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span>|<span style="">25</span><span style="">&#91;</span><span style="">0</span>-<span style="">4</span><span style="">&#93;</span><span style="">&#41;</span>&quot;
       one_to_254  = &quot;<span style="">&#40;</span><span style="">&#91;</span><span style="">1</span>-<span style="">9</span><span style="">&#93;</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span>?|<span style="">1</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span><span style="">&#123;</span><span style="">2</span><span style="">&#125;</span>|<span style="">2</span><span style="">&#91;</span><span style="">0</span>-<span style="">4</span><span style="">&#93;</span><span style="">&#91;</span><span style="">0</span>-<span style="">9</span><span style="">&#93;</span>|<span style="">25</span><span style="">&#91;</span><span style="">0</span>-<span style="">4</span><span style="">&#93;</span><span style="">&#41;</span>&quot;
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+      </span>
       /\A#<span style="">&#123;</span>one_to_254<span style="">&#125;</span>\.#<span style="">&#123;</span>zero_to_254<span style="">&#125;</span>\.#<span style="">&#123;</span>zero_to_254<span style="">&#125;</span>\.#<span style="">&#123;</span>one_to_254<span style="">&#125;</span>\z/
     end
     module_function :valid_ipv4_host_regex
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+    </span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # Show user informations using Ajax. Can be used on static pages / cached pages.
   def ajax_account_infos<span style="">&#40;</span><span style="">&#41;</span>
     &quot;&quot; + javascript_tag<span style="">&#40;</span>'function showloginform<span style="">&#40;</span><span style="">&#41;</span> <span style="">&#123;</span>'+ 
<span style="color: #991111;">-        remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span><span style="">&#41;</span> +</span>
<span style="color: #991111;">-        ' document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;<span style="">&#125;</span>'<span style="">&#41;</span> + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+</span>
<span style="color: #991111;">-        link_to<span style="">&#40;</span>auth_icon<span style="">&#40;</span>'buddy'<span style="">&#41;</span>, auth_url<span style="">&#41;</span> + &quot;&lt;/div&gt;&quot; +</span>
<span style="color: #991111;">-        javascript_tag<span style="">&#40;</span>&quot;new Ajax.Updater<span style="">&#40;</span>'accountinfo', '/auth/remoteinfo', <span style="">&#123;</span>asynchronous:true<span style="">&#125;</span><span style="">&#41;</span>;&quot;<span style="">&#41;</span></span>
<span style="color: #00b000;">+    remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, </span>
<span style="color: #00b000;">+    :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span>, </span>
<span style="color: #00b000;">+    :success =&gt; &quot;document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;&quot;<span style="">&#41;</span> + &quot;<span style="">&#125;</span>&quot;<span style="">&#41;</span> + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+</span>
<span style="color: #00b000;">+    link_to<span style="">&#40;</span>auth_icon<span style="">&#40;</span>'buddy'<span style="">&#41;</span>, auth_url<span style="">&#41;</span> + &quot;&lt;/div&gt;&quot; +</span>
<span style="color: #00b000;">+    javascript_tag<span style="">&#40;</span>&quot;new Ajax.Updater<span style="">&#40;</span>'accountinfo', '/auth/remoteinfo', <span style="">&#123;</span>asynchronous:true<span style="">&#125;</span><span style="">&#41;</span>;&quot;<span style="">&#41;</span></span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # Show user information, don't use for static or cached page!
   def account_infos<span style="">&#40;</span><span style="">&#41;</span>
     &quot;&quot; + javascript_tag<span style="">&#40;</span>'function showloginform<span style="">&#40;</span><span style="">&#41;</span> <span style="">&#123;</span>'+ 
<span style="color: #991111;">-        remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span><span style="">&#41;</span> +</span>
<span style="color: #991111;">-    ' document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;<span style="">&#125;</span>'<span style="">&#41;</span> + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+</span>
<span style="color: #00b000;">+    remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, </span>
<span style="color: #00b000;">+    :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span>, </span>
<span style="color: #00b000;">+    :success =&gt; &quot;document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;&quot;<span style="">&#41;</span> + &quot;<span style="">&#125;</span>&quot;<span style="">&#41;</span> +</span>
<span style="color: #00b000;">+     &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot;+</span>
     render<span style="">&#40;</span>:partial =&gt; &quot;auth/remoteinfo&quot;<span style="">&#41;</span> + &quot;&lt;/div&gt;&quot;
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # Javascript version to show user information. Can be used on static pages / cached pages.
   def js_account_infos<span style="">&#40;</span><span style="">&#41;</span>
     &quot;&quot; + javascript_tag<span style="">&#40;</span>'function showloginform<span style="">&#40;</span><span style="">&#41;</span> <span style="">&#123;</span>'+ 
<span style="color: #991111;">-        remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span><span style="">&#41;</span> +</span>
<span style="color: #991111;">-    ' document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;<span style="">&#125;</span>'<span style="">&#41;</span> + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot; +</span>
<span style="color: #00b000;">+    remote_function<span style="">&#40;</span>:update =&gt; &quot;accountinfo&quot;, </span>
<span style="color: #00b000;">+    :url =&gt; <span style="">&#123;</span> :controller =&gt; &quot;auth&quot;, :action =&gt; &quot;remotelogin&quot; <span style="">&#125;</span>, </span>
<span style="color: #00b000;">+    :success =&gt; &quot;document.getElementById<span style="">&#40;</span>\'post_login\'<span style="">&#41;</span>.focus<span style="">&#40;</span><span style="">&#41;</span>;&quot;<span style="">&#41;</span> + &quot;<span style="">&#125;</span>&quot;<span style="">&#41;</span> + &quot;&lt;!-- account info --&gt; &lt;div id=\&quot;accountinfo\&quot;&gt;&quot; +</span>
     &quot;&lt;script src=\&quot;/auth/jsinfo\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;+
     '&lt;script type=&quot;text/javascript&quot;&gt;displayAccountInfo<span style="">&#40;</span><span style="">&#41;</span>;&lt;/script&gt;' + &quot;&lt;/div&gt;&quot;
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # store current uri in the ccokies
   # we can return to this location by calling return_location
   def store_location
     cookies<span style="">&#91;</span>:return_to<span style="">&#93;</span> = <span style="">&#123;</span>:value =&gt; request.request_uri, :expires =&gt; nil <span style="">&#125;</span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # Loading spinner indicator icon tag
   def spinner_tag<span style="">&#40;</span>id = 'ident'<span style="">&#41;</span>
     image_tag<span style="">&#40;</span>'auth/spinner.gif', :id=&gt;&quot;#<span style="">&#123;</span>id<span style="">&#125;</span>_spinner&quot;, :align =&gt; 'absmiddle', :border=&gt; <span style="">0</span>, :style=&gt; 'display: none;', :alt =&gt; 'loading...' <span style="">&#41;</span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # auth_generator's images tags
   def auth_icon<span style="">&#40;</span>name<span style="">&#41;</span>
     image_tag<span style="">&#40;</span>&quot;auth/#<span style="">&#123;</span>name<span style="">&#125;</span>.png&quot;, :align =&gt; 'absmiddle', :border =&gt; <span style="">0</span>, :alt =&gt; name<span style="">&#41;</span>
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   # image tag for user
   def user_icon<span style="">&#40;</span>user<span style="">&#41;</span>
     if @app<span style="">&#91;</span>:gravatar<span style="">&#93;</span> == true
<span style="color: #440088;">@@ -<span style="">99</span>,<span style="">9</span> +<span style="">103</span>,<span style="">9</span> @@</span>
       auth_icon<span style="">&#40;</span>'buddy'<span style="">&#41;</span>
     end
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
   def user_logged_in?
     not @user.nil? and @user.ident == true
   end
<span style="color: #991111;">-</span>
<span style="color: #00b000;">+  </span>
 end
<span style="color: #991111;">&lt;/div&gt;&lt;/div&gt;</span></pre></div></div>

<p>Also I fixed a small deprecation in auth_helper.rb by replacing redirect_to_url with redirect_to</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keeping up with the train &#8211; Lots of work for little features by Sebastian</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/01/22/keeping-up-with-the-train-lots-of-work-for-little-features/comment-page-1/#comment-21485</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Wed, 29 Apr 2009 00:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/01/22/keeping-up-with-the-train-lots-of-work-for-little-features/#comment-21485</guid>
		<description>Hey, after upgrading to Rails 2.1 i think i go into the same trouble like you regarding the auth_generator. Can you post or email me some hints or a patch about wha you have changed to get i working again?

All the best,
Sebastian</description>
		<content:encoded><![CDATA[<p>Hey, after upgrading to Rails 2.1 i think i go into the same trouble like you regarding the auth_generator. Can you post or email me some hints or a patch about wha you have changed to get i working again?</p>
<p>All the best,<br />
Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why would Sun make a JEE server that invents an alternative to JEE by Neil Bartlett</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/11/12/why-would-sun-make-a-jee-server-that-invents-an-alternative-to-jee/comment-page-1/#comment-20132</link>
		<dc:creator>Neil Bartlett</dc:creator>
		<pubDate>Wed, 12 Nov 2008 10:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/11/12/why-would-sun-make-a-jee-server-that-invents-an-alternative-to-jee/#comment-20132</guid>
		<description>It&#039;s a reasonable question, and perhaps it is too much to expect for Sun to be leading the way in building an enterprise OSGi application server. 

But other vendors certainly are working on this, and there is an Expert Group within the OSGi Alliance tasked with defining the standards required. Sun can choose to influence that process by taking some leadership in it, or they can be dragged along kicking and screaming. It&#039;s really up to them.

The component model you refer to in your final paragraph is presumably JSR 277. Glassfish cannot eat that dog food because it does not exist and probably never will.</description>
		<content:encoded><![CDATA[<p>It&#8217;s a reasonable question, and perhaps it is too much to expect for Sun to be leading the way in building an enterprise OSGi application server. </p>
<p>But other vendors certainly are working on this, and there is an Expert Group within the OSGi Alliance tasked with defining the standards required. Sun can choose to influence that process by taking some leadership in it, or they can be dragged along kicking and screaming. It&#8217;s really up to them.</p>
<p>The component model you refer to in your final paragraph is presumably JSR 277. Glassfish cannot eat that dog food because it does not exist and probably never will.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updated available neighborhoods by TiranKenja</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/comment-page-1/#comment-20064</link>
		<dc:creator>TiranKenja</dc:creator>
		<pubDate>Mon, 29 Sep 2008 10:12:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/#comment-20064</guid>
		<description>Turns out I forgot the page when I updated to Rails 2.0. So the pagination failed. It&#039;s been fixed now.</description>
		<content:encoded><![CDATA[<p>Turns out I forgot the page when I updated to Rails 2.0. So the pagination failed. It&#8217;s been fixed now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updated available neighborhoods by TiranKenja</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/comment-page-1/#comment-20061</link>
		<dc:creator>TiranKenja</dc:creator>
		<pubDate>Tue, 23 Sep 2008 11:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/#comment-20061</guid>
		<description>Yeah, I guess it is logging the error. But I don&#039;t really look at error logs a whole lot.

I&#039;ll take a look at it.</description>
		<content:encoded><![CDATA[<p>Yeah, I guess it is logging the error. But I don&#8217;t really look at error logs a whole lot.</p>
<p>I&#8217;ll take a look at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updated available neighborhoods by legotho</title>
		<link>http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/comment-page-1/#comment-20060</link>
		<dc:creator>legotho</dc:creator>
		<pubDate>Tue, 23 Sep 2008 08:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2008/06/26/updated-available-neighborhoods/#comment-20060</guid>
		<description>Hi. I don&#039;t know if you&#039;re aware, but the &quot;My Characters&quot; page on the Housing Directory is broken (it says it&#039;s telling you, but I&#039;m less convinced ;-)

I&#039;m trying to update my address since I&#039;ve just traded my Basic house for a Deluxe (in Smilwich, the Shire). As you can see, I&#039;ve successfully added the new house, under a &quot;new&quot; character, but I can&#039;t get in to clean out the old house.</description>
		<content:encoded><![CDATA[<p>Hi. I don&#8217;t know if you&#8217;re aware, but the &#8220;My Characters&#8221; page on the Housing Directory is broken (it says it&#8217;s telling you, but I&#8217;m less convinced <img src='http://www.codedivision.com/modules/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>I&#8217;m trying to update my address since I&#8217;ve just traded my Basic house for a Deluxe (in Smilwich, the Shire). As you can see, I&#8217;ve successfully added the new house, under a &#8220;new&#8221; character, but I can&#8217;t get in to clean out the old house.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Now with maps and houses by Tiran Kenja</title>
		<link>http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/comment-page-1/#comment-19183</link>
		<dc:creator>Tiran Kenja</dc:creator>
		<pubDate>Mon, 21 Jan 2008 23:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/#comment-19183</guid>
		<description>Damn you where right. But then I suppose you would know since you live there.

Actually I am not the one being wrong. http://www.visionsofthering.com/dwarf_homestead.shtml is ;). I used that as reference when I made those placements. I&#039;ve flipped them around now.</description>
		<content:encoded><![CDATA[<p>Damn you where right. But then I suppose you would know since you live there.</p>
<p>Actually I am not the one being wrong. http://www.visionsofthering.com/dwarf_homestead.shtml is <img src='http://www.codedivision.com/modules/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . I used that as reference when I made those placements. I&#8217;ve flipped them around now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Now with maps and houses by Tiran Kenja</title>
		<link>http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/comment-page-1/#comment-19182</link>
		<dc:creator>Tiran Kenja</dc:creator>
		<pubDate>Mon, 21 Jan 2008 12:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/#comment-19182</guid>
		<description>Wow. I thought I had email notification on when someone commented something here. Turns out I don&#039;t.

I&#039;ll look into that tonight Glomli.</description>
		<content:encoded><![CDATA[<p>Wow. I thought I had email notification on when someone commented something here. Turns out I don&#8217;t.</p>
<p>I&#8217;ll look into that tonight Glomli.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Now with maps and houses by Glomli</title>
		<link>http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/comment-page-1/#comment-19162</link>
		<dc:creator>Glomli</dc:creator>
		<pubDate>Tue, 08 Jan 2008 12:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2007/12/06/now-with-maps-and-houses/#comment-19162</guid>
		<description>Just added my house in the Thorin&#039;s Hall Homestead and realized that there seems to be an error. Threshold street 3 and 4 are interchanged.</description>
		<content:encoded><![CDATA[<p>Just added my house in the Thorin&#8217;s Hall Homestead and realized that there seems to be an error. Threshold street 3 and 4 are interchanged.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on House of Kenja &#8211; Vanguard:SoH Site by Garry</title>
		<link>http://www.codedivision.com/modules/wordpress/2007/03/13/house-of-kenja-vanguardsoh-site/comment-page-1/#comment-15295</link>
		<dc:creator>Garry</dc:creator>
		<pubDate>Wed, 14 Mar 2007 14:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.codedivision.com/modules/wordpress/2007/03/13/house-of-kenja-vanguardsoh-site/#comment-15295</guid>
		<description>I love what you&#039;re doing.  I too am using my Vanguard addiction to help develop new skills.  I am currently learning PHP and MySQL.  My plan appears similar to yours, in that I hope to take what VGTact started with their great Wiki but within my site as MySQL/PHP driven.  I have a long way to go, and haven&#039;t even uploaded anything to a public host, but am excited about the learning.  

Good luck with your site and I will continue checking in to see how it goes. 

Lanwin Mudtoe
Flamehammer</description>
		<content:encoded><![CDATA[<p>I love what you&#8217;re doing.  I too am using my Vanguard addiction to help develop new skills.  I am currently learning PHP and MySQL.  My plan appears similar to yours, in that I hope to take what VGTact started with their great Wiki but within my site as MySQL/PHP driven.  I have a long way to go, and haven&#8217;t even uploaded anything to a public host, but am excited about the learning.  </p>
<p>Good luck with your site and I will continue checking in to see how it goes. </p>
<p>Lanwin Mudtoe<br />
Flamehammer</p>
]]></content:encoded>
	</item>
</channel>
</rss>
