<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on ExpandSpiegel | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/3796</link>
    <description>Recent comments on userscript: ExpandSpiegel</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by williampcasey</title>
      <description>&lt;p&gt;Hmm This doesn't seem to work for &lt;a href=&quot;http://www.spiegel.de/international/&quot;&gt;http://www.spiegel.de/international/&lt;/a&gt;* , even if I add it manually. Any chance you could write a script with the same function for the English-language site?&lt;/p&gt;</description>
      <pubDate>Mon, 02 Apr 2007 02:07:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14414:52261</guid>
      <author>williampcasey</author>
      <link>http://userscripts.org/posts/52261</link>
    </item>
    <item>
      <title>Archived Comments, replied by Flo F&#252;rstenberger</title>
      <description>&lt;p&gt;Hah, that looks great :-D&lt;/p&gt;

&lt;p&gt;Anyway, feel free to contact me (use my firstname at my lastname dot de for email) for   the file or just take the changes for your script.&lt;/p&gt;</description>
      <pubDate>Sun, 17 Sep 2006 14:29:04 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14414:52262</guid>
      <author>Flo F&#252;rstenberger</author>
      <link>http://userscripts.org/posts/52262</link>
    </item>
    <item>
      <title>Archived Comments, replied by Flo F&#252;rstenberger</title>
      <description>&lt;p&gt;Thanks Max, I use both your Heise and Spiegel scripts and got to like them a lot. &lt;/p&gt;

&lt;p&gt;I've made some modifications to ExpandSpiegel after the layout change in September 2006 (Spiegel now uses DIVs and even offers an 800px style for the main spContainer DIV, also I only show the breadcrumbs at the top of the article page instead of the full blown navigation bar).&lt;/p&gt;

&lt;p&gt;I'll try to attach my changes here:&lt;/p&gt;

&lt;p&gt;// ==UserScript==&lt;/p&gt;

&lt;p&gt;// @name           ExpandSpiegel&lt;/p&gt;

&lt;p&gt;// @description    Removes right column and navigation bar on Spiegel.de and expands left one&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/politik/&quot;&gt;http://www.spiegel.de/politik/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/wirtschaft/&quot;&gt;http://www.spiegel.de/wirtschaft/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/panorama/&quot;&gt;http://www.spiegel.de/panorama/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/sport/&quot;&gt;http://www.spiegel.de/sport/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/kultur/&quot;&gt;http://www.spiegel.de/kultur/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/netzwelt/&quot;&gt;http://www.spiegel.de/netzwelt/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/wissenschaft/&quot;&gt;http://www.spiegel.de/wissenschaft/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/unispiegel/&quot;&gt;http://www.spiegel.de/unispiegel/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/schulspiegel/&quot;&gt;http://www.spiegel.de/schulspiegel/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/reise/&quot;&gt;http://www.spiegel.de/reise/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// @include        &lt;a href=&quot;http://www.spiegel.de/auto/&quot;&gt;http://www.spiegel.de/auto/&lt;/a&gt;*&lt;/p&gt;

&lt;p&gt;// ==/UserScript==&lt;/p&gt;

&lt;p&gt;var mustPerish = document.evaluate(&quot;//*[@id='spHeader'] | //div[@class='spSpecialArticles']&quot;,&lt;/p&gt;

&lt;p&gt;                  document,&lt;/p&gt;

&lt;p&gt;                  null,&lt;/p&gt;

&lt;p&gt;                  XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,&lt;/p&gt;

&lt;p&gt;                  null);&lt;/p&gt;

&lt;p&gt;                  &lt;/p&gt;

&lt;p&gt;var mustGrow = document.evaluate(&quot;//div[@id='spContainer']&quot;,&lt;/p&gt;

&lt;p&gt;                  document,&lt;/p&gt;

&lt;p&gt;                  null,&lt;/p&gt;

&lt;p&gt;                  XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,&lt;/p&gt;

&lt;p&gt;                  null);                  &lt;/p&gt;

&lt;p&gt;                 &lt;/p&gt;

&lt;p&gt;var myVar;&lt;/p&gt;

&lt;p&gt;if (mustPerish) {&lt;/p&gt;

&lt;p&gt;  for (var i = 0; i &amp;lt; mustPerish.snapshotLength; i++) {&lt;/p&gt;

&lt;p&gt;    myVar = mustPerish.snapshotItem(i);    &lt;/p&gt;

&lt;p&gt;    myVar.parentNode.removeChild(myVar);&lt;/p&gt;

&lt;p&gt;  }&lt;/p&gt;

&lt;p&gt;} &lt;/p&gt;

&lt;p&gt;if (mustGrow) {&lt;/p&gt;

&lt;p&gt;  for (var i = 0; i &amp;lt; mustGrow.snapshotLength; i++) {&lt;/p&gt;

&lt;p&gt;    myVar = mustGrow.snapshotItem(i);    &lt;/p&gt;

&lt;p&gt;    myVar.setAttribute('class','spFullScreen');&lt;/p&gt;

&lt;p&gt;  }&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;</description>
      <pubDate>Sun, 17 Sep 2006 14:26:11 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14414:52263</guid>
      <author>Flo F&#252;rstenberger</author>
      <link>http://userscripts.org/posts/52263</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:21 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14414:52260</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/52260</link>
    </item>
  </channel>
</rss>
