<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Gemal&apos;s Psyched Blog - Comments on The use of W3C standards in Denmark</title>
		<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/index.html</link>
		<description>In Denmark, the Danish Ministry for Science, Technology and Innovation strongly encourage all governmental/national/municipal authorities to use W3C standards (HTML/XHTML standards) on their Web pages. This survey has run a test on 2033 danish authorities home pages. The testing tool...</description>
		<language>en-us</language>
		<copyright>Copyright 2009</copyright>
		<lastBuildDate>Wed, 28 Jan 2009 22:48:53 +0100</lastBuildDate>
		<pubDate>Mon, 16 Feb 2009 09:38:30 +0100</pubDate>
		<generator>http://www.movabletype.org/?v=3.17</generator>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<image>
			<link>http://gemal.dk/</link>
			<url>http://gemal.dk//pics/favicon.png</url>
			<title>Gemal&apos;s Psyched Blog</title>
		</image>
		
			<item>
				<title>By Jacob</title>
				<description>I followed a link to http://www.netsteder.dk ( part of Ministry for Science )  On Mozilla Firefox you can switch to an alternative stylesheet from the statusbar to get larger letters on the screen. This works well. But if you try to use the buttons on the right side of the screen to get some bigger letters nothing happens. (it works in IE)If you go to http://www.netsteder.dk/omknapper.html there is more about the the bottons. It says it should work on Mozilla, but it doesn&apos;t. Anybody have a clue what is wrong?</description>
				<content:encoded><![CDATA[<p>I followed a link to <a href="http://www.netsteder.dk" rel="nofollow">http://www.netsteder.dk</a> ( part of Ministry for Science )  On Mozilla Firefox you can switch to an alternative stylesheet from the statusbar to get larger letters on the screen. This works well. But if you try to use the buttons on the right side of the screen to get some bigger letters nothing happens. (it works in IE)</p>

<p>If you go to <a href="http://www.netsteder.dk/omknapper.html" rel="nofollow">http://www.netsteder.dk/omknapper.html</a> there is more about the the bottons. It says it should work on Mozilla, but it doesn't. Anybody have a clue what is wrong?</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment1?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment1</guid>
				<pubDate>Mon, 08 Mar 2004 12:10:49 +0100</pubDate>
				<author>
					<name>Jacob</name>
					<email>jacobr@stofanet.dk.nospam.invalid</email>
				</author>
			</item>
		
			<item>
				<title>By Henrik Gemal</title>
				<description>It doesn&apos;t work because of an JavaScript error:Error: a.getAttribute(&quot;rel&quot;) has no propertiesSource File: http://www.netsteder.dk/scripts/styleswitcher.jsLine: 4</description>
				<content:encoded><![CDATA[<p>It doesn't work because of an JavaScript error:</p>

<p>Error: a.getAttribute("rel") has no properties<br />
Source File: <a href="http://www.netsteder.dk/scripts/styleswitcher.js" rel="nofollow">http://www.netsteder.dk/scripts/styleswitcher.js</a><br />
Line: 4</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment2?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment2</guid>
				<pubDate>Mon, 08 Mar 2004 13:28:46 +0100</pubDate>
				<author>
					<name>Henrik Gemal</name>
					<email>no@spam.com</email>
				</author>
			</item>
		
			<item>
				<title>By <![CDATA[Jens Gyldenk&aelig;rne Clausen]]></title>
				<description>A bit of testing reveals what that the problem is.The script erroneously assumes that every link element will have a rel-attribute. This is not the case on the page in question, since one of the fist lines in the source reads:(note &quot;rev&quot;, not &quot;rel&quot;).The problem can be solved by replacing &quot;a.getAttribute(&quot;rel&quot;).indexOf(&quot;style&quot;) != -1&quot; with  &quot;a.getAttribute(&quot;rel&quot;) &amp;&amp; a.getAttribute(&quot;rel&quot;).indexOf(&quot;style&quot;) != -1&quot; all (3) places it occurs in the script code.</description>
				<content:encoded><![CDATA[<p>A bit of testing reveals what that the problem is.</p>

<p>The script erroneously assumes that every link element will have a rel-attribute. This is not the case on the page in question, since one of the fist lines in the source reads:</p>

<p></p>

<p>(note "rev", not "rel").</p>

<p>The problem can be solved by replacing "a.getAttribute("rel").indexOf("style") != -1" with  "a.getAttribute("rel") && a.getAttribute("rel").indexOf("style") != -1" all (3) places it occurs in the script code.</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment3?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment3</guid>
				<pubDate>Mon, 08 Mar 2004 14:09:32 +0100</pubDate>
				<author>
					<name><![CDATA[Jens Gyldenk&aelig;rne Clausen]]></name>
					<email>jgc_nospam@dmf.dk</email>
				</author>
			</item>
		
			<item>
				<title>By <![CDATA[Jens Gyldenk&aelig;rne Clausen]]></title>
				<description>If anyone is interested, I have uploadet a working example with the modified script: http://www.gyros.dk/usenet/html/styleskift.shtmlThe javascript is located here:http://www.gyros.dk/usenet/js/styleswitch.js</description>
				<content:encoded><![CDATA[<p>If anyone is interested, I have uploadet a working example with the modified script: <a href="http://www.gyros.dk/usenet/html/styleskift.shtml" rel="nofollow">http://www.gyros.dk/usenet/html/styleskift.shtml</a></p>

<p>The javascript is located here:<br />
<a href="http://www.gyros.dk/usenet/js/styleswitch.js" rel="nofollow">http://www.gyros.dk/usenet/js/styleswitch.js</a></p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment4?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment4</guid>
				<pubDate>Mon, 08 Mar 2004 14:16:21 +0100</pubDate>
				<author>
					<name><![CDATA[Jens Gyldenk&aelig;rne Clausen]]></name>
					<email>jgc_nospam@dmf.dk</email>
				</author>
			</item>
		
			<item>
				<title>By <![CDATA[Jens Gyldenk&aelig;rne Clausen]]></title>
				<description><![CDATA[Argh! - I've just discovered that the html-code I entered in my first comment was "eaten" by the blog system. I would have thought that it was possible to enter html-codes here (and have them encoded serverside), but that is appearently not so. I can see that it is possible to encode the code when it is entered (writing &amp;lt; instead of &lt; and &amp;gt; instead of &gt;). Below is the missing code from before:&lt;LINK REV=MADE HREF="mailto:pgh@itst.dk"&gt;]]></description>
				<content:encoded><![CDATA[<p>Argh! - I've just discovered that the html-code I entered in my first comment was "eaten" by the blog system. I would have thought that it was possible to enter html-codes here (and have them encoded serverside), but that is appearently not so. I can see that it is possible to encode the code when it is entered (writing &amp;lt; instead of &lt; and &amp;gt; instead of &gt;). Below is the missing code from before:</p>

<p>&lt;LINK REV=MADE HREF="mailto:pgh@itst.dk"&gt;</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment5?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment5</guid>
				<pubDate>Mon, 08 Mar 2004 14:24:51 +0100</pubDate>
				<author>
					<name><![CDATA[Jens Gyldenk&aelig;rne Clausen]]></name>
					<email>jgc_nospam@dmf.dk</email>
				</author>
			</item>
		
			<item>
				<title>By Jacob Riis</title>
				<description>I just ckecked netsteder.dk .They have fixed the problem :-)</description>
				<content:encoded><![CDATA[<p>I just ckecked netsteder.dk .They have fixed the problem :-)</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment6?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment6</guid>
				<pubDate>Thu, 11 Mar 2004 23:27:52 +0100</pubDate>
				<author>
					<name>Jacob Riis</name>
					<email>jacobr@stofanet.dk.nospam.invalid</email>
				</author>
			</item>
		
			<item>
				<title>By <![CDATA[Jens Gyldenk&aelig;rne Clausen]]></title>
				<description>Yes. I wrote to them after I had pinpointed the problem.  Two days later (wednesday, 10. March) I got a friendly reply from netsteder.dk where a consultant promised to correct the problem. The corrected version is now online.I have also contacted A List Apart, where the background article about the styleswitcher resides. I have recieved a single reply telling thata) comments are disabled on older articles (the article is from 2001)b) they normally doesn&apos;t update older articles.They have mentioned a possibility to mark the article as &quot;outdated information&quot;, to which I replied that the article isn&apos;t really outdated - the problem with the script has been there since the article was posted. Furthermore, the script in general is not at all bad - it can be useful to a lot of people. The only problem is that the script doesn&apos;t take into account that there may exist link-tags without rel-attributes. This can easily be corrected.I haven&apos;t seen a response to my second mail.</description>
				<content:encoded><![CDATA[<p>Yes. I wrote to them after I had pinpointed the problem.  Two days later (wednesday, 10. March) I got a friendly reply from netsteder.dk where a consultant promised to correct the problem. The corrected version is now online.</p>

<p>I have also contacted A List Apart, where the background article about the styleswitcher resides. I have recieved a single reply telling that<br />
a) comments are disabled on older articles (the article is from 2001)<br />
b) they normally doesn't update older articles.</p>

<p>They have mentioned a possibility to mark the article as "outdated information", to which I replied that the article isn't really outdated - the problem with the script has been there since the article was posted. Furthermore, the script in general is not at all bad - it can be useful to a lot of people. The only problem is that the script doesn't take into account that there may exist link-tags without rel-attributes. This can easily be corrected.</p>

<p>I haven't seen a response to my second mail.</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment7?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment7</guid>
				<pubDate>Fri, 12 Mar 2004 14:59:52 +0100</pubDate>
				<author>
					<name><![CDATA[Jens Gyldenk&aelig;rne Clausen]]></name>
					<email>jgc_nospam@dmf.dk</email>
				</author>
			</item>
		
			<item>
				<title>By SlashEMc2k</title>
				<description>Thanks guys I was stuck trying to figure out how to fix this problem but good old google led me to you :)</description>
				<content:encoded><![CDATA[<p>Thanks guys I was stuck trying to figure out how to fix this problem but good old google led me to you :)</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment8?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment8</guid>
				<pubDate>Mon, 27 Feb 2006 11:24:57 +0100</pubDate>
				<author>
					<name>SlashEMc2k</name>
					<email>nospam@bluestudios.co.uk</email>
				</author>
			</item>
		
			<item>
				<title>By Virignia Knight</title>
				<description>Thank you too. I was led to you be searching on styleswitcher and &quot;has no properties&quot;.</description>
				<content:encoded><![CDATA[<p>Thank you too. I was led to you be searching on styleswitcher and "has no properties".</p>]]></content:encoded>
				<link>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment9?from=rss-comment</link>
				<guid>http://gemal.dk/blog/2004/03/08/the_use_of_w3c_standards_in_denmark/#comment9</guid>
				<pubDate>Tue, 06 Feb 2007 13:29:28 +0100</pubDate>
				<author>
					<name>Virignia Knight</name>
					<email>virginia.knight@bristol.ac.uk</email>
				</author>
			</item>
		
	</channel>
</rss>

