rubyslippers 1.00 → 1.01

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/Readme.txt +8 -1
  2. data/code/01rwdcore/01rwdcore.rb +4 -2
  3. data/code/01rwdcore/test_cases.rb +126 -0
  4. data/code/01rwdcore/test_harness.rb +15 -0
  5. data/code/01rwdcore/uploadreturns.rb +62 -0
  6. data/code/superant.com.rubyslippers/gemcommands.rb +2 -2
  7. data/code/superant.com.rubyslippers/gemwhich.rb +17 -0
  8. data/code/superant.com.rubyslippers/helptexthashrubyslippers.rb +11 -3
  9. data/code/superant.com.rubyslippers/installgem.rb +1 -1
  10. data/code/superant.com.rubyslippers/listgemrecord.rb +2 -1
  11. data/code/superant.com.rubyslippers/listinstalledgemsfiles.rb +2 -2
  12. data/code/superant.com.rubyslippers/openhelpwindowrubyslippers.rb +3 -0
  13. data/code/superant.com.rubyslippersbackwindow/loadgemspecrecord.rb +5 -2
  14. data/code/superant.com.rwdtinkerbackwindow/diagnostictab.rb +14 -10
  15. data/configuration/language.dist +1 -1
  16. data/configuration/rubyslippers.dist +2 -2
  17. data/configuration/rwdapplicationidentity.dist +2 -2
  18. data/configuration/rwdtinker.dist +2 -2
  19. data/configuration/tinkerwin2variables.dist +1 -1
  20. data/gui/frontwindow0/superant.com.rubyslippers/25gemcommands.rwd +1 -1
  21. data/gui/frontwindow0/superant.com.rubyslippers/75gemwhich.rwd +20 -0
  22. data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/3copyright.rwd +1 -1
  23. data/gui/tinkerbackwindows/superant.com.rubyslippersbackwindow/5editgemspecrecord.rwd +3 -1
  24. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/70rwddiagnostics.rwd +12 -16
  25. data/init.rb +3 -0
  26. data/rwd_files/HowTo_RubySlippers.txt +8 -1
  27. data/rwd_files/HowTo_Tinker.txt +14 -0
  28. data/rwd_files/remotegemlist.txt +73 -34
  29. data/rwdconfig.dist +6 -2
  30. metadata +9 -10
  31. data/gui/helpaboutinstalled/superant.com.rwdwin2helpabout/1appname.rwd +0 -4
  32. data/gui/helpaboutinstalled/superant.com.rwdwin2helpabout/3copyright.rwd +0 -3
  33. data/gui/helpaboutinstalled/superant.com.rwdwin2helpabout/5version.rwd +0 -10
  34. data/installed/rwdtinkerwin2-0.5.inf +0 -8
  35. data/installed/rwdviewlogo-0.4.inf +0 -4
data/Readme.txt CHANGED
@@ -156,7 +156,14 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
156
156
 
157
157
  Thanks, Steven Gibson
158
158
 
159
- =Changelog
159
+ =Changelog
160
+ version 1.01
161
+ add in test harness
162
+ fix gem list input
163
+ added in dependencies to gemcommands
164
+ added gemspec filename to editgemspec tab
165
+ added gemwhich command
166
+
160
167
  version 1.00
161
168
  correct view gemspec screen
162
169
  added rconftool use to update configuration files
@@ -7,11 +7,13 @@
7
7
  class RwdTinker < RWDialog
8
8
 
9
9
  def main
10
- @rwd_window = "main"
10
+ @rwd_window = "main"
11
11
  @result = "idle"
12
12
  @display= "idle"
13
-
13
+ if TestNow
14
14
 
15
+ rwdtest_harness
16
+ end
15
17
  end
16
18
 
17
19
  def inspect
@@ -0,0 +1,126 @@
1
+ # test harness
2
+ def rwdtinker_all_tests
3
+ print "in rwdtinker all tests\n"
4
+ test_runrwdtinkerbackwindow
5
+ end
6
+
7
+
8
+ def test_runrwdtinkerbackwindow
9
+
10
+ require 'test/unit'
11
+ begin
12
+
13
+ runrwdtinkerbackwindow
14
+
15
+ raise NotImplementedError, 'Need to write test_runrwdtinkerbackwindow'
16
+
17
+ rescue NotImplementedError
18
+ $stderr.print $!
19
+
20
+ end
21
+ end
22
+
23
+
24
+
25
+ def test_choosenewhelptopic
26
+ raise NotImplementedError, 'Need to write test_choosenewhelptopic'
27
+ end
28
+
29
+
30
+ def test_listinstalledfiles
31
+ raise NotImplementedError, 'Need to write test_listinstalledfiles'
32
+ end
33
+
34
+
35
+ def test_listzipfilestoinstall
36
+ raise NotImplementedError, 'Need to write test_listzipfilestoinstall'
37
+ end
38
+
39
+ def test_loadconfigurationrecord
40
+ raise NotImplementedError, 'Need to write test_loadconfigurationrecord'
41
+ end
42
+
43
+ def test_loadconfigurationvariables
44
+ raise NotImplementedError, 'Need to write test_loadconfigurationvariables'
45
+ end
46
+
47
+ def test_loadgemspecrecord
48
+ raise NotImplementedError, 'Need to write test_loadgemspecrecord'
49
+ end
50
+
51
+ def test_loadrubyslippersconfiguration
52
+ raise NotImplementedError, 'Need to write test_loadrubyslippersconfiguration'
53
+ end
54
+
55
+ def test_loadrubyslippersconfigurationvariables
56
+ raise NotImplementedError, 'Need to write test_loadrubyslippersconfigurationvariables'
57
+ end
58
+
59
+ def test_main
60
+ raise NotImplementedError, 'Need to write test_main'
61
+ end
62
+
63
+ def test_network_demon
64
+ raise NotImplementedError, 'Need to write test_network_demon'
65
+ end
66
+
67
+ def test_network_start
68
+ raise NotImplementedError, 'Need to write test_network_start'
69
+ end
70
+
71
+ def test_openappletname
72
+ raise NotImplementedError, 'Need to write test_openappletname'
73
+ end
74
+
75
+ def test_removeapplet
76
+ raise NotImplementedError, 'Need to write test_removeapplet'
77
+ end
78
+
79
+ def test_returntomain
80
+ raise NotImplementedError, 'Need to write test_returntomain'
81
+ end
82
+
83
+ def test_runcontrolcommand
84
+ raise NotImplementedError, 'Need to write test_runcontrolcommand'
85
+ end
86
+
87
+
88
+ def test_runhelpwindow
89
+ raise NotImplementedError, 'Need to write test_runhelpwindow'
90
+ end
91
+
92
+
93
+
94
+
95
+ def test_runrwdtinkerversion
96
+ raise NotImplementedError, 'Need to write test_runrwdtinkerversion'
97
+ end
98
+
99
+ def test_runrwdtinkerwin2version
100
+ raise NotImplementedError, 'Need to write test_runrwdtinkerwin2version'
101
+ end
102
+
103
+ def test_runviewplatform
104
+ raise NotImplementedError, 'Need to write test_runviewplatform'
105
+ end
106
+
107
+ def test_rwdtinkerversiondiagnostic
108
+ raise NotImplementedError, 'Need to write test_rwdtinkerversiondiagnostic'
109
+ end
110
+
111
+ def test_rwdwindowreturn
112
+ raise NotImplementedError, 'Need to write test_rwdwindowreturn'
113
+ end
114
+
115
+ def test_saveconfigurationrecord
116
+ raise NotImplementedError, 'Need to write test_saveconfigurationrecord'
117
+ end
118
+
119
+
120
+ def test_viewappletcontents
121
+ raise NotImplementedError, 'Need to write test_viewappletcontents'
122
+ end
123
+
124
+
125
+
126
+
@@ -0,0 +1,15 @@
1
+ # this to start the test harness
2
+ def rwdtest_harness
3
+
4
+ print "in test harness\n"
5
+ $testharnessarray.each { |x|
6
+ print "calling #{x}\n"
7
+ eval("#{x}")
8
+
9
+ }
10
+
11
+ end
12
+
13
+
14
+
15
+
@@ -0,0 +1,62 @@
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 + "application name " + $rwdapplicationidentity + "\n"
19
+ platformdisplay = platformdisplay + "program directory " + $progdir + "\n"
20
+ platformdisplay = platformdisplay + "hostname " + Resolv.getname(Resolv.getaddress("localhost")) + "\n"
21
+ platformdisplay = platformdisplay + "Date " + Date.today().to_s + "\n"
22
+ if ! @a_emailupload.empty?
23
+ platformdisplay = platformdisplay + @a_emailupload + "\n"
24
+ end
25
+ if ! @a_emailupload.empty?
26
+ platformdisplay = platformdisplay + @a_commentupload + "\n"
27
+ end
28
+ updatefile = Date.today().to_s + Resolv.getname(Resolv.getaddress("localhost")) + randomnumber.to_s
29
+
30
+ tmpdir = ENV['TMP']
31
+ if tmpdir.to_s.empty?
32
+ tmpdir = "/tmp"
33
+ end
34
+ fileName = File.join( tmpdir, updatefile)
35
+ fd = File.open(fileName,"w")
36
+ fd.print(platformdisplay) # save the record info to the file
37
+ fd.close
38
+ ftp = Net::FTP::new(returns_ftpsite)
39
+ @returnsftpdisplay = "data uploaded" + "\n"
40
+
41
+ filedirname = File.join(tmpdir,updatefile)
42
+
43
+ ftp.debug_mode = false
44
+ ftp.login(returns_ftplogin, returns_ftppassword)
45
+ ftp.chdir(returns_ftpdirectory)
46
+ print "I'm in the directory ", ftp.pwd(), "\n"
47
+
48
+ puts filedirname
49
+ ftp.puttextfile(filedirname , updatefile)
50
+ @returnsftpdisplay = @returnsftpdisplay + platformdisplay
51
+
52
+
53
+ ftp.close
54
+
55
+ rescue
56
+ @returnsftpdisplay = "upload error"
57
+ if ftp
58
+ ftp.close
59
+ end
60
+ print "ftp error"
61
+ end
62
+ end
@@ -15,5 +15,5 @@
15
15
 
16
16
 
17
17
  def showgemcommandoptions
18
- @gemcommandoptions = ["help","--version","list --local","check -a","check --test","search","search --remote","specification","uninstall"," "].rwd_options
19
- end
18
+ @gemcommandoptions = ["help","--version","list --local","cleanup","dependency","check -a","check --test","search","search --remote","specification","uninstall --executables"," "].rwd_options
19
+ end
@@ -0,0 +1,17 @@
1
+ #gemwhich command
2
+ def rungemwhichcommand
3
+
4
+ commandtext = "gemwhich " + @a_gemwhichcommandinput.to_s + " " + @a_gemcommandoptioninput.to_s
5
+ commandtemp = $xpcommand + commandtext
6
+ begin # exception trapped block
7
+
8
+ @gemwhichresult = `#{commandtemp} 2>&1`
9
+
10
+ rescue SystemCallError, StandardError
11
+ @gemwhichresult = "system call error: " + $!
12
+ end # exception rescue
13
+
14
+ end
15
+
16
+
17
+
@@ -24,7 +24,7 @@
24
24
 
25
25
  Click on the 'Show Gem Command Choices' this will bringup the command that will be added to 'gem'
26
26
  you can choose the blank choice or:
27
- help,--version,list --local,check -a,check --test,search,search --remote,specification,uninstall
27
+ help,--version,list --local,cleanup,dependency,check -a,check --test,search,search --remote,specification,uninstall
28
28
 
29
29
  Enter the command in the box and press the
30
30
  Run Command button
@@ -36,6 +36,7 @@
36
36
  of the file name for the gem command to properly work.
37
37
  the commands that can take a file name are: list --local,check --test,search,search --remote,specification,uninstall
38
38
 
39
+ when using dependency you need to remove the version number from the filename
39
40
  ",
40
41
  :gemfiles_help => "You can view the files that are installed for applications
41
42
 
@@ -76,6 +77,13 @@ You need to select a directory for the gem to be built in by clicking on 'list G
76
77
  The directory searched in is in the rubyslippers.cnf",
77
78
  :viewgemdir_help => "you can view the files in the gem directory before you build it
78
79
  You can select a directory for the gem to be built in by clicking on 'list Gem Directories'
79
- "
80
-
80
+ ",
81
+ :gemwhich_help => "
82
+ The gemwhich script command when given a name, it will locate that file in ruby libraries and gem repositories and display the file path for the file.
83
+
84
+ For example, if you would like to know where the socket file might be located,
85
+ enter socket in the testbox
86
+
87
+ gemwhich will work with regular (non-gem) Ruby libraries as well.
88
+ "
81
89
  )
@@ -6,7 +6,7 @@
6
6
  begin # exception trapped block
7
7
 
8
8
 
9
- commandline = $xpcommand + "gem install " + nametext
9
+ commandline = $xpcommand + "gem install --include-dependencies " + nametext
10
10
 
11
11
  @installgemresult = `#{commandline}`
12
12
 
@@ -8,6 +8,7 @@ end
8
8
  def fillgemrecordname(inffile)
9
9
  applet = inffile.gsub(/\.gemspec$/, "")
10
10
  puts applet
11
- @a_viewgemdata = applet.to_s
11
+ @a_viewgemdata = applet.to_s
12
+ @a_gemcommandoptioninput = applet.to_s
12
13
 
13
14
  end
@@ -1,12 +1,12 @@
1
1
  # this code is to list the gem installed
2
- def listinstalledgemsfiles
2
+ def xlistinstalledgemsfiles
3
3
 
4
4
  fileList = Dir.new($gemspecificationsdirectory).entries.sort
5
5
  @listgemrecordfilesresult = fileList.rwd_method("fillgemspecname")
6
6
  @gemcommandresult = " "
7
7
  end
8
8
 
9
- def fillgemspecname(inffile)
9
+ def xfillgemspecname(inffile)
10
10
  applet = inffile.gsub(/\.gemspec$/, "")
11
11
  @a_gemcommandoptioninput = applet
12
12
 
@@ -34,6 +34,9 @@ def runhelpwindowrubyslippers
34
34
  if @rwd_tab == "viewgemdir"
35
35
  $help_topic = "viewgemdir_help"
36
36
  end
37
+ if @rwd_tab == "gemwhichtab"
38
+ $help_topic = "gemwhich_help"
39
+ end
37
40
 
38
41
  $helptopicsarray = $helptopicsarray | ["rubyslippers_generalhelp", "Install_Gem","GemCommands_help", "gemfilesinstalled","gemdocs_help","gemconfiguration_help","gemspecdata_help","editgemspec_help","buildgem_help","viewgemdir_help"]
39
42
  $previouswindow = @rwd_window
@@ -2,8 +2,11 @@
2
2
  def loadgemspecrecord
3
3
 
4
4
  require 'fileutils'
5
- @a_filegemspec = $currentgemspectext
6
-
5
+ if ! @a_viewgemspecdata.empty?
6
+ $currentgemspectext = @a_viewgemspecdata
7
+ else
8
+ @a_viewgemspecdata = $currentgemspectext
9
+ end
7
10
  begin # exception trapped block
8
11
 
9
12
 
@@ -3,19 +3,23 @@
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 + "application name " + $rwdapplicationidentity + "\n"
20
+ @platformdisplay = @platformdisplay + "Date " + Date.today().to_s
21
+
14
22
  end
15
23
 
16
- # return Rwdtinker version to diagnostic tab
17
- def rwdtinkerversiondiagnostic
18
- @rwdtinkerversionreturn = "rwdtinker version " + RwdTinkerVersion
19
- end
20
24
 
21
25
 
@@ -1,4 +1,4 @@
1
- ##VERSION:1.57
1
+ ##VERSION:1.61
2
2
  #language selection file
3
3
  ##NAME:$lang:0
4
4
  #$lang = "jp"
@@ -1,4 +1,4 @@
1
- ##VERSION:1.00
1
+ ##VERSION:1.01
2
2
  ##NAME:$gemdirectory:0
3
3
  #$gemdirectory = "c:\\ruby\\lib\\ruby\\gems\\1.8" # XP machine
4
4
  $gemdirectory = "/usr/lib/ruby/gems/1.8" # Linux machine
@@ -12,4 +12,4 @@ $gemdirectory = "/usr/lib/ruby/gems/1.8" # Linux machine
12
12
  $gemspec_directory = "/usr/src/rubygems"
13
13
  ##NAME:$gembuild_directory:0
14
14
  $gembuild_directory = "/usr/src/rubygems"
15
- RubySlippersVersion = "1.00"
15
+ RubySlippersVersion = "1.01"
@@ -1,3 +1,3 @@
1
- ##VERSION:1.57
2
- $rwdapplicationidentity = "rwdtinker main application"
1
+ ##VERSION:1.61
2
+ $rwdapplicationidentity = "rubyslippers application"
3
3
 
@@ -1,4 +1,4 @@
1
- ##VERSION:1.58
1
+ ##VERSION:1.61
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.58"
15
+ RwdTinkerVersion = "1.61"
@@ -1,4 +1,4 @@
1
- ##VERSION:1.57
1
+ ##VERSION:1.61
2
2
  TinkerWin2ConfigurationFileName = "tinkerwin2variables.cnf" # this file name - do not change
3
3
  ##NAME:$zipslocation:0
4
4
  $zipslocation = "zips" # location of applets to add
@@ -25,7 +25,7 @@ $rwdguivar=
25
25
  </table>
26
26
  <horizontal>
27
27
 
28
- <button caption=\"List Installed Gem Files\" action=\"listinstalledgemsfiles\"/>
28
+ <button caption=\"List Installed Gem Files\" action=\"listgemrecordfiles\"/>
29
29
 
30
30
  </horizontal>
31
31
 
@@ -0,0 +1,20 @@
1
+ $rwdguivar=
2
+ " <tab name =\"gemwhichtab\" caption=\"Gemwhich Command\">
3
+ <table>
4
+ <p>
5
+ <row> <p align=\"left\">For searching for Ruby library locations</p></row>
6
+
7
+ <row> <p align=\"right\">Library to search for</p> <text name=\"a_gemwhichcommandinput\"/> </row>
8
+ </table>
9
+
10
+ <horizontal>
11
+ <button caption=\"Find Gemwhich \" action=\"rungemwhichcommand\"/>
12
+ <button caption=\"Help\" action=\"runhelpwindowrubyslippers\"/>
13
+ </horizontal>
14
+ <table>
15
+ <row> <p> </row>
16
+ <row> <p align=\"left\">
17
+ </p></row>
18
+ </table>
19
+ <p>%gemwhichresult%</p>
20
+ </tab>"
@@ -1,3 +1,3 @@
1
1
  $rwdguivar=
2
2
  "
3
- <row> <p align=\"center\">copyright s. gibson 2004</p></row>"
3
+ <row> <p align=\"center\">copyright s. gibson 2004,2005</p></row>"
@@ -15,7 +15,9 @@ $rwdguivar=
15
15
 
16
16
  </horizontal>
17
17
  <table>
18
- <row> <p align=\"right\">1:</p> <text name=\"a_gemspecfilename\"/> </row>
18
+ <row> <p align=\"right\">Gemspec Selected:</p> <text name=\"a_viewgemspecdata\"/> </row>
19
+
20
+ <row> <p align=\"right\">filename</p> <text name=\"a_gemspecfilename\"/> </row>
19
21
 
20
22
  <row> <p align=\"right\">1:</p> <text size=70 name=\"a_gemspecline1\"/> </row>
21
23
  <row> <p align=\"right\">2:</p> <text size=70 name=\"a_gemspecline2\"/> </row>
@@ -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
 
data/init.rb CHANGED
@@ -65,6 +65,9 @@ MAINconfignew = "rwdconfig.cnf"
65
65
  MAINconfigdist = "rwdconfig.dist"
66
66
  Rconftool::install(MAINconfigdist,MAINconfignew)
67
67
 
68
+ #load main config file
69
+ load 'rwdconfig.cnf'
70
+
68
71
  Dir.chdir("configuration") #changes the current working directory
69
72
 
70
73
  fileList = Dir.new(".").entries.sort.reverse.delete_if { |x| ! (x =~ /dist$/) } #creates an Array separated with \n
@@ -156,7 +156,14 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
156
156
 
157
157
  Thanks, Steven Gibson
158
158
 
159
- =Changelog
159
+ =Changelog
160
+ version 1.01
161
+ add in test harness
162
+ fix gem list input
163
+ added in dependencies to gemcommands
164
+ added gemspec filename to editgemspec tab
165
+ added gemwhich command
166
+
160
167
  version 1.00
161
168
  correct view gemspec screen
162
169
  added rconftool use to update configuration files
@@ -227,6 +227,20 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
227
227
  Thanks, Steven Gibson
228
228
 
229
229
  == Changelog
230
+ version 1.61
231
+ add in test harness
232
+ rwdtinkerwin2 help about removed
233
+ load main config file in init.rb
234
+
235
+ version 1.60
236
+ add rwdapplication info to diagnostic
237
+ turn rescue on in diagnostic upload
238
+
239
+ version 1.59
240
+ removed rwdtinkerwin2 inf file
241
+ refactored diagnotic page - one button to see all information
242
+ added bug report upload to diagnostic page
243
+
230
244
  version 1.58
231
245
  check for zlib
232
246
  check for files to delete
@@ -1,22 +1,23 @@
1
1
 
2
2
  *** REMOTE GEMS ***
3
+ Updating Gem source index for: http://gems.rubyforge.org
3
4
 
4
- actionmailer (0.7.1, 0.7.0, 0.6.1, 0.6.0, 0.5.0, 0.4.0, 0.3.0)
5
+ actionmailer (0.8.0, 0.7.1, 0.7.0, 0.6.1, 0.6.0, 0.5.0, 0.4.0, 0.3.0)
5
6
  Service layer for easy email delivery and testing.
6
7
 
7
- actionpack (1.5.1, 1.5.0, 1.4.0, 1.3.1, 1.3.0, 1.2.0, 1.1.0, 1.0.1, 1.0.0, 0.9.5, 0.9.0, 0.8.5, 0.8.0, 0.7.9, 0.7.8, 0.7.7, 0.7.6, 0.7.5)
8
+ actionpack (1.6.0, 1.5.1, 1.5.0, 1.4.0, 1.3.1, 1.3.0, 1.2.0, 1.1.0, 1.0.1, 1.0.0, 0.9.5, 0.9.0, 0.8.5, 0.8.0, 0.7.9, 0.7.8, 0.7.7, 0.7.6, 0.7.5)
8
9
  Web-flow and rendering framework putting the VC in MVC.
9
10
 
10
11
  actionservice (0.3.0, 0.2.102, 0.2.100, 0.2.99)
11
12
  Web service support for Action Pack.
12
13
 
13
- actionwebservice (0.6.0, 0.5.0)
14
+ actionwebservice (0.6.1, 0.6.0, 0.5.0)
14
15
  Web service support for Action Pack.
15
16
 
16
- activerecord (1.8.0, 1.7.0, 1.6.0, 1.5.1, 1.5.0, 1.4.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0, 0.9.5, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.4, 0.8.3, 0.8.2, 0.8.1, 0.8.0, 0.7.6, 0.7.5)
17
+ activerecord (1.9.0, 1.8.0, 1.7.0, 1.6.0, 1.5.1, 1.5.0, 1.4.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0, 0.9.5, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.4, 0.8.3, 0.8.2, 0.8.1, 0.8.0, 0.7.6, 0.7.5)
17
18
  Implements the ActiveRecord pattern for ORM.
18
19
 
19
- activesupport (1.0.1, 1.0.0)
20
+ activesupport (1.0.2, 1.0.1, 1.0.0)
20
21
  Support and utility classes used by the Rails framework.
21
22
 
22
23
  algorithm-diff (0.1)
@@ -128,10 +129,13 @@ cstemplate (0.5.1, 0.4.1, 0.3.1, 0.1.2, 0.1.1)
128
129
  ctapi (0.2.2)
129
130
  Ruby extension for Chipcard Cardterminal-API (CTAPI)
130
131
 
131
- daemons (0.0.1)
132
+ ctype (0.2.0)
133
+ ctype provides Ruby-style methods known from ctype.h.
134
+
135
+ daemons (0.2.1, 0.2.0, 0.0.1)
132
136
  A toolkit to convert your script to a controllable daemon
133
137
 
134
- damagecontrol (0.5.0)
138
+ damagecontrol (0.5.0.1404, 0.5.0.1393, 0.5.0.1392, 0.5.0.1391, 0.5.0)
135
139
  DamageControl
136
140
 
137
141
  dbc (1.3.0, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.2, 1.1.1, 1.1.0)
@@ -160,9 +164,12 @@ dnssd (0.6.0)
160
164
  easyprompt (0.1.0)
161
165
  EasyPrompt is a utility for command-line scripts.
162
166
 
163
- EliteJournal (1.9.480, 1.9.403, 1.9.401, 1.9.400)
167
+ EliteJournal (1.9.492, 1.9.480, 1.9.403, 1.9.401, 1.9.400)
164
168
  Easy to install, multi-user blog software
165
169
 
170
+ eteos-client (0.2.0)
171
+ Eteos Client for Ruby on Rails
172
+
166
173
  extensions (0.6.0, 0.5.0, 0.4.0)
167
174
  'extensions' is a set of extensions to Ruby's built-in classes. It
168
175
  gathers common idioms, useful additions, and aliases, complete with
@@ -189,6 +196,9 @@ filesystem (0.1.0)
189
196
  fingerserver (0.4.0)
190
197
  Exposes hash-style objects via the finger protocol.
191
198
 
199
+ fireruby (0.2.0, 0.1.0)
200
+ Ruby interface library for the Firebird database.
201
+
192
202
  flexmock (0.0.3)
193
203
  Simple and Flexible Mock Objects for Testing
194
204
 
@@ -205,10 +215,21 @@ genx4r (0.05, 0.04)
205
215
  GenX4r is a Ruby wrapper around the GenX library, which allows you
206
216
  to programatically generate correct, cannonical XML output.
207
217
 
218
+ geoip (0.1.0)
219
+ GeoIP looks up a GeoIP database to provide geographical data for an
220
+ IP address or Internet hostname. The free version of the GeoIP
221
+ database available from www.maxmind.com only contains country
222
+ information, and so far that's all that this library supports. The
223
+ data is much more reliable than using the country codes at the end
224
+ of the hosts' domain names.
225
+
208
226
  getopt-declare (1.09.7)
209
227
  Comprehensive and easy to use command-line parser library using
210
228
  regular expressions (port of Perl's module).
211
229
 
230
+ glue (0.13.0)
231
+ Glue utilities
232
+
212
233
  gnuplot (2.1, 2.0, 1.0)
213
234
  Utility library to aid in interacting with gnuplot
214
235
 
@@ -306,13 +327,13 @@ madeleine (0.7.1, 0.6.1, 0.6)
306
327
  MB-Ruby (0.1.0)
307
328
  MusicBrainz bindings for Ruby.
308
329
 
309
- mechanize (0.1.1, 0.1.0)
330
+ mechanize (0.1.2, 0.1.1, 0.1.0)
310
331
  Automated web-browsing.
311
332
 
312
333
  merge3 (0.8)
313
334
  This gem demonstrates executable scripts
314
335
 
315
- midilib (0.8.3, 0.8.2, 0.8.1, 0.8.0)
336
+ midilib (0.8.4, 0.8.3, 0.8.2, 0.8.1, 0.8.0)
316
337
  MIDI file and event manipulation library
317
338
 
318
339
  mime-types (1.13.1)
@@ -323,6 +344,10 @@ mockfs (0.1.1)
323
344
  MockFS is a test-obsessed library for mocking out the entire file
324
345
  system.
325
346
 
347
+ multiblocks (0.1.0)
348
+ multiblocks is a framework for emulating Smalltalk-like method calls
349
+ which can take more than one block parameter
350
+
326
351
  MultipartAlternativeLite (0.0.1)
327
352
  Lib for creating multipart/alternative HTML messages.
328
353
 
@@ -371,14 +396,14 @@ net-tftp (0.1.0)
371
396
  Net::TFTP is a pure Ruby implementation of the Trivial File Transfer
372
397
  Protocol (RFC 1350)
373
398
 
374
- nitro (0.12.0, 0.11.0, 0.10.0, 0.9.5, 0.9.3, 0.8.0, 0.7.0, 0.6.0, 0.5.0, 0.4.1, 0.3.0, 0.2.0, 0.1.2)
399
+ nitro (0.13.0, 0.12.0, 0.11.0, 0.10.0, 0.9.5, 0.9.3, 0.8.0, 0.7.0, 0.6.0, 0.5.0, 0.4.1, 0.3.0, 0.2.0, 0.1.2)
375
400
  Nitro Web Engine
376
401
 
377
402
  ObjectGraph (1.0.1, 1.0)
378
403
  A simple script that generates a graph of the ruby class
379
404
  hierarchies. Uses GraphViz (separate install).
380
405
 
381
- og (0.12.0, 0.11.0, 0.10.0, 0.9.5, 0.9.3, 0.8.0, 0.7.0, 0.6.0, 0.5.0)
406
+ og (0.13.0, 0.12.0, 0.11.0, 0.10.0, 0.9.5, 0.9.3, 0.8.0, 0.7.0, 0.6.0, 0.5.0)
382
407
  Og (ObjectGraph)
383
408
 
384
409
  Ook (1.0.2)
@@ -386,13 +411,13 @@ Ook (1.0.2)
386
411
  (www.dangermouse.net/esoteric/ook.html) and BrainF*ck
387
412
  (www.catseye.mb.ca/esoteric/bf/index.html) programming languages.
388
413
 
389
- Orbjson (0.0.3, 0.0.2, 0.0.1)
414
+ Orbjson (0.0.4, 0.0.3, 0.0.2, 0.0.1)
390
415
  Lib for creating JSON-RPC server applications.
391
416
 
392
417
  packrat (0.1.0)
393
418
  A package documentation extractor/generator for Copland.
394
419
 
395
- PageTemplate (1.1.2, 1.1.1)
420
+ PageTemplate (1.2.0, 1.1.2, 1.1.1)
396
421
  A simple templating system for Web sites.
397
422
 
398
423
  ParseTree (1.3.4, 1.3.3, 1.3.2, 1.3.0, 1.2.0, 1.1.1, 1.1.0)
@@ -405,7 +430,7 @@ payment (0.9)
405
430
  permutation (0.1.2, 0.1.1)
406
431
  Permutation library in pure Ruby
407
432
 
408
- Pimki (1.5.092, 1.4.092, 1.3.092, 1.2.092, 1.1.092, 1.0.092)
433
+ Pimki (1.6.092, 1.5.092, 1.4.092, 1.3.092, 1.2.092, 1.1.092, 1.0.092)
409
434
  A Personal Information Manager (PIM) based on Instiki's Wiki
410
435
  technology.
411
436
 
@@ -434,10 +459,10 @@ progressbar (0.0.3)
434
459
  indicate progress with percentage, a progress bar, and estimated
435
460
  remaining time.
436
461
 
437
- purplepkg (0.0.5, 0.0.4, 0.0.3)
438
- A simple pre-packing tool with meta-package plugin support.
462
+ purplepkg (0.0.6, 0.0.5, 0.0.4, 0.0.3)
463
+ A simple pre-packaging tool with meta-package plugin support.
439
464
 
440
- rails (0.10.1, 0.10.0, 0.9.5, 0.9.4.1, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.5, 0.8.0, 0.7.0, 0.6.5, 0.6.0)
465
+ rails (0.11.0, 0.10.1, 0.10.0, 0.9.5, 0.9.4.1, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.5, 0.8.0, 0.7.0, 0.6.5, 0.6.0)
441
466
  Web-application framework with template engine, control-flow layer,
442
467
  and ORM.
443
468
 
@@ -461,9 +486,16 @@ RedCloth (3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.0.11, 2.0.10, 2.0.9, 2.0.8, 2.0.7, 2.0.6
461
486
  regexp-engine (0.9, 0.8)
462
487
  regular expression engine
463
488
 
489
+ revolution (0.1)
490
+ Revolution is a binding for the Evolution email client
491
+
464
492
  rgl (0.2.2)
465
493
  Ruby Graph Library
466
494
 
495
+ rhizmail (0.1.0)
496
+ RhizMail is a test-friendly library for sending out customized
497
+ emails.
498
+
467
499
  rlirc (0.3.1, 0.3, 0.2, 0.1)
468
500
  a replacement for irexec and irxevent from lirc
469
501
 
@@ -483,13 +515,13 @@ rq (0.1.7)
483
515
  rq is an __experimental__ tool used to manage nfs mounted work
484
516
  queues
485
517
 
486
- rscm (0.1.0.1338, 0.1.0.1337, 0.1.0.999, 0.1.0)
518
+ rscm (0.2.1.1404, 0.2.0, 0.1.0.1338, 0.1.0.1337, 0.1.0.999, 0.1.0)
487
519
  RSCM - Ruby Source Control Management
488
520
 
489
521
  rsi (0.4)
490
522
  RSI (Ruby Simple Indexer) is a simple full text index
491
523
 
492
- Rubilicious (0.1.2, 0.1.0)
524
+ Rubilicious (0.1.4, 0.1.2, 0.1.0)
493
525
  Delicious (http://del.icio.us/) bindings for Ruby.
494
526
 
495
527
  rublog (0.8.0)
@@ -531,7 +563,7 @@ Ruby-MemCache (0.0.1)
531
563
  This is a client library for memcached, a high-performance
532
564
  distributed memory cache.
533
565
 
534
- rubygems-update (0.8.6, 0.8.5, 0.8.4, 0.8.3, 0.8.1, 0.8.0)
566
+ rubygems-update (0.8.8, 0.8.6, 0.8.5, 0.8.4, 0.8.3, 0.8.1, 0.8.0)
535
567
  RubyGems Update GEM
536
568
 
537
569
  RubyInline (3.2.0, 3.1.0)
@@ -544,10 +576,10 @@ RubyJDWP (0.0.1)
544
576
  rubypants (0.2.0)
545
577
  RubyPants is a Ruby port of the smart-quotes library SmartyPants.
546
578
 
547
- rubyslippers (0.99, 0.98, 0.97, 0.96, 0.95, 0.94, 0.93, 0.92)
579
+ rubyslippers (1.00, 0.99, 0.98, 0.97, 0.96, 0.95, 0.94, 0.93, 0.92)
548
580
  RubySlippers is a GUI wrapper for RubyGems using RubyWebDialogs.
549
581
 
550
- rubyzip (0.5.7, 0.5.5)
582
+ rubyzip (0.5.8, 0.5.7, 0.5.5)
551
583
  rubyzip is a ruby module for reading and writing zip files
552
584
 
553
585
  runt (0.2.0)
@@ -562,29 +594,32 @@ ruwiki (0.9.3, 0.9.2, 0.9.1, 0.9.0)
562
594
  rvsh (0.4.5)
563
595
  VIM clone
564
596
 
565
- rwdaddresses (0.99, 0.98, 0.97, 0.95, 0.94, 0.93, 0.92, 0.91, 0.9, 0.8)
597
+ rwdaddresses (1.01, 0.99, 0.98, 0.97, 0.95, 0.94, 0.93, 0.92, 0.91, 0.9, 0.8)
566
598
  rwdaddresses is contact book application using rwdtinker and
567
599
  RubyWebDialogs.
568
600
 
569
- rwddemo (0.90, 0.8, 0.7, 0.6)
601
+ rwddemo (0.91, 0.90, 0.8, 0.7, 0.6)
570
602
  rwddemo application shows rwdtinker and RubyWebDialogs features.
571
603
 
572
- rwdhypernote (0.04, 0.03)
604
+ rwdgutenberg (0.03)
605
+ rwdgutenberg application is a text file reader for RubyWebDialogs.
606
+
607
+ rwdhypernote (0.06, 0.05, 0.04, 0.03)
573
608
  rwdhypernote application is a hierarchical note taker for
574
609
  RubyWebDialogs.
575
610
 
576
- rwdmovies (0.90, 0.7, 0.6)
611
+ rwdmovies (0.93, 0.92, 0.91, 0.90, 0.7, 0.6)
577
612
  rwdmovies application is a movie database using RubyWebDialogs.
578
613
 
579
614
  rwdschedule (0.97, 0.96, 0.95, 0.94, 0.93, 0.92, 0.91, 0.9, 0.8, 0.6, 0.5)
580
615
  rwdschedule is an calendar application using rwdtinker and
581
616
  RubyWebDialogs.
582
617
 
583
- rwdshell (0.96, 0.95, 0.94, 0.93, 0.92, 0.9)
618
+ rwdshell (0.97, 0.96, 0.95, 0.94, 0.93, 0.92, 0.9)
584
619
  rwdshell is a GUI front end for operating system commands with
585
620
  rwdtinker and RubyWebDialogs features.
586
621
 
587
- rwdtinker (1.58, 1.57, 1.56, 1.55, 1.54, 1.53, 1.52, 1.51, 1.48, 1.47, 1.46, 1.45, 1.44, 1.43, 1.42, 1.41, 1.24, 1.23, 1.4, 1.3, 1.2)
622
+ rwdtinker (1.61, 1.60, 1.59, 1.58, 1.57, 1.56, 1.55, 1.54, 1.53, 1.52, 1.51, 1.48, 1.47, 1.46, 1.45, 1.44, 1.43, 1.42, 1.41, 1.24, 1.23, 1.4, 1.3, 1.2)
588
623
  rwdtinker application is a framework to program for RubyWebDialogs.
589
624
 
590
625
  rwdziparubyslippers (0.99)
@@ -603,7 +638,7 @@ rwdziprwdmp3 (0.02)
603
638
  rwdziprwdmp3 is a Mp3 Player Control application using rwdtinker and
604
639
  RubyWebDialogs. Requires rwdtinker >1.51
605
640
 
606
- rwdziprwdwaddresses (0.99, 0.97)
641
+ rwdziprwdwaddresses (1.00, 0.99, 0.97)
607
642
  rwdaddresses is a Contact Book using rwdtinker and RubyWebDialogs.
608
643
  Requires rwdtinker >1.56
609
644
 
@@ -626,6 +661,10 @@ rwdziprwdwshell (0.96, 0.95)
626
661
  rwdziprwdaschedule is a event schedule application using rwdtinker
627
662
  and RubyWebDialogs. Requires rwdtinker >1.51
628
663
 
664
+ rwdziprwdwwords (0.02)
665
+ rwdwords is a Dictonary lookup tool using rwdtinker and
666
+ RubyWebDialogs. Requires rwdtinker >1.56
667
+
629
668
  Scratch (1.1, 1.0)
630
669
  Excessively minimalist weblog.
631
670
 
@@ -645,7 +684,7 @@ snmp (0.4.1, 0.4.0, 0.3.0, 0.2.0, 0.1.0)
645
684
  A Ruby implementation of SNMP (the Simple Network Management
646
685
  Protocol).
647
686
 
648
- Soks (0.0.5, 0.0.4, 0.0.3, 0.0.2)
687
+ Soks (0.0.7, 0.0.6, 0.0.5, 0.0.4, 0.0.3, 0.0.2)
649
688
  Yet another wiki.
650
689
 
651
690
  sqlite (2.0.1, 2.0.0, 1.3.1, 1.3.0, 1.2.9.1, 1.2.0, 1.1.3, 1.1.2, 1.1.1, 1.1)
@@ -660,7 +699,7 @@ sqlite-ruby (2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.3, 2.0.2)
660
699
 
661
700
  sqlite3-ruby (1.1.0, 1.0.1, 1.0.0, 0.9.0, 0.6.0, 0.5.0)
662
701
  SQLite3/Ruby is a module to allow Ruby scripts to interface with a
663
- SQLite3 database.
702
+ SQLite database.
664
703
 
665
704
  sstruct (1.0.1)
666
705
  SuperStruct class: Best of Struct, OpenStruct, Array, Hash, etc.
@@ -714,7 +753,7 @@ text-hyphen (1.0.0)
714
753
  text-reform (0.2.0)
715
754
  Text::Reform reformats text according to formatting pictures.
716
755
 
717
- tidy (1.1.1, 1.1.0, 1.0.1, 1.0.0)
756
+ tidy (1.1.2, 1.1.1, 1.1.0, 1.0.1, 1.0.0)
718
757
  Ruby interface to HTML Tidy Library Project
719
758
 
720
759
  transaction-simple (1.2.0)
@@ -733,7 +772,7 @@ VRTools (0.0.1)
733
772
  vruby (2004.08.07)
734
773
  VRuby is a set of vr* series of ruby scripts which wrap swin.
735
774
 
736
- webgen (0.3.0, 0.2.0, 0.1.0)
775
+ webgen (0.3.2, 0.3.1, 0.3.0, 0.2.0, 0.1.0)
737
776
  Webgen is a templated based static website generator.
738
777
 
739
778
  wee (0.7.0, 0.6.0, 0.5.0, 0.4.0, 0.3.1, 0.1.0)
data/rwdconfig.dist CHANGED
@@ -1,6 +1,10 @@
1
- ##VERSION:1.57
1
+ ##VERSION:1.61
2
2
  # rwdtinker core configuration file
3
3
  ##NAME: ConfigLocation:0
4
4
  ConfigLocation=""
5
5
  ##NAME: ZipsLocation:0
6
- ZipsLocation=""
6
+ ZipsLocation=""
7
+ ##NAME:$testharnessarray:0
8
+ $testharnessarray = ["rwdtinker_all_tests"]
9
+ ##NAME:TestNow:0
10
+ TestNow=false
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.6
2
+ rubygems_version: 0.8.8
3
3
  specification_version: 1
4
4
  name: rubyslippers
5
5
  version: !ruby/object:Gem::Version
6
- version: "1.00"
7
- date: 2005-03-07
6
+ version: "1.01"
7
+ date: 2005-03-22
8
8
  summary: RubySlippers is a GUI wrapper for RubyGems using RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -35,6 +35,9 @@ files:
35
35
  - code/01rwdcore/returntomain.rb
36
36
  - code/01rwdcore/rwdtinkerversion.rb
37
37
  - code/01rwdcore/rwdwindowreturn.rb
38
+ - code/01rwdcore/uploadreturns.rb
39
+ - code/01rwdcore/test_cases.rb
40
+ - code/01rwdcore/test_harness.rb
38
41
  - code/superant.com.rwdtinkerbackwindow/controlclient.rb
39
42
  - code/superant.com.rwdtinkerbackwindow/diagnostictab.rb
40
43
  - code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb
@@ -80,6 +83,7 @@ files:
80
83
  - code/superant.com.rubyslippers/loadconfigurationrecord.rb
81
84
  - code/superant.com.rubyslippers/loadconfigurationvariables.rb
82
85
  - code/superant.com.rubyslippers/saveconfigurationrecord.rb
86
+ - code/superant.com.rubyslippers/gemwhich.rb
83
87
  - code/superant.com.rubyslippersbackwindow/copygemspecdata.rb
84
88
  - code/superant.com.rubyslippersbackwindow/changegemspecdata.rb
85
89
  - code/superant.com.rubyslippersbackwindow/listgemdirectories.rb
@@ -135,6 +139,7 @@ files:
135
139
  - gui/frontwindow0/superant.com.rubyslippers/m85menu.rwd
136
140
  - gui/frontwindow0/superant.com.rubyslippers/m03menu.rwd
137
141
  - gui/frontwindow0/superant.com.rubyslippers/m99menuend.rwd
142
+ - gui/frontwindow0/superant.com.rubyslippers/75gemwhich.rwd
138
143
  - gui/frontwindowselectionbegin/selectiontabbegin/selectiontabbegin.rwd
139
144
  - gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab
140
145
  - gui/frontwindowselections/superant.com.rubyslippersselectiontab
@@ -155,12 +160,8 @@ files:
155
160
  - gui/frontwindowz1end/frontwindowend/xx0rwdfirsttab.rwd
156
161
  - gui/helpaboutbegin/superant.com.helpaboutbegin
157
162
  - gui/helpaboutbegin/superant.com.helpaboutbegin/ya0helpscreenstart.rwd
158
- - gui/helpaboutinstalled/superant.com.rwdwin2helpabout
159
163
  - gui/helpaboutinstalled/superant.com.tinkerhelpabout
160
164
  - gui/helpaboutinstalled/superant.com.rubyslippershelpabout
161
- - gui/helpaboutinstalled/superant.com.rwdwin2helpabout/1appname.rwd
162
- - gui/helpaboutinstalled/superant.com.rwdwin2helpabout/3copyright.rwd
163
- - gui/helpaboutinstalled/superant.com.rwdwin2helpabout/5version.rwd
164
165
  - gui/helpaboutinstalled/superant.com.tinkerhelpabout/1appname.rwd
165
166
  - gui/helpaboutinstalled/superant.com.tinkerhelpabout/3copyright.rwd
166
167
  - gui/helpaboutinstalled/superant.com.tinkerhelpabout/5version.rwd
@@ -203,8 +204,6 @@ files:
203
204
  - gui/tinkerbackwindows/superant.com.rubyslippersbackwindow/m99menuend.rwd
204
205
  - gui/tinkerbackwindows/superant.com.rubyslippersbackwindow/v9returntab.rwd
205
206
  - gui/zzcoreguiend/tinkerapplicationguiend/yy9rwdend.rwd
206
- - installed/rwdtinkerwin2-0.5.inf
207
- - installed/rwdviewlogo-0.4.inf
208
207
  - rwd_files/favicon.ico
209
208
  - rwd_files/HowTo_Tinker.txt
210
209
  - rwd_files/HowTo_TinkerWin2.txt
@@ -224,8 +223,8 @@ files:
224
223
  - tests/rdep.rb
225
224
  - tests/checkdepends.sh
226
225
  - tests/makedist.rb
227
- - init.rb
228
226
  - Readme.txt
227
+ - init.rb
229
228
  - rwdconfig.dist
230
229
  test_files: []
231
230
  rdoc_options:
@@ -1,4 +0,0 @@
1
- $rwdguivar=
2
- "
3
- <panel>
4
- <row> <p align=\"center\">#{Message[:rwdtinker_window_2]}</p></row>"
@@ -1,3 +0,0 @@
1
- $rwdguivar=
2
- "
3
- <row> <p align=\"center\">copyright s. gibson 2004</p></row>"
@@ -1,10 +0,0 @@
1
- $rwdguivar=
2
- "
3
- <horizontal>
4
- <button caption=#{Message[:clickfor_version]} action=\"runrwdtinkerwin2version\"/>
5
- </horizontal>
6
- <p>%rwdtinkerwin2versiondisplay%</p>
7
-
8
- </panel>"
9
-
10
-
@@ -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
@@ -1,4 +0,0 @@
1
- # rwdviewlogo - small applet to display one picture
2
- code/dd0viewphoto
3
- gui/cc0viewphoto
4
- rwd_files/tinker.png