rwdaddresses 0.99 → 1.01

Sign up to get free protection for your applications and to get access to all the features.
data/Readme.txt CHANGED
@@ -147,9 +147,20 @@ erik = secret
147
147
  Thanks, Steven Gibson
148
148
 
149
149
  == Changelog
150
+ version 1.01
151
+ updated for rwdtinker version 1.59
152
+ refactored diagnotic page - one button to see all information
153
+ added bug report upload to diagnostic page
154
+
155
+ version 1.00
156
+ Fix config editing screen
157
+
150
158
  version 0.99
151
159
  added rconftool use to update configuration files
152
160
  changed applets removal to not use external rm
161
+ removed version number from directory name
162
+ Debian permissions fixed. Configuration editing has more boxes.
163
+
153
164
 
154
165
  version 0.98
155
166
  updated for rwdtinker 1.56
@@ -0,0 +1,61 @@
1
+ def uploadreturnsfile
2
+ require 'net/ftp'
3
+ BasicSocket.do_not_reverse_lookup = true
4
+ @returnsftpdisplays = ""
5
+ randomnumber = rand(9999) + 1000
6
+ puts randomnumber.to_i
7
+
8
+
9
+ returns_ftpsite = "ftp.superant.com"
10
+ returns_ftplogin = "anonymous@superant.com"
11
+ returns_ftppassword = "anonymous@superant.com"
12
+ returns_ftpdirectory = "/incoming/returns/"
13
+
14
+ #begin
15
+ platformdisplay = "Platform is " + RUBY_PLATFORM + "\n"
16
+ platformdisplay = platformdisplay + "Ruby Version " + VERSION + "\n"
17
+ platformdisplay = platformdisplay + "rwdtinker version " + RwdTinkerVersion + "\n"
18
+ platformdisplay = platformdisplay + "program directory " + $progdir + "\n"
19
+ platformdisplay = platformdisplay + "hostname " + Resolv.getname(Resolv.getaddress("localhost")) + "\n"
20
+ platformdisplay = platformdisplay + "Date " + Date.today().to_s + "\n"
21
+ if ! @a_emailupload.empty?
22
+ platformdisplay = platformdisplay + @a_emailupload + "\n"
23
+ end
24
+ if ! @a_emailupload.empty?
25
+ platformdisplay = platformdisplay + @a_commentupload + "\n"
26
+ end
27
+ updatefile = Date.today().to_s + Resolv.getname(Resolv.getaddress("localhost")) + randomnumber.to_s
28
+
29
+ tmpdir = ENV['TMP']
30
+ if tmpdir.to_s.empty?
31
+ tmpdir = "/tmp"
32
+ end
33
+ fileName = File.join( tmpdir, updatefile)
34
+ fd = File.open(fileName,"w")
35
+ fd.print(platformdisplay) # save the record info to the file
36
+ fd.close
37
+ ftp = Net::FTP::new(returns_ftpsite)
38
+ @returnsftpdisplay = "data uploaded" + "\n"
39
+
40
+ filedirname = File.join(tmpdir,updatefile)
41
+
42
+ ftp.debug_mode = false
43
+ ftp.login(returns_ftplogin, returns_ftppassword)
44
+ ftp.chdir(returns_ftpdirectory)
45
+ print "I'm in the directory ", ftp.pwd(), "\n"
46
+
47
+ puts filedirname
48
+ ftp.puttextfile(filedirname , updatefile)
49
+ @returnsftpdisplay = @returnsftpdisplay + platformdisplay
50
+
51
+
52
+ ftp.close
53
+
54
+ #rescue
55
+ # @returnsftpdisplay = "upload error"
56
+ if ftp
57
+ ftp.close
58
+ end
59
+ print "ftp error"
60
+ #end
61
+ end
@@ -30,6 +30,8 @@
30
30
  @a_adconfigline15 = fd.readline.chomp
31
31
  @a_adconfigline16 = fd.readline.chomp
32
32
  @a_adconfigline17 = fd.readline.chomp
33
+ @a_adconfigline18 = fd.readline.chomp
34
+ @a_adconfigline19 = fd.readline.chomp
33
35
 
34
36
  while ! fd.eof?
35
37
  @extraadconfigdatadisplay = fd.readline
@@ -3,8 +3,10 @@
3
3
  require 'fileutils'
4
4
 
5
5
  newname = "rwdaddresses.cnf" # grab the filename to create
6
- newdata =@a_adconfigline1.to_s + "\n" + @a_adconfigline2.to_s + "\n" + @a_adconfigline3.to_s + "\n" + @a_adconfigline4.to_s + "\n" + @a_adconfigline5.to_s + "\n" + @a_adconfigline6.to_s + "\n" + @a_adconfigline7.to_s + "\n" + @a_adconfigline8.to_s + "\n" + @a_adconfigline9.to_s + "\n"
7
-
6
+
7
+
8
+ newdata =@a_adconfigline1.to_s + "\n" + @a_adconfigline2.to_s + "\n" + @a_adconfigline3.to_s + "\n" + @a_adconfigline4.to_s + "\n" + @a_adconfigline5.to_s + "\n" + @a_adconfigline6.to_s + "\n" + @a_adconfigline7.to_s + "\n" + @a_adconfigline8.to_s + "\n" + @a_adconfigline9.to_s + "\n" + @a_adconfigline10.to_s + "\n" + @a_adconfigline11.to_s + "\n" + @a_adconfigline12.to_s + "\n" + @a_adconfigline13.to_s + "\n" + @a_adconfigline14.to_s + "\n" + @a_adconfigline15.to_s + "\n" + @a_adconfigline16.to_s + "\n" + @a_adconfigline17.to_s + "\n" + @a_adconfigline18.to_s + "\n" + @a_adconfigline19.to_s + "\n"
9
+
8
10
  begin # exception trapped block
9
11
  fileName = File.join( ConfigurationDir, newname )
10
12
  fd = File.open(fileName,"w")
@@ -3,19 +3,22 @@
3
3
  # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
4
  # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
5
 
6
- # return the Ruby constant
7
- def runrubyversion
8
- @rubyversion = "Version " + VERSION
9
- end
6
+
7
+
8
+
9
+ require 'resolv'
10
+ require 'date'
10
11
 
11
- # return the platform constan
12
+ # return the platform information
12
13
  def runviewplatform
13
- @platformdisplay = "Platform is " + RUBY_PLATFORM
14
+ @platformdisplay = "Platform is " + RUBY_PLATFORM + "\n"
15
+ @platformdisplay = @platformdisplay + "Ruby Version " + VERSION + "\n"
16
+ @platformdisplay = @platformdisplay + "rwdtinker version " + RwdTinkerVersion + "\n"
17
+ @platformdisplay = @platformdisplay + "program directory " + $progdir + "\n"
18
+ @platformdisplay = @platformdisplay + "hostname " + Resolv.getname(Resolv.getaddress("localhost")) + "\n"
19
+ @platformdisplay = @platformdisplay + "Date " + Date.today().to_s
20
+
14
21
  end
15
22
 
16
- # return Rwdtinker version to diagnostic tab
17
- def rwdtinkerversiondiagnostic
18
- @rwdtinkerversionreturn = "rwdtinker version " + RwdTinkerVersion
19
- end
20
23
 
21
24
 
@@ -9,6 +9,7 @@
9
9
 
10
10
  rwdtinker applets packaged as RubyGems can be used if you have RubyGems installed.
11
11
  You can download rwdtinker gems at the 'Install Remote Applets' tab
12
+ to install applets you need the ruby zlib library installed
12
13
  ",
13
14
  :applet_viewing => "You can get a list of all installed applets by clicking the 'listfiles button'
14
15
  To see the text of a install file
@@ -32,7 +33,9 @@
32
33
  chose the applet you want\n
33
34
  click on 'install applet'\n
34
35
  If all goes well the applet should be installed.\n
35
- You will need to restart rwdtinker to see the new screens",
36
+ You will need to restart rwdtinker to see the new screens
37
+ to install applets you need the ruby zlib library installed",
38
+
36
39
  :applet_tinkerbackeditconfiguration => " You can edit the configuration
37
40
 
38
41
  Remember to reload the configuration variables if you want your
@@ -1,10 +1,12 @@
1
1
  # code in install rwdtinker applets - now uses ruby.zip module
2
2
  def installapplet
3
- require 'fileutils'
4
- require 'extras/zip/zip'
3
+
5
4
  nametext = "%s" % [@a_installapplet]
6
-
5
+
7
6
  begin # exception trapped block
7
+
8
+
9
+ require 'extras/zip/zip'
8
10
  fullname = nametext + ".zip"
9
11
  fileName = File.join($zipslocation,fullname)
10
12
 
@@ -2,7 +2,7 @@
2
2
  require 'fileutils'
3
3
  nametext = "%s" % [@a_removeapplet]
4
4
 
5
- # begin # exception trapped block
5
+ begin # exception trapped block
6
6
  fileName = "installed/" + nametext + ".inf"
7
7
  count = 0
8
8
  fd = File.open(fileName,"r")
@@ -10,21 +10,23 @@
10
10
 
11
11
  fd.each { |oneline|
12
12
  if count == 1
13
- puts oneline
13
+ if File.exist?(oneline.chop)
14
14
  FileUtils.rm_rf( oneline.chop)
15
+ end
15
16
 
16
17
  end
17
18
  count = 1
18
19
  }
19
20
  fd.close
20
- puts fileName
21
+
21
22
  FileUtils.rm_rf( fileName)
22
23
 
23
24
 
24
25
  @removeapplettext = "applet files removed! - restart rwd to finish uninstalling"
25
26
 
26
- # rescue
27
- # @removeapplettext = "\n" + "error"
28
- # end # exception rescue
27
+ rescue
28
+ @removeapplettext = "\n" + "error"
29
+
30
+ end # exception rescue
29
31
 
30
32
  end
@@ -1,4 +1,4 @@
1
- ##VERSION:0.99
1
+ ##VERSION:1.01
2
2
  #rwdaddresses contact book
3
3
  $photodelay = 1
4
4
  ##NAME:$addressfiles_directory:0
@@ -16,4 +16,4 @@ $rwdaddresses_ftpdirectory = "/incoming/rwdnames/"
16
16
  ##NAME:$rwdaddresses_updatedirectory:0
17
17
  $rwdaddresses_updatedirectory = "updates"
18
18
 
19
- RwdAddressesVersion = "0.99"
19
+ RwdAddressesVersion = "1.01"
@@ -1,3 +1,3 @@
1
- ##VERSION:1.57
2
- $rwdapplicationidentity = "rwdtinker main application"
1
+ ##VERSION:1.59
2
+ $rwdapplicationidentity = "rwdaddresses contact book"
3
3
 
@@ -1,4 +1,4 @@
1
- ##VERSION:1.57
1
+ ##VERSION:1.59
2
2
  ConfigurationDir = "configuration" # for use in program - init.rb has this value without using this constant
3
3
  CodeName = "rwdtinker"
4
4
  CodeNameFile = CodeName + ".rb"
@@ -12,4 +12,4 @@ LangDir = "lang"
12
12
  $rwdcontrolports =["13713","13714","13715","13716","13717","13718"]
13
13
  $port = 7705
14
14
 
15
- RwdTinkerVersion = "1.57"
15
+ RwdTinkerVersion = "1.59"
data/extras/zip/zip.rb CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  require 'delegate'
2
3
  require 'singleton'
3
4
  require 'tempfile'
@@ -0,0 +1,12 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p></row>
4
+
5
+ <horizontal>
6
+
7
+ <button caption=\"Open Adrresses Window\" action=\"runrwdaddressesbackwindow\"/>
8
+
9
+
10
+ </horizontal>"
11
+
12
+
@@ -34,6 +34,8 @@ $rwdguivar=
34
34
  <row> <p align=\"right\">15:</p> <text size=70 name=\"a_adconfigline15\"/> </row>
35
35
  <row> <p align=\"right\">16:</p> <text size=70 name=\"a_adconfigline16\"/> </row>
36
36
  <row> <p align=\"right\">17:</p> <text size=70 name=\"a_adconfigline17\"/> </row>
37
+ <row> <p align=\"right\">18:</p> <text size=70 name=\"a_adconfigline18\"/> </row>
38
+ <row> <p align=\"right\">19:</p> <text size=70 name=\"a_adconfigline19\"/> </row>
37
39
 
38
40
  </table>
39
41
  <p>%extraadconfigdatadisplay%</p>
@@ -2,30 +2,26 @@ $rwdguivar=
2
2
  "
3
3
  <tab name=\"diagnostictab\" caption=\"Diagnostic Tab\">
4
4
  <horizontal>
5
- <button caption=\"View Ruby Version\" action=\"runrubyversion\"/>
5
+ <button caption=\"View Platform Information\" action=\"runviewplatform\"/>
6
6
 
7
7
 
8
- </horizontal>
9
- <p>%rubyversion%</p>
10
-
11
-
12
- <table>
13
- <row> <p> </row>
14
-
15
- </table>
16
-
17
- <horizontal>
18
- <button caption=\"view platform\" action=\"runviewplatform\"/>
19
-
20
8
  </horizontal>
21
9
 
22
10
  <p>%platformdisplay%</p>
23
11
  <horizontal>
24
- <button caption=\"View rwdtinker Version\" action=\"rwdtinkerversiondiagnostic\"/>
12
+
25
13
 
26
14
  </horizontal>
27
-
28
- <p>%rwdtinkerversionreturn%</p>
15
+ <horizontal>
16
+ <button caption=\"upload this page of information to the Program Author\" action=\"uploadreturnsfile\"/>
17
+ </horizontal>
18
+ <horizontal>
19
+ <p align=\"right\">Email:(optional)</p> <text size=50 name=\"a_emailupload\"/>
20
+
21
+ </horizontal>
22
+ <p align=\"center\">Comment/Suggestion/Feature Request or Bug Report:(optional)</p> <textarea name=\"a_commentupload\"/>
23
+
24
+ <p>%returnsftpdisplay%</p>
29
25
 
30
26
  </tab>"
31
27
 
@@ -0,0 +1,8 @@
1
+ # rwdaddresses sample data
2
+ names/Angelina Jolie.nam
3
+ names/Steven Gibson.nam
4
+ names/Angelina Jolie.jpg
5
+ names/Steven Gibson.jpg
6
+ names/nophoto.jpg
7
+ names/elektra.nam
8
+ names/elektra.jpg
@@ -147,10 +147,20 @@ erik = secret
147
147
  Thanks, Steven Gibson
148
148
 
149
149
  == Changelog
150
+ version 1.01
151
+ updated for rwdtinker version 1.59
152
+ refactored diagnotic page - one button to see all information
153
+ added bug report upload to diagnostic page
154
+
155
+ version 1.00
156
+ Fix config editing screen
157
+
150
158
  version 0.99
151
159
  added rconftool use to update configuration files
152
160
  changed applets removal to not use external rm
153
161
  removed version number from directory name
162
+ Debian permissions fixed. Configuration editing has more boxes.
163
+
154
164
 
155
165
  version 0.98
156
166
  updated for rwdtinker 1.56
@@ -227,6 +227,15 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
227
227
  Thanks, Steven Gibson
228
228
 
229
229
  == Changelog
230
+ version 1.59
231
+ removed rwdtinkerwin2 inf file
232
+ refactored diagnotic page - one button to see all information
233
+ added bug report upload to diagnostic page
234
+
235
+ version 1.58
236
+ check for zlib
237
+ check for files to delete
238
+
230
239
  version 1.57
231
240
  added rconftool use to update configuration files
232
241
  changed applets remove to not used external rm
Binary file
@@ -1,4 +1,4 @@
1
1
  #!/bin/sh
2
- ruby tests/rdep.rb *.rb
2
+ ruby rdep.rb ../*.rb
3
3
  echo "checking installapplet.rb"
4
- ruby rdep.rb code/superant.com.rwdtinkerbackwindow/installapplet.rb
4
+ ruby rdep.rb ../code/superant.com.rwdtinkerbackwindow/installapplet.rb
@@ -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
@@ -0,0 +1,93 @@
1
+ code/ag1core/rwdtinkercore.rb: @result = "idle"
2
+ code/ag1core/rwdtinkercore.rb: @display= "idle"
3
+ code/ag1core/rwdtinkercore.rb: "Rwdtinker Application "
4
+ code/ll0listapplets/ll1openname.rb: @displaytext = "\n" + "error"
5
+ code/ll0listapplets/mm1removeapplet.rb: fileName = "installed/" + nametext + ".inf"
6
+ code/ll0listapplets/mm1removeapplet.rb: @removeapplettext = "applet files removed! - restart rwd to finish uninstalling"
7
+ code/ll0listapplets/mm1removeapplet.rb: @removeapplettext = "\n" + "error"
8
+ code/lm1installapplets/lm1installapplet.rb: @installapplettext = "Done! - Check applet list - restart rwd to activate the new applet"
9
+ code/bb2viewphoto/dd0viewphoto.rb: @rwd_window = "photo"
10
+ gui/en/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
11
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
12
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
13
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
14
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
15
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
16
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
17
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
18
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
19
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
20
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
21
+ gui/en/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
22
+ gui/en/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
23
+ gui/en/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
24
+ gui/en/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
25
+ gui/en/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
26
+ gui/en/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
27
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
28
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
29
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
30
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
31
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
32
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
33
+ gui/en/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
34
+ gui/en/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
35
+ gui/en/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
36
+ gui/en/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
37
+ gui/en/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
38
+ gui/es/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
39
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
40
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
41
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
42
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
43
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
44
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
45
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
46
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
47
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
48
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
49
+ gui/es/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
50
+ gui/es/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
51
+ gui/es/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
52
+ gui/es/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
53
+ gui/es/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
54
+ gui/es/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
55
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
56
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
57
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
58
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
59
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
60
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
61
+ gui/es/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
62
+ gui/es/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
63
+ gui/es/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
64
+ gui/es/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
65
+ gui/es/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
66
+ gui/nl/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
67
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
68
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
69
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
70
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
71
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
72
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
73
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
74
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
75
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
76
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
77
+ gui/nl/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
78
+ gui/nl/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
79
+ gui/nl/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
80
+ gui/nl/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
81
+ gui/nl/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
82
+ gui/nl/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
83
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
84
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
85
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
86
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
87
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
88
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
89
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
90
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
91
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
92
+ gui/nl/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
93
+ gui/nl/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.6
3
3
  specification_version: 1
4
4
  name: rwdaddresses
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.99"
7
- date: 2005-03-07
6
+ version: "1.01"
7
+ date: 2005-03-12
8
8
  summary: rwdaddresses is contact book application using rwdtinker and RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -35,6 +35,7 @@ files:
35
35
  - code/01rwdcore/returntomain.rb
36
36
  - code/01rwdcore/rwdtinkerversion.rb
37
37
  - code/01rwdcore/rwdwindowreturn.rb
38
+ - code/01rwdcore/uploadreturns.rb
38
39
  - code/superant.com.rwdtinkerbackwindow/controlclient.rb
39
40
  - code/superant.com.rwdtinkerbackwindow/diagnostictab.rb
40
41
  - code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb
@@ -58,33 +59,33 @@ files:
58
59
  - code/superant.com.rwdtinkerbackwindow/installremotegem.rb
59
60
  - code/superant.com.rwdtinkerbackwindow/listgemzips.rb
60
61
  - code/zz0applicationend/zz0end.rb
61
- - code/superant.com.rwdaddresses/viewphoto.rb
62
- - code/superant.com.rwdaddresses/viewnamedata.rb
63
- - code/superant.com.rwdaddresses/loadnamerecord.rb
64
- - code/superant.com.rwdaddresses/clearscreendisplay.rb
65
- - code/superant.com.rwdaddresses/viewtmpcontactphoto.rb
66
- - code/superant.com.rwdaddresses/deletecontactrecord.rb
67
62
  - code/superant.com.rwdaddresses/attachtmpcontactphoto.rb
68
- - code/superant.com.rwdaddresses/runrwdaddresssyncbackwindow.rb
69
- - code/superant.com.rwdaddresses/syncrwdaddress.rb
70
- - code/superant.com.rwdaddresses/runaddresseswindow.rb
71
- - code/superant.com.rwdaddresses/rwdaddresseshelpabout.rb
72
- - code/superant.com.rwdaddresses/viewaddressconfiguration.rb
73
- - code/superant.com.rwdaddresses/renamecontact.rb
63
+ - code/superant.com.rwdaddresses/clearscreendisplay.rb
74
64
  - code/superant.com.rwdaddresses/createnewnamerecord.rb
75
- - code/superant.com.rwdaddresses/uploadrwdaddressfiles.rb
76
- - code/superant.com.rwdaddresses/listnamerecord.rb
65
+ - code/superant.com.rwdaddresses/deletecontactrecord.rb
66
+ - code/superant.com.rwdaddresses/deleterwdaddressesupdatefiles.rb
77
67
  - code/superant.com.rwdaddresses/downloadrwdaddressfiles.rb
78
- - code/superant.com.rwdaddresses/loadconfigurationvariables.rb
79
- - code/superant.com.rwdaddresses/saveconfigurationrecord.rb
68
+ - code/superant.com.rwdaddresses/helptexthashrwdaddresses.rb
69
+ - code/superant.com.rwdaddresses/listnamerecord.rb
80
70
  - code/superant.com.rwdaddresses/loadconfigurationrecord.rb
81
- - code/superant.com.rwdaddresses/viewrwdaddressesconfiguration.rb
82
- - code/superant.com.rwdaddresses/deleterwdaddressesupdatefiles.rb
71
+ - code/superant.com.rwdaddresses/loadconfigurationvariables.rb
72
+ - code/superant.com.rwdaddresses/loadnamerecord.rb
83
73
  - code/superant.com.rwdaddresses/openhelpwindowrwdaddresses.rb
84
- - code/superant.com.rwdaddresses/helptexthashrwdaddresses.rb
85
- - code/superant.com.rwdaddresses/rwdaddressesbackwindow.rb
74
+ - code/superant.com.rwdaddresses/renamecontact.rb
86
75
  - code/superant.com.rwdaddresses/returntomain.rb
76
+ - code/superant.com.rwdaddresses/runaddresseswindow.rb
87
77
  - code/superant.com.rwdaddresses/runrwdaddressesmenu1.rb
78
+ - code/superant.com.rwdaddresses/runrwdaddresssyncbackwindow.rb
79
+ - code/superant.com.rwdaddresses/rwdaddressesbackwindow.rb
80
+ - code/superant.com.rwdaddresses/rwdaddresseshelpabout.rb
81
+ - code/superant.com.rwdaddresses/saveconfigurationrecord.rb
82
+ - code/superant.com.rwdaddresses/syncrwdaddress.rb
83
+ - code/superant.com.rwdaddresses/uploadrwdaddressfiles.rb
84
+ - code/superant.com.rwdaddresses/viewaddressconfiguration.rb
85
+ - code/superant.com.rwdaddresses/viewnamedata.rb
86
+ - code/superant.com.rwdaddresses/viewphoto.rb
87
+ - code/superant.com.rwdaddresses/viewrwdaddressesconfiguration.rb
88
+ - code/superant.com.rwdaddresses/viewtmpcontactphoto.rb
88
89
  - configuration/tinkerwin2variables.dist
89
90
  - configuration/rwdtinker.dist
90
91
  - configuration/language.dist
@@ -100,13 +101,13 @@ files:
100
101
  - extras/plugins
101
102
  - extras/showHelp
102
103
  - extras/rconftool.rb
103
- - names/Angelina Jolie.nam
104
- - names/Steven Gibson.nam
105
104
  - names/Angelina Jolie.jpg
106
- - names/Steven Gibson.jpg
107
- - names/nophoto.jpg
108
- - names/elektra.nam
105
+ - names/Angelina Jolie.nam
109
106
  - names/elektra.jpg
107
+ - names/elektra.nam
108
+ - names/nophoto.jpg
109
+ - names/Steven Gibson.jpg
110
+ - names/Steven Gibson.nam
110
111
  - extras/zip/ioextras.rb
111
112
  - extras/zip/stdrubyext.rb
112
113
  - extras/zip/tempfile_bugfixed.rb
@@ -129,10 +130,10 @@ files:
129
130
  - lang/nl/rwdcore/languagefile.rb
130
131
  - gui/00coreguibegin/applicationguitop.rwd
131
132
  - gui/frontwindow0/superant.com.rwdaddresses
132
- - gui/frontwindow0/superant.com.rwdaddresses/16editrecord.rwd
133
- - gui/frontwindow0/superant.com.rwdaddresses/18contactutilities.rwd
134
133
  - gui/frontwindow0/superant.com.rwdaddresses/11viewnamedata.rwd
135
134
  - gui/frontwindow0/superant.com.rwdaddresses/13listnamerecordfiles.rwd
135
+ - gui/frontwindow0/superant.com.rwdaddresses/16editrecord.rwd
136
+ - gui/frontwindow0/superant.com.rwdaddresses/18contactutilities.rwd
136
137
  - gui/frontwindow0/superant.com.rwdaddresses/m01menubegin.rwd
137
138
  - gui/frontwindow0/superant.com.rwdaddresses/m02menu.rwd
138
139
  - gui/frontwindow0/superant.com.rwdaddresses/m03menu.rwd
@@ -141,8 +142,10 @@ files:
141
142
  - gui/frontwindow0/superant.com.rwdaddresses/m99menuend.rwd
142
143
  - gui/frontwindowselectionbegin/selectiontabbegin/selectiontabbegin.rwd
143
144
  - gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab
145
+ - gui/frontwindowselections/superant.com.rwdaddressesselectiontab
144
146
  - gui/frontwindowselections/superant.com.rwdaddressessyncselectiontab
145
147
  - gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
148
+ - gui/frontwindowselections/superant.com.rwdaddressesselectiontab/rwdaddressessyncselectiontab.rwd
146
149
  - gui/frontwindowselections/superant.com.rwdaddressessyncselectiontab/rwdaddressessyncselectiontab.rwd
147
150
  - gui/frontwindowselectionzend/viewselectionzend/viewselectionend.rwd
148
151
  - gui/frontwindowtdocumentbegin/superant.com.documentsbegin
@@ -191,19 +194,19 @@ files:
191
194
  - gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd
192
195
  - gui/tinkerbackwindows/superant.com.addressesphotowindow/yy7addressesphoto.rwd
193
196
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/1appname.rwd
194
- - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/70rwddiagnostics.rwd
195
197
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/20downloadftp.rwd
198
+ - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/70rwddiagnostics.rwd
199
+ - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/88viewconfiguration.rwd
196
200
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m01menubegin.rwd
197
- - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/zvbackend.rwd
198
201
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m02menu.rwd
199
- - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/88viewconfiguration.rwd
200
202
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m03menu.rwd
201
203
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m85menu.rwd
202
204
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m88menu.rwd
203
205
  - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/m99menuend.rwd
206
+ - gui/tinkerbackwindows/superant.com.rwdaddressessyncbackwindow/zvbackend.rwd
204
207
  - gui/zzcoreguiend/tinkerapplicationguiend/yy9rwdend.rwd
205
- - installed/rwdtinkerwin2-0.5.inf
206
208
  - installed/rwdviewlogo-0.4.inf
209
+ - installed/rwdaddressesdata2.inf
207
210
  - rwd_files/favicon.ico
208
211
  - rwd_files/HowTo_Tinker.txt
209
212
  - rwd_files/HowTo_TinkerWin2.txt
@@ -215,13 +218,16 @@ files:
215
218
  - rwd_files/HowTo_Addresses.txt
216
219
  - rwd_files/contacttmp.jpg
217
220
  - zips/rwdahelloworld-0.5.zip
221
+ - tests/rwdtinkertestEN.rb
222
+ - tests/test.result
223
+ - tests/totranslate.lang
218
224
  - tests/cleancnf.sh
219
225
  - tests/rdep.rb
220
226
  - tests/checkdepends.sh
221
227
  - tests/makedist.rb
222
228
  - init.rb
223
- - rwdconfig.dist
224
229
  - Readme.txt
230
+ - rwdconfig.dist
225
231
  test_files: []
226
232
  rdoc_options:
227
233
  - "--main"
@@ -1,8 +0,0 @@
1
- # rwdwin2 - rwd applet in second window - core for Tinker: Applet adding/removing and Diagnostic tab
2
- configuration/ab1tinkerwin2.cnf
3
- code/xb1rwdtinkerbackwindow
4
- gui/ll5rwdtinkerwin2selectiontab
5
- gui/xb1rwdtinkerbackwindow
6
- gui/uu6rwdtinkerwin2documents
7
- gui/yg6rwdwin2helpabout
8
- rwd_files/HowTo_TinkerWin2.txt