rwdaddresses 0.95 → 0.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Readme.txt +13 -1
- data/code/01rwdcore/03helptexthash.rb +11 -28
- data/code/01rwdcore/openhelpwindow.rb +10 -24
- data/code/01rwdcore/returntomain.rb +10 -0
- data/code/superant.com.rwdaddresses/helptexthashrwdaddresses.rb +27 -11
- data/code/superant.com.rwdaddresses/openhelpwindowrwdaddresses.rb +12 -7
- data/code/superant.com.rwdaddresses/returntomain.rb +10 -0
- data/code/superant.com.rwdaddresses/runaddresseswindow.rb +2 -1
- data/code/superant.com.rwdaddresses/runrwdaddressesmenu1.rb +34 -0
- data/code/superant.com.rwdaddresses/rwdaddressesbackwindow.rb +10 -0
- data/code/superant.com.rwdtinkerbackwindow/controlclient.rb +100 -0
- data/code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb +37 -0
- data/code/superant.com.rwdtinkerbackwindow/installapplet.rb +8 -8
- data/code/superant.com.rwdtinkerbackwindow/network.rb +87 -0
- data/code/superant.com.rwdtinkerbackwindow/openhelpwindowtinkerwin2.rb +39 -0
- data/code/superant.com.rwdtinkerbackwindow/runrwdtinkerbackwindow.rb +1 -1
- data/code/superant.com.rwdtinkerbackwindow/viewappletcontents.rb +21 -0
- data/configuration/rwdaddressesversion.cnf +1 -1
- data/configuration/rwdapplicationidentity.cnf +3 -0
- data/configuration/rwdtinker.cnf +1 -0
- data/configuration/rwdtinkerversion.cnf +1 -1
- data/ev/rwd.rb +4 -3
- data/extras/zip/ioextras.rb +114 -0
- data/extras/zip/stdrubyext.rb +111 -0
- data/extras/zip/tempfile_bugfixed.rb +195 -0
- data/extras/zip/zip.rb +1376 -0
- data/extras/zip/zipfilesystem.rb +558 -0
- data/extras/zip/ziprequire.rb +61 -0
- data/gui/00coreguibegin/applicationguitop.rwd +1 -1
- data/gui/frontwindow0/superant.com.rwdaddresses/16editrecord.rwd +9 -9
- data/gui/frontwindow0/superant.com.rwdaddresses/18contactutilities.rwd +1 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m01menubegin.rwd +10 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m02menu.rwd +36 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m03menu.rwd +12 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m85menu.rwd +21 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m88menu.rwd +12 -0
- data/gui/frontwindow0/superant.com.rwdaddresses/m99menuend.rwd +3 -0
- data/gui/tinkerbackwindows/superant.com.addressesphotowindow/yy7addressesphoto.rwd +2 -1
- data/gui/{frontwindow0/superant.com.rwdaddresses/zviewconfiguration.rwd → tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/88viewconfiguration.rwd} +9 -9
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m01menubegin.rwd +10 -0
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m02menu.rwd +36 -0
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m03menu.rwd +12 -0
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m85menu.rwd +21 -0
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m88menu.rwd +18 -0
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m99menuend.rwd +3 -0
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/{50rwdlistzips.rwd → 40rwdlistzips.rwd} +10 -3
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/50rwdlistapplets.rwd +1 -1
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/60editconfiguration.rwd +11 -10
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/75rwdcontrol.rwd +33 -0
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/80tab1.rwd +1 -1
- data/gui/tinkerbackwindows/superant.com.tinkerhelpwindow/1appname.rwd +1 -2
- data/init.rb +38 -2
- data/installed/addressessample1.inf +5 -0
- data/rwd_files/HowTo_Addresses.txt +13 -1
- data/rwd_files/HowTo_Tinker.txt +19 -6
- data/rwd_files/contacttmp.jpg +0 -0
- data/tests/rwdtinkertestEN.rb +163 -0
- data/tests/test.result +32 -0
- data/zips/rwdaschedule-0.921.zip +0 -0
- data/zips/rwdcalc-0.4.zip +0 -0
- metadata +86 -54
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/22viewconfiguration.rwd +0 -16
- data/gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/80returntab.rwd +0 -11
- data/installed/rwdviewlogo-0.4.inf +0 -4
@@ -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.
|
@@ -16,15 +16,15 @@ $rwdguivar=
|
|
16
16
|
|
17
17
|
</horizontal>
|
18
18
|
<table>
|
19
|
-
<row> <p align=\"right\">FileName:</p> <text name=\"a_filename\"/> </row>
|
20
|
-
<row> <p align=\"right\">Contact Name:</p> <text name=\"a_name\"/> </row>
|
21
|
-
<row> <p align=\"right\">Address:</p> <text name=\"a_address\"/> </row>
|
22
|
-
<row> <p align=\"right\">CityStateZip:</p> <text name=\"a_citystatezip\"/> </row>
|
23
|
-
<row> <p align=\"right\">Phone:</p> <text name=\"a_phone\"/> </row>
|
24
|
-
<row> <p align=\"right\">Email:</p> <text name=\"a_email\"/> </row>
|
25
|
-
<row> <p align=\"right\">Comment1:</p> <text name=\"a_comment1\"/> </row>
|
26
|
-
<row> <p align=\"right\">Comment2:</p> <text name=\"a_comment2\"/> </row>
|
27
|
-
<row> <p align=\"right\">Comment3:</p> <text name=\"a_comment3\"/> </row>
|
19
|
+
<row> <p align=\"right\">FileName:</p> <text size=50 name=\"a_filename\"/> </row>
|
20
|
+
<row> <p align=\"right\">Contact Name:</p> <text size=70 name=\"a_name\"/> </row>
|
21
|
+
<row> <p align=\"right\">Address:</p> <text size=70 name=\"a_address\"/> </row>
|
22
|
+
<row> <p align=\"right\">CityStateZip:</p> <text size=70 name=\"a_citystatezip\"/> </row>
|
23
|
+
<row> <p align=\"right\">Phone:</p> <text size=70 name=\"a_phone\"/> </row>
|
24
|
+
<row> <p align=\"right\">Email:</p> <text size=70 name=\"a_email\"/> </row>
|
25
|
+
<row> <p align=\"right\">Comment1:</p> <text size=70 name=\"a_comment1\"/> </row>
|
26
|
+
<row> <p align=\"right\">Comment2:</p> <text size=70 name=\"a_comment2\"/> </row>
|
27
|
+
<row> <p align=\"right\">Comment3:</p> <text size=70 name=\"a_comment3\"/> </row>
|
28
28
|
|
29
29
|
</table>
|
30
30
|
<p>%extranamedatadisplay%</p>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<row> <p></row>
|
4
|
+
|
5
|
+
<horizontal>
|
6
|
+
|
7
|
+
<button caption=\"View Contact\" action=\"runrwdaddressesmenu1\"/>
|
8
|
+
<p>Open View Contact - see data or photo Tab.......................................................................</p>
|
9
|
+
|
10
|
+
</horizontal>
|
11
|
+
|
12
|
+
<horizontal>
|
13
|
+
|
14
|
+
<button caption=\"Edit Contact\" action=\"runrwdaddressesmenu2\"/>
|
15
|
+
<p>Open Edit Contact Screen to create new record or change data Tab......................................</p>
|
16
|
+
|
17
|
+
</horizontal>
|
18
|
+
|
19
|
+
<horizontal>
|
20
|
+
<button caption=\"Contact Utilities Screen\" action=\"runrwdaddressesmenu3\"/>
|
21
|
+
<p>Open Contact Utilities - rename, delete, attach photos Tab.................................</p>
|
22
|
+
</horizontal>
|
23
|
+
|
24
|
+
<horizontal>
|
25
|
+
<button caption=\"Contact Data Sync Screen\" action=\"runrwdaddressesmenu4\"/>
|
26
|
+
<p>Open Contact Sync - upload and download Addresses data Tab.....................</p>
|
27
|
+
</horizontal>
|
28
|
+
|
29
|
+
<horizontal>
|
30
|
+
|
31
|
+
<button caption=\"RwdAddresses Configuration Editing Screen\" action=\"runrwdaddressesmenu10\"/>
|
32
|
+
<p> Open Configuration File to View or Edit Tab.....................</p>
|
33
|
+
</horizontal>
|
34
|
+
|
35
|
+
"
|
36
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<row> <p></row>
|
4
|
+
|
5
|
+
<horizontal>
|
6
|
+
|
7
|
+
<button caption=\"Rwdaddresses Back Window\" action=\"runrwdaddressessyncbackwindow\"/>
|
8
|
+
<p>Open RwdAddresses Data Sync back window...........................................</p>
|
9
|
+
|
10
|
+
</horizontal>"
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
|
4
|
+
<horizontal>
|
5
|
+
|
6
|
+
<button caption=\"Open Documents Tab\" action=\"runrwdaddressesmenu11\"/>
|
7
|
+
<p> Open RwdTinker and Rwdaddresses Documents Tab..........................................</p>
|
8
|
+
|
9
|
+
</horizontal>
|
10
|
+
|
11
|
+
<horizontal>
|
12
|
+
|
13
|
+
<button caption=#{Message[:rwdtinker_help_window]} action=\"runhelpwindow\"/>
|
14
|
+
<p> Open RwdTinker Help Window...................................................................... </p>
|
15
|
+
|
16
|
+
</horizontal>
|
17
|
+
|
18
|
+
|
19
|
+
"
|
20
|
+
|
21
|
+
|
@@ -17,15 +17,15 @@ $rwdguivar=
|
|
17
17
|
<table>
|
18
18
|
|
19
19
|
<row> <p align=\"right\">FileName:</p> <text name=\"a_adconfigurationfilename\"/> </row>
|
20
|
-
<row> <p align=\"right\">1:</p> <text name=\"a_adconfigline1\"/> </row>
|
21
|
-
<row> <p align=\"right\">2:</p> <text name=\"a_adconfigline2\"/> </row>
|
22
|
-
<row> <p align=\"right\">3:</p> <text name=\"a_adconfigline3\"/> </row>
|
23
|
-
<row> <p align=\"right\">4:</p> <text name=\"a_adconfigline4\"/> </row>
|
24
|
-
<row> <p align=\"right\">5:</p> <text name=\"a_adconfigline5\"/> </row>
|
25
|
-
<row> <p align=\"right\">6:</p> <text name=\"a_adconfigline6\"/> </row>
|
26
|
-
<row> <p align=\"right\">7:</p> <text name=\"a_adconfigline7\"/> </row>
|
27
|
-
<row> <p align=\"right\">8:</p> <text name=\"a_adconfigline8\"/> </row>
|
28
|
-
<row> <p align=\"right\">9:</p> <text name=\"a_adconfigline9\"/> </row>
|
20
|
+
<row> <p align=\"right\">1:</p> <text size=70 name=\"a_adconfigline1\"/> </row>
|
21
|
+
<row> <p align=\"right\">2:</p> <text size=70 name=\"a_adconfigline2\"/> </row>
|
22
|
+
<row> <p align=\"right\">3:</p> <text size=70 name=\"a_adconfigline3\"/> </row>
|
23
|
+
<row> <p align=\"right\">4:</p> <text size=70 name=\"a_adconfigline4\"/> </row>
|
24
|
+
<row> <p align=\"right\">5:</p> <text size=70 name=\"a_adconfigline5\"/> </row>
|
25
|
+
<row> <p align=\"right\">6:</p> <text size=70 name=\"a_adconfigline6\"/> </row>
|
26
|
+
<row> <p align=\"right\">7:</p> <text size=70 name=\"a_adconfigline7\"/> </row>
|
27
|
+
<row> <p align=\"right\">8:</p> <text size=70 name=\"a_adconfigline8\"/> </row>
|
28
|
+
<row> <p align=\"right\">9:</p> <text size=70 name=\"a_adconfigline9\"/> </row>
|
29
29
|
|
30
30
|
</table>
|
31
31
|
<p>%extraadconfigdatadisplay%</p>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<row> <p></row>
|
4
|
+
|
5
|
+
<horizontal>
|
6
|
+
|
7
|
+
<button caption=\"View Contact\" action=\"runrwdaddressesmenu1\"/>
|
8
|
+
<p>Open View Contact - see data or photo Tab.......................................................................</p>
|
9
|
+
|
10
|
+
</horizontal>
|
11
|
+
|
12
|
+
<horizontal>
|
13
|
+
|
14
|
+
<button caption=\"Edit Contact\" action=\"runrwdaddressesmenu2\"/>
|
15
|
+
<p>Open Edit Contact Screen to create new record or change data Tab......................................</p>
|
16
|
+
|
17
|
+
</horizontal>
|
18
|
+
|
19
|
+
<horizontal>
|
20
|
+
<button caption=\"Contact Utilities Screen\" action=\"runrwdaddressesmenu3\"/>
|
21
|
+
<p>Open Contact Utilities - rename, delete, attach photos Tab.................................</p>
|
22
|
+
</horizontal>
|
23
|
+
|
24
|
+
<horizontal>
|
25
|
+
<button caption=\"Contact Data Sync Screen\" action=\"runrwdaddressesmenu4\"/>
|
26
|
+
<p>Open Contact Sync - upload and download Addresses data Tab.....................</p>
|
27
|
+
</horizontal>
|
28
|
+
|
29
|
+
<horizontal>
|
30
|
+
|
31
|
+
<button caption=\"RwdAddresses Configuration Editing Screen\" action=\"runrwdaddressesmenu10\"/>
|
32
|
+
<p> Open Configuration File to View or Edit Tab.....................</p>
|
33
|
+
</horizontal>
|
34
|
+
|
35
|
+
"
|
36
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<row> <p></row>
|
4
|
+
|
5
|
+
<horizontal>
|
6
|
+
|
7
|
+
<button caption=\"Rwdaddresses Back Window\" action=\"runrwdaddressessyncbackwindow\"/>
|
8
|
+
<p>Open RwdAddresses Data Sync back window...........................................</p>
|
9
|
+
|
10
|
+
</horizontal>"
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
|
4
|
+
<horizontal>
|
5
|
+
|
6
|
+
<button caption=\"Open Documents Tab\" action=\"runrwdaddressesmenu11\"/>
|
7
|
+
<p> Open RwdTinker and Rwdaddresses Documents Tab..........................................</p>
|
8
|
+
|
9
|
+
</horizontal>
|
10
|
+
|
11
|
+
<horizontal>
|
12
|
+
|
13
|
+
<button caption=#{Message[:rwdtinker_help_window]} action=\"runhelpwindow\"/>
|
14
|
+
<p> Open RwdTinker Help Window...................................................................... </p>
|
15
|
+
|
16
|
+
</horizontal>
|
17
|
+
|
18
|
+
|
19
|
+
"
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<row> <p></row>
|
4
|
+
|
5
|
+
<horizontal>
|
6
|
+
|
7
|
+
<button caption=\"return to top Window action\"=\"returntomain\"/>
|
8
|
+
|
9
|
+
|
10
|
+
</horizontal>
|
11
|
+
<horizontal>
|
12
|
+
|
13
|
+
<button caption=#{Message[:rwdtinker_back_window]} action=\"runrwdtinkerbackwindow\"/>
|
14
|
+
|
15
|
+
|
16
|
+
</horizontal>"
|
17
|
+
|
18
|
+
|
data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/{50rwdlistzips.rwd → 40rwdlistzips.rwd}
RENAMED
@@ -1,15 +1,22 @@
|
|
1
1
|
$rwdguivar=
|
2
2
|
"
|
3
|
-
<tab name=\"
|
3
|
+
<tab name=\"rwdzipslister\" caption=\"List Zips\">
|
4
4
|
|
5
5
|
<table>
|
6
6
|
<row> <p align=\"right\">File Name:</p> <text name=\"a_installapplet\"/> </row>
|
7
7
|
|
8
8
|
</table>
|
9
|
+
<horizontal>
|
10
|
+
<button caption=\"view applet contents\" action=\"viewappletcontents\"/>
|
11
|
+
|
12
|
+
</horizontal>
|
13
|
+
<p>%appletcontentstext%</p>
|
9
14
|
|
10
15
|
<horizontal>
|
11
|
-
|
12
|
-
|
16
|
+
|
17
|
+
|
18
|
+
<button caption=\"install applet\" action=\"installapplet\"/>
|
19
|
+
<button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
|
13
20
|
|
14
21
|
</horizontal>
|
15
22
|
<p>%installapplettext%</p>
|
@@ -10,7 +10,7 @@ $rwdguivar=
|
|
10
10
|
|
11
11
|
<horizontal>
|
12
12
|
<button caption=\"View Install Text\" action=\"openappletname\"/>
|
13
|
-
<button caption=\"Help\" action=\"
|
13
|
+
<button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
|
14
14
|
</horizontal>
|
15
15
|
<p>%displaytext%</p>
|
16
16
|
|
@@ -9,22 +9,23 @@ $rwdguivar=
|
|
9
9
|
<button caption=\"Load Record\" action=\"loadconfigurationrecord\"/>
|
10
10
|
<button caption=\"Save Changes\" action=\"saveconfigurationrecord\"/>
|
11
11
|
<button caption=\"Reload Variables\" action=\"loadconfigurationvariables\"/>
|
12
|
-
<button caption=\"Help\" action=\"
|
12
|
+
<button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
|
13
13
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
17
|
</horizontal>
|
18
18
|
<table>
|
19
|
-
<row> <p align=\"right\">FileName:</p> <text name=\"a_configurationfilename\"/> </row>
|
20
|
-
<row> <p align=\"right\">1:</p> <text name=\"a_configline1\"/> </row>
|
21
|
-
<row> <p align=\"right\">2:</p> <text name=\"a_configline2\"/> </row>
|
22
|
-
<row> <p align=\"right\">3:</p> <text name=\"a_configline3\"/> </row>
|
23
|
-
<row> <p align=\"right\">4:</p> <text name=\"a_configline4\"/> </row>
|
24
|
-
<row> <p align=\"right\">5:</p> <text name=\"a_configline5\"/> </row>
|
25
|
-
<row> <p align=\"right\">6:</p> <text name=\"a_configline6\"/> </row>
|
26
|
-
<row> <p align=\"right\">7:</p> <text name=\"a_configline7\"/> </row>
|
27
|
-
<row> <p align=\"right\">8:</p> <text name=\"a_configline8\"/> </row>
|
19
|
+
<row> <p align=\"right\" >FileName:</p> <text size=70 name=\"a_configurationfilename\"/> </row>
|
20
|
+
<row> <p align=\"right\">1:</p> <text size=70 name=\"a_configline1\"/> </row>
|
21
|
+
<row> <p align=\"right\">2:</p> <text size=70 name=\"a_configline2\"/> </row>
|
22
|
+
<row> <p align=\"right\">3:</p> <text size=70 name=\"a_configline3\"/> </row>
|
23
|
+
<row> <p align=\"right\">4:</p> <text size=70 name=\"a_configline4\"/> </row>
|
24
|
+
<row> <p align=\"right\">5:</p> <text size=70 name=\"a_configline5\"/> </row>
|
25
|
+
<row> <p align=\"right\">6:</p> <text size=70 name=\"a_configline6\"/> </row>
|
26
|
+
<row> <p align=\"right\">7:</p> <text size=70 name=\"a_configline7\"/> </row>
|
27
|
+
<row> <p align=\"right\">8:</p> <text size=70 name=\"a_configline8\"/> </row>
|
28
|
+
|
28
29
|
|
29
30
|
</table>
|
30
31
|
<p>%extraconfigdatadisplay%</p>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
$rwdguivar=
|
2
|
+
"
|
3
|
+
<tab name=\"rwdremotecontrol\" caption=\"Remote Controls\">
|
4
|
+
<p></p>
|
5
|
+
Query remote rwdtinker applications (not yet functional on XP)
|
6
|
+
<horizontal>
|
7
|
+
<button caption=\"Start the Remote Control for This Application\" action=\"network_start\"/>
|
8
|
+
<button caption=\"Help\" action=\"runhelpwindowtinkerwin2\"/>
|
9
|
+
|
10
|
+
</horizontal>
|
11
|
+
<p>%viewremotecommandresult%</p>
|
12
|
+
<horizontal>
|
13
|
+
|
14
|
+
<button caption=\"Show remote Command Choices\" action=\"showremoteportoptions\"/>
|
15
|
+
|
16
|
+
</horizontal>
|
17
|
+
<table>
|
18
|
+
<select name=\"a_remoteportinput\"> %%remoteportoptions%% </select>
|
19
|
+
|
20
|
+
</table>
|
21
|
+
|
22
|
+
<table>
|
23
|
+
<select name=\"a_remotecommandinput\"> %%remotecommandoptions%% </select>
|
24
|
+
|
25
|
+
</table>
|
26
|
+
<horizontal>
|
27
|
+
<button caption=\"Run Command\" action=\"runcontrolcommand\"/>
|
28
|
+
<button caption=\"Cancel\" action=\"main\"/>
|
29
|
+
</horizontal>
|
30
|
+
<p> Remote Port</p>
|
31
|
+
<p>%lastremotecommand%</p>
|
32
|
+
<p>%remotecommandresult%</p>
|
33
|
+
</tab>"
|