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,61 @@
1
+ require 'zip/zip'
2
+
3
+ class ZipList
4
+ def initialize(zipFileList)
5
+ @zipFileList = zipFileList
6
+ end
7
+
8
+ def get_input_stream(entry, &aProc)
9
+ @zipFileList.each {
10
+ |zfName|
11
+ Zip::ZipFile.open(zfName) {
12
+ |zf|
13
+ begin
14
+ return zf.get_input_stream(entry, &aProc)
15
+ rescue Errno::ENOENT
16
+ end
17
+ }
18
+ }
19
+ raise Errno::ENOENT,
20
+ "No matching entry found in zip files '#{@zipFileList.join(', ')}' "+
21
+ " for '#{entry}'"
22
+ end
23
+ end
24
+
25
+
26
+ module Kernel
27
+ alias :oldRequire :require
28
+
29
+ def require(moduleName)
30
+ zip_require(moduleName) || oldRequire(moduleName)
31
+ end
32
+
33
+ def zip_require(moduleName)
34
+ return false if already_loaded?(moduleName)
35
+ get_resource(ensure_rb_extension(moduleName)) {
36
+ |zis|
37
+ eval(zis.read); $" << moduleName
38
+ }
39
+ return true
40
+ rescue Errno::ENOENT => ex
41
+ return false
42
+ end
43
+
44
+ def get_resource(resourceName, &aProc)
45
+ zl = ZipList.new($:.grep(/\.zip$/))
46
+ zl.get_input_stream(resourceName, &aProc)
47
+ end
48
+
49
+ def already_loaded?(moduleName)
50
+ moduleRE = Regexp.new("^"+moduleName+"(\.rb|\.so|\.dll|\.o)?$")
51
+ $".detect { |e| e =~ moduleRE } != nil
52
+ end
53
+
54
+ def ensure_rb_extension(aString)
55
+ aString.sub(/(\.rb)?$/i, ".rb")
56
+ end
57
+ end
58
+
59
+ # Copyright (C) 2002 Thomas Sondergaard
60
+ # rubyzip is free software; you can redistribute it and/or
61
+ # modify it under the terms of the ruby license.
@@ -0,0 +1,4 @@
1
+ $rwdguivar=
2
+ "<application>
3
+ <window name=\"main\" title=\"Tinker - RubyWebDialogs\">
4
+ <tabs>"
@@ -0,0 +1,32 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"superantcomtorrenttab\" caption=\"View Torrent Metafiles\">
4
+
5
+ <table>
6
+ <row>View your torrent list and detail on this Tab</row>
7
+ <row> <p> </row>
8
+ <row> <p align=\"right\">Local Torrent Name:</p> <text size=70 name=\"a_viewtorrent\"/> </row>
9
+ <row> <p align=\"right\">Http Torrent Name:</p> <text size=70 name=\"a_viewtorrenthttp\"/> </row>
10
+
11
+ </table>
12
+ <horizontal>
13
+ <button caption=\"View local Torrent Detail\" action=\"viewtorrentfile\"/>
14
+
15
+
16
+ <button caption=\"View http Torrent Detail\" action=\"viewtorrentfilehttp\"/>
17
+
18
+
19
+ <button caption=\"Help\" action=\"runhelpwindowrwdtorrent\"/>
20
+
21
+ </horizontal>
22
+ <p>%a_torrentdata%</p>
23
+
24
+ <horizontal>
25
+ <button caption=\"List Torrent file list\" action=\"listtorrentrecordfiles\"/>
26
+
27
+
28
+
29
+ </horizontal>
30
+ <p>%%noterecordsresult%%</p>
31
+ <p>%%torrentrecordsresult%%</p>
32
+ </tab>"
@@ -0,0 +1,13 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"Rwdtorrentsize\" caption=\"View Torrent\">
4
+ <table>
5
+ <row> <p align=\"right\">View size of downloads</p> </row>
6
+ </table>
7
+ <horizontal>
8
+ <button caption=\"View Torrent Lists\" action=\"viewtorrentlist\"/>
9
+ <button caption=\"Help\" action=\"runhelpwindowrwdtorrent\"/>
10
+ </horizontal>
11
+ <p>%a_viewtorrentdisplay%</p>
12
+ </tab>
13
+ "
@@ -0,0 +1,28 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdtorrentrefresh\" caption=\"Torrent Download Display\">
4
+ <table>
5
+ <horizontal>
6
+ Begin Torrent Download: (a new window will open)
7
+ <row> <p align=\"right\">Local Torrent Name:</p> <text size=70 name=\"a_viewtorrent\"/> </row>
8
+
9
+
10
+ </horizontal>
11
+ <row><p> You should see that new window refresh every 10 seconds </row>
12
+ <row><p> You can return to this screen by clicking on back arrows or the cancel button</row>
13
+
14
+
15
+ </table>
16
+ <horizontal>
17
+ <button caption=\'Start local Download\' action=\'runtorrentwindow\'/>
18
+
19
+ <button caption=\"Help\" action=\"runhelpwindowrwdtorrent\"/>
20
+ <p></p>
21
+ </horizontal>
22
+ <horizontal>
23
+ <button caption=\"List Torrent file list\" action=\"listtorrentrecordfiles\"/>
24
+ <p></p>
25
+ </horizontal>
26
+ <p>%%torrentrecordsresult%%</p>
27
+ </tab>"
28
+
@@ -0,0 +1,38 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"viewrwdtorrentconfiguration\" caption=\"RwdTorrent Configuration\">
4
+
5
+
6
+
7
+ <table>
8
+ <row> <p> </row>
9
+ <row> <p align=\"right\">You can view or edit the configuration file here</row>
10
+ <row> <p> </row>
11
+ <horizontal>
12
+ <button caption=\"Fill Record\" action=\"loadrwdtorrentconfiguration\"/>
13
+ <button caption=\"Save Changes\" action=\"saverwdtorrentconfiguration\"/>
14
+ <button caption=\"Reload Variables\" action=\"loadrwdtorrentconfigurationvariables\"/>
15
+ <button caption=\"Help\" action=\"runhelpwindowrwdtorrent\"/>
16
+ </horizontal>
17
+ <table>
18
+
19
+ <row> <p align=\"right\">FileName:</p> <text name=\"a_torrentconfigurationfilename\"/> </row>
20
+ <row> <p align=\"right\">1:</p> <text size=70 name=\"a_torrentconfigline1\"/> </row>
21
+ <row> <p align=\"right\">2:</p> <text size=70 name=\"a_torrentconfigline2\"/> </row>
22
+ <row> <p align=\"right\">3:</p> <text size=70 name=\"a_torrentconfigline3\"/> </row>
23
+ <row> <p align=\"right\">4:</p> <text size=70 name=\"a_torrentconfigline4\"/> </row>
24
+ <row> <p align=\"right\">5:</p> <text size=70 name=\"a_torrentconfigline5\"/> </row>
25
+ <row> <p align=\"right\">6:</p> <text size=70 name=\"a_torrentconfigline6\"/> </row>
26
+ <row> <p align=\"right\">7:</p> <text size=70 name=\"a_torrentconfigline7\"/> </row>
27
+ <row> <p align=\"right\">8:</p> <text size=70 name=\"a_torrentconfigline8\"/> </row>
28
+ <row> <p align=\"right\">9:</p> <text size=70 name=\"a_torrentconfigline9\"/> </row>
29
+
30
+ </table>
31
+ <p>%extratorrentconfigdatadisplay%</p>
32
+ <p>
33
+ <p>%newtorrentconfigurationresult%</p>
34
+
35
+
36
+
37
+ </tab>"
38
+
@@ -0,0 +1,16 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"selectiontab\" caption=#{Message[:selection_panel]}>
4
+
5
+ <table>
6
+ <row> <p align=\"right\">Open a new window with callable applets you have loaded</row>
7
+
8
+ </table>
9
+ <horizontal>
10
+
11
+ <button caption=#{Message[:rwdtinker_help_window]} action=\"runhelpwindow\"/>
12
+
13
+
14
+ </horizontal>"
15
+
16
+
@@ -0,0 +1,12 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p></row>
4
+
5
+ <horizontal>
6
+
7
+ <button caption=#{Message[:rwdtinker_back_window]} action=\"runrwdtinkerbackwindow\"/>
8
+
9
+
10
+ </horizontal>"
11
+
12
+
@@ -0,0 +1,3 @@
1
+ $rwdguivar=
2
+ "
3
+ </tab>"
@@ -0,0 +1,6 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"documentsrwdtinkerone\" caption=#{Message[:documents]}>
4
+ <horizontal>
5
+ <table>"
6
+
@@ -0,0 +1,15 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"left\">
4
+ <a href=HowTo_Tinker.txt>Howto_Tinker.txt</a></p></row>
5
+ <row> <p align=\"left\">
6
+ <a href=Readme.txt>Readme.txt</a></p></row>
7
+ <row> <p align=\"left\">
8
+ <a href=COPYING>GPL License </a></p></row>
9
+ <row> <p align=\"left\">
10
+ <a href=rwdapplications.html>more information about rwdapplications </a></p></row>
11
+ <row> <p align=\"left\">
12
+ <a href=rwdindex.html>Link to online information about RubyWebdialogs </a></p></row>"
13
+
14
+
15
+
@@ -0,0 +1,6 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"left\">
4
+ <a href=HowTo_TinkerWin2.txt>Howto_TinkerWin2.txt</a></p></row>"
5
+
6
+
@@ -0,0 +1,6 @@
1
+
2
+ $rwdguivar=
3
+ "
4
+ <row> <p align=\"left\">
5
+ <a href=HowTo_Torrent.txt>Howto_Torrent.txt</a></p></row>"
6
+
@@ -0,0 +1,12 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"left\"><a href=.>Spawn a clone Dialog window</a></p></row>
4
+ </table>
5
+ </horizontal>
6
+ <horizontal>
7
+
8
+ <button caption=\"Help\" action=\"runhelpwindow\"/>
9
+
10
+ </horizontal>
11
+ </tab>"
12
+
@@ -0,0 +1,6 @@
1
+ $rwdguivar=
2
+ "
3
+ </tabs>
4
+ </window>"
5
+
6
+
@@ -0,0 +1,3 @@
1
+ $rwdguivar=
2
+ "
3
+ <helpwindow name=\"main\" title=\"Help About\">"
@@ -0,0 +1,4 @@
1
+ $rwdguivar=
2
+ "
3
+ <panel>
4
+ <row> <p align=\"center\">\"rwdtorrent\"</p></row>"
@@ -0,0 +1,3 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"center\">copyright s. gibson 2004,2005</p></row>"
@@ -0,0 +1,10 @@
1
+ $rwdguivar=
2
+ "
3
+ <horizontal>
4
+ <button caption=#{Message[:clickfor_version]} action=\"runrwdtorrentversion\"/>
5
+ </horizontal>
6
+ </panel>"
7
+
8
+
9
+
10
+
@@ -0,0 +1,4 @@
1
+ $rwdguivar=
2
+ "
3
+ <panel>
4
+ <row> <p align=\"center\">rwdshell for rwdtinker</p></row>"
@@ -0,0 +1,3 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"center\">copyright s. gibson 2004</p></row>"
@@ -0,0 +1,9 @@
1
+ $rwdguivar=
2
+ "
3
+ <horizontal>
4
+ <button caption=\"Click for Version\" action=\"runrwdshellversion\"/>
5
+ </horizontal>
6
+
7
+ </panel>"
8
+
9
+
@@ -0,0 +1,3 @@
1
+ $rwdguivar=
2
+ "
3
+ </helpwindow>"
@@ -0,0 +1,5 @@
1
+ $rwdguivar=
2
+ "
3
+ <window name = \"tinkerbackwindow\" title=\"Tinker Back Window\">
4
+
5
+ <tabs>"
@@ -0,0 +1,42 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdzipslister\" caption=\"List Zips\">
4
+
5
+ <table>
6
+ <row> <p align=\"right\">File Name:</p> <text size=70 name=\"a_installapplet\"/> </row>
7
+
8
+ </table>
9
+
10
+
11
+ <horizontal>
12
+
13
+
14
+ <button caption=\"install (rwdtinker) applet\" action=\"installgemapplet\"/>
15
+ <button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
16
+
17
+ </horizontal>
18
+ <p>%installapplettext%</p>
19
+
20
+ <horizontal>
21
+
22
+ <button caption=\"view (rwdtinker) applet contents\" action=\"viewgemappletcontents\"/>
23
+ </horizontal>
24
+ <p>%appletcontentstext%</p>
25
+ <table>
26
+ <row> <p align=\"right\">Click below to view the list of zip files </row>
27
+
28
+ </table>
29
+
30
+ <horizontal>
31
+ <button caption=\"List (zip directory) applets available for installing\" action=\"listzipfilestoinstall\"/>
32
+
33
+ <button caption=\"List applets (in the GEM Directory) available for installing\" action=\"listgemzips\"/>
34
+
35
+ </horizontal>
36
+
37
+ <p>%%zipslistresult%%</p>
38
+
39
+ </tab>"
40
+
41
+
42
+
@@ -0,0 +1,44 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"superantcomremotezipsinstall\" caption=\"Install Remote Applets\">
4
+
5
+ <table>
6
+ <row> <p align=\"right\">File Name:</p> <text size=70 name=\"superantcominstallremoteappletinput\"/> </row>
7
+
8
+ </table>
9
+ <horizontal>
10
+ <button caption=\"install remote Gem applet package\" action=\"superantcominstallremotegemapplet\"/>
11
+ <button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
12
+
13
+ </horizontal>
14
+ <p>%superantcominstallremotegemappletresult%</p>
15
+
16
+ <horizontal>
17
+
18
+
19
+
20
+ <button caption=\"view already installed GEM applets\" action=\"superantcomshowgemfiledirs\"/>
21
+ </horizontal>
22
+ <p>%%superantcomshowgemappletdirsresult%%</p>
23
+
24
+
25
+
26
+
27
+
28
+ <table>
29
+ <row> <p align=\"right\">Click below to view the list of zip files </row>
30
+
31
+ </table>
32
+
33
+ <horizontal>
34
+
35
+ <button caption=\"List applets in the Remote GEM Repository available for downloading\" action=\"superantcomremotegemlist\"/>
36
+
37
+ </horizontal>
38
+ <p>%superantcomremotegemappletsfullresult%</p>
39
+ <p>%%superantcomremotegemappletsresult%%</p>
40
+
41
+ </tab>"
42
+
43
+
44
+
@@ -0,0 +1,44 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"filelister\" caption=\"List Applets\">
4
+
5
+
6
+ <table>
7
+ <row> <p align=\"right\">File Name:</p> <text name=\"a_installlist\"/> </row>
8
+
9
+ </table>
10
+
11
+ <horizontal>
12
+ <button caption=\"View Install Text\" action=\"openappletname\"/>
13
+ <button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
14
+ </horizontal>
15
+ <p>%displaytext%</p>
16
+
17
+ <table>
18
+ <row> <p align=\"right\">File Name:</p> <text name=\"a_removeapplet\"/> </row>
19
+
20
+ </table>
21
+
22
+ <p>%removeapplettext%</p>
23
+ <horizontal>
24
+ <button caption=\"remove applet\" action=\"removeapplet\"/>
25
+ <button caption=\"Cancel\" action=\"main\"/>
26
+
27
+ </horizontal>
28
+ <table>
29
+ <row> <p> </row>
30
+ <row> <p align=\"right\">View the list of installation files </row>
31
+
32
+ </table>
33
+ <horizontal>
34
+
35
+ <button caption=\"List Files\" action=\"listinstalledfiles\"/>
36
+
37
+ </horizontal>
38
+
39
+ <p>%%filesresult%%</p>
40
+
41
+ </tab>"
42
+
43
+
44
+