transmission-rss 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +21 -11
- data/bin/transmission-add-file +2 -2
- data/lib/transmission-rss.rb +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -3,12 +3,19 @@
|
|
3
3
|
transmission-rss is basically a workaround for transmission's lack of the
|
4
4
|
ability to monitor RSS feeds and automatically add enclosed torrent links.
|
5
5
|
|
6
|
-
It works with transmission-daemon and transmission-gtk (if the web frontend
|
7
|
-
enabled in the settings dialog). Sites like
|
8
|
-
well as feed sources.
|
6
|
+
It works with transmission-daemon and transmission-gtk (if the web frontend
|
7
|
+
is enabled in the settings dialog). Sites like showrss.karmorra.info and
|
8
|
+
ezrss.it are suited well as feed sources.
|
9
9
|
|
10
|
-
|
11
|
-
the
|
10
|
+
For the GTK configuration editor, the Ruby libglade2 bindings are necessary
|
11
|
+
(but not included in the gem dependencies). On Arch Linux, install
|
12
|
+
ruby-libglade from AUR.
|
13
|
+
|
14
|
+
A tool called transmission-add-file is also included for mass adding of
|
15
|
+
torrent files.
|
16
|
+
|
17
|
+
As it's done with poems, I devote this very artful and romantic piece of
|
18
|
+
code to the single most delightful human being: Ann.
|
12
19
|
|
13
20
|
== Installation
|
14
21
|
|
@@ -18,6 +25,8 @@ the single most delightful human being: Ann.
|
|
18
25
|
|
19
26
|
=== From source
|
20
27
|
|
28
|
+
git clone git://git.orgizm.net/transmission-rss.git
|
29
|
+
cd transmission-rss
|
21
30
|
gem build transmission-rss.gemspec
|
22
31
|
sudo gem install transmission-rss-*.gem
|
23
32
|
|
@@ -36,9 +45,9 @@ It should at least contain a list of feeds:
|
|
36
45
|
=== All available options
|
37
46
|
|
38
47
|
The following configuration file example contains every existing option
|
39
|
-
(although +
|
40
|
-
could be omitted). The default +log_target+ is STDERR. +privileges+ is
|
41
|
-
defined by default, so the script runs as current user/group.
|
48
|
+
(although +update_interval+, +add_paused+ and +server+ are default values
|
49
|
+
and could be omitted). The default +log_target+ is STDERR. +privileges+ is
|
50
|
+
not defined by default, so the script runs as current user/group.
|
42
51
|
|
43
52
|
feeds:
|
44
53
|
- http://example.com/feed1
|
@@ -60,6 +69,7 @@ defined by default, so the script runs as current user/group.
|
|
60
69
|
|
61
70
|
== TODO
|
62
71
|
|
63
|
-
*
|
64
|
-
*
|
65
|
-
*
|
72
|
+
* Better library abilities.
|
73
|
+
* Timeout and error handling in +Aggregator+ and +Client+.
|
74
|
+
* Option to stop seeding after full download.
|
75
|
+
* Configurable log level.
|
data/bin/transmission-add-file
CHANGED
@@ -12,8 +12,8 @@ config_file = '/etc/transmission-rss.conf'
|
|
12
12
|
|
13
13
|
# Shows a summary of the command line options.
|
14
14
|
def usage_message( config_file )
|
15
|
-
$stderr << "#{File.basename($0)} [
|
16
|
-
Adds
|
15
|
+
$stderr << "#{File.basename($0)} [option].. [file]..
|
16
|
+
Adds torrent files to transmission web frontend.
|
17
17
|
|
18
18
|
-c <file> Custom config file path. Default: #{config_file}
|
19
19
|
-h This help.
|
data/lib/transmission-rss.rb
CHANGED