rwdziprwdwtorrent 0.06 → 0.07

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,177 @@
1
+ = RwdTorrent Program
2
+
3
+ How to Use the Torrent Program (rwdtorrent)
4
+
5
+ == What is is
6
+
7
+ rwdtorrent is a web brower interface to BitTorrent commands
8
+
9
+
10
+ download from http://rubyforge.org/frs/?group_id=444
11
+
12
+ run BitTorrent commands
13
+
14
+ You can select a torrent file in the torrentfile directory and download it
15
+
16
+ There are tabs to view file sizes and edit configurations
17
+
18
+ 'View Torrent Metafiles' - to view and select torrent files before downloading
19
+
20
+ 'View Torrent' - to view file size of downloaded file
21
+
22
+ 'Torrent Download Display' the tab to start a download and open the torrent download window
23
+
24
+ 'Edit Configuration' - to change the configuration of rwdtorrent
25
+
26
+
27
+ BitTorrent is a technology used for sharing large files.
28
+ It is very effective because when there are more people downloading a file,
29
+ your download speed will be even faster.
30
+
31
+ You need BitTorrent installed in order to use this program
32
+ BitTorrent can downloaded at:
33
+ http://www.bittorrent.com/index.html
34
+
35
+ There are many BitTorrent links at:
36
+ http://spesb.com/link2u/
37
+
38
+ The GUI interface used is RubyWebDialogs
39
+
40
+ Start the program by typing<br>
41
+ ruby init.rb
42
+
43
+ Then point your web browser to:
44
+ http://localhost:7705/
45
+
46
+ == using shell commands
47
+
48
+
49
+
50
+ Enter the shell command you want to run for in the browser form and press execute.
51
+ After a second the browser should fill with the results of the command.
52
+ try ls, df, cat "filename", and other shell commands
53
+ You should be able to run one command after another
54
+
55
+
56
+ The GUI interface used is RubyWebDialogs
57
+
58
+
59
+ Start the program by typing
60
+ ruby init.rb
61
+
62
+ Then point your web browser to:
63
+ http://localhost:7705/
64
+
65
+
66
+
67
+ == Using over a Network
68
+
69
+ To serve the application over your local LAN,change the last line in the
70
+ init.rb file to something like:
71
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
72
+ Then you should be able to login at: http://yourhostname:8080
73
+
74
+ You have to authorize yourself. The .rwuids example is a string with
75
+ the name of the authorization file, relative to the home directory
76
+ of the user that started the service. This file has to be in the form of:
77
+
78
+ user1 = password
79
+ user2 = pass phrase
80
+
81
+ Thus the file .rwduids might contain:
82
+
83
+ erik = secret
84
+
85
+
86
+ == Requirements:
87
+ RubyWebDialogs - I am using 0.0.11 2004-3-9<br>
88
+ This package you downloaded rwddemo should have a runtime version of
89
+ the needed rubywebdialog files<br>
90
+
91
+ Ruby I am using version 1.8.2
92
+
93
+ I have tested this under Linux-Debian kernel 2.6.9
94
+
95
+ == Operation:
96
+ The code files reside in the code directory and are combined before
97
+ the main Class is loaded
98
+
99
+ The rwd files in gui are combined before the gui is activated
100
+
101
+ == Installing:
102
+
103
+ unzip the file
104
+ then cd to the directory
105
+ unzip rwdashell-x.y.zip
106
+
107
+
108
+ == Trouble shooting:
109
+
110
+ If the program is not working, try looking at the ev subdirectory. That is where
111
+ the runtime of rubywebdialogs are.
112
+
113
+ for long term installation, I would suggest putting most files in a lib directory
114
+ like /usr/lib/rwdshell
115
+ then make a writable directory the local directory for command files to be written
116
+ like ~/rwdshell
117
+
118
+
119
+ Closing the browser doesn't terminate the application. You have to use the application's close-button And terminating the application doesn't terminate the application when running in network mode. You just log out.
120
+
121
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
122
+
123
+ RubyWebDialogs is a platform independent graphical user interface for Ruby applications. It generates HTML and serves it with an internal HTTP server, so you can use your favorite web browser as the front end for your Ruby application. All this means, that it can be used on almost every platform, like Ruby itself. http://www.erikveen.dds.nl/rubywebdialogs/
124
+
125
+
126
+ For more information see:
127
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
128
+
129
+ For more information about RubyWebDialogs see:<br>
130
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
131
+
132
+ Thanks, Steven Gibson
133
+
134
+ == Changelog
135
+ version 0.07
136
+ updated to rwdtinker 1.80
137
+ fix configuration editing
138
+
139
+ Version 0.06
140
+ updated to rwdtinker 1.73
141
+
142
+ Version 0.05
143
+ updated to rwdtinker 1.66
144
+ changed SAFE level to 0 - don't put online
145
+ updated to Webdialog 0.2.0 4-2005 version
146
+
147
+ Version 0.04
148
+ now only using rubytorrent to read metafile data
149
+ changed config file screen
150
+ fixed file not found error on download tab
151
+ updated for rwdtinker 1.65
152
+ new helpabout
153
+ new documents list
154
+
155
+ Version 0.03
156
+ added directory name to download window
157
+ resuming download clearer
158
+ added viewing upload progress
159
+ updated for rwdtinker 1.64
160
+ added some unit tests
161
+
162
+ Version 0.02
163
+ Correct GUI directory location
164
+ modify link to directory location of torrentfiles
165
+
166
+ Version 0.01
167
+ initial release
168
+ view torrent metafile details
169
+ download torrents from local torrent metafiles
170
+ uses http://rubyforge.org/projects/rubytorrent/
171
+ and http://rubyforge.org/projects/aversa/
172
+
173
+
174
+
175
+
176
+
177
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rwdziprwdwtorrent
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.06"
4
+ version: "0.07"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Gibson
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-02 00:00:00 -07:00
12
+ date: 2008-10-05 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: rwdtorrent is a GUI front end for rubyTorrent with rwdtinker and RubyWebDialogs features. Shell script runner, Ruby eval commands, calendar, mini calculator
16
+ description: rwdtorrent is a front end for using bittorrent under rwdtinker and RubyWebDialogs.
17
17
  email: smalllinux@gmail.com
18
18
  executables: []
19
19
 
@@ -22,7 +22,8 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - rwdwtorrent-0.06.zip
25
+ - rwdwtorrent-0.07.zip
26
+ - rwd_files/HowTo_Torrent.txt
26
27
  has_rdoc: true
27
28
  homepage: http://rubyforge.org/projects/rwdapplications/
28
29
  post_install_message:
@@ -46,9 +47,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
47
  requirements: []
47
48
 
48
49
  rubyforge_project: rwdapplications
49
- rubygems_version: 1.1.1
50
+ rubygems_version: 1.2.0
50
51
  signing_key:
51
52
  specification_version: 2
52
- summary: rwdtorrent is a GUI front end for rubyTorrent with rwdtinker and RubyWebDialogs features.
53
+ summary: rwdtorrent is a front end for using bittorrent under rwdtinker and RubyWebDialogs.
53
54
  test_files: []
54
55