<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Razorcreations</title>
	<link>http://www.razorcreations.com</link>
	<description>The Cutting Edge</description>
	<pubDate>Mon, 05 May 2008 20:34:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>.htaccess rewrite case-insensitive</title>
		<link>http://www.razorcreations.com/development/htaccess-rewrite-case-insensitive/</link>
		<comments>http://www.razorcreations.com/development/htaccess-rewrite-case-insensitive/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 20:33:49 +0000</pubDate>
		<dc:creator>Phil Jones</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.razorcreations.com/general/htaccess-rewrite-case-insensitive/</guid>
		<description><![CDATA[I came across a little bug the other day working with htaccess redirects.
I was trying to figure out redirects using the RewriteRule but found that the redirect only works if the rule is written in the same case as the redirect. For example :
RewriteRule Admin/ index.php
( if i  type admin in the browser the [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a little bug the other day working with htaccess redirects.</p>
<p>I was trying to figure out redirects using the RewriteRule but found that the redirect only works if the rule is written in the same case as the redirect. For example :</p>
<p><code>RewriteRule Admin/ index.php</code><br />
( if i  type admin in the browser the redirect would 404 ).</p>
<p>After looking into the apache manual i found the no-case flag</p>
<p><code><strong>&#8216;nocase|NC&#8217;</strong>(<strong>n</strong>o <strong>c</strong>ase)<br />
This makes the <em>Pattern</em> case-insensitive,         <em>i.e.</em>, there is no difference between &#8216;A-Z&#8217; and         &#8216;a-z&#8217; when <em>Pattern</em> is matched against the current         URL.</code></p>
<p>The above rule could then be coded as :<br />
<code>RewriteRule Admin/ index.php [NC]</code></p>
<p>Quite a nice feature i wasn&#8217;t aware of.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.razorcreations.com/development/htaccess-rewrite-case-insensitive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>xHTML : Abbreviation Tag &#60;abbr&#62;</title>
		<link>http://www.razorcreations.com/development/abbrtag/</link>
		<comments>http://www.razorcreations.com/development/abbrtag/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 16:32:56 +0000</pubDate>
		<dc:creator>Phil Jones</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[abbr]]></category>

		<category><![CDATA[Abbreviation Tag]]></category>

		<category><![CDATA[xHTML]]></category>

		<guid isPermaLink="false">http://www.razorcreations.com/wordpress/development/abbrtag/</guid>
		<description><![CDATA[Over the past few months i have noticed a big increase in the use of the &#60;abbr&#62; tag, particularly on blogs.
Here is an example of sufficient use of the abbreviation tag:
It was 70 degrees Fahr. today!
By default Firefox cleverly produces a dotted underline for the abbreviated word ( in this case Fahr ). Unfortunately Internet [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few months i have noticed a big increase in the use of the &lt;abbr&gt; tag, particularly on blogs.</p>
<p>Here is an example of sufficient use of the abbreviation tag:</p>
<p>It was 70 degrees <abbr title="Fahrenheit">Fahr.</abbr> today!</p>
<p>By default Firefox cleverly produces a dotted underline for the abbreviated word ( in this case Fahr ). Unfortunately Internet Explorer and Safari doesn&#8217;t do this so we have to manually apply a style. There are several ways of doing this, a popular method is to use Javascript ( see <a href="http://annevankesteren.nl/2003/08/improved-styling-abbr-in-ie" title="Javascript &lt;abbr&gt; Example" target="_blank">here</a> ) to automatically add a span to all &lt;abbr&gt; tags. I&#8217;m not a massive fan of this, i prefer to keep Javascript down to a minimum wherever possible.</p>
<p>I prefer a simple CSS approach,</p>
<pre><code>abbr {
   border-bottom: 1px dotted;
   cursor: help;
}</code></pre>
<p>This will add a nice dotted line beneath the abbreviated word and help cursor ( see right menu for example ).</p>
<p>The same styling can also be applied to the acronym tag for similar effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.razorcreations.com/development/abbrtag/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
