rwdtorrent 0.01

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. data/Readme.txt +146 -0
  2. data/bin/rwdtorrent +19 -0
  3. data/code/01rwdcore/01rwdcore.rb +22 -0
  4. data/code/01rwdcore/02helptexthashbegin.rb +4 -0
  5. data/code/01rwdcore/03helptexthash.rb +31 -0
  6. data/code/01rwdcore/04helptextend.rb +6 -0
  7. data/code/01rwdcore/openhelpwindow.rb +31 -0
  8. data/code/01rwdcore/returntomain.rb +10 -0
  9. data/code/01rwdcore/rwdtinkerversion.rb +15 -0
  10. data/code/01rwdcore/rwdwindowreturn.rb +11 -0
  11. data/code/01rwdcore/test_cases.rb +126 -0
  12. data/code/01rwdcore/test_harness.rb +15 -0
  13. data/code/01rwdcore/uploadreturns.rb +62 -0
  14. data/code/superant.com.rwdtinkerbackwindow/controlclient.rb +99 -0
  15. data/code/superant.com.rwdtinkerbackwindow/diagnostictab.rb +25 -0
  16. data/code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb +61 -0
  17. data/code/superant.com.rwdtinkerbackwindow/installapplet.rb +24 -0
  18. data/code/superant.com.rwdtinkerbackwindow/installgemapplet.rb +20 -0
  19. data/code/superant.com.rwdtinkerbackwindow/installremotegem.rb +19 -0
  20. data/code/superant.com.rwdtinkerbackwindow/listgemdirs.rb +12 -0
  21. data/code/superant.com.rwdtinkerbackwindow/listgemzips.rb +54 -0
  22. data/code/superant.com.rwdtinkerbackwindow/listinstalledfiles.rb +11 -0
  23. data/code/superant.com.rwdtinkerbackwindow/listzips.rb +31 -0
  24. data/code/superant.com.rwdtinkerbackwindow/loadconfigurationrecord.rb +32 -0
  25. data/code/superant.com.rwdtinkerbackwindow/loadconfigurationvariables.rb +13 -0
  26. data/code/superant.com.rwdtinkerbackwindow/network.rb +87 -0
  27. data/code/superant.com.rwdtinkerbackwindow/openappletname.rb +18 -0
  28. data/code/superant.com.rwdtinkerbackwindow/openhelpwindowtinkerwin2.rb +42 -0
  29. data/code/superant.com.rwdtinkerbackwindow/remotegemlist.rb +24 -0
  30. data/code/superant.com.rwdtinkerbackwindow/removeapplet.rb +32 -0
  31. data/code/superant.com.rwdtinkerbackwindow/runrwdtinkerbackwindow.rb +12 -0
  32. data/code/superant.com.rwdtinkerbackwindow/rwdtinkerwin2version.rb +14 -0
  33. data/code/superant.com.rwdtinkerbackwindow/saveconfigurationrecord.rb +18 -0
  34. data/code/superant.com.rwdtinkerbackwindow/viewappletcontents.rb +21 -0
  35. data/code/superant.com.rwdtinkerbackwindow/viewgemappletcontents.rb +21 -0
  36. data/code/superant.com.rwdtorrent/helptesthashrwdtorrent.rb +55 -0
  37. data/code/superant.com.rwdtorrent/listnamerecord.rb +15 -0
  38. data/code/superant.com.rwdtorrent/loadconfigurationrecord.rb +36 -0
  39. data/code/superant.com.rwdtorrent/loadconfigurationvariables.rb +13 -0
  40. data/code/superant.com.rwdtorrent/openhelpwindowtorrent.rb +32 -0
  41. data/code/superant.com.rwdtorrent/returntomain.rb +10 -0
  42. data/code/superant.com.rwdtorrent/runtorrentwindow.rb +57 -0
  43. data/code/superant.com.rwdtorrent/rwdtorrenthelpabout.rb +14 -0
  44. data/code/superant.com.rwdtorrent/saveconfigurationrecord.rb +18 -0
  45. data/code/superant.com.rwdtorrent/stoptorrentdownload.rb +12 -0
  46. data/code/superant.com.rwdtorrent/viewtorrentlist.rb +20 -0
  47. data/code/superant.com.rwdtorrent/viewtorrentmetafile.rb +36 -0
  48. data/code/zz0applicationend/zz0end.rb +4 -0
  49. data/configuration/language.dist +7 -0
  50. data/configuration/rwdapplicationidentity.dist +3 -0
  51. data/configuration/rwdtinker.dist +15 -0
  52. data/configuration/rwdtorrent.dist +11 -0
  53. data/configuration/tinkerwin2variables.dist +17 -0
  54. data/downloads/nodownloads.txt +1 -0
  55. data/ev/browser.rb +109 -0
  56. data/ev/ftools.rb +170 -0
  57. data/ev/net.rb +750 -0
  58. data/ev/ruby.rb +819 -0
  59. data/ev/rwd.rb +1849 -0
  60. data/ev/sgml.rb +236 -0
  61. data/ev/thread.rb +63 -0
  62. data/ev/tree.rb +343 -0
  63. data/ev/xml.rb +4 -0
  64. data/extras/aversa.rb +261 -0
  65. data/extras/rconftool.rb +380 -0
  66. data/extras/rubytorrent.rb +94 -0
  67. data/extras/rubytorrent/bencoding.rb +174 -0
  68. data/extras/rubytorrent/controller.rb +610 -0
  69. data/extras/rubytorrent/message.rb +128 -0
  70. data/extras/rubytorrent/metainfo.rb +214 -0
  71. data/extras/rubytorrent/package.rb +600 -0
  72. data/extras/rubytorrent/peer.rb +536 -0
  73. data/extras/rubytorrent/server.rb +166 -0
  74. data/extras/rubytorrent/tracker.rb +225 -0
  75. data/extras/rubytorrent/typedstruct.rb +132 -0
  76. data/extras/rubytorrent/util.rb +186 -0
  77. data/extras/zip/ioextras.rb +114 -0
  78. data/extras/zip/stdrubyext.rb +111 -0
  79. data/extras/zip/tempfile_bugfixed.rb +195 -0
  80. data/extras/zip/zip.rb +1377 -0
  81. data/extras/zip/zipfilesystem.rb +558 -0
  82. data/extras/zip/ziprequire.rb +61 -0
  83. data/gui/00coreguibegin/applicationguitop.rwd +4 -0
  84. data/gui/frontwindow0/10viewnote.rwd +32 -0
  85. data/gui/frontwindow0/30viewtorrent.rwd +13 -0
  86. data/gui/frontwindow0/40rwdtorrentrefresh.rwd +28 -0
  87. data/gui/frontwindow0/67viewconfiguration.rwd +38 -0
  88. data/gui/frontwindowselectionbegin/selectiontabbegin/selectiontabbegin.rwd +16 -0
  89. data/gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd +12 -0
  90. data/gui/frontwindowselectionzend/viewselectionzend/viewselectionend.rwd +3 -0
  91. data/gui/frontwindowtdocumentbegin/superant.com.documentsbegin/tt0documentbegin.rwd +6 -0
  92. data/gui/frontwindowtdocuments/superant.com.documents/uu5documents.rwd +15 -0
  93. data/gui/frontwindowtdocuments/superant.com.tinkerwin2documents/uu5documents.rwd +6 -0
  94. data/gui/frontwindowtdocuments/superant.com.torrentdocument/doctorrent.rwd +6 -0
  95. data/gui/frontwindowtdocumentzend/superant.com.documentsend/ww0documentend.rwd +12 -0
  96. data/gui/frontwindowz1end/frontwindowend/xx0rwdfirsttab.rwd +6 -0
  97. data/gui/helpaboutbegin/superant.com.helpaboutbegin/ya0helpscreenstart.rwd +3 -0
  98. data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/1appname.rwd +4 -0
  99. data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/3copyright.rwd +3 -0
  100. data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/5version.rwd +10 -0
  101. data/gui/helpaboutinstalled/superant.com.torrenthelpabout/1appname.rwd +4 -0
  102. data/gui/helpaboutinstalled/superant.com.torrenthelpabout/3copyright.rwd +3 -0
  103. data/gui/helpaboutinstalled/superant.com.torrenthelpabout/5version.rwd +9 -0
  104. data/gui/helpaboutzend/superant.com.helpaboutend/helpscreenend.rwd +3 -0
  105. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/1appname.rwd +5 -0
  106. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/40rwdlistzips.rwd +42 -0
  107. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/45installremotezip.rwd +44 -0
  108. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/50rwdlistapplets.rwd +44 -0
  109. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/60editconfiguration.rwd +38 -0
  110. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/70rwddiagnostics.rwd +29 -0
  111. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/75rwdcontrol.rwd +33 -0
  112. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/80tab1.rwd +11 -0
  113. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/9backend.rwd +6 -0
  114. data/gui/tinkerbackwindows/superant.com.tinkerhelpwindow/1appname.rwd +31 -0
  115. data/gui/tinkerbackwindows/superant.com.tinkerhelpwindow/9end.rwd +4 -0
  116. data/gui/tinkerbackwindows/superant.com.torrentdisplay/torrentdisplaywindow.rwd +31 -0
  117. data/gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd +19 -0
  118. data/gui/zzcoreguiend/tinkerapplicationguiend/yy9rwdend.rwd +4 -0
  119. data/init.rb +277 -0
  120. data/installed/rwdviewlogo-0.4.inf +4 -0
  121. data/lang/en/rwdcore/languagefile.rb +16 -0
  122. data/lang/es/rwdcore/languagefile-es.rb +14 -0
  123. data/lang/jp/rwdcore/languagefile.rb +9 -0
  124. data/lang/nl/rwdcore/languagefile.rb +19 -0
  125. data/lib/temp.rb +1 -0
  126. data/rwd_files/HowTo_Tinker.txt +405 -0
  127. data/rwd_files/HowTo_TinkerWin2.txt +202 -0
  128. data/rwd_files/HowTo_Torrent.txt +146 -0
  129. data/rwd_files/Readme.txt +57 -0
  130. data/rwd_files/favicon.ico +0 -0
  131. data/rwd_files/rdoc-style.css +175 -0
  132. data/rwd_files/rwdapplications.html +54 -0
  133. data/rwd_files/rwdindex.html +6 -0
  134. data/rwd_files/tinker.png +0 -0
  135. data/rwdconfig.dist +10 -0
  136. data/tests/checkdepends.sh +4 -0
  137. data/tests/cleancnf.sh +5 -0
  138. data/tests/makedist.rb +44 -0
  139. data/tests/rdep.rb +354 -0
  140. data/tests/rwdtinkertestEN.rb +163 -0
  141. data/tests/test.result +32 -0
  142. data/tests/totranslate.lang +93 -0
  143. data/torrentfiles/freeculture-audiobook.zip.torrent +0 -0
  144. data/torrentfiles/freeculture.zip.torrent +0 -0
  145. data/zips/rwdahelloworld-0.5.zip +0 -0
  146. metadata +199 -0
@@ -0,0 +1,202 @@
1
+ = RwdTinker 2nd Window
2
+
3
+
4
+ RwdTinker Win2 has the applet adding and removal functions and a diagnostic tab
5
+
6
+ == Usage
7
+
8
+
9
+ How to Use the Tinker framework Program (rwdtinker)
10
+
11
+
12
+ 1. stand alone application
13
+ 2. framework for building applications
14
+ 3. Open brower windows with html documents
15
+
16
+ The GUI interface used is RubyWebDialogs
17
+
18
+
19
+ Start the program by typing
20
+ ruby init.rb
21
+
22
+ Then point your web browser to:
23
+ http://localhost:7705/
24
+
25
+ == Installing Applets
26
+
27
+ * unzip an applet
28
+
29
+ You can download an applet created by someone else
30
+ put the file in the zips directory
31
+ unzip the directory into the program directoy
32
+ unzip randomapplet.zip
33
+
34
+ This should right the needed files in the correct directories
35
+
36
+
37
+
38
+
39
+
40
+ Viewing a installed Applets:
41
+
42
+
43
+ Go to "List Scripts" tab
44
+
45
+
46
+ You can get a list of all installed applets by clicking the listfiles button
47
+
48
+ To see the text of a install file
49
+ Type in the name of the file you want.
50
+
51
+ type it without the inf ending
52
+ rwdapplet-0.1
53
+
54
+ Then click the "View Installed File" button
55
+
56
+ If it finds the file it will open it. It displays the text the search box.
57
+
58
+
59
+
60
+ == Adding Applets
61
+
62
+ To add code, commands and gui tabs
63
+
64
+ Move program files into a directory under the code directory.
65
+ Move gui files into a directory under the gui directory.
66
+ The gui directory name you create is important, because the gui
67
+ rwd file is built in alpha order by directory name
68
+
69
+
70
+ There are two ways to add applets to the directories.
71
+
72
+ Creating code
73
+
74
+
75
+ * Manually write code and gui files
76
+
77
+ The files go into your code directory
78
+ the filenames for code do not matter
79
+
80
+ The gui files go into your gui directory
81
+ The gui files need to be in order by name and end with .rwd
82
+
83
+
84
+
85
+ If you need a config file that goes in the configuration directory
86
+
87
+ internationalization and localization are helped by replacing the
88
+ gui files in the subdirectories under gui
89
+
90
+
91
+
92
+
93
+
94
+
95
+ == Documents
96
+
97
+
98
+ when you click on a document name, the document should pop up in a
99
+ browser window, or in another browser tab.
100
+
101
+ To exit, press the x inside the browser window.
102
+
103
+
104
+
105
+ == Languages
106
+
107
+
108
+ You can add tranlations in the lang subdirectory
109
+ You change the $lang constant in Tinker config file in the configuration directory
110
+ You can see one translation on the install applet tab, after you have installed and applet
111
+
112
+ == Requirements:
113
+ RubyWebDialogs - I am using 0.1.2
114
+ This package you downloaded should have a runtime version of
115
+ the needed rubywebdialog files
116
+
117
+ Ruby I am using version 1.8.2
118
+
119
+ I have tested this under Linux-Debian kernel 2.6.9
120
+
121
+ = Operation:
122
+ The code files reside in the code directory and are combined before
123
+ the main Class is loaded
124
+
125
+ The rwd files in gui are combined before the gui is activated
126
+
127
+ Translated text reside in the lang directory
128
+
129
+ == Installing:
130
+
131
+ untar the file
132
+ tar zxvf rwdtinker-x.y.tar.gz
133
+ then cd to the directory
134
+ cd rwdshell-x.y
135
+ then start the init.rb program file
136
+ ruby init.rb
137
+ Then point your browser at http://localhost:7705
138
+ or where it tells you.
139
+ Trouble shooting:
140
+
141
+ If the program is not working, try looking at the ev subdirectory. That is where
142
+ the runtime of rubywebdialogs are.
143
+
144
+ for long term installation, I would suggest putting most files in a lib directory
145
+ like /usr/lib/rwdshell
146
+ then make a writable directory the local directory for command files to be written
147
+ like ~/rwdshell
148
+
149
+
150
+ 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.
151
+
152
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
153
+
154
+ 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/
155
+
156
+ == Credits
157
+
158
+ Thanks go to:
159
+
160
+ * Matz, for creating Ruby in the first place.
161
+ * Erik, for creating RubyWebDialogs.
162
+ * Charlotte, my wife for coming up for the name Tinker.
163
+
164
+ == License
165
+
166
+ rwdtinker is copyright (c) 2004 Steven Gibson. It is free software, and may be redistributed
167
+ under the terms of the GPL licence:
168
+
169
+ For more information see:
170
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
171
+
172
+
173
+ For more information about RubyWebDialogs see:
174
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
175
+
176
+ Thanks, Steven Gibson
177
+
178
+ == Changelog:
179
+ version 0.5
180
+ changing version on help screen to be button
181
+ added version window
182
+ added diagnostic tab
183
+ changed order on remove applets tab
184
+
185
+ version 0.4
186
+ changed order of elements on install applet tab
187
+ Add more i81n ablility - added lang directorys for language hash files
188
+ Improved name selection in zips and applet screens
189
+
190
+ version 0.3
191
+ changed location of code files
192
+ only directory of code files needs to be added to inf file
193
+ changed location of gui files
194
+ only directory of gui files needs to be added to inf file
195
+
196
+
197
+ version 0.2
198
+ added zip listing and installing - Linux only
199
+ This version is a dropin replacement for a applet
200
+ in the core rwdtinker
201
+
202
+
@@ -0,0 +1,146 @@
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.01
136
+ initial release
137
+ view torrent metafile details
138
+ download torrents from local torrent metafiles
139
+ uses http://rubyforge.org/projects/rubytorrent/
140
+ and http://rubyforge.org/projects/aversa/
141
+
142
+
143
+
144
+
145
+
146
+
@@ -0,0 +1,57 @@
1
+ rwdapplications are web brower applications
2
+
3
+ The GUI interface used is RubyWebDialogs
4
+
5
+ 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/
6
+
7
+
8
+ Start the program by:
9
+ changing to the directory and
10
+ ruby init.rb
11
+
12
+ Then point your web browser to:
13
+ http://localhost:7701/
14
+
15
+ Or to the port that shows on the console or in the config.cnf file
16
+
17
+ Requirements:
18
+ RubyWebDialogs - I am using 0.0.11 2004-3-9
19
+ This package you downloaded should have a runtime version of
20
+ the needed rubywebdialog files
21
+
22
+ Ruby I am using version 1.8.2
23
+
24
+ I have tested this under Linux-Debian kernel 2.6.9
25
+
26
+ Operation:
27
+ The code files reside in the code directory and are combined before
28
+ the main Class is loaded
29
+
30
+ The rwd files in gui are combined before the gui is activated
31
+
32
+ Trouble shooting:
33
+
34
+ untar the file
35
+ tar zxvf rwdapplication-x.y.tar.gz
36
+ then cd to the directory
37
+ cd rwdapplication-x.y
38
+ then start the init.rb program file
39
+ ruby init.rb
40
+
41
+
42
+ If the program is not working, try looking at the ev subdirectory. That is where
43
+ the runtime of rubywebdialogs are.
44
+
45
+ for long term installation, I would suggest putting most files in a lib directory
46
+ like /usr/lib/rwdshell
47
+ then make a writable directory the local directory for command files to be written
48
+ like ~/rwdshell
49
+
50
+
51
+ 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.
52
+
53
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
54
+
55
+ Steven Gibson
56
+ stevengibson@superant.com
57
+ http://rwdapplications.rubyforge.org/
Binary file
@@ -0,0 +1,175 @@
1
+
2
+ body {
3
+ margin: 0;
4
+ padding: 0;
5
+ background: white;
6
+ }
7
+
8
+ h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
9
+ h1 { font-size: 120%; }
10
+ h2,h3,h4 { margin-top: 1em; }
11
+
12
+ a { background: #eef; color: #039; text-decoration: none; }
13
+ a:hover { background: #039; color: #eef; }
14
+
15
+ /* Override the base stylesheet's Anchor inside a table cell */
16
+ td > a {
17
+ background: transparent;
18
+ color: #039;
19
+ text-decoration: none;
20
+ }
21
+
22
+ /* === Structural elements =================================== */
23
+
24
+ div#index {
25
+ margin: 0;
26
+ padding: 0;
27
+ font-size: 0.9em;
28
+ }
29
+
30
+ div#index a {
31
+ margin-left: 0.7em;
32
+ }
33
+
34
+ div#classHeader {
35
+ width: auto;
36
+ background: #039;
37
+ color: white;
38
+ padding: 0.5em 1.5em 0.5em 1.5em;
39
+ margin: 0;
40
+ border-bottom: 3px solid #006;
41
+ }
42
+
43
+ div#classHeader a {
44
+ background: inherit;
45
+ color: white;
46
+ }
47
+
48
+ div#classHeader td {
49
+ background: inherit;
50
+ color: white;
51
+ }
52
+
53
+ div#fileHeader {
54
+ width: auto;
55
+ background: #039;
56
+ color: white;
57
+ padding: 0.5em 1.5em 0.5em 1.5em;
58
+ margin: 0;
59
+ border-bottom: 3px solid #006;
60
+ }
61
+
62
+ div#fileHeader a {
63
+ background: inherit;
64
+ color: white;
65
+ }
66
+
67
+ div#fileHeader td {
68
+ background: inherit;
69
+ color: white;
70
+ }
71
+
72
+ div#bodyContent {
73
+ padding: 0 1.5em 0 1.5em;
74
+ }
75
+
76
+ div#description {
77
+ padding: 0.5em 1.5em;
78
+ background: #efefef;
79
+ border: 1px dotted #999;
80
+ }
81
+
82
+ div#description h1,h2,h3,h4,h5,h6 {
83
+ color: black;
84
+ background: transparent;
85
+ }
86
+
87
+ div#validator-badges {
88
+ text-align: center;
89
+ }
90
+ div#validator-badges img { border: 0; }
91
+
92
+ div#copyright {
93
+ color: #333;
94
+ background: #efefef;
95
+ font: 0.75em sans-serif;
96
+ margin-top: 5em;
97
+ margin-bottom: 0;
98
+ padding: 0.5em 2em;
99
+ }
100
+
101
+
102
+ /* === Classes =================================== */
103
+
104
+ table.header-table {
105
+ color: white;
106
+ font-size: small;
107
+ }
108
+
109
+ .type-note {
110
+ font-size: small;
111
+ color: #DEDEDE;
112
+ }
113
+
114
+ .section-bar {
115
+ background: #eee;
116
+ color: #333;
117
+ padding: 3px;
118
+ border: 1px solid #999;
119
+ }
120
+
121
+ .top-aligned-row { vertical-align: vertical-align: top }
122
+
123
+ /* --- Context section classes ----------------------- */
124
+
125
+ .context-row { }
126
+ .context-item-name { font-family: monospace; font-weight: bold; color: black; }
127
+ .context-item-value { font-size: x-small; color: #448; }
128
+ .context-item-desc { background: #efefef; }
129
+
130
+ /* --- Method classes -------------------------- */
131
+ .method-detail {
132
+ background: #EFEFEF;
133
+ padding: 0;
134
+ margin-top: 0.5em;
135
+ margin-bottom: 0.5em;
136
+ border: 1px dotted #DDD;
137
+ }
138
+ .method-heading {
139
+ color: black;
140
+ background: #AAA;
141
+ border-bottom: 1px solid #666;
142
+ padding: 0.2em 0.5em 0 0.5em;
143
+ }
144
+ .method-signature { color: black; background: inherit; }
145
+ .method-name { font-weight: bold; }
146
+ .method-args { font-style: italic; }
147
+ .method-description { padding: 0 0.5em 0 0.5em; }
148
+
149
+ /* --- Source code sections -------------------- */
150
+
151
+ a.source-toggle { font-size: 90%; }
152
+ div.method-source-code {
153
+ background: #262626;
154
+ color: #ffdead;
155
+ margin: 1em;
156
+ padding: 0.5em;
157
+ border: 1px dashed #999;
158
+ overflow: hidden;
159
+ }
160
+
161
+ div.method-source-code pre { color: #ffdead; overflow: hidden; }
162
+
163
+ /* --- Ruby keyword styles --------------------- */
164
+
165
+ .standalone-code { background: #221111; color: #ffdead; overflow: hidden; }
166
+
167
+ .ruby-constant { color: #7fffd4; background: transparent; }
168
+ .ruby-keyword { color: #00ffff; background: transparent; }
169
+ .ruby-ivar { color: #eedd82; background: transparent; }
170
+ .ruby-operator { color: #00ffee; background: transparent; }
171
+ .ruby-identifier { color: #ffdead; background: transparent; }
172
+ .ruby-node { color: #ffa07a; background: transparent; }
173
+ .ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
174
+ .ruby-regexp { color: #ffa07a; background: transparent; }
175
+ .ruby-value { color: #7fffd4; background: transparent; }