<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>CSS Greut</title>
	<atom:link href="https://cssgreut.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://cssgreut.wordpress.com</link>
	<description>Chaos en structuur in front-end webdevelopment</description>
	<lastBuildDate>Tue, 27 Dec 2011 10:54:06 +0000</lastBuildDate>
	<language>nl</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cssgreut.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>CSS Greut</title>
		<link>https://cssgreut.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://cssgreut.wordpress.com/osd.xml" title="CSS Greut" />
	<atom:link rel='hub' href='https://cssgreut.wordpress.com/?pushpress=hub'/>
	<item>
		<title>This site has moved</title>
		<link>https://cssgreut.wordpress.com/2011/12/27/this-site-has-moved/</link>
					<comments>https://cssgreut.wordpress.com/2011/12/27/this-site-has-moved/#respond</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Tue, 27 Dec 2011 10:50:42 +0000</pubDate>
				<category><![CDATA[CSSGreut]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/?p=84</guid>

					<description><![CDATA[This site has moved. For more post on web development (in English and Dutch) follow us on www.tomgreuter.nl/tech.]]></description>
										<content:encoded><![CDATA[<p>This site has moved. For more post on web development (in English and Dutch) follow us on <a href="http://www.tomgreuter.nl/tech/">www.tomgreuter.nl/tech</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2011/12/27/this-site-has-moved/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Run Selenium IDE tests with jQuery selectors</title>
		<link>https://cssgreut.wordpress.com/2010/12/20/run-selenium-ide-tests-with-jquery-selectors/</link>
					<comments>https://cssgreut.wordpress.com/2010/12/20/run-selenium-ide-tests-with-jquery-selectors/#respond</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Mon, 20 Dec 2010 16:38:39 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[validatie]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[selector]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[sizzle]]></category>
		<category><![CDATA[testing]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/?p=74</guid>

					<description><![CDATA[This took me a lot of time to find out, so here is a short and handy overview for everyone that wants to use jQuery selectors instead of Xpath selectors in their Selenium IDE tests. First the steps to achieve this, followed by some comments for the few readers that are still interested. Add jQuery [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This took me a lot of time to find out, so here is a short and handy overview for everyone that wants to use jQuery selectors instead of Xpath selectors in their Selenium IDE tests. First the steps to achieve this, followed by some comments for the few readers that are still interested.</p>
<h2>Add jQuery selectors to Selenium</h2>
<ol>
<li>The selector engine of jQuery is called Sizzle. Download it from <a href="http://sizzlejs.com/">sizzlejs.com</a> and store the file sizzle.js in your Selenium project. (I used the current version, 1.0.)</li>
<li>Create a blank JavaScript file, rename it to &#8220;user-extensions.js&#8221; and save it to your Selenium project.</li>
<li>Add the following code to &#8220;user-extensions.js&#8221;:<br />
<code>PageBot.prototype.locateElementBySizzle = function(locator, inDocument) {<br />
var results = [];<br />
window.Sizzle(locator, inDocument, results);<br />
return results.length &gt; 0 ? results[0] : null;<br />
}</code></li>
<li>Open Selenium IDE from Firefox.</li>
<li>Go to Options &gt; Options &gt; General.</li>
<li>Click the &#8220;Browse &#8230;&#8221;-button of &#8220;Selenium Core extensions (user-extensions.js)&#8221;</li>
<li>Multiple select &#8220;sizzle.js&#8221; and &#8220;user-selections.js&#8221;. They should be added comma-seperated to the input field (for example: &#8220;<code>D:\myProject\user-extensions.js, D:\myProject\sizzle.js</code>&#8220;).</li>
<li>Restart Selenium IDE.</li>
<li>Execute the following test:</li>
</ol>
<p>Command:<code> verifyElementPresent</code><br />
Target: <code>sizzle=body</code><br />
Value: <code>true</code></p>
<p>This test should succeed on every normal HTML page. ;)</p>
<h2>Comments</h2>
<ul>
<li>Why use Sizzle and not the complete  jQuery library? The same setup can also be used for jQuery, but I could not get it working. Some say that recent versions of jQuery (I use 1.4.4) don&#8217;t cope with Selenium, at the moment.</li>
<li>It&#8217;s still possible though to use jQuery functionality in your tests. If jQuery is available on the page you are testing, one could do a test similar to:</li>
</ul>
<p>Command:<code>assertEval </code><br />
Target: <code>selenium.browserbot.getUserWindow().jQuery("body").length</code><br />
Value: <code>1</code></p>
<p>&nbsp;</p>
<h2>Helpful resources</h2>
<ul>
<li><a href="http://germanrumm.eu/how-to-add-jquery-sizzle-selectors-to-selenium/">How to add jQuery (Sizzle) selectors to Selenium</a></li>
<li><a href="http://sizzlejs.com/">Sizzle</a></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2010/12/20/run-selenium-ide-tests-with-jquery-selectors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Set text file encoding to UTF-8 in Aptana</title>
		<link>https://cssgreut.wordpress.com/2010/02/18/set-text-file-encoding-to-utf-8-in-aptana/</link>
					<comments>https://cssgreut.wordpress.com/2010/02/18/set-text-file-encoding-to-utf-8-in-aptana/#comments</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 12:48:41 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[aptana utf-8]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/?p=67</guid>

					<description><![CDATA[Working in a web environment, it&#8217;s important to keep your character encoding clear. Serious websites set their character encoding to UTF-8 to be sure to be compatible with different language sets. Obviously the same accounts for the database. Sometimes it&#8217;s also important to set the text file encoding of your script file (php etc.). In [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Working in a web environment, it&#8217;s important to keep your character encoding clear. Serious websites set their character encoding to UTF-8 to be sure to be compatible with different language sets. Obviously the same accounts for the database.</p>
<p>Sometimes it&#8217;s also important to set the text file encoding of your script file (php etc.). In <a href="http://www.aptana.com">Aptana</a> 2 the global text file encoding is set to Cp1252. You can change this to UTF-8 the following way:</p>
<ul>
<li>In Aptana go to Window -&gt; Preferences</li>
<li>Type &#8220;encoding&#8221; in the search box.</li>
<li>Go to General -&gt; Workspace</li>
<li>Change the text file encoding to UTF-8 and apply.</li>
</ul>
<p>In my case Aptana hung with the build settings so I had to uncheck them all:</p>
<p><a href="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png"><img data-attachment-id="68" data-permalink="https://cssgreut.wordpress.com/2010/02/18/set-text-file-encoding-to-utf-8-in-aptana/aptana/" data-orig-file="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png" data-orig-size="627,578" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Aptana settings screen" data-image-description="" data-image-caption="" data-medium-file="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=300" data-large-file="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=480" class="alignnone size-full wp-image-68" title="Aptana settings screen" src="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=480&#038;h=442" alt="" width="480" height="442" srcset="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=480&amp;h=442 480w, https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=150&amp;h=138 150w, https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png?w=300&amp;h=277 300w, https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png 627w" sizes="(max-width: 480px) 100vw, 480px" /></a></p>
<p>Happy UTF-8 programming!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2010/02/18/set-text-file-encoding-to-utf-8-in-aptana/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>

		<media:content url="https://cssgreut.wordpress.com/wp-content/uploads/2010/02/aptana.png" medium="image">
			<media:title type="html">Aptana settings screen</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS and ellipsis: Cross-browser practices</title>
		<link>https://cssgreut.wordpress.com/2009/09/28/css-and-ellipsis-cross-browser-practices/</link>
					<comments>https://cssgreut.wordpress.com/2009/09/28/css-and-ellipsis-cross-browser-practices/#respond</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Mon, 28 Sep 2009 20:25:55 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/?p=50</guid>

					<description><![CDATA[Every now and then, say twice a year, I run into the same problem: what is the best cross-browser ellipsis solution? Because I end up searching the internet everytime, I decided the write down my prefererred solution. The problem is as follows: You have a long sentence and you want to show only the first [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Every now and then, say twice a year, I run into the same problem: what is the best cross-browser ellipsis solution? Because I end up searching the internet everytime, I decided the write down my prefererred solution.</p>
<p>The problem is as follows: You have a long sentence and you want to show only the first line and end up with &#8230; (the ellipsis) and trunk the rest of the sentence. Of course you can implement a server side solution, but today I prefer a client-side one.</p>
<p>IE6 and IE7 are simple, they support the CSS-property<strong> text-overflow</strong>, as do the Webkit based browsers Safari and Chrome. Text-overflow is part of the coming <a href="http://www.css3.info/preview/text-overflow/">CSS3-recommendation</a>, by the way. Because the property is not standardized yet Opera has it&#8217;s own implementation <strong>-o-text-overflow</strong>, while IE8 in standards mode supports <strong>-ms-text-overflow</strong>.</p>
<p>The only hickup we encouter with Firefox. The current version (Firefox 3.5) still does not support this property&#8230; This leaves us for several workarounds:</p>
<ul>
<li>Do nothing. All browsers will show an ellipsis, Firefox just shows nothing. My prefered solution, because it involves less time and effort.</li>
<li>Create a Firefox-only selector in your CSS. This can be handy is you have something like <a href="http://www.cyscape.com/" target="_blank">Browserhawk</a> installed on your server. Is not 100% waterproof though. Don&#8217;t just add the <a href="http://www.jide.fr/emulate-text-overflowellipsis-in-firefox-with-css">sometimes suggested</a> &#8220;:after-content&#8221; option. (With something like myclass:after { content: &#8220;&#8230;&#8221; } we could easy add ellipsis to Firefox, but other modern browsers would render the ellipsis twice.</li>
<li>Use the &#8220;:after-content&#8221; setting for all modern browsers and show the ellipsis in IE6 and IE7 with conditional comments.</li>
<li>Use a JavaScript solution. Check for example <a href="http://devongovett.wordpress.com/2009/04/06/text-overflow-ellipsis-for-firefox-via-jquery/">this nice jQuery plugin</a>.</li>
<li>Use <a href="http://mattsnider.com/css/css-string-truncation-with-ellipsis/">XUL</a>.</li>
</ul>
<p>The CSS at last:</p>
<pre><span style="color:#0000ff;">.ellipsis { 
  display: block; 
  white-space: nowrap; 
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis; 
  width: 230px;
  overflow: hidden;
}</span></pre>
<p><em>Bonus:</em></p>
<p>Toggle the ellipsis view with jQuery:</p>
<pre>$(".ellipsis").click( function() { $(this).toggleClass(".ellipsis") });</pre>
<p><em>Disclaimer:</em></p>
<p>Not all options are tested. Please comment.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2009/09/28/css-and-ellipsis-cross-browser-practices/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>IIS7 configuren voor Windows Vista Home Premium (NL)</title>
		<link>https://cssgreut.wordpress.com/2007/07/12/iis7-configuren-voor-windows-vista-home-premium-nl/</link>
					<comments>https://cssgreut.wordpress.com/2007/07/12/iis7-configuren-voor-windows-vista-home-premium-nl/#comments</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Thu, 12 Jul 2007 20:19:21 +0000</pubDate>
				<category><![CDATA[classic asp]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[windows vista]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2007/07/12/iis7-configuren-voor-windows-vista-home-premium-nl/</guid>

					<description><![CDATA[Daar ging mijn halve avond in rook op: ik wilde even mijn oude ASP-site draaiend krijgen op mijn localhost op Windows Vista&#8230; Met Windows Vista wordt IIS7 meegeleverd. Deze staat standaard (natuurlijk) niet aan. IIS aanzetten gaat via het Configuratiescherm &#62; Programma&#8217;s &#62; Windows-onderdelen in- of uitschakelen (administrator-rechten vereist). Simpel Internet Information Services aanklikken is [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Daar ging mijn halve avond in rook op: ik wilde even mijn oude ASP-site draaiend krijgen op mijn localhost op Windows Vista&#8230;</p>
<ol>
<li>Met Windows Vista wordt IIS7 meegeleverd. Deze staat standaard (natuurlijk) niet aan. IIS aanzetten gaat via het Configuratiescherm &gt; Programma&#8217;s &gt; Windows-onderdelen in- of uitschakelen (administrator-rechten vereist).</li>
<li>Simpel <em>Internet Information Services</em> aanklikken is niet voldoende. Je moet ook kiezen voor World Wide Web-services &gt; Toepassingsontwikkelingsfuncties &gt; ASP.</li>
<li>Je zou nu een ASP-site moeten kunnen draaien op <a href="http://localhost" rel="nofollow">http://localhost</a>.</li>
</ol>
<p>Iedereen &#8211; behalve de Goden op de Olympus &#8211; maakt wel eens fouten in hun software. Om gedetailleerde foutmeldingen te tonen moet je de halve wereld omdraaien, maar de volgende handelingen zouden ook kunnen helpen:</p>
<ol>
<li>Je kunt de IIS-manager (IIS-beheer geheten in het Nederlands) openen door in Vista te zoeken op &#8220;iis&#8221;.</li>
<li>Selecteer de default website (of een andere als het daar om gaat&#8230;).</li>
<li>Dubbelklik op het icoon <em>Foutpagina&#8217;s</em>. Klik op de actie <em>Functie-instellingen bewerken&#8230;</em></li>
<li>Selecteer een van de opties voor gedetailleerde foutmeldingen.</li>
<li>Nu kreeg ik direct de weinig verhelderende foutmelding &#8220;<em>An error occurred on the server when processing the URL. Please contact the system administrator</em>&#8221; voor de kiezen.</li>
<li>Nu kun je a) in je logfiles gaan neuzen (die standaard op onzichtbaar staan in de Verkenner, dus die moet je eerst tweaken).</li>
<li>Fijner is het natuurlijk om de exacte foutmelding in je browser te zien. Daartoe moet je een command box openen (als administrator!!) en de volgende regel uitvoeren &#8220;<strong>%windir%\system32\inetsrv\appcmd.exe set config -section:asp /scriptErrorSentToBrowser:true</strong>&#8220;. (Zie de <a href="http://forums.iis.net/p/1095571/1693847.aspx#1693847">comments op IIS.net</a>)</li>
</ol>
<p>Happy debugging!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2007/07/12/iis7-configuren-voor-windows-vista-home-premium-nl/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Bij de ING geen Firefox</title>
		<link>https://cssgreut.wordpress.com/2007/06/22/bij-de-ing-geen-firefox/</link>
					<comments>https://cssgreut.wordpress.com/2007/06/22/bij-de-ing-geen-firefox/#comments</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Fri, 22 Jun 2007 19:34:00 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2007/06/22/bij-de-ing-geen-firefox/</guid>

					<description><![CDATA[Je kunt je natuurlijk afvragen wat ik op de banensite van de ING doe, maar deze foutmelding &#8211; die mij nota bene verhindert bij de vacaturedetails te komen &#8211; wilde ik jullie toch niet onthouden: https://careers.ing.com/]]></description>
										<content:encoded><![CDATA[<p>Je kunt je natuurlijk afvragen wat ik op de banensite van de ING doe, maar deze foutmelding &#8211; die mij nota bene verhindert bij de vacaturedetails te komen &#8211; wilde ik jullie toch niet onthouden:</p>
<p><a href="http://www.flickr.com/photos/tomgreuter/591813931/" title="Photo Sharing"><img src="https://i0.wp.com/farm2.static.flickr.com/1233/591813931_9f58fc8cf2_m.jpg" alt="Foutmeldinkie" height="139" width="240" /></a></p>
<p><a href="https://careers.ing.com/">https://careers.ing.com/</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2007/06/22/bij-de-ing-geen-firefox/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>

		<media:content url="http://farm2.static.flickr.com/1233/591813931_9f58fc8cf2_m.jpg" medium="image">
			<media:title type="html">Foutmeldinkie</media:title>
		</media:content>
	</item>
		<item>
		<title>IE7 and form submitting</title>
		<link>https://cssgreut.wordpress.com/2007/01/28/ie7-and-form-submitting/</link>
					<comments>https://cssgreut.wordpress.com/2007/01/28/ie7-and-form-submitting/#comments</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Sun, 28 Jan 2007 15:46:52 +0000</pubDate>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[HTML]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2007/01/28/ie7-and-form-submitting/</guid>

					<description><![CDATA[Often, IE7 is regarded less standards compliant than its open source alternatives. Accidentally I ran into a &#8211; at least for me &#8211; unknown feature in IE7 which proves that in some cases IE7 can be rather strict. Take this, a FORM without a submit-button, but with a BUTTON-button: &#60;form&#62; &#60;!-- a lot of code [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Often, IE7 is regarded less standards compliant than its open source alternatives. Accidentally I ran into a &#8211; at least for me &#8211; unknown feature in IE7 which proves that in some cases IE7 can be rather strict. Take this, a FORM without a submit-button, but with a BUTTON-button:</p>
<pre><code>&lt;form&gt;
  &lt;!-- a lot of code --&gt;
  &lt;button&gt;fire!&lt;/button&gt;
&lt;/form&gt;
</code></pre>
<p>Firefox just submits the form when you click the button. IE7 however does nothing! It appeared that IE7 only submits the form when the attribute type is specified as type=&#8221;submit&#8221;.</p>
<pre><code>  &lt;button type="submit"&gt;fire!&lt;/button&gt;
</code></pre>
<p>Cool! Seems logically in the end. Where are the times that Microsoft interpreted all your sloppy code?</p>
<p><em>Tested with a XHTML 1.0 Strict page with a FORM-element which included three BUTTON-buttons. I encountered no </em><em>form submitting </em><em>problems without the type attribute specified  in FF 2.0.0.1 or in Opera 8.54 on Windows XP SP2. I didn&#8217;t test in IE6 or other exotic browsers.</em> <span id="more-42"></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2007/01/28/ie7-and-form-submitting/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Jaiku</title>
		<link>https://cssgreut.wordpress.com/2006/12/20/jaiku/</link>
					<comments>https://cssgreut.wordpress.com/2006/12/20/jaiku/#respond</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Wed, 20 Dec 2006 21:06:39 +0000</pubDate>
				<category><![CDATA[mash-ups]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2006/12/20/jaiku/</guid>

					<description><![CDATA[Loop je voortdurend rond met gedachten hoe je internetmiljonair kunt worden door mee te liften op de web2.0-hype? Probeer dan niet te focussen op slimme of handige apps waar men iets aan heeft. Mijn favoriete verpozingswebsite van de laatste tijd is Jaiku, een volstrekt nutteloos (Fins) initiatief dat jouw diverse feeds en die van je [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Loop je voortdurend rond met gedachten hoe je internetmiljonair kunt worden door mee te liften op de web2.0-hype? Probeer dan niet te focussen op slimme of handige apps waar men iets aan heeft. Mijn favoriete verpozingswebsite van de laatste tijd is <a href="http://jaiku.com/">Jaiku</a>, een volstrekt nutteloos (Fins) initiatief dat jouw diverse feeds en die van je vrienden aan elkaar knoopt. Wel even om het uur je &#8216;<a href="http://ludder.jaiku.com/">presence</a>&#8216; aanpassen!</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/jaiku" rel="tag">jaiku</a>, <a href="http://www.technorati.com/tags/feeds" rel="tag">feeds</a>, <a href="http://www.technorati.com/tags/rss" rel="tag">rss</a>, <a href="http://www.technorati.com/tags/mash-up" rel="tag">mash-up</a>, <a href="http://www.technorati.com/tags/web2.0" rel="tag">web2.0</a>, <a href="http://www.technorati.com/tags/useless" rel="tag">useless</a></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2006/12/20/jaiku/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Play around with Microsoft Gadgets</title>
		<link>https://cssgreut.wordpress.com/2006/12/19/play-around-with-microsoft-gadgets/</link>
					<comments>https://cssgreut.wordpress.com/2006/12/19/play-around-with-microsoft-gadgets/#respond</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Tue, 19 Dec 2006 20:48:18 +0000</pubDate>
				<category><![CDATA[fun]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2006/12/19/play-around-with-microsoft-gadgets/</guid>

					<description><![CDATA[Yahoo! came with Widgets, so now it&#8217;s Microsoft&#8217;s turn to introduce Gadgets. It&#8217;s the same idea: little, useless programs you install on your desktop and that eat up your resources. Interesting point: Microsoft Gadgets only run on Windows Vista! However, Microsoft also has a web alternative: live gadgets. These gadgets are installed and run on [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Yahoo! came with <a href="http://widgets.yahoo.com/">Widgets</a>, so now it&#8217;s Microsoft&#8217;s turn to introduce <a href="http://microsoftgadgets.com/">Gadgets</a>. It&#8217;s the same idea: little, useless programs you install on your desktop and that eat up your resources. Interesting point: Microsoft Gadgets only run on Windows Vista!</p>
<p>However, Microsoft also has a <em>web</em> alternative: live gadgets. These gadgets are installed and run on your personal start page (as Microsoft sees it) <a href="http://www.live.com/">live.com</a>. Today I had to do a bit of a research on gadgets and walked through the <a href="http://microsoftgadgets.com/livesdk/docs/default.htm">Windows Live Gadget Developer&#8217;s Guide</a>. In the guide I discovered two little errors, so if you want to play around with gadgets be aware:</p>
<ol>
<li> In section &#8220;<a href="http://microsoftgadgets.com/livesdk/docs/default.htm#Settingupyourenvironment">Setting Up Your Environment</a>&#8221; is stated: &#8220;<em>In order to develop  locally hosted Gadgets within IE, ensure that you have set the &#8216;Access data  sources across domains&#8217; setting to &#8216;prompt&#8217;. Inside IE, you can check this  through Tools -&gt; Internet Options&#8230; Click on the Security tab, select  internet zone and click on &#8216;Custom Level&#8217;. Under &#8216;Miscellaneous&#8217; select &#8216;prompt&#8217;  for &#8216;Access data sources across domains&#8217;.</em>&#8221; Be sure that this accounts for the internet zone as well as for the  trusted zone!</li>
<li>In section &#8220;<a href="http://microsoftgadgets.com/livesdk/docs/default.htm#Definingcontent">Defining Content</a>&#8221; a code example is provided with the following line &#8220;Gadgets/htmlinliner/htmlcontent.xml&#8221;. On my station this only worked with a full address: &#8220;<a href="http://localhost/Gadgets/htmlinliner/htmlcontent.xml&#038;#8221" rel="nofollow">http://localhost/Gadgets/htmlinliner/htmlcontent.xml&#038;#8221</a>;.</li>
</ol>
<p>Check my delicious-links on <a href="http://del.icio.us/tomgreuter/microsoftgadgets">Microsoft Gadgets</a>. Happy gadgetting!</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/microsoft" rel="tag">microsoft</a>, <a href="http://www.technorati.com/tags/windows" rel="tag">windows</a>, <a href="http://www.technorati.com/tags/vista" rel="tag">vista</a>, <a href="http://www.technorati.com/tags/gadgets" rel="tag">gadgets</a>, <a href="http://www.technorati.com/tags/widgets" rel="tag">widgets</a>, <a href="http://www.technorati.com/tags/develop" rel="tag">develop</a></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2006/12/19/play-around-with-microsoft-gadgets/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
		<item>
		<title>Betere HTML in 37 stappen</title>
		<link>https://cssgreut.wordpress.com/2006/11/11/betere-html-in-37-stappen/</link>
					<comments>https://cssgreut.wordpress.com/2006/11/11/betere-html-in-37-stappen/#comments</comments>
		
		<dc:creator><![CDATA[tom greuter]]></dc:creator>
		<pubDate>Sat, 11 Nov 2006 21:30:07 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[professionalisering]]></category>
		<category><![CDATA[webstandaarden]]></category>
		<guid isPermaLink="false">http://cssgreut.wordpress.com/2006/11/11/betere-html-in-37-stappen/</guid>

					<description><![CDATA[Een paar weken geleden publiceerde Tommy Olsson zijn artikel &#8220;Bulletproof HTML: 37 Steps to Perfect Markup&#8220;. Het is een leerzaam verhaal dat soms een belerend toontje heeft, maar desalniettemin voor velen de basiskennis van HTML kan vergroten. Een aantal dingen viel mij op. Onder standardista&#8217;s is het nogal cool om geen XHTML, maar HTML te [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Een paar weken geleden publiceerde Tommy Olsson zijn artikel &#8220;<a href="http://www.sitepoint.com/print/html-37-steps-perfect-markup">Bulletproof HTML: 37 Steps to Perfect Markup</a>&#8220;. Het is een leerzaam verhaal dat soms een belerend toontje heeft, maar desalniettemin voor velen de basiskennis van HTML kan vergroten. Een aantal dingen viel mij op.</p>
<p>Onder standardista&#8217;s is het nogal cool om geen XHTML, maar HTML te schrijven. Belangrijkste argument is doorgaans dat je XHTML als &#8220;text/html&#8221; en niet als XML mag serveren (omdat Internet Explorer daar geen raad mee weet). So what? zou je zeggen. Tommy Olsson: &#8220;We cannot use any of the features of XHTML when serving it this way, because we are not really using XHTML at all &#8212; we&#8217;re only pretending to.&#8221; Dan zou ik wel graag willen weten wat die &#8216;features&#8217; zijn. Missen we echt iets? En over missen gesproken: mis je iets als je XHTML gebruikt in plaats van HTML? Ik vermoed van niet.</p>
<p>Wat ik niet wist was de betekenis van de opbouw van de DOCTYPE-declaratie (als <code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"  "http://www.w3.org/TR/html4/strict.dtd"&gt;</code>). Wat doet de &#8216;EN&#8217; daar bijvoorbeeld? &#8220;Note that it doesn&#8217;t say anything about the language of the web page itself; it is the language of the DTD that is specified here.&#8221; Het eerste deel van de identifier heet de &#8216;public identifier&#8217; en het tweede deel de &#8216;system identifier&#8217;. &#8220;If the system identifier is missing, or if there is no DOCTYPE declaration at all, browsers assume that this is an old document and render it in &#8216;quirks mode&#8217;.&#8221; (Hé, zou <a href="view-source:http://annevankesteren.nl/">Anne</a> bewust &#8216;quirks mode&#8217; triggeren?)</p>
<p>Ook over character encoding is Olsson verhelderend. Ik wist bijvoorbeeld niet dat de character set die  je in je HTML-pagina opneemt (bijvoorbeeld &#8220;<code>&lt;meta http-equiv="Content-Type"   content="text/html; charset=utf-8"&gt;</code>&#8220;) overruled wordt door de HTTP header die je mogelijk via de server verstuurt.</p>
<p>Over het <code>address</code>-element zegt Olsson dat &#8220;A common misconception is that <code>address</code> is meant to be used to mark up only postal addresses, but that is not the case.&#8221; Ook telefoonnummers en andere contactinformatie kan met het <code>address</code>-element opgemaakt worden. Hij vergeet evenwel te vermelden dat het bij het <code>address</code>-element gaat om de contactinformatie die van toepassing is op de informatie die een bepaalde pagina geeft. Een adresboek bestaat dus nietuit een lange reeks <code>address</code>-elementen.Alleen de contactgegevens van de maker van het adresboek zou je in een <code>address</code>-element mogen verwachten.</p>
<p>Olsson licht nog een paar HTML-elementen toe die we nooit gebruiken omdat geen CMS ze ondersteunt. Maar toch is het handig om te weten dat &#8220;A certain term should only be marked up with <code>dfn</code> once in a document (where it is first used and explained)&#8221; en dat &#8220;A common misconception is that <code>var</code> should be used for marking up variables in programming code samples&#8221;.</p>
<p>Over het <code>alt</code> attribute kan nooit genoeg gezegd worden: &#8220;This text equivalent should not describe the image; it should convey the equivalent information&#8221;. Olsson geeft ook een helder voorbeeld om deze stelling toe te lichten (zie step 33).</p>
<p>Tot slot beweert Olsson dat de waarde van een <code>id</code>, <code>name</code> and <code>class</code> attribute altijd moet beginnen met een letter. Ik dacht evenwel dat het ook een underscore mocht zijn?</p>
<p>Een aantal van dit soort artikel tesamen zou een prachtig boek kunnen vormen over de basis en de achtergrond van HTML; verplichte kost voor iedereen die al langer dan vijf jaar met HTML zit te knoeien.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/tommy+olsson" rel="tag">tommy+olsson</a>, <a href="http://www.technorati.com/tags/html" rel="tag">html</a>, <a href="http://www.technorati.com/tags/markup" rel="tag">markup</a></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://cssgreut.wordpress.com/2006/11/11/betere-html-in-37-stappen/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/aca5c364c64c92dec0eceef21c0077dce16eb69615d6ba5923400a34065bea3a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tom greuter</media:title>
		</media:content>
	</item>
	</channel>
</rss>
