rwdaddresses 0.8 → 0.9

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.
Files changed (32) hide show
  1. data/code/gl3addresses/gl3viewnamedata.rb +6 -5
  2. data/code/gl3addresses/gl4listnamerecord.rb +10 -8
  3. data/code/gl3addresses/gl5createnewnamerecord.rb +5 -4
  4. data/code/gl3addresses/gl6loadnamerecord.rb +30 -0
  5. data/code/gl3addresses/gl7clearscreendisplay.rb +16 -0
  6. data/code/gl3addresses/gl8viewtmpcontactphoto.rb +12 -0
  7. data/code/gl3addresses/gm3deletecontactrecord.rb +24 -0
  8. data/code/gl3addresses/gm4renamecontact.rb +13 -0
  9. data/code/gl3addresses/gm5attachtmpcontactphoto.rb +24 -0
  10. data/configuration/gl3addresses.cnf +3 -1
  11. data/gui/en/gl3addresses/gl3viewnamedata.rwd +1 -1
  12. data/gui/en/gl3addresses/gl4listnamerecordfiles.rwd +5 -4
  13. data/gui/en/gl3addresses/{gl5createnewnamerecord.rwd → gl6editrecord.rwd} +17 -9
  14. data/gui/en/gl3addresses/gl8contactutilities.rwd +32 -0
  15. data/gui/es/gl3addresses/gl3viewnamedata.rwd +1 -1
  16. data/gui/es/gl3addresses/gl4listnamerecordfiles.rwd +5 -4
  17. data/gui/es/gl3addresses/{gl5createnewnamerecord.rwd → gl6editrecord.rwd} +17 -9
  18. data/gui/es/gl3addresses/gl8contactutilities.rwd +32 -0
  19. data/gui/nl/gl3addresses/gl3viewnamedata.rwd +1 -1
  20. data/gui/nl/gl3addresses/gl4listnamerecordfiles.rwd +5 -4
  21. data/gui/nl/gl3addresses/{gl5createnewnamerecord.rwd → gl6editrecord.rwd} +17 -9
  22. data/gui/nl/gl3addresses/gl8contactutilities.rwd +32 -0
  23. data/installed/{rwdaddresses-0.8.inf → rwdaddresses-0.9.inf} +0 -0
  24. data/names/Angelina Jolie.nam +8 -0
  25. data/names/{AngelinaJolie.png → Angelina Jolie.png} +0 -0
  26. data/rwd_files/HowTo_Addresses.txt +24 -5
  27. metadata +104 -99
  28. data/names/AngelinaJolie.nam +0 -8
  29. data/tests/rubyslippers-0.92.gemspec +0 -17
  30. data/tests/rwdtinker-1.2.gemspec +0 -17
  31. data/tests/rwdtinkertestEN.rb +0 -87
  32. data/tests/temptest.out +0 -18
@@ -1,17 +1,18 @@
1
1
  def viewnamedata
2
2
  require 'fileutils'
3
- nametext = "%s" % [@a_viewnamedata]
4
- photoname = nametext + ".png"
3
+ $currentnametext = "%s" % [@a_viewnamedata]
4
+ photoname = $currentnametext + ".png"
5
5
  begin # exception trapped block
6
6
  path_to = File.join( "rwd_files", "contacttmp.png" )
7
7
  path_from = File.join($addressfiles_directory, photoname )
8
8
  if ! File.exist?(path_from)
9
9
  path_from = File.join($addressfiles_directory,"nophoto.png" )
10
10
  end
11
- print path_from
11
+
12
+ Dir.chdir($progdir)
12
13
  FileUtils.cp(path_from, path_to)
13
-
14
- fileName = $addressfiles_directory + "/" + nametext + ".nam"
14
+ sleep $photodelay
15
+ fileName = $addressfiles_directory + "/" + $currentnametext + ".nam"
15
16
 
16
17
  fd = File.open(fileName,"r")
17
18
  @viewnamedatadisplay = " "
@@ -1,11 +1,13 @@
1
- # this code is to list the contact names
2
- def listnamerecordfiles
3
- fileList = Dir.new($addressfiles_directory).entries.sort.delete_if { |x| ! (x =~ /nam$/) }
4
- @listnamerecordfilesresult = fileList.rwd_method("fillcontactrecordname")
5
- end
6
-
7
- def fillcontactrecordname(inffile)
1
+ # this code is to list the contact names
2
+ def listnamerecordfiles
3
+ fileList = Dir.new($addressfiles_directory).entries.sort.delete_if { |x| ! (x =~ /nam$/) }
4
+ @listphotosfromtmp = ""
5
+ @listnamerecordfilesresult = fileList.rwd_method("fillcontactrecordname")
6
+ end
7
+
8
+ # this method is to help fill in list of names
9
+ def fillcontactrecordname(inffile)
8
10
  applet = inffile.gsub(/\.nam$/, "")
9
11
  @a_viewnamedata = applet
10
- end
12
+ end
11
13
 
@@ -1,6 +1,7 @@
1
- def createnewnamerecord # this method adds a new address record
2
- require 'fileutils'
3
-
1
+ # this method adds a new address record or saves changes
2
+ def createnewnamerecord
3
+ require 'fileutils'
4
+ if @a_filename
4
5
  newname = "%s" % [@a_filename] # grab the new filename to create
5
6
  newdata =@a_name.to_s + "\n" + @a_address.to_s + "\n" + @a_citystatezip.to_s + "\n" + @a_phone.to_s + "\n" + @a_email.to_s + "\n" + @a_comment1.to_s + "\n" + @a_comment2.to_s + "\n" + @a_comment3.to_s + "\n"
6
7
  fullnewname = newname + ".nam"
@@ -13,5 +14,5 @@
13
14
  rescue SystemCallError, StandardError
14
15
  $stderr.print "system call error: " + $!
15
16
  end # exception rescue
16
-
17
+ end
17
18
  end
@@ -0,0 +1,30 @@
1
+ # this method views an existing address record
2
+ def loadnamerecord
3
+
4
+ require 'fileutils'
5
+ @a_filename = $currentnametext
6
+
7
+ begin # exception trapped block
8
+
9
+
10
+ fileName = $addressfiles_directory + "/" + $currentnametext + ".nam"
11
+
12
+ fd = File.open(fileName,"r")
13
+ @a_name = fd.readline.chomp
14
+ @a_address = fd.readline.chomp
15
+ @a_citystatezip = fd.readline.chomp
16
+ @a_phone = fd.readline.chomp
17
+ @a_email = fd.readline.chomp
18
+ @a_comment1 = fd.readline.chomp
19
+ @a_comment2 =fd.readline.chomp
20
+ @a_comment3 = fd.readline.chomp
21
+
22
+ while ! fd.eof?
23
+ @extranamedatadisplay = fd.readline
24
+ end
25
+ fd.close
26
+ rescue SystemCallError, StandardError
27
+ $stderr.print "system call error: " + $!
28
+ end # exception rescue
29
+
30
+ end
@@ -0,0 +1,16 @@
1
+ # this method clears the on screen variables
2
+ def clearnamescreendisplay
3
+
4
+
5
+ @a_filename = ""
6
+ @a_name = ""
7
+ @a_address = ""
8
+ @a_citystatezip = ""
9
+ @a_phone = ""
10
+ @a_email = ""
11
+ @a_comment1 = ""
12
+ @a_comment2 = ""
13
+ @a_comment3 = ""
14
+ @extranamedatadisplay = ""
15
+
16
+ end
@@ -0,0 +1,12 @@
1
+ # this code is to list the photo names
2
+ def viewtmpcontactphoto
3
+ fileList = Dir.new($tmpphoto_directory).entries.sort.delete_if { |x| ! (x =~ /png$/) }
4
+ @listnamerecordfilesresult = ""
5
+ @listphotosfromtmp = fileList.rwd_method("filltmpcontactphoto")
6
+ end
7
+
8
+ def filltmpcontactphoto(inffile)
9
+ applet = inffile.gsub(/\.nam$/, "")
10
+ @a_tmpphotoname = applet
11
+ end
12
+
@@ -0,0 +1,24 @@
1
+ # this method views an existing address record
2
+ def deletecontactrecord
3
+
4
+ require 'fileutils'
5
+
6
+ if @a_viewnamedata
7
+ $currentnametext = @a_viewnamedata
8
+ end
9
+
10
+ fileName = $addressfiles_directory + "/" + $currentnametext + ".nam"
11
+ $stderr.print fileName
12
+
13
+ begin # exception trapped block
14
+
15
+ File.delete(fileName)
16
+ fileNamephoto = $addressfiles_directory + "/" + $currentnametext + ".png"
17
+ if File.exist?(fileNamephoto)
18
+ File.delete(fileNamephoto)
19
+ end
20
+ rescue SystemCallError, StandardError
21
+ $stderr.print "system call error: " + $!
22
+ end # exception rescue
23
+
24
+ end
@@ -0,0 +1,13 @@
1
+ # this code is to change the contact name
2
+ def changenamedata
3
+ oldName = $addressfiles_directory + "/" + @a_viewnamedata + ".nam"
4
+ newName = $addressfiles_directory + "/" + @a_changenamedata + ".nam"
5
+ File.rename(oldName, newName)
6
+ oldphotoName = $addressfiles_directory + "/" + @a_viewnamedata + ".png"
7
+ newphotoName = $addressfiles_directory + "/" + @a_changenamedata + ".png"
8
+ if File.exist?(oldphotoName)
9
+ File.rename(oldphotoName, newphotoName)
10
+ end
11
+ end
12
+
13
+
@@ -0,0 +1,24 @@
1
+ # this code is to attach a photo from the tmp directory
2
+ def attachtmpcontactphoto
3
+ if @a_viewnamedata
4
+ $currentnametext = @a_viewnamedata
5
+ end
6
+ if $currentnametext
7
+ tmpcontactphotoName = $tmpphoto_directory + "/" + @a_tmpphotoname
8
+ begin
9
+ if File.exist?(tmpcontactphotoName)
10
+ newcontactphotoName = $tmpphoto_directory + "/" + $currentnametext + ".png"
11
+ if ! (tmpcontactphotoName == newcontactphotoName )
12
+ File.rename(tmpcontactphotoName, newcontactphotoName)
13
+ end
14
+ @listphotosfromtmp = "Photo attached"
15
+ FileUtils.cp(newcontactphotoName , $addressfiles_directory)
16
+ else
17
+ @listphotosfromtmp = "attachment failed"
18
+ end
19
+ rescue
20
+ @listphotosfromtmp = "attachment failed"
21
+ end
22
+ end
23
+ end
24
+
@@ -1,2 +1,4 @@
1
1
 
2
- $addressfiles_directory="names"
2
+ $photodelay = 0
3
+ $addressfiles_directory="names"
4
+ $tmpphoto_directory = "/tmp"
@@ -5,7 +5,7 @@
5
5
  <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
6
 
7
7
  </table>
8
- <p>%viewnamedatadisplay%</p>
8
+
9
9
  <horizontal>
10
10
  <button caption="Open" action="viewnamedata"/>
11
11
  <button caption="View Photo" action="viewcontactphoto"/>
@@ -4,13 +4,14 @@
4
4
 
5
5
 
6
6
  </table>
7
- <p>%%listnamerecordfilesresult%%</p>
7
+ <p>%viewnamedatadisplay%</p>
8
8
  <horizontal>
9
- <button caption="ListFiles" action="listnamerecordfiles"/>
10
- <button caption="Cancel" action="main"/>
9
+ <button caption="List Contacts" action="listnamerecordfiles"/>
10
+
11
11
 
12
12
  </horizontal>
13
-
13
+
14
+ <p>%%listnamerecordfilesresult%%</p>
14
15
  </tab>
15
16
 
16
17
 
@@ -1,4 +1,17 @@
1
- <tab name="createnewnamerecordfile" caption="New Contact">
1
+ <tab name="editnamerecordfile" caption="Edit Contact">
2
+ <table>
3
+ <row> <p> </row>
4
+ <row> <p align="right">You can create a new record here or edit one</row>
5
+ <row> <p> </row>
6
+ <horizontal>
7
+ <button caption="Fill Record" action="loadnamerecord"/>
8
+ <button caption="Save Changes" action="createnewnamerecord"/>
9
+ <button caption="Clear" action="clearnamescreendisplay"/>
10
+
11
+
12
+
13
+
14
+ </horizontal>
2
15
  <table>
3
16
  <row> <p align="right">FileName:</p> <text name="a_filename"/> </row>
4
17
  <row> <p align="right">Contact Name:</p> <text name="a_name"/> </row>
@@ -11,15 +24,10 @@
11
24
  <row> <p align="right">Comment3:</p> <text name="a_comment3"/> </row>
12
25
 
13
26
  </table>
27
+ <p>%extranamedatadisplay%</p>
28
+ <p>
14
29
  <p>%createnewnamerecorddisplay%</p>
15
- <horizontal>
16
- <button caption="CreateFile" action="createnewnamerecord"/>
17
- <button caption="Cancel" action="main"/>
18
-
19
-
20
-
21
-
22
- </horizontal>
30
+
23
31
 
24
32
 
25
33
  </tab>
@@ -0,0 +1,32 @@
1
+
2
+ <tab name="contactutilitiesrwdaddresses" caption="Contact Utilities">
3
+
4
+ <table>
5
+ <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
+ <row> <p align="right">New Name:</p> <text name="a_changenamedata"/> </row>
7
+
8
+ </table>
9
+
10
+ <horizontal>
11
+ <button caption="Rename Record" action="changenamedata"/>
12
+ <button caption="Delete Record" action="deletecontactrecord"/>
13
+ </horizontal>
14
+ <table>
15
+
16
+ <row> <p align="right">Photo Name:</p> <text name="a_tmpphotoname"/> </row>
17
+ </table>
18
+
19
+ <horizontal>
20
+ <button caption="Attach Photo" action="attachtmpcontactphoto"/>
21
+ </horizontal>
22
+
23
+ <horizontal>
24
+ <button caption="List Contacts" action="listnamerecordfiles"/>
25
+
26
+
27
+ <button caption="List Photos" action="viewtmpcontactphoto"/>
28
+ </horizontal>
29
+
30
+ <p>%%listnamerecordfilesresult%%</p>
31
+ <p>%%listphotosfromtmp%%</p>
32
+ </tab>
@@ -5,7 +5,7 @@
5
5
  <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
6
 
7
7
  </table>
8
- <p>%viewnamedatadisplay%</p>
8
+
9
9
  <horizontal>
10
10
  <button caption="Open" action="viewnamedata"/>
11
11
  <button caption="View Photo" action="viewcontactphoto"/>
@@ -4,13 +4,14 @@
4
4
 
5
5
 
6
6
  </table>
7
- <p>%%listnamerecordfilesresult%%</p>
7
+ <p>%viewnamedatadisplay%</p>
8
8
  <horizontal>
9
- <button caption="ListFiles" action="listnamerecordfiles"/>
10
- <button caption="Cancel" action="main"/>
9
+ <button caption="List Contacts" action="listnamerecordfiles"/>
10
+
11
11
 
12
12
  </horizontal>
13
-
13
+
14
+ <p>%%listnamerecordfilesresult%%</p>
14
15
  </tab>
15
16
 
16
17
 
@@ -1,4 +1,17 @@
1
- <tab name="createnewnamerecordfile" caption="New Contact">
1
+ <tab name="editnamerecordfile" caption="Edit Contact">
2
+ <table>
3
+ <row> <p> </row>
4
+ <row> <p align="right">You can create a new record here or edit one</row>
5
+ <row> <p> </row>
6
+ <horizontal>
7
+ <button caption="Fill Record" action="loadnamerecord"/>
8
+ <button caption="Save Changes" action="createnewnamerecord"/>
9
+ <button caption="Clear" action="clearnamescreendisplay"/>
10
+
11
+
12
+
13
+
14
+ </horizontal>
2
15
  <table>
3
16
  <row> <p align="right">FileName:</p> <text name="a_filename"/> </row>
4
17
  <row> <p align="right">Contact Name:</p> <text name="a_name"/> </row>
@@ -11,15 +24,10 @@
11
24
  <row> <p align="right">Comment3:</p> <text name="a_comment3"/> </row>
12
25
 
13
26
  </table>
27
+ <p>%extranamedatadisplay%</p>
28
+ <p>
14
29
  <p>%createnewnamerecorddisplay%</p>
15
- <horizontal>
16
- <button caption="CreateFile" action="createnewnamerecord"/>
17
- <button caption="Cancel" action="main"/>
18
-
19
-
20
-
21
-
22
- </horizontal>
30
+
23
31
 
24
32
 
25
33
  </tab>
@@ -0,0 +1,32 @@
1
+
2
+ <tab name="contactutilitiesrwdaddresses" caption="Contact Utilities">
3
+
4
+ <table>
5
+ <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
+ <row> <p align="right">New Name:</p> <text name="a_changenamedata"/> </row>
7
+
8
+ </table>
9
+
10
+ <horizontal>
11
+ <button caption="Rename Record" action="changenamedata"/>
12
+ <button caption="Delete Record" action="deletecontactrecord"/>
13
+ </horizontal>
14
+ <table>
15
+
16
+ <row> <p align="right">Photo Name:</p> <text name="a_tmpphotoname"/> </row>
17
+ </table>
18
+
19
+ <horizontal>
20
+ <button caption="Attach Photo" action="attachtmpcontactphoto"/>
21
+ </horizontal>
22
+
23
+ <horizontal>
24
+ <button caption="List Contacts" action="listnamerecordfiles"/>
25
+
26
+
27
+ <button caption="List Photos" action="viewtmpcontactphoto"/>
28
+ </horizontal>
29
+
30
+ <p>%%listnamerecordfilesresult%%</p>
31
+ <p>%%listphotosfromtmp%%</p>
32
+ </tab>
@@ -5,7 +5,7 @@
5
5
  <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
6
 
7
7
  </table>
8
- <p>%viewnamedatadisplay%</p>
8
+
9
9
  <horizontal>
10
10
  <button caption="Open" action="viewnamedata"/>
11
11
  <button caption="View Photo" action="viewcontactphoto"/>
@@ -4,13 +4,14 @@
4
4
 
5
5
 
6
6
  </table>
7
- <p>%%listnamerecordfilesresult%%</p>
7
+ <p>%viewnamedatadisplay%</p>
8
8
  <horizontal>
9
- <button caption="ListFiles" action="listnamerecordfiles"/>
10
- <button caption="Cancel" action="main"/>
9
+ <button caption="List Contacts" action="listnamerecordfiles"/>
10
+
11
11
 
12
12
  </horizontal>
13
-
13
+
14
+ <p>%%listnamerecordfilesresult%%</p>
14
15
  </tab>
15
16
 
16
17
 
@@ -1,4 +1,17 @@
1
- <tab name="createnewnamerecordfile" caption="New Contact">
1
+ <tab name="editnamerecordfile" caption="Edit Contact">
2
+ <table>
3
+ <row> <p> </row>
4
+ <row> <p align="right">You can create a new record here or edit one</row>
5
+ <row> <p> </row>
6
+ <horizontal>
7
+ <button caption="Fill Record" action="loadnamerecord"/>
8
+ <button caption="Save Changes" action="createnewnamerecord"/>
9
+ <button caption="Clear" action="clearnamescreendisplay"/>
10
+
11
+
12
+
13
+
14
+ </horizontal>
2
15
  <table>
3
16
  <row> <p align="right">FileName:</p> <text name="a_filename"/> </row>
4
17
  <row> <p align="right">Contact Name:</p> <text name="a_name"/> </row>
@@ -11,15 +24,10 @@
11
24
  <row> <p align="right">Comment3:</p> <text name="a_comment3"/> </row>
12
25
 
13
26
  </table>
27
+ <p>%extranamedatadisplay%</p>
28
+ <p>
14
29
  <p>%createnewnamerecorddisplay%</p>
15
- <horizontal>
16
- <button caption="CreateFile" action="createnewnamerecord"/>
17
- <button caption="Cancel" action="main"/>
18
-
19
-
20
-
21
-
22
- </horizontal>
30
+
23
31
 
24
32
 
25
33
  </tab>
@@ -0,0 +1,32 @@
1
+
2
+ <tab name="contactutilitiesrwdaddresses" caption="Contact Utilities">
3
+
4
+ <table>
5
+ <row> <p align="right">Contact Name:</p> <text name="a_viewnamedata"/> </row>
6
+ <row> <p align="right">New Name:</p> <text name="a_changenamedata"/> </row>
7
+
8
+ </table>
9
+
10
+ <horizontal>
11
+ <button caption="Rename Record" action="changenamedata"/>
12
+ <button caption="Delete Record" action="deletecontactrecord"/>
13
+ </horizontal>
14
+ <table>
15
+
16
+ <row> <p align="right">Photo Name:</p> <text name="a_tmpphotoname"/> </row>
17
+ </table>
18
+
19
+ <horizontal>
20
+ <button caption="Attach Photo" action="attachtmpcontactphoto"/>
21
+ </horizontal>
22
+
23
+ <horizontal>
24
+ <button caption="List Contacts" action="listnamerecordfiles"/>
25
+
26
+
27
+ <button caption="List Photos" action="viewtmpcontactphoto"/>
28
+ </horizontal>
29
+
30
+ <p>%%listnamerecordfilesresult%%</p>
31
+ <p>%%listphotosfromtmp%%</p>
32
+ </tab>
@@ -0,0 +1,8 @@
1
+ Angelina Jolie
2
+
3
+ Hollywood
4
+
5
+
6
+ actress
7
+ Oscar winner
8
+
File without changes
@@ -73,11 +73,24 @@ Click on "List Files"
73
73
 
74
74
  == Add Info
75
75
 
76
-
77
-
78
- Edits to records must be done manually in this version
79
-
80
-
76
+ For edits to records go to the contacts utilities tab
77
+ You can
78
+ Rename contacts
79
+ Delete contacts
80
+ attach photos to contacts
81
+
82
+ == Attach photo
83
+ on the Contacts Utilities tab
84
+ select the name record,
85
+ put a png photo in the /tmp directory
86
+ select the photo
87
+ click on Attach photo, it will rename the photo and copy it to the
88
+ addresses directory
89
+
90
+ == Change to using jpg photos instead of png
91
+ Need to change one rwd file gui/en/yy7addressesphotowindow/yy7addressesphoto.rwd
92
+ Need to change it in rb files in code/gl3addresses
93
+
81
94
  == Documents
82
95
 
83
96
 
@@ -113,6 +126,12 @@ erik = secret
113
126
  Thanks, Steven Gibson
114
127
 
115
128
  == Changelog
129
+ version 0.9
130
+ added edit commands to change contact record
131
+ Rename contacts
132
+ Delete contacts
133
+ attach photos to contacts
134
+
116
135
  version 0.8
117
136
  updated for version 1.23 of rwdtinker
118
137
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.3
3
3
  specification_version: 1
4
4
  name: rwdaddresses
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.8"
7
- date: 2004-10-27
6
+ version: "0.9"
7
+ date: 2004-10-28
8
8
  summary: rwdaddresses is contact book application using rwdtinker and RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -29,165 +29,170 @@ files:
29
29
  - lib/temp.rb
30
30
  - code/ag1core/aa0begin.rb
31
31
  - code/ag1core/rwdtinkerversion.rb
32
- - code/lm1installapplets/ll5listzips.rb
33
- - code/lm1installapplets/lm1installapplet.rb
34
- - code/zz0applicationend/zz0end.rb
32
+ - code/al5languagefiles/alanguagehashbegin.rb
35
33
  - code/al5languagefiles/languagehash.rb
36
34
  - code/al5languagefiles/templangfile.rb
37
35
  - code/al5languagefiles/zlanguagehashend.rb
38
- - code/al5languagefiles/alanguagehashbegin.rb
36
+ - code/gl3addresses/gl3viewnamedata.rb
37
+ - code/gl3addresses/gl4listnamerecord.rb
38
+ - code/gl3addresses/gl4viewphoto.rb
39
+ - code/gl3addresses/gl5createnewnamerecord.rb
40
+ - code/gl3addresses/gl6loadnamerecord.rb
41
+ - code/gl3addresses/gl7clearscreendisplay.rb
42
+ - code/gl3addresses/gl8viewtmpcontactphoto.rb
43
+ - code/gl3addresses/gm3deletecontactrecord.rb
44
+ - code/gl3addresses/gm4renamecontact.rb
45
+ - code/gl3addresses/gm5attachtmpcontactphoto.rb
46
+ - code/lm1installapplets/ll5listzips.rb
47
+ - code/lm1installapplets/lm1installapplet.rb
39
48
  - code/ssdiagnostictab/diagnostictab.rb
40
49
  - code/xa5rwdtinkercallable/callable.rb
41
50
  - code/xb1rwdtinkerbackwindow/05listinstalledfiles.rb
51
+ - code/xb1rwdtinkerbackwindow/diagnostictab.rb
42
52
  - code/xb1rwdtinkerbackwindow/ll1openname.rb
43
- - code/xb1rwdtinkerbackwindow/mm1removeapplet.rb
44
53
  - code/xb1rwdtinkerbackwindow/ll5listzips.rb
45
54
  - code/xb1rwdtinkerbackwindow/lm1installapplet.rb
46
- - code/xb1rwdtinkerbackwindow/diagnostictab.rb
55
+ - code/xb1rwdtinkerbackwindow/mm1removeapplet.rb
47
56
  - code/xb1rwdtinkerbackwindow/rwdtinkerwin2version.rb
48
- - code/gl3addresses/gl3viewnamedata.rb
49
- - code/gl3addresses/gl4listnamerecord.rb
50
- - code/gl3addresses/gl4viewphoto.rb
51
- - code/gl3addresses/gl5createnewnamerecord.rb
57
+ - code/zz0applicationend/zz0end.rb
52
58
  - configuration/aa0rwdframework.cnf
53
59
  - configuration/ab1tinkerwin2.cnf
54
60
  - configuration/gl3addresses.cnf
55
- - names/AngelinaJolie.nam
56
- - names/AngelinaJolie.png
57
- - names/StevenGibson.png
58
- - names/StevenGibson.nam
61
+ - names/Angelina Jolie.png
59
62
  - names/nophoto.png
60
- - ev/sgml.rb
61
- - ev/xml.rb
62
- - ev/net.rb
63
- - ev/ruby.rb
64
- - ev/tree.rb
63
+ - names/StevenGibson.nam
64
+ - names/StevenGibson.png
65
+ - names/Angelina Jolie.nam
65
66
  - ev/browser.rb
66
67
  - ev/ftools.rb
68
+ - ev/net.rb
69
+ - ev/ruby.rb
67
70
  - ev/rwd.rb
71
+ - ev/sgml.rb
68
72
  - ev/thread.rb
69
- - lang/es/rwdcore/languagefile.rb
73
+ - ev/tree.rb
74
+ - ev/xml.rb
70
75
  - lang/en/rwdcore/languagefile.rb
76
+ - lang/es/rwdcore/languagefile.rb
71
77
  - lang/nl/rwdcore/languagefile.rb
72
78
  - gui/en/aa2core/aa0rwdtop.rwd
73
- - gui/en/yg5rwdhelpabout/1appname.rwd
74
- - gui/en/yg5rwdhelpabout/3copyright.rwd
75
- - gui/en/yg5rwdhelpabout/5version.rwd
76
- - gui/en/za1applicationend/yy9rwdend.rwd
77
- - gui/en/wz6finaltabs/xx0rwdfirsttab.rwd
78
- - gui/en/ww0documentsend/ww0documentend.rwd
79
- - gui/en/uu5rwddocuments/uu5documents.rwd
79
+ - gui/en/gl3addresses/gl3viewnamedata.rwd
80
+ - gui/en/gl3addresses/gl4listnamerecordfiles.rwd
81
+ - gui/en/gl3addresses/gl8contactutilities.rwd
82
+ - gui/en/gl3addresses/gl6editrecord.rwd
83
+ - gui/en/ll1selectiontabbegin/selectiontabbegin.rwd
84
+ - gui/en/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
85
+ - gui/en/lz1selectiontabend/endselectiontab.rwd
80
86
  - gui/en/tt0documentsbegin/tt0documentbegin.rwd
81
- - gui/en/yg6rwdwin2helpabout/1appname.rwd
82
- - gui/en/yg6rwdwin2helpabout/3copyright.rwd
83
- - gui/en/yg6rwdwin2helpabout/5version.rwd
87
+ - gui/en/uu5rwddocuments/uu5documents.rwd
88
+ - gui/en/uu6rwdtinkerwin2documents/uu5documents.rwd
89
+ - gui/en/uu8addresses/uu8doc_rwdschedule.rwd
90
+ - gui/en/ww0documentsend/ww0documentend.rwd
91
+ - gui/en/wz6finaltabs/xx0rwdfirsttab.rwd
84
92
  - gui/en/xa1versionwindow/1appname.rwd
85
93
  - gui/en/xa5rwdtinkercallablewindow/1appname.rwd
86
94
  - gui/en/xa5rwdtinkercallablewindow/9end.rwd
87
- - gui/en/ll1selectiontabbegin/selectiontabbegin.rwd
88
- - gui/en/ya1helpaboutbegin/ya0helpscreenstart.rwd
89
- - gui/en/lz1selectiontabend/endselectiontab.rwd
90
95
  - gui/en/xb1rwdtinkerbackwindow/1appname.rwd
91
96
  - gui/en/xb1rwdtinkerbackwindow/2tab1.rwd
92
- - gui/en/xb1rwdtinkerbackwindow/9backend.rwd
93
- - gui/en/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
94
97
  - gui/en/xb1rwdtinkerbackwindow/3arwddiagnostics.rwd
98
+ - gui/en/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
95
99
  - gui/en/xb1rwdtinkerbackwindow/4arwdlistzips.rwd
96
- - gui/en/uu6rwdtinkerwin2documents/uu5documents.rwd
97
- - gui/en/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
98
- - gui/en/gl3addresses/gl3viewnamedata.rwd
99
- - gui/en/gl3addresses/gl4listnamerecordfiles.rwd
100
- - gui/en/gl3addresses/gl5createnewnamerecord.rwd
101
- - gui/en/uu8addresses/uu8doc_rwdschedule.rwd
100
+ - gui/en/xb1rwdtinkerbackwindow/9backend.rwd
101
+ - gui/en/ya1helpaboutbegin/ya0helpscreenstart.rwd
102
+ - gui/en/yg5rwdhelpabout/1appname.rwd
103
+ - gui/en/yg5rwdhelpabout/3copyright.rwd
104
+ - gui/en/yg5rwdhelpabout/5version.rwd
105
+ - gui/en/yg6rwdwin2helpabout/1appname.rwd
106
+ - gui/en/yg6rwdwin2helpabout/3copyright.rwd
107
+ - gui/en/yg6rwdwin2helpabout/5version.rwd
102
108
  - gui/en/yl3addresseshelp/yl3helpscreen.rwd
103
109
  - gui/en/yy7addressesphotowindow/yy7addressesphoto.rwd
110
+ - gui/en/za1applicationend/yy9rwdend.rwd
104
111
  - gui/es/aa2core/aa0rwdtop.rwd
105
- - gui/es/yg5rwdhelpabout/1appname.rwd
106
- - gui/es/yg5rwdhelpabout/3copyright.rwd
107
- - gui/es/yg5rwdhelpabout/5version.rwd
108
- - gui/es/za1applicationend/yy9rwdend.rwd
109
- - gui/es/wz6finaltabs/xx0rwdfirsttab.rwd
110
- - gui/es/ww0documentsend/ww0documentend.rwd
111
- - gui/es/uu5rwddocuments/uu5documents.rwd
112
+ - gui/es/gl3addresses/gl3viewnamedata.rwd
113
+ - gui/es/gl3addresses/gl4listnamerecordfiles.rwd
114
+ - gui/es/gl3addresses/gl8contactutilities.rwd
115
+ - gui/es/gl3addresses/gl6editrecord.rwd
116
+ - gui/es/ll1selectiontabbegin/selectiontabbegin.rwd
117
+ - gui/es/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
118
+ - gui/es/lz1selectiontabend/endselectiontab.rwd
112
119
  - gui/es/tt0documentsbegin/tt0documentbegin.rwd
113
- - gui/es/yg6rwdwin2helpabout/1appname.rwd
114
- - gui/es/yg6rwdwin2helpabout/3copyright.rwd
115
- - gui/es/yg6rwdwin2helpabout/5version.rwd
120
+ - gui/es/uu5rwddocuments/uu5documents.rwd
121
+ - gui/es/uu6rwdtinkerwin2documents/uu5documents.rwd
122
+ - gui/es/uu8addresses/uu8doc_rwdschedule.rwd
123
+ - gui/es/ww0documentsend/ww0documentend.rwd
124
+ - gui/es/wz6finaltabs/xx0rwdfirsttab.rwd
116
125
  - gui/es/xa1versionwindow/1appname.rwd
117
126
  - gui/es/xa5rwdtinkercallablewindow/1appname.rwd
118
127
  - gui/es/xa5rwdtinkercallablewindow/9end.rwd
119
- - gui/es/ll1selectiontabbegin/selectiontabbegin.rwd
120
- - gui/es/ya1helpaboutbegin/ya0helpscreenstart.rwd
121
- - gui/es/lz1selectiontabend/endselectiontab.rwd
122
128
  - gui/es/xb1rwdtinkerbackwindow/1appname.rwd
123
129
  - gui/es/xb1rwdtinkerbackwindow/2tab1.rwd
124
- - gui/es/xb1rwdtinkerbackwindow/9backend.rwd
125
- - gui/es/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
126
130
  - gui/es/xb1rwdtinkerbackwindow/3arwddiagnostics.rwd
131
+ - gui/es/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
127
132
  - gui/es/xb1rwdtinkerbackwindow/4arwdlistzips.rwd
128
- - gui/es/uu6rwdtinkerwin2documents/uu5documents.rwd
129
- - gui/es/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
130
- - gui/es/gl3addresses/gl3viewnamedata.rwd
131
- - gui/es/gl3addresses/gl4listnamerecordfiles.rwd
132
- - gui/es/gl3addresses/gl5createnewnamerecord.rwd
133
- - gui/es/uu8addresses/uu8doc_rwdschedule.rwd
133
+ - gui/es/xb1rwdtinkerbackwindow/9backend.rwd
134
+ - gui/es/ya1helpaboutbegin/ya0helpscreenstart.rwd
135
+ - gui/es/yg5rwdhelpabout/1appname.rwd
136
+ - gui/es/yg5rwdhelpabout/3copyright.rwd
137
+ - gui/es/yg5rwdhelpabout/5version.rwd
138
+ - gui/es/yg6rwdwin2helpabout/1appname.rwd
139
+ - gui/es/yg6rwdwin2helpabout/3copyright.rwd
140
+ - gui/es/yg6rwdwin2helpabout/5version.rwd
134
141
  - gui/es/yl3addresseshelp/yl3helpscreen.rwd
135
142
  - gui/es/yy7addressesphotowindow/yy7addressesphoto.rwd
143
+ - gui/es/za1applicationend/yy9rwdend.rwd
136
144
  - gui/nl/aa2core/aa0rwdtop.rwd
137
- - gui/nl/yg5rwdhelpabout/1appname.rwd
138
- - gui/nl/yg5rwdhelpabout/3copyright.rwd
139
- - gui/nl/yg5rwdhelpabout/5version.rwd
140
- - gui/nl/za1applicationend/yy9rwdend.rwd
141
- - gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd
142
- - gui/nl/ww0documentsend/ww0documentend.rwd
143
- - gui/nl/uu5rwddocuments/uu5documents.rwd
145
+ - gui/nl/gl3addresses/gl3viewnamedata.rwd
146
+ - gui/nl/gl3addresses/gl4listnamerecordfiles.rwd
147
+ - gui/nl/gl3addresses/gl8contactutilities.rwd
148
+ - gui/nl/gl3addresses/gl6editrecord.rwd
149
+ - gui/nl/ll1selectiontabbegin/selectiontabbegin.rwd
150
+ - gui/nl/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
151
+ - gui/nl/lz1selectiontabend/endselectiontab.rwd
144
152
  - gui/nl/tt0documentsbegin/tt0documentbegin.rwd
145
- - gui/nl/yg6rwdwin2helpabout/1appname.rwd
146
- - gui/nl/yg6rwdwin2helpabout/3copyright.rwd
147
- - gui/nl/yg6rwdwin2helpabout/5version.rwd
153
+ - gui/nl/uu5rwddocuments/uu5documents.rwd
154
+ - gui/nl/uu6rwdtinkerwin2documents/uu5documents.rwd
155
+ - gui/nl/uu8addresses/uu8doc_rwdschedule.rwd
156
+ - gui/nl/ww0documentsend/ww0documentend.rwd
157
+ - gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd
148
158
  - gui/nl/xa1versionwindow/1appname.rwd
149
159
  - gui/nl/xa5rwdtinkercallablewindow/1appname.rwd
150
160
  - gui/nl/xa5rwdtinkercallablewindow/9end.rwd
151
- - gui/nl/ll1selectiontabbegin/selectiontabbegin.rwd
152
- - gui/nl/ya1helpaboutbegin/ya0helpscreenstart.rwd
153
- - gui/nl/lz1selectiontabend/endselectiontab.rwd
154
161
  - gui/nl/xb1rwdtinkerbackwindow/1appname.rwd
155
162
  - gui/nl/xb1rwdtinkerbackwindow/2tab1.rwd
156
- - gui/nl/xb1rwdtinkerbackwindow/9backend.rwd
157
- - gui/nl/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
158
163
  - gui/nl/xb1rwdtinkerbackwindow/3arwddiagnostics.rwd
164
+ - gui/nl/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
159
165
  - gui/nl/xb1rwdtinkerbackwindow/4arwdlistzips.rwd
160
- - gui/nl/uu6rwdtinkerwin2documents/uu5documents.rwd
161
- - gui/nl/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
162
- - gui/nl/gl3addresses/gl3viewnamedata.rwd
163
- - gui/nl/gl3addresses/gl4listnamerecordfiles.rwd
164
- - gui/nl/gl3addresses/gl5createnewnamerecord.rwd
165
- - gui/nl/uu8addresses/uu8doc_rwdschedule.rwd
166
+ - gui/nl/xb1rwdtinkerbackwindow/9backend.rwd
167
+ - gui/nl/ya1helpaboutbegin/ya0helpscreenstart.rwd
168
+ - gui/nl/yg5rwdhelpabout/1appname.rwd
169
+ - gui/nl/yg5rwdhelpabout/3copyright.rwd
170
+ - gui/nl/yg5rwdhelpabout/5version.rwd
171
+ - gui/nl/yg6rwdwin2helpabout/1appname.rwd
172
+ - gui/nl/yg6rwdwin2helpabout/3copyright.rwd
173
+ - gui/nl/yg6rwdwin2helpabout/5version.rwd
166
174
  - gui/nl/yl3addresseshelp/yl3helpscreen.rwd
167
175
  - gui/nl/yy7addressesphotowindow/yy7addressesphoto.rwd
168
- - installed/rwdtinkerwin2-0.5.inf
176
+ - gui/nl/za1applicationend/yy9rwdend.rwd
169
177
  - installed/addressessample1.inf
170
- - installed/rwdaddresses-0.8.inf
178
+ - installed/rwdtinkerwin2-0.5.inf
179
+ - installed/rwdaddresses-0.9.inf
180
+ - rwd_files/contacttmp.png
181
+ - rwd_files/favicon.ico
182
+ - rwd_files/HowTo_Addresses.html
183
+ - rwd_files/HowTo_Addresses.txt
171
184
  - rwd_files/HowTo_Tinker.html
185
+ - rwd_files/HowTo_Tinker.txt
186
+ - rwd_files/HowTo_TinkerWin2.txt
187
+ - rwd_files/rdoc-style.css
172
188
  - rwd_files/Readme.txt
173
189
  - rwd_files/rwdapplications.html
174
190
  - rwd_files/rwdindex.html
175
- - rwd_files/favicon.ico
176
- - rwd_files/HowTo_Tinker.txt
177
- - rwd_files/rdoc-style.css
178
- - rwd_files/HowTo_TinkerWin2.txt
179
- - rwd_files/HowTo_Addresses.html
180
- - rwd_files/contacttmp.png
181
- - rwd_files/HowTo_Addresses.txt
191
+ - zips/rwdaviewphoto-0.3.zip
182
192
  - zips/rwdhelloworld-0.2.zip
183
193
  - zips/rwdrefreshacpi-0.1.zip
184
194
  - zips/rwdwtinkerwin2-0.5.zip
185
- - zips/rwdaviewphoto-0.3.zip
186
- - tests/temptest.out
187
- - tests/rwdtinkertestEN.rb
188
195
  - tests/totranslate.lang
189
- - tests/rubyslippers-0.92.gemspec
190
- - tests/rwdtinker-1.2.gemspec
191
196
  - Readme.txt
192
197
  - init.rb
193
198
  test_files: []
@@ -1,8 +0,0 @@
1
- Angelina Jolie
2
-
3
- U.S.A.
4
-
5
-
6
- Actor
7
- Lara Croft - Tomb Raider
8
- Oscar in 2000 for Girl, Interupted
@@ -1,17 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = %q{rubyslippers}
3
- s.version = "0.92"
4
- s.date = %q{2004-12-21}
5
- s.summary = %q{rwdtinker application.}
6
- s.require_paths = ["."]
7
- s.email = %q{whitton@atlantic.net}
8
- s.homepage = %q{http://grub.ath.cx/formvalidator/}
9
- s.autorequire = %q{formvalidator}
10
- s.has_rdoc = true
11
- s.files = [ "README.rdoc", "code", "code/ag1core", "code/ag1core/aa0begin.rb", "code/ii6rubyslippers", "code/ii6rubyslippers/gemserve.rb", "code/ii6rubyslippers/ii3viewgemdata.rb", "code/ii6rubyslippers/ii4listgemrecord.rb", "code/ii6rubyslippers/ii6installgem.rb", "code/ii6rubyslippers/ii7listgemsremote.rb", "code/ii6rubyslippers/ii9gemcommands.rb", "code/ii6rubyslippers/ii9gemenvironment.rb", "code/ii6rubyslippers/ii9gemfilesinstalled.rb", "code/ii6rubyslippers/ii9listgemdirs.rb", "code/ii6rubyslippers/ij9execgemserve.rb", "code/ll0listapplets", "code/ll0listapplets/05listinstalledfiles.rb", "code/ll0listapplets/ll1openname.rb", "code/ll0listapplets/mm1removeapplet.rb", "code/lm1installapplets", "code/lm1installapplets/ll5listzips.rb", "code/lm1installapplets/lm1installapplet.rb", "code/zz0applicationend", "code/zz0applicationend/zz0end.rb", "configuration", "configuration/aa0rwdframework.cnf", "configuration/ii3rubyslippers.cnf", "ev", "ev/browser.rb", "ev/ftools.rb", "ev/net.rb", "ev/ruby.rb", "ev/rwd.rb", "ev/sgml.rb", "ev/thread.rb", "ev/tree.rb", "ev/xml.rb", "gui", "gui/en", "gui/en/aa2core", "gui/en/aa2core/aa0rwdtop.rwd", "gui/en/ii6rubyslippers", "gui/en/ii6rubyslippers/ii3viewgemdata.rwd", "gui/en/ii6rubyslippers/ii4listgemrecordfiles.rwd", "gui/en/ii6rubyslippers/ii6installgem.rwd", "gui/en/ii6rubyslippers/ii7listgemsremote.rwd", "gui/en/ii6rubyslippers/ii9gemcommands.rwd", "gui/en/ii6rubyslippers/ij1gemfilesinstalled.rwd", "gui/en/ii6rubyslippers/ij4gemserverscan.rwd", "gui/en/ll5listapplets", "gui/en/ll5listapplets/ll0rwdlistapplets.rwd", "gui/en/ll9rwdlistzips", "gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/en/tt0documentsbegin", "gui/en/tt0documentsbegin/tt0documentbegin.rwd", "gui/en/ui3rubyslippers", "gui/en/ui3rubyslippers/ui3rubyslippers.rwd", "gui/en/ui3rubyslippers/ui4rubyslippers.rwd", "gui/en/uu5rwddocuments", "gui/en/uu5rwddocuments/uu5documents.rwd", "gui/en/ww0documentsend", "gui/en/ww0documentsend/ww0documentend.rwd", "gui/en/wz6finaltabs", "gui/en/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/en/ya1helpbegin", "gui/en/ya1helpbegin/ya0helpscreenstart.rwd", "gui/en/yg5rwdhelp", "gui/en/yg5rwdhelp/yf0helpscreen.rwd", "gui/en/yg5rwdhelp/yf6rwdtinker.rwd", "gui/en/yg5rwdhelp/yg0helpscreen.rwd", "gui/en/yi2rubyslippers", "gui/en/yi2rubyslippers/yi2rubyslippers.rwd", "gui/en/yi2rubyslippers/yi6rubyslippers.rwd", "gui/en/yi2rubyslippers/yi8rubyslippers.rwd", "gui/en/yy5helpend", "gui/en/yy5helpend/yy5helpscreenend,rwd", "gui/en/za1applicationend", "gui/en/za1applicationend/yy9rwdend.rwd", "gui/nl", "gui/nl/aa2core", "gui/nl/aa2core/aa0rwdtop.rwd", "gui/nl/ii6rubyslippers", "gui/nl/ii6rubyslippers/ii3viewgemdata.rwd", "gui/nl/ii6rubyslippers/ii4listgemrecordfiles.rwd", "gui/nl/ii6rubyslippers/ii6installgem.rwd", "gui/nl/ii6rubyslippers/ii7listgemsremote.rwd", "gui/nl/ii6rubyslippers/ii9gemcommands.rwd", "gui/nl/ii6rubyslippers/ij1gemfilesinstalled.rwd", "gui/nl/ii6rubyslippers/ij4gemserverscan.rwd", "gui/nl/ll5listapplets", "gui/nl/ll5listapplets/ll0rwdlistapplets.rwd", "gui/nl/ll9rwdlistzips", "gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/nl/tt0documentsbegin", "gui/nl/tt0documentsbegin/tt0documentbegin.rwd", "gui/nl/ui3rubyslippers", "gui/nl/ui3rubyslippers/ui3rubyslippers.rwd", "gui/nl/ui3rubyslippers/ui4rubyslippers.rwd", "gui/nl/uu5rwddocuments", "gui/nl/uu5rwddocuments/uu5documents.rwd", "gui/nl/ww0documentsend", "gui/nl/ww0documentsend/ww0documentend.rwd", "gui/nl/wz6finaltabs", "gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/nl/ya1helpbegin", "gui/nl/ya1helpbegin/ya0helpscreenstart.rwd", "gui/nl/yg5rwdhelp", "gui/nl/yg5rwdhelp/yf0helpscreen.rwd", "gui/nl/yg5rwdhelp/yf6rwdtinker.rwd", "gui/nl/yg5rwdhelp/yg0helpscreen.rwd", "gui/nl/yi2rubyslippers", "gui/nl/yi2rubyslippers/yi2rubyslippers.rwd", "gui/nl/yi2rubyslippers/yi6rubyslippers.rwd", "gui/nl/yi2rubyslippers/yi8rubyslippers.rwd", "gui/nl/yy5helpend", "gui/nl/yy5helpend/yy5helpscreenend,rwd", "gui/nl/za1applicationend", "gui/nl/za1applicationend/yy9rwdend.rwd", "init.rb", "installed", "installed/fullrubyslippers-0.91.inf", "installed/rwdlistapplets-0.4.inf", "installed/rwdlistzips-0.4.inf", "Readme.txt", "rwd_files", "rwd_files/COPYING", "rwd_files/favicon.ico", "rwd_files/GemDocuments.html", "rwd_files/HowTo_RubySlippers.html", "rwd_files/HowTo_Tinker.html", "rwd_files/HowTo_Tinker.txt", "rwd_files/Readme.txt", "rwd_files/rwdapplications.html", "rwd_files/rwdindex.html", "rwd_files/tinker.png", "zips"]
12
- s.rdoc_options = ["--main", "README.rdoc", "rwd_files/HowTo_RubySlippers.html"]
13
- s.extra_rdoc_files = ["README.rdoc"]
14
- end.description = %q{rwdtinker.}
15
-
16
-
17
-
@@ -1,17 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = %q{rwdtinker}
3
- s.version = "1.1"
4
- s.date = %q{2004-12-24}
5
- s.summary = %q{rwdtinker application.}
6
- s.require_paths = ["."]
7
- s.email = %q{steven@superant.com}
8
- s.homepage = %q{http://rubyforge.net/projects/rwdapplications/}
9
- s.autorequire = %q{rwdtinker}
10
- s.has_rdoc = true
11
- s.files = [ "code", "code/ag1core", "code/ag1core/aa0begin.rb", "code/ll0listapplets", "code/ll0listapplets/05listinstalledfiles.rb", "code/ll0listapplets/ll1openname.rb", "code/ll0listapplets/mm1removeapplet.rb", "code/lm1installapplets", "code/lm1installapplets/ll5listzips.rb", "code/lm1installapplets/lm1installapplet.rb", "code/zz0applicationend", "code/zz0applicationend/zz0end.rb", "configuration", "configuration/aa0rwdframework.cnf", "ev", "ev/browser.rb", "ev/ftools.rb", "ev/net.rb", "ev/ruby.rb", "ev/rwd.rb", "ev/sgml.rb", "ev/thread.rb", "ev/tree.rb", "ev/xml.rb", "gui", "gui/en", "gui/en/aa2core", "gui/en/aa2core/aa0rwdtop.rwd", "gui/en/ll5listapplets", "gui/en/ll5listapplets/ll0rwdlistapplets.rwd", "gui/en/ll9rwdlistzips", "gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/en/tt0documentsbegin", "gui/en/tt0documentsbegin/tt0documentbegin.rwd", "gui/en/uu5rwddocuments", "gui/en/uu5rwddocuments/uu5documents.rwd", "gui/en/ww0documentsend", "gui/en/ww0documentsend/ww0documentend.rwd", "gui/en/wz6finaltabs", "gui/en/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/en/ya1helpbegin", "gui/en/ya1helpbegin/ya0helpscreenstart.rwd", "gui/en/yg5rwdhelp", "gui/en/yg5rwdhelp/yf0helpscreen.rwd", "gui/en/yg5rwdhelp/yf6rwdtinker.rwd", "gui/en/yg5rwdhelp/yg0helpscreen.rwd", "gui/en/yy5helpend", "gui/en/yy5helpend/yy5helpscreenend,rwd", "gui/en/za1applicationend", "gui/en/za1applicationend/yy9rwdend.rwd", "gui/nl", "gui/nl/aa2core", "gui/nl/aa2core/aa0rwdtop.rwd", "gui/nl/ll5listapplets", "gui/nl/ll5listapplets/ll0rwdlistapplets.rwd", "gui/nl/ll9rwdlistzips", "gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/nl/tt0documentsbegin", "gui/nl/tt0documentsbegin/tt0documentbegin.rwd", "gui/nl/uu5rwddocuments", "gui/nl/uu5rwddocuments/uu5documents.rwd", "gui/nl/ww0documentsend", "gui/nl/ww0documentsend/ww0documentend.rwd", "gui/nl/wz6finaltabs", "gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/nl/ya1helpbegin", "gui/nl/ya1helpbegin/ya0helpscreenstart.rwd", "gui/nl/yg5rwdhelp", "gui/nl/yg5rwdhelp/yf0helpscreen.rwd", "gui/nl/yg5rwdhelp/yf6rwdtinker.rwd", "gui/nl/yg5rwdhelp/yg0helpscreen.rwd", "gui/nl/yy5helpend", "gui/nl/yy5helpend/yy5helpscreenend,rwd", "gui/nl/za1applicationend", "gui/nl/za1applicationend/yy9rwdend.rwd", "init.rb", "installed", "installed/rwdlistapplets-0.4.inf", "installed/rwdlistzips-0.4.inf", "Readme.txt", "rwd_files", "rwd_files/COPYING", "rwd_files/favicon.ico", "rwd_files/HowTo_Tinker.html", "rwd_files/HowTo_Tinker.txt", "rwd_files/Readme.txt", "rwd_files/rwdapplications.html", "rwd_files/rwdindex.html", "rwd_files/tinker.png", "zips"]
12
- s.rdoc_options = ["--main", "rwd_files/HowTo_Tinker.txt"]
13
- s.extra_rdoc_files = ["README.txt"]
14
- end.description = %q{rwdtinker.}
15
-
16
-
17
-
@@ -1,87 +0,0 @@
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
- $ie.goto(testSite)
41
- puts ' Action: entered ' + testSite + 'in the address bar.'
42
- sleep 1
43
-
44
- $ie.button(:caption, "View Photo").click
45
- puts ' Action: clicked the View Photo link'
46
-
47
- sleep 1
48
- $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_main";document.bodyform.submit();').click
49
- puts ' Action: clicked the main top link'
50
- end
51
-
52
- def test_b_Buttons1
53
- sleep 1
54
- $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_filelister";document.bodyform.submit();').click
55
- puts ' Action: clicked the file lister tab'
56
-
57
- sleep 1
58
-
59
- $ie.button(:caption, "List Files").click
60
- puts ' Action: clicked the List Files button.'
61
-
62
- sleep 1
63
-
64
- assert($ie.pageContainsText("File Name") )
65
- sleep 1
66
-
67
- $ie.button(:caption, "View Install Text").click
68
- puts ' Action: clicked the View Install Text button.'
69
-
70
- sleep 1
71
- $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_zipslister";document.bodyform.submit();').click
72
-
73
- puts ' '
74
- puts '## End of 2st test: '
75
-
76
- end # end of test_b_buttons1
77
-
78
- def test_c_tabs
79
-
80
- $ie.button(:caption, "List applets available for installing").click
81
- puts ' Action: clicked the List applets available for installing button.'
82
-
83
- end
84
-
85
-
86
-
87
- end #end of class TC_google_suite
data/tests/temptest.out DELETED
@@ -1,18 +0,0 @@
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 View Photo link
7
- Action: clicked the main top link
8
- Action: clicked the file lister tab
9
- Action: clicked the List Files button.
10
- pageContainsText: Looking for: File Name (string) - found it ok
11
- Action: clicked the View Install Text button.
12
-
13
- ## End of 2st test:
14
- Action: clicked the List applets available for installing button.
15
-
16
- Finished in 18.676 seconds.
17
-
18
- 3 tests, 1 assertions, 0 failures, 0 errors