<?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>Thomas&#039; blogs &#187; OPML</title>
	<atom:link href="http://blog.tmy.se/tag/opml/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tmy.se</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 04 Dec 2008 15:52:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<atom:link rel='hub' href='http://blog.tmy.se/?pushpress=hub'/>
		<item>
		<title>Automatisierung</title>
		<link>http://blog.tmy.se/2007/07/29/automatisierung/</link>
		<comments>http://blog.tmy.se/2007/07/29/automatisierung/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 14:04:31 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[BlogBlog]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[OPML]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogblog.thomasmarquart.net/2007/07/29/automatisierung/</guid>
		<description><![CDATA[Standardformate und offener Quellcode machen es möglich: Die Links in der Seitenleiste werden jetzt automatisch aus der OPML-Datei generiert, die mein Feed-Reader exportiert. Das heißt, dass sich die Blogroll automatisch aktualisiert, wenn ich neue RSS-Feeds abonniere oder alte rauswerfe. Link zum Plugin. Nachtrag, 9. Aug. 2007: Mit einem quick-and-dirty Skript (Code weiter unten) filtere ich [...]]]></description>
			<content:encoded><![CDATA[	<p>Standardformate und offener Quellcode machen es möglich: Die Links in der Seitenleiste werden jetzt automatisch aus der OPML-Datei generiert, die mein Feed-Reader exportiert. Das heißt, dass sich die Blogroll automatisch aktualisiert, wenn ich neue RSS-Feeds abonniere oder alte rauswerfe.</p>
	<p><a href="http://www.chipstips.com/?p=159">Link zum Plugin</a>.</p>
	<p><em>Nachtrag, 9. Aug. 2007:</em> Mit einem quick-and-dirty Skript (Code weiter unten) filtere ich jetzt die OPML-Datei, so dass nur gewisse Ordner angezeigt werden. Eine Variante des oben verlinkten Plugins zeigt dann die Blogroll auf <a href="http://www.fiket.de"><em>Fiket</em></a> als geschlossene Ordner an, die erst nach einem Klick aufklappen. (Kann mal bitte jemand kurz testen, ob das Ausklappen auch mit dem Internet Exploder funktioniert?) Die Links sind natürlich trotzdem immer im Quellcode und werden von vorbeikommenden Robotern registriert. Wer ohne JavaScript braust sieht gleich die ganze Liste.</p>
	<p>Jetzt noch das Skript: <span id="more-95"></span></p>
<pre>#!/usr/bin/python
INFILE="selbst ausfüllen"
OUTFILE="selbst ausfüllen"
file=open(INFILE)
lines=file.readlines()
file.close()
out=open(OUTFILE,'w')
discard=False
for line in lines:
    if "&lt;outline text&amp;quot; in line:
        if not ((&amp;quot;Blogs&amp;quot; in line) or (&amp;quot;Podcasts&amp;quot; in line)):
            discard=True
    if not discard: out.write(line)
    if &amp;quot;" in line: discard=False
out.close()
</pre>
	<p><strong>Achtung:</strong> Das erste <em>if</em> funktioniert nur, weil in meinem OPML-File die outlines mit den eigentlichen Links zwei Leerzeichen vor &#8220;text&#8221; haben und deswegen die Bedingung <em>nicht</em> zutrifft. YMMV! <img src='http://blog.tmy.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

 ]]></content:encoded>
			<wfw:commentRss>http://blog.tmy.se/2007/07/29/automatisierung/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blogroll</title>
		<link>http://blog.tmy.se/2007/02/07/blogroll/</link>
		<comments>http://blog.tmy.se/2007/02/07/blogroll/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 12:50:06 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[BlogBlog]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[OPML]]></category>

		<guid isPermaLink="false">http://blogblog.thomasmarquart.net/2007/02/07/blogroll/</guid>
		<description><![CDATA[Die Blogroll, die ich gerde aus meinem OPML-File importiert und etwas ausgemistet habe, ist lang geworden. Ich lese die aber wirklich alle!]]></description>
			<content:encoded><![CDATA[	<p>Die Blogroll, die ich gerde aus <a href="http://thomasmarquart.net/feeds.opml">meinem OPML-File</a> importiert und etwas ausgemistet habe, ist lang geworden. Ich lese die aber wirklich alle!</p>

 ]]></content:encoded>
			<wfw:commentRss>http://blog.tmy.se/2007/02/07/blogroll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

