<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog for the Web Programmers &#187; General</title>
	<atom:link href="http://blog.chandanweb.com/topics/general/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.chandanweb.com</link>
	<description>A useful blog with code assitance on Typo3, Drupal, PHP, Apache, OpenSSL and PHP Frameworks</description>
	<lastBuildDate>Wed, 25 Jan 2012 08:35:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>How to create a table with fixed-width columns regardless of contents, and/or the type of browser in use (e.g. IE, NN, Opera)?</title>
		<link>http://blog.chandanweb.com/general/how-to-create-a-table-with-fixed-width-columns-regardless-of-contents-andor-the-type-of-browser-in-use-e-g-ie-nn-opera</link>
		<comments>http://blog.chandanweb.com/general/how-to-create-a-table-with-fixed-width-columns-regardless-of-contents-andor-the-type-of-browser-in-use-e-g-ie-nn-opera#comments</comments>
		<pubDate>Wed, 10 Aug 2011 12:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fixed-width columns]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/general/how-to-create-a-table-with-fixed-width-columns-regardless-of-contents-andor-the-type-of-browser-in-use-e-g-ie-nn-opera</guid>
		<description><![CDATA[Here is an example: &#60;table border=1 width=183 style=&#8216;table-layout:fixed&#8217;&#62; &#60;col width=67&#62; &#60;col width=75&#62; &#60;col width=41&#62; &#60;tr&#62; &#60;td&#62;First Column&#60;/td&#62; &#60;td&#62;Second Column&#60;/td&#62; &#60;td&#62;Third Column&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td&#62;Row 1&#60;/td&#62; &#60;td&#62;Text&#60;/td&#62; &#60;td align=right&#62;1&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td&#62;Row 2&#60;/td&#62; &#60;td&#62;Abcdefg&#60;/td&#62; &#60;td align=right&#62;123&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td&#62;Row 3&#60;/td&#62; &#60;td&#62;Abcdefghijklmnop&#60;/td&#62; &#60;td align=right&#62;123456&#60;/td&#62; &#60;/tr&#62; &#60;/table&#62; Notice how a very long entry does not cause a column [...]]]></description>
			<content:encoded><![CDATA[<p><span id="intelliTxt">Here is an example: <br/><span style="FONT-FAMILY: monospace"><br/>&lt;table border=1 <span style="FONT-WEIGHT: bold"><span style="COLOR: blue">width</span></span>=<span style="FONT-WEIGHT: bold">183</span> <span style="COLOR: blue">style</span>=<span style="FONT-WEIGHT: bold">&#8216;table-layout:fixed&#8217;</span>&gt; <br/><span style="FONT-WEIGHT: bold">&lt;<span style="COLOR: blue">col</span></span> width=<span style="FONT-WEIGHT: bold">67</span>&gt; <br/><span style="FONT-WEIGHT: bold">&lt;<span style="COLOR: blue">col</span></span> width=<span style="FONT-WEIGHT: bold">75</span>&gt; <br/><span style="FONT-WEIGHT: bold">&lt;<span style="COLOR: blue">col</span></span> width=<span style="FONT-WEIGHT: bold">41</span>&gt; <br/>&lt;tr&gt; <br/>&lt;td&gt;First Column&lt;/td&gt; <br/>&lt;td&gt;Second Column&lt;/td&gt; <br/>&lt;td&gt;Third Column&lt;/td&gt; <br/>&lt;/tr&gt; <br/>&lt;tr&gt; <br/>&lt;td&gt;Row 1&lt;/td&gt; <br/>&lt;td&gt;Text&lt;/td&gt; <br/>&lt;td align=right&gt;1&lt;/td&gt; <br/>&lt;/tr&gt; <br/>&lt;tr&gt; <br/>&lt;td&gt;Row 2&lt;/td&gt; <br/>&lt;td&gt;Abcdefg&lt;/td&gt; <br/>&lt;td align=right&gt;123&lt;/td&gt; <br/>&lt;/tr&gt; <br/>&lt;tr&gt; <br/>&lt;td&gt;Row 3&lt;/td&gt; <br/>&lt;td&gt;Abcdefghijklmnop&lt;/td&gt; <br/>&lt;td align=right&gt;123456&lt;/td&gt; <br/>&lt;/tr&gt; <br/>&lt;/table&gt; <br/></span> <br/>Notice how a very long entry does not cause a column to expand. <br/><br/>There are three (3) elements involved here to maintain cross-browser consistency. <br/>1) use of <span style="FONT-WEIGHT: bold">width</span> attribute in the table tag <br/>2) use of <span style="COLOR: blue">&#8216;table-layout:fixed&#8217;</span> property in the <span style="FONT-WEIGHT: bold">style</span> attribute of the table. <br/>3) use of <span style="FONT-WEIGHT: bold">col</span> tags to designate column widths <br/><br/>Make sure the value of the <span style="FONT-WEIGHT: bold">width</span> attribute of the table tag is equal to the <span style="FONT-WEIGHT: bold">total</span> of the width attributes of the <span style="FONT-WEIGHT: bold">col</span> tags. <br/><br/>The 3 elements altogether is redundant if you are using IE. But this approach is needed to take care of the way some browsers like NN behaves differently when specifying column widths. <br/><br/>There are other ways to accomplish this, but this approach is the *easiest* to maintain, especially if you frequently add and delete table rows and/or columns. You don&#8217;t have to put style sheet properties on every TD tags. <br/><br/><span style="FONT-WEIGHT: bold">NOTE:</span> <br/><br/>I used IE6, NN6, Opera7 and Firefox 0.9 to test this. Users of Netscape and Firefox may not like to see table cells with overflowing long texts (because of fixed column-widths), so I updated this FAQ to include the following code in the CSS style definition inside the &lt;HEAD&gt; tags or in the external CSS file: <br/><span style="COLOR: blue"><br/><em>&lt;style&gt;</em> <br/><span style="FONT-WEIGHT: bold">td</span> {overflow:hidden;} <br/><em>&lt;/style&gt;</em></span></span></p>
<p><span><span style="COLOR: blue"><em>NOTE: This is an archive/copy of the article posted here: <a href="http://www.tek-tips.com/faqs.cfm?fid=4499">http://www.tek-tips.com/faqs.cfm?fid=4499</a></em></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/how-to-create-a-table-with-fixed-width-columns-regardless-of-contents-andor-the-type-of-browser-in-use-e-g-ie-nn-opera/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Profile Manager and Backup/restore Profiles on Portable Firefox</title>
		<link>http://blog.chandanweb.com/general/firefox-profile-manager-and-backuprestore-profiles-on-portable-firefox</link>
		<comments>http://blog.chandanweb.com/general/firefox-profile-manager-and-backuprestore-profiles-on-portable-firefox#comments</comments>
		<pubDate>Mon, 20 Jun 2011 13:49:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[backup firefox profile]]></category>
		<category><![CDATA[firefox portable]]></category>
		<category><![CDATA[firefox profile manager]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/general/firefox-profile-manager-and-backuprestore-profiles-on-portable-firefox</guid>
		<description><![CDATA[A. Creating a New Firefox Profile. 1. Close all instances of Firefox: 2. Run the following code: F:\PortableApps\FireFox3Portable\App\Firefox\firefox.exe -P NOTE: Make sure the above path suits your install location 4. It is nice to put the profiles into a central location, thus convenient in future. Ex: F:\PortableApps\FireFoxProfiles/ff3 F:\PortableApps\FireFoxProfiles/ff4 F:\PortableApps\FireFoxProfiles/ff5 3. You will get profile manager, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A. Creating a New Firefox Profile.</strong> <br/>1. Close all instances of Firefox:</p>
<p>2. Run the following code: <br/>F:\PortableApps\FireFox3Portable\App\Firefox\firefox.exe -P <br/><br/>NOTE: Make sure the above path suits your install location</p>
<p>4. It is nice to put the profiles into a central location, thus convenient in future. <br/>Ex: <br/>F:\PortableApps\FireFoxProfiles/ff3 <br/>F:\PortableApps\FireFoxProfiles/ff4 <br/>F:\PortableApps\FireFoxProfiles/ff5</p>
<p>3. You will get profile manager, now create as many profiles as you need <br/>ex: firefox2, firefox3, firefox 4, firefox5 etc&#8230;</p>
<p><strong>B. How to Backup Profile Data/Copy Profile data from one profile to a new one?</strong></p>
<p>Profile data contains several things, the bookmarks, passwords, settings addons etc&#8230;</p>
<p>1. Just browse to &#8220;F:\PortableApps\FireFoxPortable\Data\profile&#8221;</p>
<p>2. Copy this to your profile folder ex to &#8220;F:\PortableApps\FireFoxProfiles/ff4&#8243; <br/><br/><strong>C. Running the browser using a specific profile.</strong> <br/>That&#8217;s all run your new Firefox Browser usign following Shortcut: <br/>F:\PortableApps\Firefox4Portable\App\Firefox\firefox.exe -p firefox4 -no-remote</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/firefox-profile-manager-and-backuprestore-profiles-on-portable-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jcarousel adds empty item in circular mode</title>
		<link>http://blog.chandanweb.com/general/jcarousel-adds-empty-item-in-circular-mode</link>
		<comments>http://blog.chandanweb.com/general/jcarousel-adds-empty-item-in-circular-mode#comments</comments>
		<pubDate>Fri, 27 May 2011 08:25:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[jcarousel]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/jcarousel-adds-empty-item-in-circular-mode</guid>
		<description><![CDATA[When using the circular mode in jCarousel(wrap : &#8216;circular&#8217;), we used to see a blank item initially, whhich used to get cleared in the next iteration. i.e. It seemed like jCarousel generally expects at least one extra item, than the width of scroll area. In our case the width of scroll area was occupied by [...]]]></description>
			<content:encoded><![CDATA[<p><span id="BugEvents">When using the circular mode in jCarousel(wrap : &#8216;circular&#8217;), we used to see a blank item initially, whhich used to get cleared in the next iteration.</span></p>
<p><span>i.e. It seemed like jCarousel generally expects at least one extra item, than the width of scroll area. <br/>In our case the width of scroll area was occupied by 3 items then jQuery needs 3+1 news initially. <br/></span> <span>If width of scroll area is occupied by 4 news, then there must be 5 news minimum. <br/><br/>Now in such situation we must pre-fill some extra items, that has solved the issue. <br/>ex:</span></p>
<blockquote><p><span><span>/* When there is less than or equal to 3 items, <br/>* the jcarousel shows blank items in the circular mode! <br/>* So we will add some extra items in such case <br/>* */ <br/>if( jQuery(&#8216;#jcarousel .slider-ul&#8217;).length &lt;= 3 ){ <br/>tempHtml = jQuery(&#8216;#jcarousel .slider-ul&#8217;).html(); <br/>while(jQuery(&#8216;#jcarousel .slider-ul&#8217;).length &gt;= 4){ <br/>jQuery(&#8216;#jcarousel .slider-ul&#8217;).html(tempHtml + tempHtml); <br/>} <br/>}</span></span></p>
<p><span>jQuery(&#8216;#jcarousel .slider-ul&#8217;).jcarousel({ <br/>scroll : 1, <br/>auto : 5, <br/>wrap : &#8216;circular&#8217; <br/>});</span></p>
</blockquote>
<p><span>Hope this helps someone.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/jcarousel-adds-empty-item-in-circular-mode/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suckerfish dropdown menu sticking in ie7 ?</title>
		<link>http://blog.chandanweb.com/uncategorized/suckerfish-dropdown-menu-sticking-in-ie7</link>
		<comments>http://blog.chandanweb.com/uncategorized/suckerfish-dropdown-menu-sticking-in-ie7#comments</comments>
		<pubDate>Thu, 08 Jul 2010 05:44:23 +0000</pubDate>
		<dc:creator>Ganybhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[dropdown menu]]></category>
		<category><![CDATA[hover]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[sticking]]></category>
		<category><![CDATA[suckerfish]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/?p=246</guid>
		<description><![CDATA[Add the following code in to your css #topmenu li:hover{ position:static; } This will fix the dropdown menu sticking ( dropdown menu not folding out ) problem in ie7.]]></description>
			<content:encoded><![CDATA[<p>Add the following code in to your css</p>
<blockquote><p>#topmenu li:hover{</p>
<p>position:static;</p>
<p>}</p></blockquote>
<p>This will fix the dropdown menu sticking ( dropdown menu not folding out ) problem in ie7.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/uncategorized/suckerfish-dropdown-menu-sticking-in-ie7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Firefox theme personalised for ChandanWeb</title>
		<link>http://blog.chandanweb.com/general/a-firefox-theme-personalised-for-chandanweb</link>
		<comments>http://blog.chandanweb.com/general/a-firefox-theme-personalised-for-chandanweb#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:22:40 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[chandanweb]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[personas]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/uncategorized/a-firefox-theme-personalised-for-chandanweb</guid>
		<description><![CDATA[Today Ganapati (ganybhat) created a new firefox personas, available at the URL: http://www.getpersonas.com/en-US/persona/240575 I really coudn&#8217;t stop myself from using it right away on my Firefox 3, and I loved the way it looked. Thank you Gany.]]></description>
			<content:encoded><![CDATA[<p>Today Ganapati (ganybhat) created a new firefox personas, available at the URL:</p>
<p><a href="http://www.getpersonas.com/en-US/persona/240575">http://www.getpersonas.com/en-US/persona/240575</a></p>
<p>I really coudn&#8217;t stop myself from using it right away on my Firefox 3, and I loved the way it looked.</p>
<p>Thank you Gany.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/a-firefox-theme-personalised-for-chandanweb/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Errorcode 13 due to SeLinux, Could not open the requested SVN filesystem</title>
		<link>http://blog.chandanweb.com/linux/svn-errorcode-13-due-to-selinux-could-not-open-the-requested-svn-filesystem</link>
		<comments>http://blog.chandanweb.com/linux/svn-errorcode-13-due-to-selinux-could-not-open-the-requested-svn-filesystem#comments</comments>
		<pubDate>Wed, 14 Oct 2009 14:59:36 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[errcode="13"]]></category>
		<category><![CDATA[selinux]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/uncategorized/svn-errorcode-13-due-to-selinux-could-not-open-the-requested-svn-filesystem</guid>
		<description><![CDATA[When we recently installed SVN on CentOS, we came across the following error message: &#60;m:human-readable errcode=&#8221;13&#8243;&#62;Could not open the requested SVN filesystem&#60;/m:human-readable&#62; This seems to be due to incorrect setting of the SeLinux content. This can be changed by the following command: chcon -R -h -t httpd_sys_content_t /PATH_TO_REPOSITORY/ ex: chcon -R -h -t httpd_sys_content_t /home/svnRepo [...]]]></description>
			<content:encoded><![CDATA[<p>When we recently installed SVN on CentOS, we came across the following error message:</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr"><p>&lt;m:human-readable errcode=&#8221;13&#8243;&gt;Could not open the requested SVN filesystem&lt;/m:human-readable&gt;</p>
</blockquote>
<p>This seems to be due to incorrect setting of the SeLinux content. This can be changed by the following command:</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr"><p>chcon -R -h -t httpd_sys_content_t /PATH_TO_REPOSITORY/</p>
<p>ex:</p>
<p>chcon -R -h -t httpd_sys_content_t /home/svnRepo</p>
</blockquote>
<p xmlns="" class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/errcode%3D%2213%22" class="ztag" rel="tag">errcode=&#8221;13&#8243;</a>, <a href="http://www.technorati.com/tag/selinux" class="ztag" rel="tag">selinux</a>, <a href="http://www.technorati.com/tag/svn" class="ztag" rel="tag">svn</a></span>  <br/> <span class="ztags"><span class="ztagspace">Del.icio.us</span> : <a href="http://del.icio.us/tag/errcode%3D%2213%22" class="ztag" rel="tag">errcode=&#8221;13&#8243;</a>, <a href="http://del.icio.us/tag/selinux" class="ztag" rel="tag">selinux</a>, <a href="http://del.icio.us/tag/svn" class="ztag" rel="tag">svn</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/linux/svn-errorcode-13-due-to-selinux-could-not-open-the-requested-svn-filesystem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade SVN Server to 1.6.5 on XAMPP</title>
		<link>http://blog.chandanweb.com/general/upgrade-svn-server-to-1-6-5-on-xampp</link>
		<comments>http://blog.chandanweb.com/general/upgrade-svn-server-to-1-6-5-on-xampp#comments</comments>
		<pubDate>Wed, 30 Sep 2009 05:54:20 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn 1.6.5]]></category>
		<category><![CDATA[svn upgrade]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/uncategorized/upgrade-svn-server-to-1-6-5-on-xampp</guid>
		<description><![CDATA[This is a quick help guide for all thise who would like to upgrade to latest SVN on XAMPP. NOTE: Like with all software upgrades there could be high risk involved. It is always better to take a backup prior to proceeding with any kind of upgrades. We know that when a latest version of [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick help guide for all thise who would like to upgrade to latest SVN on XAMPP.</p>
<p><strong>NOTE: Like with all software upgrades there could be high risk involved. <br/>It is always better to take a backup prior to proceeding with any kind of upgrades.</strong></p>
<p>We know that when a latest version of SVN is around it is time to upgrade. <br/>If you have already customized your XAMPP it is not an easy task to upgrade XAMPP as it might waste several days of your work!</p>
<p>I however came up with a quick solution to this issue. SVN binaries are stored in the \xampp\apache\bin folder. <br/>If you closely observe this folder you can find these binaries and there are also several related DLL files. <br/><br/>Now we know where the files are, and it is time to grab the latest SVN binaries and proceed to upgrade.</p>
<ol>
<li>Go to <a href="http://subversion.tigris.org/">http://subversion.tigris.org/</a> and click on Windows Binaries link. <br/><br/><img src="http://blog.chandanweb.com/wp-content/uploads/2009/09/zrclip_001n4842b07a.png" height="260" width="561"/> <br/></li>
<li>Now select Tigris.org <br/><img src="http://blog.chandanweb.com/wp-content/uploads/2009/09/zrclip_002p6733225b.png" height="96" width="213"/> <br/></li>
<li>Select the &#8220;Subversion Win32 binaries for Apache 2.2.x&#8221; <br/><img src="http://blog.chandanweb.com/wp-content/uploads/2009/09/zrclip_003p1f33967b.png" style="WIDTH: 500px; DISPLAY: inline; HEIGHT: 24px" height="24" width="500"/> <br/></li>
<li>Extract these file to some <strong>temporary location</strong> on your PC, and you can see a lot of exe and dll files inside the <strong>bin folder</strong>! <br/>I noticed 40 files in SVN 1.6.5! <br/></li>
<li>Now it is time to back up the existing files. Stop Apache prior to backup. <br/></li>
<li>I used 7zip and created a zip file of entire bin folder. This saved me a lot of time in trying to find all SVN related files. <br/><br/></li>
<li>Now you already have a bckup, and you can simply copy the latest SVN binaries from the temporary SVN bin folder to the xampp/apache/bin folder. <br/></li>
<li>Restart Apache and check if SVN is working fine now. This should work perfect. <br/></li>
</ol>
<p>I hope this would be useful. Please send yor comments / queries in case of any issues.</p>
<p xmlns="" class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Del.icio.us</span> : <a href="http://del.icio.us/tag/svn" class="ztag" rel="tag">svn</a>, <a href="http://del.icio.us/tag/svn%201.6.5" class="ztag" rel="tag">svn 1.6.5</a>, <a href="http://del.icio.us/tag/svn%20upgrade" class="ztag" rel="tag">svn upgrade</a>, <a href="http://del.icio.us/tag/xampp" class="ztag" rel="tag">xampp</a></span>  <br/> <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/svn" class="ztag" rel="tag">svn</a>, <a href="http://www.technorati.com/tag/svn+1.6.5" class="ztag" rel="tag">svn 1.6.5</a>, <a href="http://www.technorati.com/tag/svn+upgrade" class="ztag" rel="tag">svn upgrade</a>, <a href="http://www.technorati.com/tag/xampp" class="ztag" rel="tag">xampp</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/upgrade-svn-server-to-1-6-5-on-xampp/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Writing IE 6 or IE 7 Specific CSS Code</title>
		<link>http://blog.chandanweb.com/general/writing-ie-6-or-ie-7-specific-css-code-2</link>
		<comments>http://blog.chandanweb.com/general/writing-ie-6-or-ie-7-specific-css-code-2#comments</comments>
		<pubDate>Fri, 05 Jun 2009 09:20:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[conditional CSS]]></category>
		<category><![CDATA[css comments]]></category>
		<category><![CDATA[css hack]]></category>
		<category><![CDATA[css standards]]></category>
		<category><![CDATA[equals ie]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie9]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/general/writing-ie-6-or-ie-7-specific-css-code-2</guid>
		<description><![CDATA[This is sort of hack which helps you write CSS specific to IE6 / IE7. EX: _display:none;/* IE 6 Fix */ *display:none;/* IE 7 Fix */ NOTE: This code is not recommended if you are writing code that has to comply to CSS standards. In such cases you may have to switch to alternate methods. [...]]]></description>
			<content:encoded><![CDATA[<p>This is sort of hack which helps you write CSS specific to IE6 / IE7.</p>
<blockquote><p>EX:</p>
<p>_display:none;/* IE 6 Fix */ <br/>*display:none;/* IE 7 Fix */</p>
</blockquote>
<p>NOTE: This code is not recommended if you are writing code that has to comply to CSS standards. In such cases you may have to switch to alternate methods.</p>
<p>One of the best methods is to use conditional CSS Comments as follows:</p>
<blockquote>
<pre>
        &lt;!--[if IE]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;

        &lt;!--[if IE 6]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if IE 7]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if IE 8]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if IE 9]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if gte IE 8]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if lt IE 9]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if lte IE 7]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if gt IE 6]&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;![endif]--&gt;
        &lt;!--[if !IE]&gt; --&gt;
                &lt;link rel="stylesheet" type="text/css" href="ie.css" media="all" /&gt;
                &lt;script type="text/javascript" src="ie.js"&gt;&lt;/script&gt;
        &lt;!-- &lt;![endif]--&gt;
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/writing-ie-6-or-ie-7-specific-css-code-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blunders due to auto generated content</title>
		<link>http://blog.chandanweb.com/typo3/blunders-due-to-auto-generated-content</link>
		<comments>http://blog.chandanweb.com/typo3/blunders-due-to-auto-generated-content#comments</comments>
		<pubDate>Thu, 23 Apr 2009 06:29:41 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[bad programlogic]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/blunders-due-to-auto-generated-content</guid>
		<description><![CDATA[Recently I was going through Dmitry’s twitter entries, and I suddenly came across a blog titled “The (Often Amusing) Pitfalls of Auto-Generated Content” and I was really amused about the kind of Ads Google made by combining different keywords. The same day ironically while I was searching for something I ended up in a Google [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was going through Dmitry’s twitter entries, and I suddenly came across a blog titled <a href="http://blog.vkistudios.com/index.cfm/2009/3/19/The-often-amusing-pitfalls-of-autogenerated-content">“The (Often Amusing) Pitfalls of Auto-Generated Content”</a> and I was really amused about the kind of Ads Google made by combining different keywords.</p>
<p>The same day ironically while I was searching for something I ended up in a Google news page here:    <br /><a title="http://www.google.com/archivesearch?q=typo3&amp;btnG=Search+Archives&amp;scoring=t" href="http://www.google.com/archivesearch?q=typo3&amp;btnG=Search+Archives&amp;scoring=t">http://www.google.com/archivesearch?q=typo3&amp;btnG=Search+Archives&amp;scoring=t</a></p>
<p><a href="http://blog.chandanweb.com/wp-content/uploads/2009/04/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.chandanweb.com/wp-content/uploads/2009/04/image-thumb.png" width="147" height="157" /></a><a href="http://blog.chandanweb.com/wp-content/uploads/2009/04/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.chandanweb.com/wp-content/uploads/2009/04/image-thumb1.png" width="168" height="157" /></a> <a href="http://blog.chandanweb.com/wp-content/uploads/2009/04/image2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.chandanweb.com/wp-content/uploads/2009/04/image-thumb2.png" width="169" height="156" /></a> </p>
<p>This literally made me believe that Typo3 CMS is aged over 400 years!</p>
<p>I checked out the three news items listed in year 1605, and it seems like Google considers all numbers with four number digit as year! Well if anyone wants to prove that their company has over 500 year old history, here is an opportunity for you <img src='http://blog.chandanweb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>This is another cool instance of a bad program logic or probably not!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/blunders-due-to-auto-generated-content/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good resource for Web Programming</title>
		<link>http://blog.chandanweb.com/general/good-resource-for-web-programming</link>
		<comments>http://blog.chandanweb.com/general/good-resource-for-web-programming#comments</comments>
		<pubDate>Fri, 05 Sep 2008 08:24:03 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Link Resources]]></category>

		<guid isPermaLink="false">http://blog.spabhat.com/?p=50</guid>
		<description><![CDATA[Typoscript: http://www.typo3wizard.com/en/snippets.html This site has lots of useful Typoscript code. ISO Country Code Listing Dummy text generator in various languages!!! http://www.lipsum.com/ A good resource on TypoScript Conditional Statements http://wiki.typo3.org/index.php/TSrefConditions]]></description>
			<content:encoded><![CDATA[<ol>
<li>Typoscript:      <br /><a title="http://www.typo3wizard.com/en/snippets.html" href="http://www.typo3wizard.com/en/snippets.html">http://www.typo3wizard.com/en/snippets.html        <br /></a>This site has lots of useful Typoscript code.       </li>
<li><a title="http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm" href="http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm" target="_blank">ISO Country Code Listing</a>       </li>
<li>Dummy text generator in various languages!!!      <br /><a title="http://www.lipsum.com/" href="http://www.lipsum.com/">http://www.lipsum.com/</a>       </li>
<li>A good resource on TypoScript Conditional Statements      <br /><a title="http://wiki.typo3.org/index.php/TSrefConditions" href="http://wiki.typo3.org/index.php/TSrefConditions">http://wiki.typo3.org/index.php/TSrefConditions</a> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/general/good-resource-for-web-programming/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

