SVN: toys/rsget.pl: Get/ArchivTo Get/BitRoad Get/DepositFiles Get/EasyShare Get/FileFactory Get/Flyf...

sparky sparky at pld-linux.org
Wed Sep 30 00:36:08 CEST 2009


Author: sparky
Date: Wed Sep 30 00:36:07 2009
New Revision: 10639

Modified:
   toys/rsget.pl/Get/ArchivTo   (props changed)
   toys/rsget.pl/Get/BitRoad   (props changed)
   toys/rsget.pl/Get/DepositFiles   (props changed)
   toys/rsget.pl/Get/EasyShare   (props changed)
   toys/rsget.pl/Get/FileFactory   (props changed)
   toys/rsget.pl/Get/FlyfileUs   (props changed)
   toys/rsget.pl/Get/FreakShare   (props changed)
   toys/rsget.pl/Get/HotFile   (props changed)
   toys/rsget.pl/Get/MediaFire   (props changed)
   toys/rsget.pl/Get/MegaShares   (props changed)
   toys/rsget.pl/Get/MegaUpload   (props changed)
   toys/rsget.pl/Get/NetLoad   (props changed)
   toys/rsget.pl/Get/OdSiebie   (props changed)
   toys/rsget.pl/Get/RapidShare   (props changed)
   toys/rsget.pl/Get/RapidShark   (props changed)
   toys/rsget.pl/Get/SendSpace   (props changed)
   toys/rsget.pl/Get/SendSpacePL   (props changed)
   toys/rsget.pl/Get/SharePlace   (props changed)
   toys/rsget.pl/Get/SharingMatrix   (props changed)
   toys/rsget.pl/Get/StorageTo   (props changed)
   toys/rsget.pl/Get/TurboBit   (props changed)
   toys/rsget.pl/Get/TurboUpload   (props changed)
   toys/rsget.pl/Get/UploadedTo   (props changed)
   toys/rsget.pl/Get/zSHARE   (props changed)
   toys/rsget.pl/Link/AnonymTo   (props changed)
   toys/rsget.pl/Link/CryptIt   (props changed)
   toys/rsget.pl/Link/CryptedBiz   (props changed)
   toys/rsget.pl/Link/LinkProtector   (props changed)
   toys/rsget.pl/Link/ProtectLinks   (props changed)
   toys/rsget.pl/Link/RaidRush   (props changed)
   toys/rsget.pl/Link/Simple   (props changed)
   toys/rsget.pl/RSGet/AutoUpdate.pm
   toys/rsget.pl/RSGet/Captcha.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Curl.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Dispatch.pm   (contents, props changed)
   toys/rsget.pl/RSGet/FileList.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Get.pm   (contents, props changed)
   toys/rsget.pl/RSGet/HTTPRequest.pm   (contents, props changed)
   toys/rsget.pl/RSGet/HTTPServer.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Line.pm   (contents, props changed)
   toys/rsget.pl/RSGet/ListManager.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Processor.pm   (contents, props changed)
   toys/rsget.pl/RSGet/Wait.pm   (contents, props changed)
Log:
- add revisions


Modified: toys/rsget.pl/RSGet/AutoUpdate.pm
==============================================================================
--- toys/rsget.pl/RSGet/AutoUpdate.pm	(original)
+++ toys/rsget.pl/RSGet/AutoUpdate.pm	Wed Sep 30 00:36:07 2009
@@ -4,15 +4,13 @@
 use warnings;
 use RSGet::Tools;
 
-sub set_rev
-{
-	my $id = shift;
-	print "'$id'\n";
-}
-
 set_rev qq$Id$;
 
-
+sub update
+{
+	warn "Can't update yet\n";
+	return 0;
+}
 
 1;
 # vim:ts=4:sw=4

Modified: toys/rsget.pl/RSGet/Captcha.pm
==============================================================================
--- toys/rsget.pl/RSGet/Captcha.pm	(original)
+++ toys/rsget.pl/RSGet/Captcha.pm	Wed Sep 30 00:36:07 2009
@@ -4,6 +4,7 @@
 use warnings;
 use Digest::MD5 qw(md5_hex);
 use RSGet::Tools;
+set_rev qq$Id$;
 
 our %needed;
 our %solved;

Modified: toys/rsget.pl/RSGet/Curl.pm
==============================================================================
--- toys/rsget.pl/RSGet/Curl.pm	(original)
+++ toys/rsget.pl/RSGet/Curl.pm	Wed Sep 30 00:36:07 2009
@@ -10,6 +10,7 @@
 use File::Copy;
 use File::Path;
 use Fcntl qw(SEEK_SET);
+set_rev qq$Id$;
 
 my $curl_multi = new WWW::Curl::Multi;
 

Modified: toys/rsget.pl/RSGet/Dispatch.pm
==============================================================================
--- toys/rsget.pl/RSGet/Dispatch.pm	(original)
+++ toys/rsget.pl/RSGet/Dispatch.pm	Wed Sep 30 00:36:07 2009
@@ -3,6 +3,7 @@
 use strict;
 use warnings;
 use RSGet::Tools;
+set_rev qq$Id$;
 
 our %downloading;
 our %checking;

Modified: toys/rsget.pl/RSGet/FileList.pm
==============================================================================
--- toys/rsget.pl/RSGet/FileList.pm	(original)
+++ toys/rsget.pl/RSGet/FileList.pm	Wed Sep 30 00:36:07 2009
@@ -4,6 +4,7 @@
 use warnings;
 use URI::Escape;
 use RSGet::Tools;
+set_rev qq$Id$;
 
 my $file;
 my $file_swp;

Modified: toys/rsget.pl/RSGet/Get.pm
==============================================================================
--- toys/rsget.pl/RSGet/Get.pm	(original)
+++ toys/rsget.pl/RSGet/Get.pm	Wed Sep 30 00:36:07 2009
@@ -6,6 +6,7 @@
 use RSGet::Captcha;
 use RSGet::Wait;
 use URI;
+set_rev qq$Id$;
 
 BEGIN {
 	our @ISA;

Modified: toys/rsget.pl/RSGet/HTTPRequest.pm
==============================================================================
--- toys/rsget.pl/RSGet/HTTPRequest.pm	(original)
+++ toys/rsget.pl/RSGet/HTTPRequest.pm	Wed Sep 30 00:36:07 2009
@@ -6,6 +6,7 @@
 use RSGet::Line;
 use RSGet::Tools;
 use RSGet::ListManager;
+set_rev qq$Id$;
 
 our %handlers = (
 	"main.js" => \&putfile,

Modified: toys/rsget.pl/RSGet/HTTPServer.pm
==============================================================================
--- toys/rsget.pl/RSGet/HTTPServer.pm	(original)
+++ toys/rsget.pl/RSGet/HTTPServer.pm	Wed Sep 30 00:36:07 2009
@@ -5,6 +5,7 @@
 use IO::Socket;
 use RSGet::Tools;
 use RSGet::HTTPRequest;
+set_rev qq$Id$;
 
 sub new
 {

Modified: toys/rsget.pl/RSGet/Line.pm
==============================================================================
--- toys/rsget.pl/RSGet/Line.pm	(original)
+++ toys/rsget.pl/RSGet/Line.pm	Wed Sep 30 00:36:07 2009
@@ -1,8 +1,10 @@
 package RSGet::Line;
+
 use strict;
 use warnings;
 use RSGet::Tools;
 use Term::Size;
+set_rev qq$Id$;
 
 $| = 1;
 

Modified: toys/rsget.pl/RSGet/ListManager.pm
==============================================================================
--- toys/rsget.pl/RSGet/ListManager.pm	(original)
+++ toys/rsget.pl/RSGet/ListManager.pm	Wed Sep 30 00:36:07 2009
@@ -8,6 +8,7 @@
 use RSGet::Dispatch;
 use URI::Escape;
 use POSIX qw(ceil floor);
+set_rev qq$Id$;
 
 # {{{ Comparators
 

Modified: toys/rsget.pl/RSGet/Processor.pm
==============================================================================
--- toys/rsget.pl/RSGet/Processor.pm	(original)
+++ toys/rsget.pl/RSGet/Processor.pm	Wed Sep 30 00:36:07 2009
@@ -3,6 +3,7 @@
 use strict;
 use warnings;
 use RSGet::Tools;
+set_rev qq$Id$;
 
 my $options = "name|short|slots|cookie|status";
 my $parts = "pre|start|perl";

Modified: toys/rsget.pl/RSGet/Wait.pm
==============================================================================
--- toys/rsget.pl/RSGet/Wait.pm	(original)
+++ toys/rsget.pl/RSGet/Wait.pm	Wed Sep 30 00:36:07 2009
@@ -3,6 +3,7 @@
 use strict;
 use warnings;
 use RSGet::Tools;
+set_rev qq$Id$;
 
 my %waiting;
 sub wait


More information about the pld-cvs-commit mailing list