<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>CssHandler Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home</link><description>CssHandler Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://csshandler.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;DEPRECATED&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Deprecated in favor of &amp;quot;.less&amp;quot;:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotlesscss.com/" class="externalLink"&gt;http://www.dotlesscss.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Tue, 04 May 2010 02:34:24 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100504023424A</guid></item><item><title>Updated Wiki: Home</title><link>http://csshandler.codeplex.com/wikipage?version=10</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;DEPRECATED&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Deprecated in favor of .Less:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotlesscss.com/" class="externalLink"&gt;http://www.dotlesscss.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Tue, 04 May 2010 02:34:03 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100504023403A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes CSS files, allowing them to be dynamic. It adds variables, support for app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, server-side processing of the &amp;#64;import directive, and whitespace compression.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Simple Example&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Wondering how this works? Here is a quick walkthrough of configuring a new website to use the CssHandler:&lt;br /&gt; &lt;br /&gt;&lt;i&gt;Download the latest release assembly (CssHandler.dll) and place it in the /bin/ directory of your website. Then add the following to your web.config (in configuration -&amp;gt; system.web -&amp;gt; httpHandlers):&lt;/i&gt;&lt;br /&gt;&amp;lt;add verb=&amp;quot;GET&amp;quot; path=&amp;quot;*.css&amp;quot; type=&amp;quot;CssHandler.CssHandler, CssHandler&amp;quot;/&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;i&gt;If you have no web.config, create a web.config and make it look like this:&lt;/i&gt;&lt;br /&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;&amp;lt;configuration&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;system.web&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;httpHandlers&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add verb=&amp;quot;GET&amp;quot; path=&amp;quot;*.css&amp;quot; type=&amp;quot;CssHandler.CssHandler, CssHandler&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/httpHandlers&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/system.web&amp;gt;&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;i&gt;If you do not have a StyleSheet yet, create one. For the sake of this example we will assume you have created a .css file named &amp;quot;theme.css&amp;quot; in a directory named &amp;quot;styles&amp;quot;. Reference your stylesheet in your webpage by adding the following to the HTML -&amp;gt; HEAD element:&lt;/i&gt;&lt;br /&gt;&amp;lt;link href=&amp;quot;~/styles/theme.css&amp;quot; type=&amp;quot;text/css&amp;quot; rel=&amp;quot;StyleSheet&amp;quot; /&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;i&gt;In your stylesheet file, let's create two variables and reference them:&lt;/i&gt;&lt;br /&gt;@define{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;bgcolor_light: #99ccff;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;bgcolor_dark: #003366;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;fontcolor: #333333;&lt;br /&gt;}&lt;br /&gt;body{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;background-color: @bgcolor_light;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;color: @fontcolor;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;&lt;i&gt;Now say we want to have another stylesheet file and we want it to share the same variable definitions as our existing stylesheet. First, create your new stylesheet (we'll call it &amp;quot;forms.css&amp;quot;) and add the following to it:&lt;/i&gt;&lt;br /&gt;fieldset{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;background-color: @bgcolor_dark;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;color: #ffffff;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;&lt;i&gt;Finally, we have to reference this second file from the first file. In &amp;quot;theme.css&amp;quot; add the following line:&lt;/i&gt;&lt;br /&gt;@import url(/styles/forms.css);&lt;br /&gt; &lt;br /&gt;&lt;i&gt;That's it! Now when you pull up the page both .css files will be served as a single css file to the browser. Most whitespace and all comments will have been removed and your @variable references will have been replaced with the declared values. Easy enough.&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 1.0&lt;/b&gt; &lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=8423"&gt;Download&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;New Release, November 2007 by &lt;a href="http://www.squaredroot.com" class="externalLink"&gt;Troy Goode&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Perform a server side include via the @import url(blah.css); declaration.&lt;/li&gt;&lt;li&gt;Most whitespace is removed before being sent to client.&lt;/li&gt;&lt;li&gt;Can now reference HttpHandler as an .axd file and pass the css file in as a querystring parameter (eg: CssHandler.axd?styles.css).&lt;/li&gt;&lt;li&gt;The @define{...} block is no longer sent to the client.&lt;/li&gt;&lt;li&gt;Fixed bug involving similiarly named variables.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;CssHandler 0.1&lt;/b&gt; &lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=7667"&gt;Download&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Created in March 2004 by &lt;a href="http://www.neopoleon.com/home/blogs/neo/archive/2004/03/06/8705.aspx" class="externalLink"&gt;Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Uploaded to CodePlex on October 2007 by &lt;a href="http://codingpatterns.blogspot.com" class="externalLink"&gt;Gabe Moothart&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Create CSS variables using the @define{ variableName: variableValue; } syntax.&lt;/li&gt;&lt;li&gt;Reference CSS variables using the @variableName syntax.&lt;/li&gt;&lt;li&gt;Comments are stripped before being sent to client.&lt;/li&gt;&lt;li&gt;Application relative paths (ex: ~/Images/BG.gif) are resolved to full virtual paths (ex: /Project/Images/BG.gif).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Fri, 16 Nov 2007 16:58:30 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071116045830P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes CSS files, allowing them to be dynamic. It adds variables, support for app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, server-side processing of the &amp;#64;import directive, and whitespace compression.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 1.0&lt;/b&gt; &lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=8423"&gt;Download&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;New Release, November 2007 by &lt;a href="http://www.squaredroot.com" class="externalLink"&gt;Troy Goode&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Perform a server side include via the @import url(blah.css); declaration.&lt;/li&gt;&lt;li&gt;Most whitespace is removed before being sent to client.&lt;/li&gt;&lt;li&gt;Can now reference HttpHandler as an .axd file and pass the css file in as a querystring parameter (eg: CssHandler.axd?styles.css).&lt;/li&gt;&lt;li&gt;The @define{...} block is no longer sent to the client.&lt;/li&gt;&lt;li&gt;Fixed bug involving similiarly named variables.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;CssHandler 0.1&lt;/b&gt; &lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=7667"&gt;Download&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Created in March 2004 by &lt;a href="http://www.neopoleon.com/home/blogs/neo/archive/2004/03/06/8705.aspx" class="externalLink"&gt;Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Uploaded to CodePlex on October 2007 by &lt;a href="http://codingpatterns.blogspot.com" class="externalLink"&gt;Gabe Moothart&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Create CSS variables using the @define{ variableName: variableValue; } syntax.&lt;/li&gt;&lt;li&gt;Reference CSS variables using the @variableName syntax.&lt;/li&gt;&lt;li&gt;Comments are stripped before being sent to client.&lt;/li&gt;&lt;li&gt;Application relative paths (ex: ~/Images/BG.gif) are resolved to full virtual paths (ex: /Project/Images/BG.gif).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Fri, 16 Nov 2007 16:38:26 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071116043826P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes CSS files, allowing them to be dynamic. It adds variables, support for app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, server-side processing of the &amp;#64;import directive, and whitespace compression.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 1.0&lt;/b&gt;&lt;br /&gt;New Release, November 2007 by &lt;a href="http://www.squaredroot.com" class="externalLink"&gt;Troy Goode&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Perform a server side include via the @import url(blah.css); declaration.&lt;/li&gt;&lt;li&gt;Most whitespace is removed before being sent to client.&lt;/li&gt;&lt;li&gt;Can now reference HttpHandler as an .axd file and pass the css file in as a querystring parameter (eg: CssHandler.axd?styles.css).&lt;/li&gt;&lt;li&gt;The @define{...} block is no longer sent to the client.&lt;/li&gt;&lt;li&gt;Fixed bug involving similiarly named variables.&lt;/li&gt;
&lt;/ul&gt;&lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=8423"&gt;Download&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 0.1&lt;/b&gt;&lt;br /&gt;&lt;a href="http://www.neopoleon.com/home/blogs/neo/archive/2004/03/06/8705.aspx" class="externalLink"&gt;Created by Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in March 2004 and uploaded to CodePlex by &lt;a href="http://codingpatterns.blogspot.com" class="externalLink"&gt;Gabe Moothart&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in October 2007.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Create CSS variables using the @define{ variableName: variableValue; } syntax.&lt;/li&gt;&lt;li&gt;Reference CSS variables using the @variableName syntax.&lt;/li&gt;&lt;li&gt;Comments are stripped before being sent to client.&lt;/li&gt;&lt;li&gt;Application relative paths (ex: ~/Images/BG.gif) are resolved to full virtual paths (ex: /Project/Images/BG.gif).&lt;/li&gt;
&lt;/ul&gt;&lt;a href="http://www.codeplex.com/CssHandler/Release/ProjectReleases.aspx?ReleaseId=7667"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Fri, 16 Nov 2007 16:36:17 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071116043617P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes css files, allowing them to be dynamic. It adds variables, support for Asp.Net app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, server-side processing of the &amp;#64;import directive, and whitespace compression.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 1.0&lt;/b&gt;&lt;br /&gt;New Release, November 2007 by &lt;a href="http://www.squaredroot.com" class="externalLink"&gt;Troy Goode&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Perform a server side include via the @import url(blah.css); declaration.&lt;/li&gt;&lt;li&gt;Most whitespace is removed before being sent to client.&lt;/li&gt;&lt;li&gt;Can now reference HttpHandler as an .axd file and pass the css file in as a querystring parameter (eg: CssHandler.axd?styles.css).&lt;/li&gt;&lt;li&gt;The @define{...} block is no longer sent to the client.&lt;/li&gt;&lt;li&gt;Fixed bug involving similiarly named variables.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;CssHandler 0.1&lt;/b&gt;&lt;br /&gt;&lt;a href="http://www.neopoleon.com/home/blogs/neo/archive/2004/03/06/8705.aspx" class="externalLink"&gt;Created by Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in March 2004 and uploaded to CodePlex by &lt;a href="http://codingpatterns.blogspot.com" class="externalLink"&gt;Gabe Moothart&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in October 2007.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Create CSS variables using the @define{ variableName: variableValue; } syntax.&lt;/li&gt;&lt;li&gt;Reference CSS variables using the @variableName syntax.&lt;/li&gt;&lt;li&gt;Comments are stripped before being sent to client.&lt;/li&gt;&lt;li&gt;Application relative paths (ex: ~/Images/BG.gif) are resolved to full virtual paths (ex: /Project/Images/BG.gif).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Fri, 16 Nov 2007 16:28:14 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071116042814P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes css files, allowing them to be dynamic. It adds variables, support for Asp.Net app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, server-side processing of the &amp;#64;import directive, and whitespace compression.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;CssHandler 1.0&lt;/b&gt;&lt;br /&gt;New Release, November 2007&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Perform a server side include via the @import url(blah.css); declaration.&lt;/li&gt;&lt;li&gt;Most whitespace is removed before being sent to client.&lt;/li&gt;&lt;li&gt;Can now reference HttpHandler as an .axd file and pass the css file in as a querystring parameter (eg: CssHandler.axd?styles.css).&lt;/li&gt;&lt;li&gt;The @define{...} block is no longer sent to the client.&lt;/li&gt;&lt;li&gt;Fixed bug involving similiarly named variables.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;CssHandler 0.1&lt;/b&gt;&lt;br /&gt;&lt;a href="http://www.neopoleon.com/home/blogs/neo/archive/2004/03/06/8705.aspx" class="externalLink"&gt;Created by Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in March 2004 and uploaded to CodePlex by &lt;a href="http://codingpatterns.blogspot.com" class="externalLink"&gt;Gabe Moothart&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in October 2007.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Create CSS variables using the @define{ variableName: variableValue; } syntax.&lt;/li&gt;&lt;li&gt;Reference CSS variables using the @variableName syntax.&lt;/li&gt;&lt;li&gt;Comments are stripped before being sent to client.&lt;/li&gt;&lt;li&gt;Application relative paths (ex: ~/Images/BG.gif) are resolved to full virtual paths (ex: /Project/Images/BG.gif).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>TroyGoode</author><pubDate>Fri, 16 Nov 2007 16:27:34 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071116042734P</guid></item><item><title>UPDATED WIKI: Frequently Asked Questions</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Frequently Asked Questions&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;h3&gt;
CSS is not loaded in the login page when using Forms Authentication in Asp.Net. After logging in it appears correctly.
&lt;/h3&gt; &lt;br /&gt;This is because Asp.Net thinks that your css files require authenitication. To fix this simply place a web.config file in your &lt;span class="codeInline"&gt;css&lt;/span&gt; and/or &lt;span class="codeInline"&gt;App_Themes&lt;/span&gt; directory with these contents:&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&amp;lt;configuration&amp;gt;
    &amp;lt;system.web&amp;gt;
      &amp;lt;authorization&amp;gt;
          &amp;lt;allow users=&amp;quot;*&amp;quot; /&amp;gt;
	  &amp;lt;/authorization&amp;gt;
    &amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>gmoothart</author><pubDate>Wed, 07 Nov 2007 20:19:08 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Frequently Asked Questions 20071107081908P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes css files, allowing them to be dynamic. It adds variables, support for Asp.Net app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, etc.
&lt;br /&gt; &lt;br /&gt;&lt;a href="http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Frequently%20Asked%20Questions&amp;amp;referringTitle=Home"&gt;Frequently Asked Questions&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;The original version of this project was created by &lt;a href="http://www.neopoleon.com/home/default.aspx" class="externalLink"&gt;Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>gmoothart</author><pubDate>Wed, 07 Nov 2007 20:08:50 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071107080850P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes css files, allowing them to be dynamic. It adds variables, support for Asp.Net app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, etc.
&lt;br /&gt; &lt;br /&gt;The original version of this project was created by &lt;a href="http://www.neopoleon.com/home/default.aspx" class="externalLink"&gt;Rory Blyth&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>gmoothart</author><pubDate>Fri, 12 Oct 2007 03:32:02 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071012033202A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/CssHandler/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;CssHandler is an HttpHandler that processes css files. It adds variables to css, support for app-relative urls using the &amp;#39;&amp;#126;&amp;#39; character, etc. This project builds upon the CssHandler&lt;br /&gt;by &amp;#60;a href&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.neopoleon.com&amp;#47;home&amp;#47;blogs&amp;#47;neo&amp;#47;archive&amp;#47;2004&amp;#47;03&amp;#47;06&amp;#47;8705.aspx&amp;#34;&amp;#62;Rory Blyth&amp;#60;&amp;#47;a&amp;#62;
&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>gmoothart</author><pubDate>Fri, 12 Oct 2007 03:28:08 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071012032808A</guid></item></channel></rss>