<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussions on scripts by gollum | Userscripts.org</title>
    <description>Recent posts on all scripts by gollum at userscripts.org</description>
    <link>http://userscripts.org/users/35791/scripts</link>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>broken on a forum..., replied by Peter Harkins</title>
      <description>&lt;p&gt;Got ift fixed, your comment about &quot;higher in the chain&quot; led me to it. I can't write an include line for just the topic list or just the threads, so both were running. But the topic list's selector doesn't work with this theme. It was your Unpaginate phpbbV3 topics that was producing the error message.&lt;/p&gt;

&lt;p&gt;I changed one line of code to fix it:
&lt;br /&gt;var posts = '//ul[contains(@class,&quot;topics&quot;)]/li';&lt;/p&gt;

&lt;p&gt;I just removed the bit about a forumbg class, that didn't exist on this forum.&lt;/p&gt;

&lt;p&gt;Thanks for your help and for sharing these scripts.&lt;/p&gt;</description>
      <pubDate>Sun, 07 Jun 2009 16:19:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28295:129854</guid>
      <author>Peter Harkins</author>
      <link>http://userscripts.org/posts/129854</link>
    </item>
    <item>
      <title>broken on a forum..., replied by gollum</title>
      <description>&lt;p&gt;Hi Peter, I re-installed everything ... Johan's consumer script, then this script. Added &lt;a href=&quot;http://a320.freeforums.org/&quot;&gt;http://a320.freeforums.org/&lt;/a&gt;* to &quot;Included Pages&quot; in &quot;Manage User Scripts&quot;, loaded your page, and paginator works ok for me.&lt;/p&gt;

&lt;p&gt;Do you have other scripts before this one (higher in the chain) modifying the page at all?&lt;/p&gt;</description>
      <pubDate>Sun, 07 Jun 2009 02:14:29 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28295:129677</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/129677</link>
    </item>
    <item>
      <title>broken on a forum..., replied by Peter Harkins</title>
      <description>&lt;p&gt;Howdy, thanks for sharing the code. I tried running it on eg. &lt;a href=&quot;http://a320.freeforums.org/new-style-psp-confirmed-with-pics-t486.html&quot;&gt;http://a320.freeforums.org/new-style-psp-confir...&lt;/a&gt; with the Included pages set to &lt;a href=&quot;http://a320.freeforums.org/&quot;&gt;http://a320.freeforums.org/&lt;/a&gt;* but it doesn't work. The console just outputs 'Unpaginator found no items matching &quot;undefined&quot;'.&lt;/p&gt;

&lt;p&gt;Any idea how to fix this? I've tinkered with it a bit, checked the XPath queries with FireFinder, and everything looks OK, I can't see where it's breaking.&lt;/p&gt;</description>
      <pubDate>Sat, 06 Jun 2009 15:22:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28295:129553</guid>
      <author>Peter Harkins</author>
      <link>http://userscripts.org/posts/129553</link>
    </item>
    <item>
      <title>Edited to unpaginate threads as well, replied by Peter Harkins</title>
      <description>&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name         Unpaginate vbulletin topics and threads
&lt;br /&gt;// @namespace    &lt;a href=&quot;http://userscripts.org/users/35791/scripts&quot;&gt;http://userscripts.org/users/35791/scripts&lt;/a&gt;
&lt;br /&gt;// @url          &lt;a href=&quot;http://userscripts.org/scripts/source/29666.user.js&quot;&gt;http://userscripts.org/scripts/source/29666.use...&lt;/a&gt;
&lt;br /&gt;// @description  Marks up vbulletin fora and sub-fora pages(forum topics) with the pagination microformat.
&lt;br /&gt;// @require      &lt;a href=&quot;http://ecmanaut.googlecode.com/svn/trunk/lib/gm/$x$X.js&quot;&gt;http://ecmanaut.googlecode.com/svn/trunk/lib/gm...&lt;/a&gt;
&lt;br /&gt;// @require      &lt;a href=&quot;http://ecmanaut.googlecode.com/svn/trunk/lib/addmetainfo.js&quot;&gt;http://ecmanaut.googlecode.com/svn/trunk/lib/ad...&lt;/a&gt;
&lt;br /&gt;// @require      &lt;a href=&quot;http://ecmanaut.googlecode.com/svn/trunk/lib/gm/unpaginate.js&quot;&gt;http://ecmanaut.googlecode.com/svn/trunk/lib/gm...&lt;/a&gt;
&lt;br /&gt;// @include      *
&lt;br /&gt;// ==/UserScript==&lt;/p&gt;

&lt;p&gt;// This script produces the microformat consumed by Johan Sundstr&#246;m's - 
&lt;br /&gt;//    &quot;Unpaginate pagination microformated web pages&quot; -
&lt;br /&gt;// YOU NEED TO INSTALL THE FOLLOWING IF THIS SCRIPT IS TO DO ANYTHING USEFUL!!
&lt;br /&gt;// &lt;a href=&quot;http://userscripts.org/scripts/source/23175.user.js&quot;&gt;http://userscripts.org/scripts/source/23175.use...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;var vb = document.getElementsByName(&quot;generator&quot;);
&lt;br /&gt;if (vb.length &gt; 0 &amp;amp;&amp;amp; vb[0].content.match(/^vBulletin/i)) {
&lt;br /&gt;  if (document.getElementById(&quot;threadslist&quot;)) {
&lt;br /&gt;    // unpaginate topics
&lt;br /&gt;    var posts = '(id(&quot;threadslist&quot;)/tbody)[last()]/tr[not(child::td[@class=&quot;sticky&quot;]) and not(child::td[@class=&quot;thead&quot;])]';
&lt;br /&gt;    var next = '(//div[@class=&quot;pagenav&quot;])[last()]/table/tbody/tr/td/a[.=&quot;&gt;&quot;]';
&lt;br /&gt;    unpaginate(posts, next, '(//div[@class=&quot;pagenav&quot;])[last()]/table');
&lt;br /&gt;  } &lt;/p&gt;

&lt;p&gt;  if (document.getElementById(&quot;posts&quot;)) {
&lt;br /&gt;    // unpaginate threads
&lt;br /&gt;    var posts = 'id(&quot;posts&quot;)/div/div/div/div';
&lt;br /&gt;    var next = '(//div[@class=&quot;pagenav&quot;])[last()]/table/tbody/tr/td/a[.=&quot;&gt;&quot;]';
&lt;br /&gt;    unpaginate(posts, next, '(//div[@class=&quot;pagenav&quot;])[last()]/table');
&lt;br /&gt;  }
&lt;br /&gt;}&lt;/p&gt;</description>
      <pubDate>Thu, 28 May 2009 01:48:19 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27731:126526</guid>
      <author>Peter Harkins</author>
      <link>http://userscripts.org/posts/126526</link>
    </item>
    <item>
      <title>Stopped working, replied by gollum</title>
      <description>&lt;p&gt;Updated .... thanks &lt;strong&gt;@Alexo&lt;/strong&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:22:00 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:24735:110861</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/110861</link>
    </item>
    <item>
      <title>Stopped working, replied by Alexo</title>
      <description>&lt;p&gt;Never mind, figured it out.
&lt;br /&gt;Replace &quot;zc-genre-Movie&quot; with &quot;zc-g-M&quot;.&lt;/p&gt;</description>
      <pubDate>Sun, 12 Apr 2009 16:53:59 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:24735:110435</guid>
      <author>Alexo</author>
      <link>http://userscripts.org/posts/110435</link>
    </item>
    <item>
      <title>Stopped working, replied by Alexo</title>
      <description>&lt;p&gt;The script does not work anymore.
&lt;br /&gt;Can you please update it?&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;</description>
      <pubDate>Sun, 12 Apr 2009 16:48:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:24735:110433</guid>
      <author>Alexo</author>
      <link>http://userscripts.org/posts/110433</link>
    </item>
    <item>
      <title>Aaargh, replied by gollum</title>
      <description>&lt;p&gt;Not working for now... need to investigate the changes. Hopefully be back soon :\&lt;/p&gt;</description>
      <pubDate>Sun, 22 Mar 2009 11:11:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:23610:104634</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/104634</link>
    </item>
    <item>
      <title>Archived Comments, replied by C4rter</title>
      <description>&lt;p&gt;Hi fuxxi,&lt;/p&gt;

&lt;p&gt;I made a simple Version for this function for cinefacts. If you still want it, contact me in Cinefacts or look into my thread on cinefacts. Nickname on cinefacts is the same.&lt;/p&gt;</description>
      <pubDate>Fri, 31 Oct 2008 18:28:48 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49037</guid>
      <author>C4rter</author>
      <link>http://userscripts.org/posts/49037</link>
    </item>
    <item>
      <title>Archived Comments, replied by RazorXL</title>
      <description>&lt;p&gt;Thanks for your work, this is awesome.
&lt;br /&gt;Here's a script-enabled Zap2it listings screencap for anyone who's interested in this script:
&lt;br /&gt;&lt;a href=&quot;http://img301.imageshack.us/img301/2632/zap2itimdblinkedra9.jpg&quot;&gt;http://img301.imageshack.us/img301/2632/zap2iti...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 17 Sep 2008 05:03:54 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16418:70317</guid>
      <author>RazorXL</author>
      <link>http://userscripts.org/posts/70317</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;Try a url like
&lt;br /&gt;&lt;code&gt;http://digg.com/search?section=all&amp;amp;s=greasemonkey&lt;/code&gt;
&lt;br /&gt;scroll down the page ... did it append the next page of results ?&lt;/p&gt;

&lt;p&gt;No??
&lt;br /&gt;See above notes: You will also need to install &lt;strong&gt;&lt;em&gt;Unpaginate pagination microformated web pages&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 02 Aug 2008 23:30:14 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16225:69125</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/69125</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jay Turner</title>
      <description>&lt;p&gt;it dont do anything&lt;/p&gt;</description>
      <pubDate>Sat, 02 Aug 2008 09:56:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16225:69126</guid>
      <author>Jay Turner</author>
      <link>http://userscripts.org/posts/69126</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;Geez I&amp;apos;m slow... - should have seen it was easier to use xpath to ignore the header row. Fixed&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jul 2008 04:07:15 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16508:70799</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/70799</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;If you browse authors with lots of scripts ... &lt;strong&gt;add&lt;/strong&gt;&lt;pre&gt;&lt;code&gt;// @include  http://userscripts.org/users/*/scripts*&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jun 2008 12:01:00 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16508:70800</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/70800</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;Thanks Johan,&lt;br /&gt;Fixed to GM 0.8, plus rewrote it to be more of a clone of yours. r.e. spacer - mine needs to remove TH header from appended pages.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jun 2008 07:44:12 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16508:70801</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/70801</link>
    </item>
    <item>
      <title>Archived Comments, replied by Johan Sundstr&#246;m</title>
      <description>&lt;p&gt;I think the site css changed after your script was created; I made one of my own &lt;a href=&quot;http://userscripts.org/scripts/show/29130&quot;&gt;here&lt;/a&gt;, adding a spacer between pages too. (And if you're avoiding @require to let GM 0.7 users run the script too, I wouldn't bother now that GM 0.8 has gone public.)&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jun 2008 23:21:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16508:70802</guid>
      <author>Johan Sundstr&#246;m</author>
      <link>http://userscripts.org/posts/70802</link>
    </item>
    <item>
      <title>Archived Comments, replied by fuxxi</title>
      <description>&lt;p&gt;Thank You, ill hope the problem is easy to fix !&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jun 2008 20:04:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49038</guid>
      <author>fuxxi</author>
      <link>http://userscripts.org/posts/49038</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;Sorry fuxxi, I noticed that the settings checkbox showed up on &lt;a href=&quot;http://forum.cinefacts.de/schnaeppchen_und_haendler_dvd_dvd_hardware/&quot;&gt;http://forum.cinefacts.de/schnaeppchen_und_haen...&lt;/a&gt; and didn't investigate any further. I should have checked, - as you say - unless the code finds links with href containing &lt;code&gt;/showthread.php\?goto=newpost/&lt;/code&gt; the button will not display.
&lt;p&gt;I'll have to investigate to see if I can get around this.
&lt;p&gt;That still leaves the problem of sub-fora header pages like &lt;a href=&quot;http://forum.cinefacts.de/die_haendler_die_schnaeppchen/&quot;&gt;http://forum.cinefacts.de/die_haendler_die_schn...&lt;/a&gt; don't know what I can do about those. 
&lt;p&gt;Too tired tonight to think clearly, and will be busy for the next few days, but I'll have a look when I can get to it.&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jun 2008 11:28:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49039</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/49039</link>
    </item>
    <item>
      <title>Archived Comments, replied by fuxxi</title>
      <description>&lt;p&gt;HI gollum,&lt;/p&gt;

&lt;p&gt;sure i add it.. but the structure is different from normal vbulletins&lt;/p&gt;

&lt;p&gt;Normal vbb forum structure is like:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://forum.x.de/forumdisplay.php?f=xx&quot;&gt;http://forum.x.de/forumdisplay.php?f=xx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;but on forum.cinefacts.de its like:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://forum.cinefacts.de/die_haendler_die_schnaeppchen/&quot;&gt;http://forum.cinefacts.de/die_haendler_die_schn...&lt;/a&gt;
&lt;br /&gt;&lt;a href=&quot;http://forum.cinefacts.de/schnaeppchen_und_haendler_dvd_dvd_hardware/&quot;&gt;http://forum.cinefacts.de/schnaeppchen_und_haen...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;no more forumdisplay.php in the links and it no longer displays the open new topics link&lt;/p&gt;

&lt;p&gt;maybe you want to register and check it out? Please :)&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jun 2008 21:48:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49040</guid>
      <author>fuxxi</author>
      <link>http://userscripts.org/posts/49040</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;Hi &lt;b&gt;fuxxi&lt;/b&gt;, have you added &lt;a href=&quot;http://forum.cinefacts.de/&quot;&gt;http://forum.cinefacts.de/&lt;/a&gt;* as an include?&lt;/p&gt;

&lt;p&gt;Not being a member, I'm unable to test for the appearance/functioning of the &quot;Open new posts&quot; button.&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jun 2008 12:56:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49041</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/49041</link>
    </item>
    <item>
      <title>Archived Comments, replied by fuxxi</title>
      <description>&lt;p&gt;Hi again,&lt;/p&gt;

&lt;p&gt;could/would you update the script for sites like:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://forum.cinefacts.de/&quot;&gt;http://forum.cinefacts.de/&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;Would be great ! :D&lt;/p&gt;</description>
      <pubDate>Thu, 12 Jun 2008 18:07:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49042</guid>
      <author>fuxxi</author>
      <link>http://userscripts.org/posts/49042</link>
    </item>
    <item>
      <title>Archived Comments, replied by gollum</title>
      <description>&lt;p&gt;&lt;strong&gt;jfty.009260&lt;/strong&gt;, naturally there will be js conflicts on that page.&lt;br /&gt;Test this script by turning of Javascript - WebDeveloper -&gt; Disable -&gt; Disable Javascript -&gt; All Javascript.&lt;/p&gt;</description>
      <pubDate>Wed, 21 May 2008 01:18:06 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10855:24980</guid>
      <author>gollum</author>
      <link>http://userscripts.org/posts/24980</link>
    </item>
    <item>
      <title>Archived Comments, replied by jfty.009260</title>
      <description>&lt;p&gt;It doesn't work on the demo page where it was adapted from.&lt;/p&gt;</description>
      <pubDate>Tue, 20 May 2008 13:47:44 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10855:24981</guid>
      <author>jfty.009260</author>
      <link>http://userscripts.org/posts/24981</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mithrandir</title>
      <description>&lt;p&gt;Hello gollum, &lt;/p&gt;

&lt;p&gt;i think the new version will work at my computer too. Thank you!&lt;/p&gt;

&lt;p&gt;Because i don't need the form to change the values i'm still using the old version.&lt;/p&gt;

&lt;p&gt;I added one line at:
&lt;br /&gt;&lt;pre&gt;    function(e) {
      if (e &amp;amp;&amp;amp; e.target) e.preventDefault();
      else window.event.returnValue = false;
      
      if (useTimeout) { // add a delay before/between opening tabs&lt;/pre&gt;&lt;pre&gt;    function(e) {
      if (maxlnks==0) this.style.display = 'none';
      if (e &amp;amp;&amp;amp; e.target) e.preventDefault();
      else window.event.returnValue = false;
      if (useTimeout) {&lt;/pre&gt;
&lt;br /&gt;So the button will vanish on click-action (but maxlnks must be ==0).&lt;/p&gt;</description>
      <pubDate>Sat, 12 Apr 2008 09:06:23 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49043</guid>
      <author>Mithrandir</author>
      <link>http://userscripts.org/posts/49043</link>
    </item>
    <item>
      <title>Archived Comments, replied by fuxxi</title>
      <description>&lt;p&gt;Thank You, working perfect now !&lt;/p&gt;</description>
      <pubDate>Tue, 04 Mar 2008 07:38:40 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14201:49044</guid>
      <author>fuxxi</author>
      <link>http://userscripts.org/posts/49044</link>
    </item>
  </channel>
</rss>
