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
data/Readme.txt ADDED
@@ -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
+
data/bin/rwdtorrent ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby
2
+ #--
3
+ # Copyright 2004 Steven Gibson <steven@superant.com>
4
+ # RwdTinker application
5
+ #
6
+ # This program is free software. It may be redistributed and/or modified under
7
+ # the terms of the GPL version 2 (or later), or the
8
+ # Ruby licence.
9
+ #
10
+ #++
11
+
12
+
13
+ $progdir = File::expand_path( File.dirname(__FILE__))
14
+
15
+ Dir.chdir($progdir)
16
+
17
+ Dir.chdir("..")
18
+
19
+ `ruby init.rb`
@@ -0,0 +1,22 @@
1
+ # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
2
+ # This application is a framework for writing programs from RubyWebDialogs
3
+ # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
+ # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
+ # This class is the top class for the RwdTinker application
6
+
7
+ class RwdTinker < RWDialog
8
+
9
+ def main
10
+ @rwd_window = "main"
11
+ @result = "idle"
12
+ @display= "idle"
13
+ if TestNow
14
+
15
+ rwdtest_harness
16
+ end
17
+ end
18
+
19
+ def inspect
20
+ "Rwdtinker Application "
21
+ end
22
+
@@ -0,0 +1,4 @@
1
+
2
+
3
+ Helptext = Hash.new { |hh, kk| hh[kk] = "ERROR: Identificador de mensaje desconocido: #{kk.inspect}."; hh[kk] }
4
+ helpmessage = {
@@ -0,0 +1,31 @@
1
+ # Help files for RwdTinker core
2
+
3
+
4
+ :general_help => "You can work with Applets: go to 'Selection tab',
5
+ On that back screen you will find:
6
+ List Applets: you can see and delete installed applets
7
+ List Zips: you can see lists of applets that you can install
8
+ Edit Configuration: You can view the rwdtinker configuration and change it
9
+ Diagnostic Tab: You can view the environments variables that rwdtinker is running with
10
+ ",
11
+ :network_help => "Using over a Network: To serve the application over your local LAN,change the last line in the
12
+ init.rb file to something like:\n
13
+ RwdTinker.file(RWDFile).serve(8080, '-r' ? '.rwduids' : nil)\n
14
+ Then you should be able to login at: http://yourhostname:8080",
15
+
16
+
17
+ :documents_rwdtinker => "Documents:
18
+
19
+
20
+ when you click on a document name, the document should pop up in a
21
+ browser window, or in another browser tab.",
22
+ :remote_control => "Remote control gives you a way to determine what applications are running on which ports
23
+
24
+ The name of the application is set in the config file
25
+ You need to click the show remote command choices first - this will show the port and query choices
26
+ Then you can click in 'Run Command' to see if other applications are running.
27
+
28
+ The remote ports daemon will not be running unless you start it.
29
+
30
+ "
31
+
@@ -0,0 +1,6 @@
1
+
2
+ }
3
+ helpmessage.each { |kk, vv| Helptext[kk] = vv }
4
+
5
+
6
+
@@ -0,0 +1,31 @@
1
+ # this code is to call the help window
2
+ def runhelpwindow
3
+ $helptopicsarray = $helptopicsarray | ["applet_installation","applet_viewing","applet_tinkerbackeditconfiguration","remote_control"]
4
+
5
+ if @rwd_window == "main"
6
+ if @rwd_tab == "documentsrwdtinkerone"
7
+ $help_topic = "documents_rwdtinker"
8
+ end
9
+
10
+ end
11
+
12
+ if @rwd_window == "rwdtinkerhelpwindow"
13
+ puts "in help window processing"
14
+ else
15
+ $previouswindow = @rwd_window
16
+ $previoustab = @rwd_tab
17
+ end
18
+
19
+
20
+ @rwdhelptopic = $help_topic
21
+ @rwdhelpdataoutput = "#{Helptext[:"#{$help_topic}"]}"
22
+ @rwdhelpsubchoicesoutput = $helptopicsarray.rwd_method("choosenewhelptopic")
23
+ @rwd_window = "rwdtinkerhelpwindow"
24
+ end
25
+
26
+ def choosenewhelptopic(inffile)
27
+ $help_topic = inffile
28
+ runhelpwindow
29
+ end
30
+
31
+
@@ -0,0 +1,10 @@
1
+ # Application RwdAddresses orginally (c) 2004 Steven Gibson under GPL.
2
+ #
3
+ # For more information about see http://www.rubyforge.net/projects/rwdapplications
4
+
5
+ # call the window
6
+ def returntomain
7
+ @rwd_window = "main"
8
+ @rwd_tab = "selectiontab"
9
+ end
10
+
@@ -0,0 +1,15 @@
1
+ # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
2
+ # This application is a framework for writing programs from RubyWebDialogs
3
+ # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
+ # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
+
6
+ # return the version constant defined in the config file
7
+ def runrwdtinkerversion
8
+ @rwd_window = "applicationversion"
9
+ @versionappnamedisplay = "RwdTinker"
10
+ @versioncopyrightdisplay = "(c) 2004 Steven Gibson "
11
+ @versionnumberdisplay = "Version " + RwdTinkerVersion
12
+
13
+ end
14
+
15
+
@@ -0,0 +1,11 @@
1
+ # this code is to return to the window back from the help window
2
+ def rwdwindowreturn
3
+
4
+
5
+ @rwd_window = "#{$previouswindow}"
6
+ @rwd_tab = "#{$previoustab}"
7
+ end
8
+
9
+
10
+
11
+
@@ -0,0 +1,126 @@
1
+ # test harness
2
+ def rwdtinker_all_tests
3
+ print "in rwdtinker all tests\n"
4
+ test_runrwdtinkerbackwindow
5
+ end
6
+
7
+
8
+ def test_runrwdtinkerbackwindow
9
+
10
+ require 'test/unit'
11
+ begin
12
+
13
+ runrwdtinkerbackwindow
14
+
15
+ raise NotImplementedError, 'Need to write test_runrwdtinkerbackwindow'
16
+
17
+ rescue NotImplementedError
18
+ $stderr.print $!
19
+
20
+ end
21
+ end
22
+
23
+
24
+
25
+ def test_choosenewhelptopic
26
+ raise NotImplementedError, 'Need to write test_choosenewhelptopic'
27
+ end
28
+
29
+
30
+ def test_listinstalledfiles
31
+ raise NotImplementedError, 'Need to write test_listinstalledfiles'
32
+ end
33
+
34
+
35
+ def test_listzipfilestoinstall
36
+ raise NotImplementedError, 'Need to write test_listzipfilestoinstall'
37
+ end
38
+
39
+ def test_loadconfigurationrecord
40
+ raise NotImplementedError, 'Need to write test_loadconfigurationrecord'
41
+ end
42
+
43
+ def test_loadconfigurationvariables
44
+ raise NotImplementedError, 'Need to write test_loadconfigurationvariables'
45
+ end
46
+
47
+ def test_loadgemspecrecord
48
+ raise NotImplementedError, 'Need to write test_loadgemspecrecord'
49
+ end
50
+
51
+ def test_loadrubyslippersconfiguration
52
+ raise NotImplementedError, 'Need to write test_loadrubyslippersconfiguration'
53
+ end
54
+
55
+ def test_loadrubyslippersconfigurationvariables
56
+ raise NotImplementedError, 'Need to write test_loadrubyslippersconfigurationvariables'
57
+ end
58
+
59
+ def test_main
60
+ raise NotImplementedError, 'Need to write test_main'
61
+ end
62
+
63
+ def test_network_demon
64
+ raise NotImplementedError, 'Need to write test_network_demon'
65
+ end
66
+
67
+ def test_network_start
68
+ raise NotImplementedError, 'Need to write test_network_start'
69
+ end
70
+
71
+ def test_openappletname
72
+ raise NotImplementedError, 'Need to write test_openappletname'
73
+ end
74
+
75
+ def test_removeapplet
76
+ raise NotImplementedError, 'Need to write test_removeapplet'
77
+ end
78
+
79
+ def test_returntomain
80
+ raise NotImplementedError, 'Need to write test_returntomain'
81
+ end
82
+
83
+ def test_runcontrolcommand
84
+ raise NotImplementedError, 'Need to write test_runcontrolcommand'
85
+ end
86
+
87
+
88
+ def test_runhelpwindow
89
+ raise NotImplementedError, 'Need to write test_runhelpwindow'
90
+ end
91
+
92
+
93
+
94
+
95
+ def test_runrwdtinkerversion
96
+ raise NotImplementedError, 'Need to write test_runrwdtinkerversion'
97
+ end
98
+
99
+ def test_runrwdtinkerwin2version
100
+ raise NotImplementedError, 'Need to write test_runrwdtinkerwin2version'
101
+ end
102
+
103
+ def test_runviewplatform
104
+ raise NotImplementedError, 'Need to write test_runviewplatform'
105
+ end
106
+
107
+ def test_rwdtinkerversiondiagnostic
108
+ raise NotImplementedError, 'Need to write test_rwdtinkerversiondiagnostic'
109
+ end
110
+
111
+ def test_rwdwindowreturn
112
+ raise NotImplementedError, 'Need to write test_rwdwindowreturn'
113
+ end
114
+
115
+ def test_saveconfigurationrecord
116
+ raise NotImplementedError, 'Need to write test_saveconfigurationrecord'
117
+ end
118
+
119
+
120
+ def test_viewappletcontents
121
+ raise NotImplementedError, 'Need to write test_viewappletcontents'
122
+ end
123
+
124
+
125
+
126
+
@@ -0,0 +1,15 @@
1
+ # this to start the test harness
2
+ def rwdtest_harness
3
+
4
+ print "in test harness\n"
5
+ $testharnessarray.each { |x|
6
+ print "calling #{x}\n"
7
+ eval("#{x}")
8
+
9
+ }
10
+
11
+ end
12
+
13
+
14
+
15
+