<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Cruiser | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/13547</link>
    <description>Recent comments on userscript: Cruiser</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>as said before: &amp;quot;give us a button to start it up&amp;quot;, replied by Poolboy</title>
      <description>&lt;p&gt;Done, at least in a simple way. Set the automatic_mode variable to false at the top and a little button will be shown that you can click on.  Small button used so it is unobtrusive.  Code at the bottom has a commented out text button too.  I should mention that this solution causes the page to reload with Cruiser=Yes in the URL parameters&lt;/p&gt;</description>
      <pubDate>Fri, 14 Aug 2009 05:00:01 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:26255:158220</guid>
      <author>Poolboy</author>
      <link>http://userscripts.org/posts/158220</link>
    </item>
    <item>
      <title>as said before: &amp;quot;give us a button to start it up&amp;quot;, replied by simon!</title>
      <description>&lt;p&gt;please supply us a button to start this script, so this won't start automatically (similarly to &lt;a href=&quot;http://userscripts.org/scripts/show/6561&quot;&gt;Server Index Image Viewer&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;sometimes this script starts on pages that I really don't need it to work on (e.g. articles, reviews, blog posts etc.)&lt;/p&gt;

&lt;p&gt;&quot;pretty&quot; PLEASE.&lt;/p&gt;</description>
      <pubDate>Wed, 06 May 2009 06:58:08 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:26255:118333</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/118333</link>
    </item>
    <item>
      <title>suggestion: &amp;quot;...generate a script to download all...&amp;quot;, replied by simon!</title>
      <description>&lt;p&gt;&quot;Click here to generate a script to download all pictures&quot;&lt;/p&gt;

&lt;p&gt;you might be interested in &lt;a href=&quot;http://metalinker.org/&quot;&gt;Metalink&lt;/a&gt;???&lt;/p&gt;</description>
      <pubDate>Wed, 06 May 2009 06:53:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:26253:118329</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/118329</link>
    </item>
    <item>
      <title>Does it work on opera?, replied by AlexCeed</title>
      <description>&lt;p&gt;I tested it on some sites and it doesn't work.&lt;/p&gt;</description>
      <pubDate>Mon, 02 Feb 2009 23:11:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:21190:93674</guid>
      <author>AlexCeed</author>
      <link>http://userscripts.org/posts/93674</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;@chasep2001
&lt;br /&gt;Thank you for the help, but it is not working, at least for me :S&lt;/p&gt;

&lt;p&gt;You're talking about lines 64 - 65, right?&lt;/p&gt;

&lt;p&gt;I saw what the bookmarklet does and it reminds me that maybe some code from &lt;a href=&quot;http://userscripts.org/scripts/show/25306&quot;&gt;this script&lt;/a&gt; could be helpful in building a button?&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jun 2008 10:42:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70718</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/70718</link>
    </item>
    <item>
      <title>Archived Comments, replied by chasep2001</title>
      <description>&lt;p&gt;To begin with, the 'R' button wasn't working for me. I was able to fix that by using a bookmarklet instead, but then I came across simon!'s comment.&lt;/p&gt;

&lt;p&gt;simon!&lt;/p&gt;

&lt;p&gt;Like you, I would prefer to turn the script on when I wanted to use it, instead of turning it off when I didn't want to use it. You can achieve this by changing two lines of the script and adding a bookmarklet.&lt;/p&gt;

&lt;p&gt;Change the script as follows:
&lt;br /&gt;find the line:
&lt;br /&gt;&lt;code&gt; 
&lt;br /&gt;a= document.location.href.indexOf(&quot;Cruiser=No&quot;);
&lt;br /&gt;&lt;/code&gt;
&lt;br /&gt;and change it to the following:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;a= document.location.href.strToUpper().indexOf(&quot;CRUISER=YES&quot;);
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then change the next line from
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;if (a&gt;-1) return;
&lt;br /&gt;&lt;/code&gt;
&lt;br /&gt;to
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;if (a == -1) return;
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then you will want to create a bookmarlet with the following text:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;javascript:if(document.location.href.indexOf(&quot;?&quot;)&gt;-1){document.location.href=document.location.href+&quot;&amp;amp;cruiser=yes&quot;;}else{document.location.href=document.location.href+&quot;?cruiser=yes&quot;;}
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

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

&lt;p&gt;Poolboy:&lt;/p&gt;

&lt;p&gt;It wouldn't require too much more work to add a button that would trigger the same javascript snippet, and would float at the top of any page that cruiser determines it would work on. (judging from the help screen, I don't think you should have any trouble with that part!!)&lt;/p&gt;

&lt;p&gt;You could also go as far as to allow the user to choose whether to use auto-start mode or not. If they do want too, then the &quot;R&quot; key (and maybe add a mouse button that can be clicked as well) can be used to turn it off; If they don't want auto-start mode, then it would operate as mentioned above.&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jun 2008 17:32:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70719</guid>
      <author>chasep2001</author>
      <link>http://userscripts.org/posts/70719</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;a) try to build one for index pages &lt;a href=&quot;http://userscripts.org/scripts/show/6561&quot;&gt;more info...&lt;/a&gt;
&lt;br /&gt;b) please give supply us a button to start this script, so this won't start automatically (similar to the script that I just mentioned)&lt;/p&gt;

&lt;p&gt;p/s. nice enhancements :D&lt;/p&gt;</description>
      <pubDate>Sat, 10 May 2008 16:32:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70720</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/70720</link>
    </item>
    <item>
      <title>Archived Comments, replied by Poolboy</title>
      <description>&lt;p&gt;Ju-hu-das: Yeah. I haven't figured out a good naming convention since most sites just use names like 01.jpg and using the whole url to create the name makes the lines too long to copy.&lt;/p&gt;

&lt;p&gt;Blu_sky: Assuming you are on Windows, you'll need to install a copy of the program called wget which is a port of the Unix command.  Then you can just mark and copy the lines from the Cruiser screen and paste them into a command window (run &gt; cmd or it is somewhere in the Accessories pulldown).   I *think* I'm using the port from &lt;a href=&quot;http://unxutils.sourceforge.net/&quot;&gt;http://unxutils.sourceforge.net/&lt;/a&gt; but it has been years since I installed it. &lt;/p&gt;

&lt;p&gt;If you are on Linux, wget is already there.&lt;/p&gt;</description>
      <pubDate>Tue, 04 Mar 2008 05:28:56 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70721</guid>
      <author>Poolboy</author>
      <link>http://userscripts.org/posts/70721</link>
    </item>
    <item>
      <title>Archived Comments, replied by Ju-hu-das</title>
      <description>&lt;p&gt;I really really like your Script!&lt;/p&gt;

&lt;p&gt;If there was only a way, that the picturenames are Random. &lt;/p&gt;

&lt;p&gt;Because I really hate it,
&lt;br /&gt;that after a short period of time I have to rename every Picture... and for that I have to have both hands free.&lt;/p&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:39:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70722</guid>
      <author>Ju-hu-das</author>
      <link>http://userscripts.org/posts/70722</link>
    </item>
    <item>
      <title>Archived Comments, replied by blue_sky</title>
      <description>&lt;p&gt;generate script to download all the pictures not working, have no idea how to make use of it.&lt;/p&gt;</description>
      <pubDate>Mon, 03 Mar 2008 08:54:36 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70723</guid>
      <author>blue_sky</author>
      <link>http://userscripts.org/posts/70723</link>
    </item>
    <item>
      <title>Archived Comments, replied by mywot</title>
      <description>&lt;p&gt;Hi Poolboy,&lt;/p&gt;

&lt;p&gt;Your website's rating is bad, because it's hosted under the fortunecity.com domain and not enough users have rated it. Therefore, your site inherits the rating of its parent domain, which apparently isn't all that good. (This is because lots of untrustworthy sites are hosted there as well, but that's another story.)&lt;/p&gt;

&lt;p&gt;What comes to &quot;letting anonymous fools pass for reliable sources&quot;, we actually require users to prove themselves before taking their ratings seriously. That's because they often seem to jump into conclusions without &lt;a href=&quot;http://www.mywot.com/en/blog/2007/3/31&quot;&gt;learning the facts&lt;/a&gt;. Sometimes they even publicly accuse others of being scum on some random forum... ;)&lt;/p&gt;

&lt;p&gt;And yes, we are fully aware that there isn't a way to look up reasons behind ratings at the moment, but we're working on it. In the mean while, if you're concerned about a rating, you can always &lt;a href=&quot;http://www.mywot.com/en/support/feedback/abuse&quot;&gt;ask us about it&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;- Sami&lt;/p&gt;</description>
      <pubDate>Tue, 29 Jan 2008 20:25:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70724</guid>
      <author>mywot</author>
      <link>http://userscripts.org/posts/70724</link>
    </item>
    <item>
      <title>Archived Comments, replied by Poolboy</title>
      <description>&lt;p&gt;I can't imagine why someone would mark the site as unsafe but...&lt;/p&gt;

&lt;p&gt;Oh well.  Such is the value of letting anonymous fools pass for reliable sources.  I won't install WOT because I would not trust it since its model appears top be based on evidence-free accusation and it does not seem to give any details other than a good/bad rating.  I'd love to see why someone thought the site was unreliable, but that isn't part of WOT's game.&lt;/p&gt;

&lt;p&gt;If anyone has evidence that Cruiser or the web site presents any privacy or security problems over and above those you might get from the sites you visit with Cruiser, please post the concerns and evidence here.&lt;/p&gt;

&lt;p&gt;Accusations based on what someone else assumes might theoretically be possible is exactly the type of &quot;scum&quot; (their term!) that WOT should be trying to prevent.  I'd say WOT is claiming to protect people like us from people like them :)&lt;/p&gt;

&lt;p&gt;Once again, I insist, read the script and see for yourself.  Look at the source code for the web site too.  Its only 1 HTML page and a small JavaScript engine. It ain't rocket science.&lt;/p&gt;</description>
      <pubDate>Mon, 28 Jan 2008 01:10:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70725</guid>
      <author>Poolboy</author>
      <link>http://userscripts.org/posts/70725</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;Some idiot marked your site as a dangerous site, &lt;a href=&quot;http://www.mywot.com/&quot;&gt;more details...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Nice script :)&lt;/p&gt;</description>
      <pubDate>Sat, 19 Jan 2008 22:18:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70726</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/70726</link>
    </item>
    <item>
      <title>Archived Comments, replied by Poolboy</title>
      <description>&lt;p&gt;la faucille's comment as translated to English by Google:&lt;/p&gt;

&lt;p&gt;&quot;There is someone who can confirm that this script is clean?
&lt;br /&gt;In general, regarding sex is never free!
&lt;br /&gt;So think install a minute this thing.&lt;/p&gt;

&lt;p&gt;But hey, this is only my opinion&quot;&lt;/p&gt;

&lt;p&gt;-- good advice!  You are encouraged to be careful, look at the source and post any comments here.  Always use safe surfing practices (virus scanners, firewalls, and if possible, virtual machines, etc)&lt;/p&gt;</description>
      <pubDate>Thu, 15 Nov 2007 03:20:43 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70727</guid>
      <author>Poolboy</author>
      <link>http://userscripts.org/posts/70727</link>
    </item>
    <item>
      <title>Archived Comments, replied by la faucille</title>
      <description>&lt;p&gt;y a quelqu'un qui peut confirmer que ce script est clean ?
&lt;br /&gt;en g&#233;n&#233;ral, ce qui touche le sexe n'est jamais gratuit !!!
&lt;br /&gt;donc r&#233;fl&#233;chissez un min en instal ce truc&lt;/p&gt;

&lt;p&gt;mais bon, ce n'est que mon avis   :)&lt;/p&gt;</description>
      <pubDate>Wed, 14 Nov 2007 20:34:06 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70728</guid>
      <author>la faucille</author>
      <link>http://userscripts.org/posts/70728</link>
    </item>
    <item>
      <title>Archived Comments, replied by Neewb</title>
      <description>&lt;p&gt;Very nice job.&lt;/p&gt;</description>
      <pubDate>Wed, 14 Nov 2007 01:59:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70729</guid>
      <author>Neewb</author>
      <link>http://userscripts.org/posts/70729</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dink</title>
      <description>&lt;p&gt;Awesome script Poolboy!!!!&lt;/p&gt;</description>
      <pubDate>Fri, 02 Nov 2007 03:43:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70730</guid>
      <author>Dink</author>
      <link>http://userscripts.org/posts/70730</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:39 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:16490:70717</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/70717</link>
    </item>
  </channel>
</rss>
