<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on google reader full feed changer | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/19949</link>
    <description>Recent comments on userscript: google reader full feed changer</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>how to use it on youtube?, replied by morning</title>
      <description>&lt;p&gt;who can tell me how to set xpath for youtube?&lt;/p&gt;

&lt;p&gt;thanks&lt;/p&gt;</description>
      <pubDate>Thu, 25 Dec 2008 09:19:10 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:19445:86100</guid>
      <author>morning</author>
      <link>http://userscripts.org/posts/86100</link>
    </item>
    <item>
      <title>Feature request, replied by Leo Janeway</title>
      <description>&lt;p&gt;Thanks for this neat script.&lt;/p&gt;

&lt;p&gt;I'm wondering if you can add a feature described below:&lt;/p&gt;

&lt;p&gt;If the user specifies an excluded part by xpath, then the script removes it from the the content returned to Google Reader. For example, if the user is only interested in the texts of the content, not the images, he just needs to write as follwing:
&lt;br /&gt;	{ // dummy site
&lt;br /&gt;        url: 'http://dummysite.org',
&lt;br /&gt;        xpath: '//div[@class=&quot;content&quot;]',
&lt;br /&gt;        exc_path: '//div[@class=&quot;content&quot;]//img'
&lt;br /&gt;	},&lt;/p&gt;

&lt;p&gt;It's even better if xpath and exc_path can be arrays.&lt;/p&gt;

&lt;p&gt;I hope I've made my description understandable. &lt;/p&gt;

&lt;p&gt;Thanks very much!&lt;/p&gt;</description>
      <pubDate>Sun, 21 Dec 2008 14:47:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:19305:85226</guid>
      <author>Leo Janeway</author>
      <link>http://userscripts.org/posts/85226</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by heartilly</title>
      <description>&lt;p&gt;cool...
&lt;br /&gt;its working now..&lt;/p&gt;</description>
      <pubDate>Tue, 09 Dec 2008 03:47:04 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:82127</guid>
      <author>heartilly</author>
      <link>http://userscripts.org/posts/82127</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by morning</title>
      <description>&lt;p&gt;how to use on youtube?&lt;/p&gt;</description>
      <pubDate>Mon, 08 Dec 2008 04:50:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:81967</guid>
      <author>morning</author>
      <link>http://userscripts.org/posts/81967</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by basyura</title>
      <description>&lt;p&gt;so nice!&lt;/p&gt;</description>
      <pubDate>Sun, 07 Dec 2008 07:08:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:81844</guid>
      <author>basyura</author>
      <link>http://userscripts.org/posts/81844</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by fkoji</title>
      <description>&lt;p&gt;Thanks.
&lt;br /&gt;how about this?
&lt;br /&gt;&lt;a href=&quot;http://userscripts.org/scripts/diff/19949/49935&quot;&gt;http://userscripts.org/scripts/diff/19949/49935&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 06 Dec 2008 14:44:07 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:81708</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/81708</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by basyura</title>
      <description>&lt;p&gt;how about this ?&lt;/p&gt;

&lt;p&gt;*** 19949.user.js	Sat Dec  6 15:05:53 2008
&lt;br /&gt;--- google_reader_full_feed_.user.js	Sat Dec  6 15:17:10 2008
&lt;br /&gt;***************
&lt;br /&gt;*** 97,103 ****
&lt;br /&gt;  var FullFeed = {};
&lt;br /&gt;  FullFeed.link = '';
&lt;br /&gt;  FullFeed.getFocusedLink = function() {
&lt;br /&gt;!     return getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-title-link&quot;]/@href');
&lt;br /&gt;  }
&lt;br /&gt;  FullFeed.getCurrentEntry = function() {
&lt;br /&gt;      var link = this.getFocusedLink();
&lt;br /&gt;--- 97,103 ----
&lt;br /&gt;  var FullFeed = {};
&lt;br /&gt;  FullFeed.link = '';
&lt;br /&gt;  FullFeed.getFocusedLink = function() {
&lt;br /&gt;!     return getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-original&quot;]/@href');
&lt;br /&gt;  }
&lt;br /&gt;  FullFeed.getCurrentEntry = function() {
&lt;br /&gt;      var link = this.getFocusedLink();
&lt;br /&gt;***************
&lt;br /&gt;*** 114,120 ****
&lt;br /&gt;          source = getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-source-title&quot;]/@href');
&lt;br /&gt;      }
&lt;br /&gt;      else if (location.href.match(/#stream\/feed/)) {
&lt;br /&gt;!         source = getStringByXPath('//div[@id=&quot;chrome-stream-title&quot;]//a/@href');
&lt;br /&gt;      }
&lt;br /&gt;      if (!source) {
&lt;br /&gt;          return false;
&lt;br /&gt;--- 114,120 ----
&lt;br /&gt;          source = getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-source-title&quot;]/@href');
&lt;br /&gt;      }
&lt;br /&gt;      else if (location.href.match(/#stream\/feed/)) {
&lt;br /&gt;!         source = getStringByXPath('//span[@id=&quot;chrome-title&quot;]//a/@href');
&lt;br /&gt;      }
&lt;br /&gt;      if (!source) {
&lt;br /&gt;          return false;
&lt;br /&gt;***************
&lt;br /&gt;*** 162,168 ****
&lt;br /&gt;  
&lt;br /&gt;  function relativeToAbsolute(node, link) {
&lt;br /&gt;      var imgs = getElementsByXPath('//img', node);
&lt;br /&gt;!     if (imgs.length) {
&lt;br /&gt;          for (var i = 0; i &amp;lt; imgs.length; i++) {
&lt;br /&gt;              var src = imgs[i].getAttribute('src');
&lt;br /&gt;              if (src) {
&lt;br /&gt;--- 162,168 ----
&lt;br /&gt;  
&lt;br /&gt;  function relativeToAbsolute(node, link) {
&lt;br /&gt;      var imgs = getElementsByXPath('//img', node);
&lt;br /&gt;!     if (imgs != null &amp;amp;&amp;amp; imgs.length) {
&lt;br /&gt;          for (var i = 0; i &amp;lt; imgs.length; i++) {
&lt;br /&gt;              var src = imgs[i].getAttribute('src');
&lt;br /&gt;              if (src) {&lt;/p&gt;</description>
      <pubDate>Sat, 06 Dec 2008 06:18:51 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:81647</guid>
      <author>basyura</author>
      <link>http://userscripts.org/posts/81647</link>
    </item>
    <item>
      <title>Does it work on new google reader ?, replied by heartilly</title>
      <description>&lt;p&gt;as topic..&lt;/p&gt;

&lt;p&gt;It wont work on my mechine &lt;/p&gt;

&lt;p&gt;thanks&lt;/p&gt;</description>
      <pubDate>Sat, 06 Dec 2008 03:13:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18638:81627</guid>
      <author>heartilly</author>
      <link>http://userscripts.org/posts/81627</link>
    </item>
    <item>
      <title>Archived Comments, replied by ashuai</title>
      <description>&lt;p&gt;&lt;code&gt;
&lt;br /&gt;    var imgs = getElementsByXPath('//img', node);
&lt;br /&gt;    if (imgs.length) {}
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;if not found any image, you will meet exception.&lt;/p&gt;</description>
      <pubDate>Tue, 07 Oct 2008 05:43:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22521</guid>
      <author>ashuai</author>
      <link>http://userscripts.org/posts/22521</link>
    </item>
    <item>
      <title>Archived Comments, replied by xiaolu</title>
      <description>&lt;p&gt;I can not get it to work under my google reader. Would you pls add some more detailed user manual onto this? Thank you.&lt;/p&gt;</description>
      <pubDate>Fri, 29 Aug 2008 05:26:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22522</guid>
      <author>xiaolu</author>
      <link>http://userscripts.org/posts/22522</link>
    </item>
    <item>
      <title>Archived Comments, replied by heartilly</title>
      <description>&lt;p&gt;thank you very much .. 
&lt;br /&gt;and ur script too...&lt;/p&gt;</description>
      <pubDate>Thu, 28 Aug 2008 12:33:20 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22523</guid>
      <author>heartilly</author>
      <link>http://userscripts.org/posts/22523</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;@shawnste
&lt;br /&gt; I found same problem, but I' ve not still resolve.&lt;/p&gt;

&lt;p&gt;@heartilly
&lt;br /&gt;I think that you can use Firefox add-on &quot;RefControll&quot; for your problem.
&lt;br /&gt;&lt;a href=&quot;http://addons.mozilla.org/firefox/addon/953&quot;&gt;http://addons.mozilla.org/firefox/addon/953&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 Aug 2008 10:50:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22524</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22524</link>
    </item>
    <item>
      <title>Archived Comments, replied by heartilly</title>
      <description>&lt;p&gt;Thank considering my comment, version 0.70 just work great for my daily feeds.&lt;/p&gt;

&lt;p&gt;lately i found another problem for loading images.
&lt;br /&gt;Some image which can only be loaded under same domain. How can we get rid of this problem? and even we r under google.com we r able to load 3rd party images?&lt;/p&gt;</description>
      <pubDate>Thu, 28 Aug 2008 09:10:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22525</guid>
      <author>heartilly</author>
      <link>http://userscripts.org/posts/22525</link>
    </item>
    <item>
      <title>Archived Comments, replied by shawnster</title>
      <description>&lt;p&gt;i found that if the source include a youtube video, the video itself cannot be showed.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Aug 2008 17:22:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22526</guid>
      <author>shawnster</author>
      <link>http://userscripts.org/posts/22526</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;version 0.70
&lt;br /&gt;convert image relative path to absolute path&lt;/p&gt;

&lt;p&gt;Notice:
&lt;br /&gt;If you re-install this script, you should save your SITE_INFO to other file.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Aug 2008 11:21:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22527</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22527</link>
    </item>
    <item>
      <title>Archived Comments, replied by heartilly</title>
      <description>&lt;p&gt;I am very satisfied after 10min trying for this script, somehow i found that some images which linked with relative path is not been display.&lt;/p&gt;

&lt;p&gt;for an Exemple  &lt;code&gt;&amp;lt;img src=&quot;images/thumnails/12345.jpg&quot; /&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;it's my problem ? or ... anybody facing the same problem too ?&lt;/p&gt;</description>
      <pubDate>Tue, 05 Aug 2008 20:01:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22528</guid>
      <author>heartilly</author>
      <link>http://userscripts.org/posts/22528</link>
    </item>
    <item>
      <title>Archived Comments, replied by MNakano</title>
      <description>&lt;p&gt;I've written a patch to load a whole entry when it's loaded (currently, when it's focused) in AUTO_FETCH mode so that you won't feel lag to load external contents.&lt;/p&gt;

&lt;p&gt;+++++++++++++++++++++++++++++++++++++++++++++++++
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;-- google_reader_full_feed_.js 2008-06-30 20:28:53 +0100
&lt;br /&gt;+++ google_reader_full_feed_.user.js    2008-06-30 21:00:19 +0100
&lt;br /&gt;@@ -68,22 +68,30 @@
&lt;br /&gt; var AUTO_FETCH = true;
&lt;br /&gt; var FullFeed = {};
&lt;br /&gt; FullFeed.link = '';
&lt;br /&gt;+FullFeed.parentKey = '';
&lt;br /&gt;+FullFeed.loaded = 0;
&lt;br /&gt;+
&lt;br /&gt; FullFeed.getFocusedLink = function() {
&lt;br /&gt;     return getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-title-link&quot;]/@href');
&lt;br /&gt; }
&lt;br /&gt;-FullFeed.getCurrentEntry = function() {
&lt;br /&gt;-    var link = this.getFocusedLink();
&lt;br /&gt;+
&lt;br /&gt;+FullFeed.getCurrentEntry = function(entry) {
&lt;br /&gt;+    if (!entry) {
&lt;br /&gt;+      entry = getFirstElementByXPath('//div[@id=&quot;current-entry&quot;]');
&lt;br /&gt;+    }
&lt;br /&gt;+    
&lt;br /&gt;+    var link = getStringByXPath('.//a[@class=&quot;entry-title-link&quot;]/@href', entry);
&lt;br /&gt;     this.link = link;
&lt;br /&gt;-    var body = getFirstElementByXPath('//div[@id=&quot;current-entry&quot;]//div[@class=&quot;entry-body&quot;]');
&lt;br /&gt;+    var body = getFirstElementByXPath('.//div[@class=&quot;entry-body&quot;]', entry);
&lt;br /&gt;     if (!body) {
&lt;br /&gt;-        body= getFirstElementByXPath('//div[@id=&quot;current-entry&quot;]//div[@class=&quot;entry-body entry-body-empty&quot;]');
&lt;br /&gt;+        body= getFirstElementByXPath('.//div[@class=&quot;entry-body entry-body-empty&quot;]', entry);
&lt;br /&gt;     }
&lt;br /&gt;     var source = '';
&lt;br /&gt;     if (location.href.match(/#stream\/user/)) {
&lt;br /&gt;-        source = getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-source-title&quot;]/@href');
&lt;br /&gt;+        source = getStringByXPath('.//a[@class=&quot;entry-source-title&quot;]/@href', entry);
&lt;br /&gt;     }
&lt;br /&gt;     else if (location.href.match(/#search\//)) {
&lt;br /&gt;-        source = getStringByXPath('//div[@id=&quot;current-entry&quot;]//a[@class=&quot;entry-source-title&quot;]/@href');
&lt;br /&gt;+        source = getStringByXPath('.//a[@class=&quot;entry-source-title&quot;]/@href', entry);
&lt;br /&gt;     }
&lt;br /&gt;     else if (location.href.match(/#stream\/feed/)) {
&lt;br /&gt;         source = getStringByXPath('//div[@id=&quot;chrome-stream-title&quot;]//a/@href');
&lt;br /&gt;@@ -182,15 +190,26 @@
&lt;br /&gt; }
&lt;br /&gt; 
&lt;br /&gt; if (AUTO_FETCH) {
&lt;br /&gt;-    var interval = window.setInterval(
&lt;br /&gt;-        function() {
&lt;br /&gt;-            var focusedLink = FullFeed.getFocusedLink();
&lt;br /&gt;-            if (focusedLink != FullFeed.link) {
&lt;br /&gt;-                FullFeed.getCurrentEntry();
&lt;br /&gt;-            }
&lt;br /&gt;-        },
&lt;br /&gt;-        500
&lt;br /&gt;+  function autofetch() {
&lt;br /&gt;+    var key = document.location.href;
&lt;br /&gt;+    if (FullFeed.parentKey != key) {
&lt;br /&gt;+        FullFeed.loaded = 0;
&lt;br /&gt;+        FullFeed.parentKey = key;
&lt;br /&gt;+    }
&lt;br /&gt;+
&lt;br /&gt;+    var entries = document.evaluate('//div[contains(concat(&quot; &quot;,normalize-space(@class),&quot; &quot;), &quot; entry &quot;)]', document, null,  XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
&lt;br /&gt;+
&lt;br /&gt;+    for (var i = FullFeed.loaded ; i &amp;lt; entries.snapshotLength ; i++) {
&lt;br /&gt;+      FullFeed.getCurrentEntry(entries.snapshotItem(i));
&lt;br /&gt;+    }
&lt;br /&gt;+    FullFeed.loaded = entries.snapshotLength;
&lt;br /&gt;+
&lt;br /&gt;+    window.setTimeout(
&lt;br /&gt;+      autofetch,
&lt;br /&gt;+      500
&lt;br /&gt;     );
&lt;br /&gt;+  }
&lt;br /&gt;+  autofetch();
&lt;br /&gt; }
&lt;br /&gt; 
&lt;br /&gt; document.addEventListener(
&lt;br /&gt;&lt;/code&gt;
&lt;br /&gt;+++++++++++++++++++++++++++++++++++++++++++++++++&lt;/p&gt;

&lt;p&gt;thank you for the great script!&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jun 2008 20:02:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22529</guid>
      <author>MNakano</author>
      <link>http://userscripts.org/posts/22529</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;Thank you for all, and now we released version 0.60.
&lt;br /&gt;- Resolved an issue with entry-body-empty
&lt;br /&gt;- Multi xpath node&lt;/p&gt;

&lt;p&gt;# sorry, we haven't fix redirect link issue yet..&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jun 2008 03:27:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22530</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22530</link>
    </item>
    <item>
      <title>Archived Comments, replied by ftofficer</title>
      <description>&lt;p&gt;Cool script. Thank you fkoji.&lt;/p&gt;

&lt;p&gt;But there are some issues for empty-content feeds such as wireshark-dev mail list (&lt;a href=&quot;http://www.wireshark.org/lists/wireshark-dev.rss&quot;&gt;http://www.wireshark.org/lists/wireshark-dev.rss&lt;/a&gt;). I patched the script to make it work:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
&lt;br /&gt;diff google_reader_full_feed_fixed.user.js  google_reader_full_feed.user.js
&lt;br /&gt;93,101d77
&lt;br /&gt;&amp;lt;     if (!body) {
&lt;br /&gt;&amp;lt;         body = getFirstElementByXPath('//div[@id=&quot;current-entry&quot;]//div[@class=&quot;entry-body entry-body-empty&quot;]');
&lt;br /&gt;&amp;lt;         if (!body) {
&lt;br /&gt;&amp;lt;             return false;
&lt;br /&gt;&amp;lt;         }
&lt;br /&gt;&amp;lt;         else {
&lt;br /&gt;&amp;lt;             body.setAttribute('class', 'entry-body');
&lt;br /&gt;&amp;lt;         }
&lt;br /&gt;&amp;lt;     }
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jun 2008 10:03:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22531</guid>
      <author>ftofficer</author>
      <link>http://userscripts.org/posts/22531</link>
    </item>
    <item>
      <title>Archived Comments, replied by JX Wong</title>
      <description>&lt;p&gt;The script is nice!&lt;/p&gt;

&lt;p&gt;But it's just load the first node of dom, I think it better to load much node, like this:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;xpath: ['//div[@class=&quot;entryBody&quot;] | //div[@class=&quot;commentTitle&quot;] | //div[@class=&quot;comment&quot;]']
&lt;br /&gt;&lt;/code&gt;
&lt;br /&gt;the change is simple:
&lt;br /&gt;&lt;pre&gt;
var contents = getElementsByXPath(SITE_INFO[i].xpath, htmldoc);

		if (contents == null) return;

		while (body.firstChild) {
				body.removeChild(body.firstChild);
		}

		for (var num = 0; num &amp;lt; contents.length; num++) {
			var content = contents[num];
			content = addTargetAttr(content);
			body.appendChild(content);
		}
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jun 2008 11:03:32 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22532</guid>
      <author>JX Wong</author>
      <link>http://userscripts.org/posts/22532</link>
    </item>
    <item>
      <title>Archived Comments, replied by wolfie_liu</title>
      <description>&lt;p&gt;It's a great script!
&lt;br /&gt;Except for that you have to click the item so that it can load, hope you can fix it so when you open reader, the items load automatically.
&lt;br /&gt;Besides, if the link of the item in the reader get redirected after clicking, it won't work(&lt;a href=&quot;http://www.cnbeta.com&quot;&gt;http://www.cnbeta.com&lt;/a&gt;), hope you can fix that too.
&lt;br /&gt;&#12354;&#12426;&#12364;&#12392;&#12358;&#65374;&#65281;&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jun 2008 06:33:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22533</guid>
      <author>wolfie_liu</author>
      <link>http://userscripts.org/posts/22533</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;ver 0.50
&lt;br /&gt;Now, we can get contents automatically, without pressing z key.&lt;/p&gt;</description>
      <pubDate>Sat, 08 Mar 2008 17:32:32 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22534</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22534</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;ver 0.43
&lt;br /&gt;Now, we use orverrideMimeType.&lt;/p&gt;</description>
      <pubDate>Sat, 08 Mar 2008 11:54:29 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22535</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22535</link>
    </item>
    <item>
      <title>Archived Comments, replied by Ivan Markovic</title>
      <description>&lt;p&gt;Thank you very much, your script makes life so much easier ;)&lt;/p&gt;</description>
      <pubDate>Sat, 08 Mar 2008 10:01:59 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22536</guid>
      <author>Ivan Markovic</author>
      <link>http://userscripts.org/posts/22536</link>
    </item>
    <item>
      <title>Archived Comments, replied by fkoji</title>
      <description>&lt;p&gt;If you update this script, you should backup SITE_INFO.&lt;/p&gt;</description>
      <pubDate>Fri, 07 Mar 2008 17:55:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10412:22537</guid>
      <author>fkoji</author>
      <link>http://userscripts.org/posts/22537</link>
    </item>
  </channel>
</rss>
