# $Id: SharingMatrix 11703 2010-07-25 13:24:12Z sparky $
# Link::SharingMatrix - Link decrypter plugin for rsget.pl
#
# 2010 (c) Paweł Zuzelski <pawelz@pld-linux.org>
#		This program is free software,
# you may distribute it under GPL v2 or newer.

name: SharingMatrix
short: L:SM
web: "http://sharingmatrix.com/"
tos: "http://sharingmatrix.com/user_agreement"
uri: qr{(?:www\d+\.)?sharingmatrix\.com/folder/\d+}
status: OK 2010-07-25

start:
	GET( $-{_uri} );

	my @list = /<td><a href="(.*?)">/g;
	ERROR( "no links" ) unless @list;

	LINK( @list );

# vim: filetype=perl:ts=4:sw=4
