<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on AutoPagerize | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/8551</link>
    <description>Recent comments on userscript: AutoPagerize</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>not working globally, replied by Sherpa Josh</title>
      <description>&lt;p&gt;So just started today, the script doesn't seem to be working on any site I go to. I tried uninstalling the script and reinstalling. It used to work great on the xda forums but now doesn't do anything. Any ideas?&lt;/p&gt;</description>
      <pubDate>Mon, 12 Dec 2011 14:44:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:95217:407863</guid>
      <author>Sherpa Josh</author>
      <link>http://userscripts.org/posts/407863</link>
    </item>
    <item>
      <title>Stopped working Nov/24, replied by Dojima</title>
      <description>&lt;p&gt;It was working fine yesterday, but today it stopped working in 4chan and exhentai. The extension version is still working on Ex, not on 4chan though.&lt;/p&gt;

&lt;p&gt;Anyone else with this problem. I prefer the script version since its easy to exclude pages or just turn it off. The extension version is a pain in the ass. Any ideas?&lt;/p&gt;</description>
      <pubDate>Thu, 24 Nov 2011 04:23:33 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:94233:404417</guid>
      <author>Dojima</author>
      <link>http://userscripts.org/posts/404417</link>
    </item>
    <item>
      <title>AutoPagerize fails on certain URLs [+patch], replied by swdyh</title>
      <description>&lt;p&gt;I fixed it. try to install new version.&lt;/p&gt;</description>
      <pubDate>Sun, 02 Oct 2011 08:43:55 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:88805:388742</guid>
      <author>swdyh</author>
      <link>http://userscripts.org/posts/388742</link>
    </item>
    <item>
      <title>AutoPagerize fails on certain URLs [+patch], replied by SD-DAken</title>
      <description>&lt;p&gt;I tried to use this:
&lt;br /&gt;  url:          '^&lt;a href=&quot;http://browse\.deviantart\.com/&quot;&gt;http://browse\.deviantart\.com/&lt;/a&gt;',
&lt;br /&gt;  nextLink:     '//li[@class=&quot;next&quot;]/a',
&lt;br /&gt;  pageElement:  '//div[@class=&quot;browse2-results&quot;]',
&lt;br /&gt;for &lt;a href=&quot;http://browse.deviantart.com/?order=5&amp;amp;offset=24&quot;&gt;http://browse.deviantart.com/?order=5&amp;amp;offset=24&lt;/a&gt; but it failed every time.&lt;/p&gt;

&lt;p&gt;I checked the XPaths over and over but didn't find an error, so I came to the conclusion that the XPaths must be correct.&lt;/p&gt;

&lt;p&gt;After searching a long time I found the problem:
&lt;br /&gt;deviantart.com uses (next) links like: 
&lt;br /&gt;  &lt;a href=&quot;http://browse.deviantart.com?order=5&amp;amp;offset=48&quot;&gt;http://browse.deviantart.com?order=5&amp;amp;offset=48&lt;/a&gt;
&lt;br /&gt;Note that there is no / after the domain part.&lt;/p&gt;

&lt;p&gt;This breaks isSameDomain(url), because the check 
&lt;br /&gt;  var url_s = url.split('/')
&lt;br /&gt;  url_s[0] == location.protocol &amp;amp;&amp;amp; location.host == url_s[2]
&lt;br /&gt;will end up as
&lt;br /&gt;  http: == http: &amp;amp;&amp;amp; browse.deviantart.com == browse.deviantart.com?order=5&amp;amp;offset=48
&lt;br /&gt;which will obviously fail.&lt;/p&gt;

&lt;p&gt;In AutoPager.prototype.request it breaks
&lt;br /&gt;  if (res.finalUrl &amp;amp;&amp;amp; location.host == res.finalUrl.split('/')[2])
&lt;br /&gt;as well.&lt;/p&gt;

&lt;p&gt;To fix this bug:&lt;/p&gt;

&lt;p&gt;in isSameDomain(url):
&lt;br /&gt;-  var url_s = url.split('/')
&lt;br /&gt;+  var url_s = url.split('?')[0].split('/')&lt;/p&gt;

&lt;p&gt;in AutoPager.prototype.request:
&lt;br /&gt;-  if (res.finalUrl &amp;amp;&amp;amp; location.host == res.finalUrl.split('/')[2])
&lt;br /&gt;+  if (res.finalUrl &amp;amp;&amp;amp; location.host == res.finalUrl.split('?')[0].split('/')[2])&lt;/p&gt;</description>
      <pubDate>Wed, 21 Sep 2011 20:26:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:88805:386120</guid>
      <author>SD-DAken</author>
      <link>http://userscripts.org/posts/386120</link>
    </item>
    <item>
      <title>How to Add a new pages., replied by Johan Sundstr&#246;m</title>
      <description>&lt;p&gt;I think this is it; verification from the script maintainer would probably be good:&lt;/p&gt;

&lt;p&gt;&lt;ul&gt;&lt;li&gt;go to &lt;a href=&quot;http://wedata.net/&quot;&gt;http://wedata.net/&lt;/a&gt; and create a user for yourself, if you don't already have one
&lt;ul&gt;&lt;li&gt;if you don't have an openID provider, you may start by creating one at myopenid.com&lt;/li&gt;&lt;li&gt;(you may actually have one, without knowing it; see &lt;a href=&quot;http://openid.net/get-an-openid/&quot;&gt;http://openid.net/get-an-openid/&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;log in to wedata.net with your openid&lt;/li&gt;&lt;li&gt;go to &lt;a href=&quot;http://wedata.net/databases/AutoPagerize/items/new&quot;&gt;http://wedata.net/databases/AutoPagerize/items/new&lt;/a&gt;&lt;/li&gt;&lt;li&gt;pick a suitable name for the thing you're unpaginating, say, &quot;Picasa gallery thumbnails&quot;&lt;/li&gt;&lt;li&gt;fill in these fields with the appropriate values:
&lt;ul&gt;&lt;li&gt;url - a regexp that should match all urls on which this unpagination rule matches (and ideally no others)&lt;/li&gt;&lt;li&gt;nextLink - an xpath expression that should match the &quot;next&quot; link on the page&lt;/li&gt;&lt;li&gt;pageElement - an xpath expression that should match the node in the &quot;next&quot; page whose contents should be injected into the current page&lt;/li&gt;&lt;li&gt;exampleUrl - an url of an example page on which this whole rule works, so people can test that the rule does what it should&lt;/li&gt;&lt;li&gt;insertBefore - optional - an xpath expression to a node in this page before which the next page's content will be injected (if omitted, it's tucked on to the end of the pageElement node of the current page)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;

&lt;p&gt;If regexps and xpath expressions are unknown territory for you, you have a somewhat steep learning curve to climb before you'll be able to do this yourself.&lt;/p&gt;</description>
      <pubDate>Mon, 02 May 2011 21:09:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:69730:339794</guid>
      <author>Johan Sundstr&#246;m</author>
      <link>http://userscripts.org/posts/339794</link>
    </item>
    <item>
      <title>author says this script is &amp;quot;obsolete&amp;quot;?, replied by musichemyst</title>
      <description>&lt;p&gt;I was looking at this script's homepage, autopagerize.net, and I noticed that not only has swdyh created AutoPagerize extensions for Firefox, Chrome and Safari, but this Greasemonkey script is listed on the page as being &quot;obsolete&quot; whereas the browser extensions are listed as &quot;stable&quot;.&lt;/p&gt;

&lt;p&gt;Does anyone know if this means that swdyh has stopped developing this script? I ask because browser extensions use considerably more resources than scripts and I, like many users, really want to avoid installing yet another extension when I already use so many that I can't live without.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Apr 2011 01:00:10 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:72407:337043</guid>
      <author>musichemyst</author>
      <link>http://userscripts.org/posts/337043</link>
    </item>
    <item>
      <title>breaks skyscraper, replied by Niraj</title>
      <description>&lt;p&gt;Hi i am a regular participant in skyscrapercity forums. this script has been working very well for this forum but for the last few days it doesn't fetch a next page but starts from the first page of the thread.&lt;/p&gt;

&lt;p&gt;it is very inconv because SSC usually has threads more than hundred pages long. and if you are at the 98th page, autopagerize will display the 2nd page as the followup page, not the 99th page.&lt;/p&gt;

&lt;p&gt;is there a way to correct this. I must say that this behavior has started about 3-4 days back.&lt;/p&gt;

&lt;p&gt;niraj&lt;/p&gt;</description>
      <pubDate>Tue, 08 Mar 2011 09:25:05 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:69819:325786</guid>
      <author>Niraj</author>
      <link>http://userscripts.org/posts/325786</link>
    </item>
    <item>
      <title>How to Add a new pages., replied by KlonAdam</title>
      <description>&lt;p&gt;Give me information how i can add a new page to datbase.&lt;/p&gt;

&lt;p&gt;stap by step. &lt;/p&gt;

&lt;p&gt;thx&lt;/p&gt;</description>
      <pubDate>Sun, 06 Mar 2011 22:04:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:69730:325414</guid>
      <author>KlonAdam</author>
      <link>http://userscripts.org/posts/325414</link>
    </item>
    <item>
      <title>addFilter calls broken with GM 0.9.1/Scriptish?1.0b7, replied by Junk Blocker</title>
      <description>&lt;p&gt;I am seeing the same behavior with Scriptish 1.0b7/Firefox 4b10 and Greasemonkey 0.9.1/Firefox 3.6.13 all of a sudden. My scripts' filters aren't being invoked anymore all of a sudden. Anybody else seen this?&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jan 2011 20:35:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:67333:315083</guid>
      <author>Junk Blocker</author>
      <link>http://userscripts.org/posts/315083</link>
    </item>
    <item>
      <title>Opera &amp;amp; Safari, replied by drosah</title>
      <description>&lt;p&gt;i using it on opera, but some times has bugs, like not loading the page and it turn a blank page. So to navigate normal in this page i need to disable and reload it. The page that always works is the google only e some other few sites. Sorry, i forgot, I prefer an exclusive version for opera =) Opera supports extensions now =D Look: addons.opera.com/addons/extensions/ (PS: I using the oAutoPagerize an version for opera, safari and chrome, you can find it here at the userscripts)&lt;/p&gt;</description>
      <pubDate>Wed, 19 Jan 2011 06:52:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62081:313001</guid>
      <author>drosah</author>
      <link>http://userscripts.org/posts/313001</link>
    </item>
    <item>
      <title>Its wrong, replied by needo2</title>
      <description>&lt;p&gt;&lt;a href=&quot;http://boi-forum.perfectworld.com/forumdisplay.php?f=75&quot;&gt;http://boi-forum.perfectworld.com/forumdisplay....&lt;/a&gt;
&lt;br /&gt;its pagerizing the wrong thing&lt;/p&gt;</description>
      <pubDate>Fri, 12 Nov 2010 10:37:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:63304:297631</guid>
      <author>needo2</author>
      <link>http://userscripts.org/posts/297631</link>
    </item>
    <item>
      <title>TCLC Integration, replied by Misc</title>
      <description>&lt;p&gt;A follow-up to guiguilein's topic: The Cavern Link Checker 
&lt;br /&gt;Would it be possible to release a version which include the TCLC scripts (&lt;a href=&quot;http://userscripts.org/scripts/show/29222&quot;&gt;http://userscripts.org/scripts/show/29222&lt;/a&gt;) because at the moment TCLC works only on the first page...&lt;/p&gt;

&lt;p&gt;It will be much appreciated if you could implant the TCLC current script into AutoPagerize. These two scripts complement one another; that way, as you keep scrolling down the page with the assistance of AutoPagerize, you can see all the links' status via The Cavern Link Checker.&lt;/p&gt;

&lt;p&gt;Hopefully you'll take the suggestion above into consideration...
&lt;br /&gt;maybe even in the upcoming version of AutoPagerize? ;)&lt;/p&gt;

&lt;p&gt;Thank you in advance.&lt;/p&gt;</description>
      <pubDate>Mon, 25 Oct 2010 08:45:04 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62252:292943</guid>
      <author>Misc</author>
      <link>http://userscripts.org/posts/292943</link>
    </item>
    <item>
      <title>Stopped working script for website!, replied by Inkobob</title>
      <description>&lt;p&gt;The new version (0.0.58 10/25/2010) script does not work on the site rutracker.org
&lt;br /&gt;Do not add a new page - the message is &quot;terminated&quot;!
&lt;br /&gt;In version (Oct 21, 2010 20:29) - everything was ok!
&lt;br /&gt;Fix it!&lt;/p&gt;</description>
      <pubDate>Mon, 25 Oct 2010 07:01:01 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62242:292916</guid>
      <author>Inkobob</author>
      <link>http://userscripts.org/posts/292916</link>
    </item>
    <item>
      <title>Custom SITEINFO?, replied by Cammarratta</title>
      <description>&lt;p&gt;Since I updated to version .52 my custom siteinfo no longer works. Before I placed them between the block that starts off with var SITEINFO = [] but now putting anything there breaks everything. I also lost the  ability of being able to debug with firebug as well. I had the information for the little tutorial linked on the autopagerize site, but that is old. So could someone tell me how to properly debug for this, thanks.&lt;/p&gt;</description>
      <pubDate>Sun, 24 Oct 2010 15:59:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62204:292781</guid>
      <author>Cammarratta</author>
      <link>http://userscripts.org/posts/292781</link>
    </item>
    <item>
      <title>Terrible performance for this version, replied by grojan</title>
      <description>&lt;p&gt;It is my favorite script again.&lt;/p&gt;</description>
      <pubDate>Sun, 24 Oct 2010 14:52:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62084:292771</guid>
      <author>grojan</author>
      <link>http://userscripts.org/posts/292771</link>
    </item>
    <item>
      <title>Terrible performance for this version, replied by dudebudbro</title>
      <description>&lt;p&gt;I agree it's very slow&lt;/p&gt;</description>
      <pubDate>Sun, 24 Oct 2010 00:18:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62084:292686</guid>
      <author>dudebudbro</author>
      <link>http://userscripts.org/posts/292686</link>
    </item>
    <item>
      <title>ASK, replied by p1nky</title>
      <description>&lt;p&gt;Hi, I just stumbled upon this script and I think this is great.
&lt;br /&gt;1. The problem is, when I start using it, my Firefox got so slow, the window freezes and all. Why does this happen? Does it mean that this script crashes with another script?
&lt;br /&gt;2. When I open my Indonesian forum (kaskus.us) the button got all messed up. So can you please add it to your script?&lt;/p&gt;

&lt;p&gt;I appreciate whatever your answer is. Thank you :)&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 17:11:32 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62130:292438</guid>
      <author>p1nky</author>
      <link>http://userscripts.org/posts/292438</link>
    </item>
    <item>
      <title>What is https://relucks-org.appspot.com/files/html-sanitizer-minified.js, replied by Aloce0775</title>
      <description>&lt;p&gt;Is it safe?&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 04:35:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62088:292286</guid>
      <author>Aloce0775</author>
      <link>http://userscripts.org/posts/292286</link>
    </item>
    <item>
      <title>Terrible performance for this version, replied by Junk Blocker</title>
      <description>&lt;p&gt;With html cleanup code introduced in &lt;a href=&quot;http://userscripts.org/scripts/version/8551/262849.user.js&quot;&gt;http://userscripts.org/scripts/version/8551/262...&lt;/a&gt; .&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 02:37:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62084:292265</guid>
      <author>Junk Blocker</author>
      <link>http://userscripts.org/posts/292265</link>
    </item>
    <item>
      <title>Opera &amp;amp; Safari, replied by .paradise</title>
      <description>&lt;p&gt;Will not work ?&lt;/p&gt;</description>
      <pubDate>Fri, 22 Oct 2010 02:02:17 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:62081:292257</guid>
      <author>.paradise</author>
      <link>http://userscripts.org/posts/292257</link>
    </item>
    <item>
      <title>Doesn't work on flickr anymore, replied by decembre</title>
      <description>&lt;p&gt;Yes...!
&lt;br /&gt;It can't work on Favorits by example.
&lt;br /&gt;But if it work on pool page  ....if i clickr on on shot , it open an infinite page with all these shots and their comments, ( without buddy icons...)
&lt;br /&gt;And if you want fav , comment etc it give a very strange result...
&lt;br /&gt;An i have a request :
&lt;br /&gt;On the infinite page , your script break some others scripts,like :
&lt;br /&gt; &#8226; &lt;a href=&quot;http://steeev.site50.net/flickr/group.pool.warn+delete.htm&quot;&gt;Group Pool Admin: Warn + Delete&lt;/a&gt;
&lt;br /&gt; &#8226; &lt;a href=&quot;http://www.flickr.com/photos/jrhyley/24718496/&quot;&gt;Thumbnails Enhancer
&lt;br /&gt; &#8226; &lt;a href=&quot;http://userscripts.org/scripts/show/82360&quot;&gt;&lt;b&gt;Flickr Commented On v2.3&lt;/b&gt;&lt;/a&gt; (Icon Comments)
&lt;br /&gt;But work well with :
&lt;br /&gt; &#8226; &lt;a href=&quot;http://userscripts.org/scripts/show/5016&quot;&gt;&lt;b&gt;Flickr Functional Suite&lt;/b&gt;&lt;/a&gt; , which have prolem with tha Autopager 'XPI addon) &lt;/p&gt;

&lt;p&gt;I don't know if you can do something but it'll be great!&lt;/p&gt;

&lt;p&gt;Ps : i think that all these problems, are an effect of the big Change made by Flickr on the &quot;New Photo Page&quot;...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 22 Aug 2010 16:46:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:45418:278061</guid>
      <author>decembre</author>
      <link>http://userscripts.org/posts/278061</link>
    </item>
    <item>
      <title>The Cavern Link Checker, replied by guiguilein</title>
      <description>&lt;p&gt;Would it be possible to release a version which include the TCLC scripts (&lt;a href=&quot;http://userscripts.org/scripts/show/29222&quot;&gt;http://userscripts.org/scripts/show/29222&lt;/a&gt;) because at the moment, as your scripts works dynamically, TCLC works only on the first page. try here : 
&lt;br /&gt;&lt;a href=&quot;http://www.antre-du-bordel.com/?p=702&quot;&gt;http://www.antre-du-bordel.com/?p=702&lt;/a&gt;
&lt;br /&gt;Thanks for your great work.
&lt;br /&gt;guiguilein&lt;/p&gt;</description>
      <pubDate>Sun, 18 Jul 2010 09:02:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:56828:269629</guid>
      <author>guiguilein</author>
      <link>http://userscripts.org/posts/269629</link>
    </item>
    <item>
      <title>Breaks YouTube, replied by aronin</title>
      <description>&lt;p&gt;It breaks &lt;a href=&quot;http://www.youtube.com/videos&quot;&gt;http://www.youtube.com/videos&lt;/a&gt; page. The page loads, then goes into loading... mode and then does not load anymore.&lt;/p&gt;

&lt;p&gt;Can you fix this please.&lt;/p&gt;</description>
      <pubDate>Thu, 13 May 2010 14:10:33 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:53141:253146</guid>
      <author>aronin</author>
      <link>http://userscripts.org/posts/253146</link>
    </item>
    <item>
      <title>Problem when viewing a blog, replied by swdyh</title>
      <description>&lt;p&gt;Thank you for your report.
&lt;br /&gt;I fixed it. Enjoy!&lt;/p&gt;</description>
      <pubDate>Thu, 29 Apr 2010 11:49:36 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:52106:248734</guid>
      <author>swdyh</author>
      <link>http://userscripts.org/posts/248734</link>
    </item>
    <item>
      <title>Problem when viewing a blog, replied by uthavin</title>
      <description>&lt;p&gt;Hi&lt;/p&gt;

&lt;p&gt;Script keeps loading the title page of this blog&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://daijyoyuukoharu.blog62.fc2.com/&quot;&gt;http://daijyoyuukoharu.blog62.fc2.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I have use this script for a long time
&lt;br /&gt;but never see this before, so I post.&lt;/p&gt;

&lt;p&gt;Hope someone can fix this :)&lt;/p&gt;</description>
      <pubDate>Tue, 27 Apr 2010 15:45:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:52106:248312</guid>
      <author>uthavin</author>
      <link>http://userscripts.org/posts/248312</link>
    </item>
  </channel>
</rss>

