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
data/init.rb
CHANGED
@@ -228,6 +228,42 @@ Dir.chdir($progdir)
|
|
228
228
|
fileB.write($tempdoc) #writes the contents of doc into the file
|
229
229
|
fileB.close
|
230
230
|
|
231
|
-
|
231
|
+
require 'socket' # Network stuff
|
232
|
+
host = "127.0.0.1"
|
233
|
+
port = $port
|
234
|
+
|
235
|
+
# Create a socket to listen on and bind it to the host and port
|
236
|
+
freeportfound = false
|
237
|
+
until freeportfound
|
238
|
+
begin
|
239
|
+
@socket = UDPSocket::new()
|
240
|
+
@socket.bind(host, port)
|
241
|
+
freeportfound = true
|
242
|
+
$port = port
|
243
|
+
# Rescue the "Address in use" error
|
244
|
+
rescue Errno::EADDRINUSE
|
245
|
+
puts "RWD Startup: Port #{port} on host #{host} is already in use."
|
246
|
+
port=port +1
|
247
|
+
puts "trying port: #{port}"
|
248
|
+
# Rescue the "Address not available' error
|
249
|
+
rescue Errno::EADDRNOTAVAIL
|
250
|
+
puts "RWD Startup: Address #{host} is not available to bind."
|
251
|
+
port =port + 1
|
252
|
+
puts "trying port: #{port}"
|
253
|
+
# Rescue "permission denied errors
|
254
|
+
rescue Errno::EACCES
|
255
|
+
puts "RWD Startup: Access denied when binding interface addresses. ?"
|
256
|
+
port =port + 1
|
257
|
+
puts "trying port: #{port}"
|
258
|
+
# Rescue all other errors
|
259
|
+
rescue
|
260
|
+
puts "RWD Startup: An error occured."
|
261
|
+
port =port + 1
|
262
|
+
puts "trying port: #{port}"
|
263
|
+
# Rescue all other errors
|
264
|
+
end
|
265
|
+
|
266
|
+
end
|
267
|
+
|
232
268
|
|
233
|
-
RwdTinker.file(RWDFile).serve(
|
269
|
+
RwdTinker.file(RWDFile).serve(port) # start the main class and program
|
@@ -82,7 +82,7 @@ Click on "List Files"
|
|
82
82
|
== Attach photo
|
83
83
|
on the Contacts Utilities tab
|
84
84
|
select the name record,
|
85
|
-
put a
|
85
|
+
put a jpg photo in the /tmp directory
|
86
86
|
select the photo
|
87
87
|
click on Attach photo, it will rename the photo and copy it to the
|
88
88
|
addresses directory
|
@@ -147,6 +147,18 @@ erik = secret
|
|
147
147
|
Thanks, Steven Gibson
|
148
148
|
|
149
149
|
== Changelog
|
150
|
+
version 0.97
|
151
|
+
updated for rwdtinker version 1.51
|
152
|
+
added RwdAddresses Menu tab for easier navigation
|
153
|
+
Improvement to context sensitive help
|
154
|
+
wider text boxes for contact information
|
155
|
+
|
156
|
+
version 0.96
|
157
|
+
added tab for jump to addresses window
|
158
|
+
added return from photo window
|
159
|
+
added contact name on photo window
|
160
|
+
changed return from back window
|
161
|
+
|
150
162
|
version 0.95
|
151
163
|
added some context sensitive help
|
152
164
|
added edit config file and reload config variables
|
data/rwd_files/HowTo_Tinker.txt
CHANGED
@@ -1,14 +1,11 @@
|
|
1
1
|
= RwdTinker framework for RubyWebDialogs
|
2
2
|
|
3
|
-
|
4
3
|
RwdTinker is a web brower interface to and system for developing programs
|
5
4
|
|
6
5
|
== Usage
|
7
6
|
|
8
|
-
|
9
7
|
How to Use the Tinker framework Program (rwdtinker)
|
10
8
|
|
11
|
-
|
12
9
|
1. stand alone application
|
13
10
|
2. framework for building applications
|
14
11
|
3. Open brower windows with html documents
|
@@ -22,13 +19,10 @@ ruby init.rb
|
|
22
19
|
Then point your web browser to:
|
23
20
|
http://localhost:7705/
|
24
21
|
|
25
|
-
|
26
22
|
== Viewing installed Applets:
|
27
|
-
|
28
23
|
|
29
24
|
Go to "List Scripts" tab
|
30
25
|
|
31
|
-
|
32
26
|
You can get a list of all installed applets by clicking the listfiles button
|
33
27
|
|
34
28
|
To see the text of a install file
|
@@ -233,6 +227,25 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
233
227
|
Thanks, Steven Gibson
|
234
228
|
|
235
229
|
== Changelog
|
230
|
+
version 1.51
|
231
|
+
changed return to main
|
232
|
+
changed configuration of remote ports
|
233
|
+
updated context sensitive help
|
234
|
+
|
235
|
+
version 1.50
|
236
|
+
changed unzip applet to be internal code - no exec to unzip program
|
237
|
+
changed order of tabs on back window - list applets now first
|
238
|
+
added rwdwcalc applet in to zips directory
|
239
|
+
changed width of text fields with help from RubyWebDialogs author
|
240
|
+
changed listing of help options, vertical instead of horizontal
|
241
|
+
|
242
|
+
version 1.49
|
243
|
+
added demon function for remote queries
|
244
|
+
startup application on first available port
|
245
|
+
|
246
|
+
version 1.48
|
247
|
+
fix in context sensitive help so that applets can use it better
|
248
|
+
|
236
249
|
version 1.47
|
237
250
|
change to context sensitive help
|
238
251
|
|
data/rwd_files/contacttmp.jpg
CHANGED
Binary file
|
@@ -0,0 +1,163 @@
|
|
1
|
+
#-------------------------------------------------------------------------------------------------------------#
|
2
|
+
# test with the WATIR controller
|
3
|
+
#
|
4
|
+
# Simple test based on Google/watir demo
|
5
|
+
#
|
6
|
+
#------------------------------------------------------------------------------------------------------------ #
|
7
|
+
|
8
|
+
#includes
|
9
|
+
require '../watir' # the controller
|
10
|
+
|
11
|
+
#test::unit includes
|
12
|
+
require 'test/unit'
|
13
|
+
require 'test/unit/ui/console/testrunner'
|
14
|
+
require '../unittests/testUnitAddons'
|
15
|
+
|
16
|
+
#code to set your current path in Windows
|
17
|
+
$myDir = File.dirname(__FILE__)
|
18
|
+
$LOAD_PATH << $myDir
|
19
|
+
|
20
|
+
class TC_rwdtinker_suite < Test::Unit::TestCase
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
def test_a_Open1
|
25
|
+
#--------------------------------------------------------
|
26
|
+
# test case that shows basic WATIR functionality:
|
27
|
+
# * enter text in a field
|
28
|
+
# * click a button
|
29
|
+
#
|
30
|
+
|
31
|
+
#variables
|
32
|
+
testSite = 'http://localhost:7705'
|
33
|
+
|
34
|
+
#open the IE browser
|
35
|
+
$ie = IE.new
|
36
|
+
|
37
|
+
puts '## Beginning of test: rwdtinker'
|
38
|
+
puts ' '
|
39
|
+
|
40
|
+
|
41
|
+
$ie.goto(testSite)
|
42
|
+
puts ' Action: entered ' + testSite + 'in the address bar.'
|
43
|
+
sleep 1
|
44
|
+
|
45
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_help";document.bodyform.submit();').click
|
46
|
+
|
47
|
+
$ie.button(:caption, 'Click for Version').click
|
48
|
+
|
49
|
+
$ie.button(:caption, 'Cancel').click
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
sleep 1
|
54
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_selectiontab";document.bodyform.submit();').click
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
$ie.button(:caption, 'RwdTinker Help Window').click
|
59
|
+
puts ' Action: clicked the Help Window link'
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_b_Buttons1
|
64
|
+
|
65
|
+
|
66
|
+
sleep 1
|
67
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_nexttab";document.bodyform.submit();').click
|
68
|
+
puts ' Action: clicked the nexttab link'
|
69
|
+
|
70
|
+
|
71
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_main";document.bodyform.submit();').click
|
72
|
+
puts ' Action: clicked the main tab link'
|
73
|
+
|
74
|
+
|
75
|
+
$ie.button(:caption, "Cancel").click
|
76
|
+
puts ' Action: clicked the cancel button'
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_c_tabs
|
83
|
+
|
84
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_one";document.bodyform.submit();').click
|
85
|
+
puts ' Action: clicked tab one'
|
86
|
+
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_d_tabs
|
91
|
+
|
92
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_selectiontab";document.bodyform.submit();').click
|
93
|
+
puts ' Action: clicked the selectiontab'
|
94
|
+
|
95
|
+
|
96
|
+
$ie.button(:caption, 'RwdTinker Back Window').click
|
97
|
+
puts ' Action: clicked the Help Window link'
|
98
|
+
|
99
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_backone";document.bodyform.submit();').click
|
100
|
+
puts ' Action: clicked the backone tab'
|
101
|
+
|
102
|
+
|
103
|
+
assert($ie.pageContainsText("previous window") )
|
104
|
+
|
105
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_diagnostictab";document.bodyform.submit();').click
|
106
|
+
puts ' Action: clicked the diagnostictab top link'
|
107
|
+
|
108
|
+
|
109
|
+
$ie.button(:caption, "View Ruby Version").click
|
110
|
+
puts ' Action: clicked Ruby Version button.'
|
111
|
+
|
112
|
+
assert($ie.pageContainsText("Version") )
|
113
|
+
|
114
|
+
$ie.button(:caption, "view platform").click
|
115
|
+
puts ' Action: clicked platform button.'
|
116
|
+
|
117
|
+
assert($ie.pageContainsText("Platform is") )
|
118
|
+
|
119
|
+
$ie.button(:caption, "View rwdtinker Version").click
|
120
|
+
puts ' Action: clicked rwdtinker version button.'
|
121
|
+
|
122
|
+
assert($ie.pageContainsText("rwdtinker version") )
|
123
|
+
|
124
|
+
end # end of test_d
|
125
|
+
|
126
|
+
def test_e_tabs
|
127
|
+
|
128
|
+
|
129
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_filelister";document.bodyform.submit();').click
|
130
|
+
|
131
|
+
|
132
|
+
assert($ie.pageContainsText("View the list") )
|
133
|
+
|
134
|
+
$ie.button(:caption, "List Files").click
|
135
|
+
puts ' Action: clicked the list files button.'
|
136
|
+
|
137
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="fillappletname/rwdviewlogo-0.4.inf";document.bodyform.submit();').click
|
138
|
+
|
139
|
+
|
140
|
+
$ie.button(:caption, "View Install Text").click
|
141
|
+
puts ' Action: clicked the View Install Text button.'
|
142
|
+
|
143
|
+
assert($ie.pageContainsText("rwdviewlogo") )
|
144
|
+
|
145
|
+
|
146
|
+
end
|
147
|
+
|
148
|
+
def test_f_tabs
|
149
|
+
|
150
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_zipslister";document.bodyform.submit();').click
|
151
|
+
|
152
|
+
assert($ie.pageContainsText("File Name") )
|
153
|
+
|
154
|
+
assert($ie.pageContainsText("view the list of zip files") )
|
155
|
+
|
156
|
+
$ie.button(:caption, "List applets available for installing").click
|
157
|
+
puts ' Action: clicked the List applets available for installing button.'
|
158
|
+
|
159
|
+
$ie.link(:url, 'javascript:document.bodyform.rwd_action.value="fillziptoinstallname/rwdhelloworld-0.3.zip";document.bodyform.submit();').click
|
160
|
+
|
161
|
+
end
|
162
|
+
|
163
|
+
end #end of class TC_google_suite
|
data/tests/test.result
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
Loaded suite C:/ruby/sample/watir/examples/rwdtinkertestEN
|
2
|
+
Started
|
3
|
+
## Beginning of test: rwdtinker
|
4
|
+
|
5
|
+
Action: entered http://localhost:7705in the address bar.
|
6
|
+
Action: clicked the Help Window link
|
7
|
+
Action: clicked the nexttab link
|
8
|
+
Action: clicked the main tab link
|
9
|
+
Action: clicked the cancel button
|
10
|
+
Action: clicked tab one
|
11
|
+
Action: clicked the selectiontab
|
12
|
+
Action: clicked the Help Window link
|
13
|
+
Action: clicked the backone tab
|
14
|
+
pageContainsText: Looking for: previous window (string) - found it ok
|
15
|
+
Action: clicked the diagnostictab top link
|
16
|
+
Action: clicked Ruby Version button.
|
17
|
+
pageContainsText: Looking for: Version (string) - found it ok
|
18
|
+
Action: clicked platform button.
|
19
|
+
pageContainsText: Looking for: Platform is (string) - found it ok
|
20
|
+
Action: clicked rwdtinker version button.
|
21
|
+
pageContainsText: Looking for: rwdtinker version (string) - found it ok
|
22
|
+
pageContainsText: Looking for: View the list (string) - found it ok
|
23
|
+
Action: clicked the list files button.
|
24
|
+
Action: clicked the View Install Text button.
|
25
|
+
pageContainsText: Looking for: rwdviewlogo (string) - found it ok
|
26
|
+
pageContainsText: Looking for: File Name (string) - found it ok
|
27
|
+
pageContainsText: Looking for: view the list of zip files (string) - found it ok
|
28
|
+
Action: clicked the List applets available for installing button.
|
29
|
+
|
30
|
+
Finished in 32.716 seconds.
|
31
|
+
|
32
|
+
6 tests, 8 assertions, 0 failures, 0 errors
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rwdaddresses
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2005-
|
6
|
+
version: "0.97"
|
7
|
+
date: 2005-02-06
|
8
8
|
summary: rwdaddresses is contact book application using rwdtinker and RubyWebDialogs.
|
9
9
|
require_paths:
|
10
10
|
- "."
|
@@ -27,25 +27,31 @@ platform: ruby
|
|
27
27
|
authors: []
|
28
28
|
files:
|
29
29
|
- lib/temp.rb
|
30
|
-
- code/zz0applicationend/zz0end.rb
|
31
|
-
- code/01rwdcore/rwdtinkerversion.rb
|
32
|
-
- code/01rwdcore/openhelpwindow.rb
|
33
30
|
- code/01rwdcore/01rwdcore.rb
|
34
31
|
- code/01rwdcore/02helptexthashbegin.rb
|
35
32
|
- code/01rwdcore/03helptexthash.rb
|
36
33
|
- code/01rwdcore/04helptextend.rb
|
34
|
+
- code/01rwdcore/openhelpwindow.rb
|
35
|
+
- code/01rwdcore/rwdtinkerversion.rb
|
37
36
|
- code/01rwdcore/rwdwindowreturn.rb
|
38
|
-
- code/
|
39
|
-
- code/superant.com.rwdtinkerbackwindow/
|
40
|
-
- code/superant.com.rwdtinkerbackwindow/installapplet.rb
|
41
|
-
- code/superant.com.rwdtinkerbackwindow/listzips.rb
|
37
|
+
- code/01rwdcore/returntomain.rb
|
38
|
+
- code/superant.com.rwdtinkerbackwindow/controlclient.rb
|
42
39
|
- code/superant.com.rwdtinkerbackwindow/diagnostictab.rb
|
43
|
-
- code/superant.com.rwdtinkerbackwindow/
|
40
|
+
- code/superant.com.rwdtinkerbackwindow/installapplet.rb
|
44
41
|
- code/superant.com.rwdtinkerbackwindow/listinstalledfiles.rb
|
42
|
+
- code/superant.com.rwdtinkerbackwindow/listzips.rb
|
45
43
|
- code/superant.com.rwdtinkerbackwindow/loadconfigurationrecord.rb
|
46
44
|
- code/superant.com.rwdtinkerbackwindow/loadconfigurationvariables.rb
|
47
|
-
- code/superant.com.rwdtinkerbackwindow/
|
45
|
+
- code/superant.com.rwdtinkerbackwindow/network.rb
|
46
|
+
- code/superant.com.rwdtinkerbackwindow/openappletname.rb
|
47
|
+
- code/superant.com.rwdtinkerbackwindow/removeapplet.rb
|
48
48
|
- code/superant.com.rwdtinkerbackwindow/runrwdtinkerbackwindow.rb
|
49
|
+
- code/superant.com.rwdtinkerbackwindow/rwdtinkerwin2version.rb
|
50
|
+
- code/superant.com.rwdtinkerbackwindow/saveconfigurationrecord.rb
|
51
|
+
- code/superant.com.rwdtinkerbackwindow/viewappletcontents.rb
|
52
|
+
- code/superant.com.rwdtinkerbackwindow/openhelpwindowtinkerwin2.rb
|
53
|
+
- code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb
|
54
|
+
- code/zz0applicationend/zz0end.rb
|
49
55
|
- code/superant.com.rwdaddresses/viewphoto.rb
|
50
56
|
- code/superant.com.rwdaddresses/viewnamedata.rb
|
51
57
|
- code/superant.com.rwdaddresses/loadnamerecord.rb
|
@@ -70,46 +76,77 @@ files:
|
|
70
76
|
- code/superant.com.rwdaddresses/deleterwdaddressesupdatefiles.rb
|
71
77
|
- code/superant.com.rwdaddresses/openhelpwindowrwdaddresses.rb
|
72
78
|
- code/superant.com.rwdaddresses/helptexthashrwdaddresses.rb
|
79
|
+
- code/superant.com.rwdaddresses/rwdaddressesbackwindow.rb
|
80
|
+
- code/superant.com.rwdaddresses/returntomain.rb
|
81
|
+
- code/superant.com.rwdaddresses/runrwdaddressesmenu1.rb
|
82
|
+
- configuration/language.cnf
|
83
|
+
- configuration/rwdapplicationidentity.cnf
|
73
84
|
- configuration/rwdtinker.cnf
|
74
85
|
- configuration/rwdtinkerversion.cnf
|
75
|
-
- configuration/language.cnf
|
76
|
-
- configuration/tinkerwin2version.cnf
|
77
86
|
- configuration/tinkerwin2variables.cnf
|
87
|
+
- configuration/tinkerwin2version.cnf
|
78
88
|
- configuration/rwdaddresses.cnf
|
79
89
|
- configuration/rwdaddressesversion.cnf
|
90
|
+
- extras/zip
|
80
91
|
- names/Angelina Jolie.nam
|
81
92
|
- names/Steven Gibson.nam
|
82
93
|
- names/Angelina Jolie.jpg
|
83
94
|
- names/Steven Gibson.jpg
|
84
95
|
- names/nophoto.jpg
|
85
|
-
-
|
86
|
-
-
|
87
|
-
-
|
88
|
-
-
|
89
|
-
-
|
96
|
+
- extras/zip/ioextras.rb
|
97
|
+
- extras/zip/stdrubyext.rb
|
98
|
+
- extras/zip/tempfile_bugfixed.rb
|
99
|
+
- extras/zip/zip.rb
|
100
|
+
- extras/zip/zipfilesystem.rb
|
101
|
+
- extras/zip/ziprequire.rb
|
90
102
|
- ev/browser.rb
|
91
103
|
- ev/ftools.rb
|
104
|
+
- ev/net.rb
|
105
|
+
- ev/ruby.rb
|
92
106
|
- ev/rwd.rb
|
107
|
+
- ev/sgml.rb
|
93
108
|
- ev/thread.rb
|
109
|
+
- ev/tree.rb
|
110
|
+
- ev/xml.rb
|
94
111
|
- lang/alanguagehashbegin.rb
|
95
112
|
- lang/languagehash.rb
|
96
113
|
- lang/templangfile.rb
|
97
114
|
- lang/vlanguagehashend.rb
|
98
|
-
- lang/zlocallangend.rb
|
99
|
-
- lang/xlocallangfile.rb
|
100
115
|
- lang/wlocallangstart.rb
|
101
|
-
- lang/
|
116
|
+
- lang/xlocallangfile.rb
|
117
|
+
- lang/zlocallangend.rb
|
102
118
|
- lang/en/rwdcore/languagefile.rb
|
103
|
-
- lang/
|
119
|
+
- lang/es/rwdcore/languagefile-es.rb
|
104
120
|
- lang/jp/rwdcore/languagefile.rb
|
121
|
+
- lang/nl/rwdcore/languagefile.rb
|
105
122
|
- gui/00coreguibegin/applicationguitop.rwd
|
106
|
-
- gui/zzcoreguiend/tinkerapplicationguiend/yy9rwdend.rwd
|
107
123
|
- gui/frontwindow0/superant.com.rwdaddresses
|
108
124
|
- gui/frontwindow0/superant.com.rwdaddresses/16editrecord.rwd
|
109
125
|
- gui/frontwindow0/superant.com.rwdaddresses/18contactutilities.rwd
|
110
126
|
- gui/frontwindow0/superant.com.rwdaddresses/11viewnamedata.rwd
|
111
127
|
- gui/frontwindow0/superant.com.rwdaddresses/13listnamerecordfiles.rwd
|
112
|
-
- gui/frontwindow0/superant.com.rwdaddresses/
|
128
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m01menubegin.rwd
|
129
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m02menu.rwd
|
130
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m03menu.rwd
|
131
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m85menu.rwd
|
132
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m88menu.rwd
|
133
|
+
- gui/frontwindow0/superant.com.rwdaddresses/m99menuend.rwd
|
134
|
+
- gui/frontwindowselectionbegin/selectiontabbegin/selectiontabbegin.rwd
|
135
|
+
- gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab
|
136
|
+
- gui/frontwindowselections/superant.com.rwdaddressessyncselectiontab
|
137
|
+
- gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
|
138
|
+
- gui/frontwindowselections/superant.com.rwdaddressessyncselectiontab/rwdaddressessyncselectiontab.rwd
|
139
|
+
- gui/frontwindowselectionzend/viewselectionzend/viewselectionend.rwd
|
140
|
+
- gui/frontwindowtdocumentbegin/superant.com.documentsbegin
|
141
|
+
- gui/frontwindowtdocumentbegin/superant.com.documentsbegin/tt0documentbegin.rwd
|
142
|
+
- gui/frontwindowtdocuments/superant.com.documents
|
143
|
+
- gui/frontwindowtdocuments/superant.com.tinkerwin2documents
|
144
|
+
- gui/frontwindowtdocuments/superant.com.addressesdocuments
|
145
|
+
- gui/frontwindowtdocuments/superant.com.documents/uu5documents.rwd
|
146
|
+
- gui/frontwindowtdocuments/superant.com.tinkerwin2documents/uu5documents.rwd
|
147
|
+
- gui/frontwindowtdocuments/superant.com.addressesdocuments/uu8doc_rwdschedule.rwd
|
148
|
+
- gui/frontwindowtdocumentzend/superant.com.documentsend
|
149
|
+
- gui/frontwindowtdocumentzend/superant.com.documentsend/ww0documentend.rwd
|
113
150
|
- gui/frontwindowz1end/frontwindowend/xx0rwdfirsttab.rwd
|
114
151
|
- gui/helpaboutbegin/superant.com.helpaboutbegin
|
115
152
|
- gui/helpaboutbegin/superant.com.helpaboutbegin/ya0helpscreenstart.rwd
|
@@ -125,62 +162,57 @@ files:
|
|
125
162
|
- gui/helpaboutinstalled/superant.com.rwdaddresseshelpabout/1appname.rwd
|
126
163
|
- gui/helpaboutinstalled/superant.com.rwdaddresseshelpabout/3copyright.rwd
|
127
164
|
- gui/helpaboutinstalled/superant.com.rwdaddresseshelpabout/5version.rwd
|
128
|
-
- gui/frontwindowtdocuments/superant.com.documents
|
129
|
-
- gui/frontwindowtdocuments/superant.com.tinkerwin2documents
|
130
|
-
- gui/frontwindowtdocuments/superant.com.addressesdocuments
|
131
|
-
- gui/frontwindowtdocuments/superant.com.documents/uu5documents.rwd
|
132
|
-
- gui/frontwindowtdocuments/superant.com.tinkerwin2documents/uu5documents.rwd
|
133
|
-
- gui/frontwindowtdocuments/superant.com.addressesdocuments/uu8doc_rwdschedule.rwd
|
134
165
|
- gui/helpaboutzend/superant.com.helpaboutend
|
135
166
|
- gui/helpaboutzend/superant.com.helpaboutend/helpscreenend.rwd
|
136
|
-
- gui/tinkerbackwindows/superant.com.versionwindow
|
137
167
|
- gui/tinkerbackwindows/superant.com.tinkerbackwindow
|
138
168
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow
|
169
|
+
- gui/tinkerbackwindows/superant.com.versionwindow
|
139
170
|
- gui/tinkerbackwindows/superant.com.addressesphotowindow
|
140
171
|
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow
|
141
|
-
- gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd
|
142
172
|
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/1appname.rwd
|
143
|
-
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/9backend.rwd
|
144
|
-
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/70rwddiagnostics.rwd
|
145
173
|
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/50rwdlistapplets.rwd
|
146
|
-
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/80tab1.rwd
|
147
|
-
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/50rwdlistzips.rwd
|
148
174
|
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/60editconfiguration.rwd
|
175
|
+
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/70rwddiagnostics.rwd
|
176
|
+
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/75rwdcontrol.rwd
|
177
|
+
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/80tab1.rwd
|
178
|
+
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/9backend.rwd
|
179
|
+
- gui/tinkerbackwindows/superant.com.tinkerbackwindow/40rwdlistzips.rwd
|
149
180
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow/1appname.rwd
|
150
181
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow/9end.rwd
|
182
|
+
- gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd
|
151
183
|
- gui/tinkerbackwindows/superant.com.addressesphotowindow/yy7addressesphoto.rwd
|
152
184
|
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/1appname.rwd
|
153
185
|
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/70rwddiagnostics.rwd
|
154
186
|
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/20downloadftp.rwd
|
155
|
-
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/
|
187
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m01menubegin.rwd
|
156
188
|
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/zvbackend.rwd
|
157
|
-
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/
|
158
|
-
- gui/
|
159
|
-
- gui/
|
160
|
-
- gui/
|
161
|
-
- gui/
|
162
|
-
- gui/
|
163
|
-
- gui/
|
164
|
-
- gui/frontwindowselections/superant.com.rwdaddressessyncselectiontab/rwdaddressessyncselectiontab.rwd
|
165
|
-
- gui/frontwindowselectionbegin/selectiontabbegin/selectiontabbegin.rwd
|
166
|
-
- gui/frontwindowtdocumentbegin/superant.com.documentsbegin
|
167
|
-
- gui/frontwindowtdocumentbegin/superant.com.documentsbegin/tt0documentbegin.rwd
|
189
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m02menu.rwd
|
190
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/88viewconfiguration.rwd
|
191
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m03menu.rwd
|
192
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m85menu.rwd
|
193
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m88menu.rwd
|
194
|
+
- gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m99menuend.rwd
|
195
|
+
- gui/zzcoreguiend/tinkerapplicationguiend/yy9rwdend.rwd
|
168
196
|
- installed/rwdtinkerwin2-0.5.inf
|
169
|
-
- installed/
|
197
|
+
- installed/addressessample1.inf
|
198
|
+
- rwd_files/favicon.ico
|
199
|
+
- rwd_files/HowTo_Tinker.txt
|
200
|
+
- rwd_files/HowTo_TinkerWin2.txt
|
201
|
+
- rwd_files/rdoc-style.css
|
170
202
|
- rwd_files/Readme.txt
|
171
203
|
- rwd_files/rwdapplications.html
|
172
204
|
- rwd_files/rwdindex.html
|
173
|
-
- rwd_files/favicon.ico
|
174
|
-
- rwd_files/HowTo_Tinker.txt
|
175
205
|
- rwd_files/tinker.png
|
176
|
-
- rwd_files/rdoc-style.css
|
177
|
-
- rwd_files/HowTo_TinkerWin2.txt
|
178
206
|
- rwd_files/HowTo_Addresses.txt
|
179
207
|
- rwd_files/contacttmp.jpg
|
180
208
|
- zips/rwdahelloworld-0.5.zip
|
209
|
+
- zips/rwdcalc-0.4.zip
|
210
|
+
- zips/rwdaschedule-0.921.zip
|
211
|
+
- tests/rwdtinkertestEN.rb
|
212
|
+
- tests/test.result
|
181
213
|
- tests/totranslate.lang
|
182
|
-
- Readme.txt
|
183
214
|
- init.rb
|
215
|
+
- Readme.txt
|
184
216
|
test_files: []
|
185
217
|
rdoc_options:
|
186
218
|
- "--main"
|