<?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 on: Theming Websites using Spring MVC</title>
	<atom:link href="http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/</link>
	<description>All About Software Development</description>
	<lastBuildDate>Thu, 10 Nov 2011 17:04:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Manish</title>
		<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/comment-page-1/#comment-21256</link>
		<dc:creator>Manish</dc:creator>
		<pubDate>Fri, 15 Jul 2011 18:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.inflinx.com/?p=273#comment-21256</guid>
		<description>Where exactly do you define the following:

#dark theme properties file dark.properties
css=themes/dark.css
page.title=Welcome to Dark Theme
welcome.message=Hello Visitor!! Have a Good night!!

#bright theme properties file bright.properties
css=themes/bright.css
page.title=Welcome to Bright Theme
welcome.message=Hello Visitor!! Have a Good day!!


Thanks</description>
		<content:encoded><![CDATA[<p>Where exactly do you define the following:</p>
<p>#dark theme properties file dark.properties<br />
css=themes/dark.css<br />
page.title=Welcome to Dark Theme<br />
welcome.message=Hello Visitor!! Have a Good night!!</p>
<p>#bright theme properties file bright.properties<br />
css=themes/bright.css<br />
page.title=Welcome to Bright Theme<br />
welcome.message=Hello Visitor!! Have a Good day!!</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pradeep</title>
		<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/comment-page-1/#comment-8223</link>
		<dc:creator>Pradeep</dc:creator>
		<pubDate>Sat, 14 Aug 2010 09:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.inflinx.com/?p=273#comment-8223</guid>
		<description>Thank you very much Balaji :)</description>
		<content:encoded><![CDATA[<p>Thank you very much Balaji <img src='http://blog.inflinx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suresh</title>
		<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/comment-page-1/#comment-5138</link>
		<dc:creator>Suresh</dc:creator>
		<pubDate>Mon, 19 Apr 2010 03:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.inflinx.com/?p=273#comment-5138</guid>
		<description>Thanks Balaji!!</description>
		<content:encoded><![CDATA[<p>Thanks Balaji!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balaji</title>
		<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/comment-page-1/#comment-5064</link>
		<dc:creator>Balaji</dc:creator>
		<pubDate>Thu, 15 Apr 2010 15:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.inflinx.com/?p=273#comment-5064</guid>
		<description>@Suresh

You need to use the following tag declaration in your jsp:
&lt;%@ taglib prefix=&quot;spring&quot; uri=&quot;http://www.springframework.org/tags&quot;%&gt;

Refer http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/spring.tld.html#spring.tld.theme 

http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-themeresolver
 
for information on some of your questions</description>
		<content:encoded><![CDATA[<p>@Suresh</p>
<p>You need to use the following tag declaration in your jsp:<br />
&lt;%@ taglib prefix=&#8221;spring&#8221; uri=&#8221;http://www.springframework.org/tags&#8221;%&gt;</p>
<p>Refer <a href="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/spring.tld.html#spring.tld.theme" rel="nofollow">http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/spring.tld.html#spring.tld.theme</a> </p>
<p><a href="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-themeresolver" rel="nofollow">http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-themeresolver</a></p>
<p>for information on some of your questions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suresh</title>
		<link>http://blog.inflinx.com/2009/10/08/theming-websites-using-spring-mvc/comment-page-1/#comment-5051</link>
		<dc:creator>Suresh</dc:creator>
		<pubDate>Thu, 15 Apr 2010 03:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.inflinx.com/?p=273#comment-5051</guid>
		<description>Can you please clarify what the following snippet does in the jsp:
spring:theme code=&quot;css&quot;

Do i to need add tag (spring:theme)declaration in my JSP? if yes what to add?
Till Step 8 it was clear… i can see some disconnect after that.
It would be great if the you have provided some info on what the following beans does:

themeSource
themeResolver

how the app picks up the correct css file? How ‘theme’ is actually working for this sample app?
Thanks for your time!!</description>
		<content:encoded><![CDATA[<p>Can you please clarify what the following snippet does in the jsp:<br />
spring:theme code=&#8221;css&#8221;</p>
<p>Do i to need add tag (spring:theme)declaration in my JSP? if yes what to add?<br />
Till Step 8 it was clear… i can see some disconnect after that.<br />
It would be great if the you have provided some info on what the following beans does:</p>
<p>themeSource<br />
themeResolver</p>
<p>how the app picks up the correct css file? How ‘theme’ is actually working for this sample app?<br />
Thanks for your time!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

