rwdtinker 1.42 → 1.43

Sign up to get free protection for your applications and to get access to all the features.
data/Readme.txt CHANGED
@@ -1,21 +1,151 @@
1
- rwdapplications are web brower applications
1
+ = RwdTinker framework for RubyWebDialogs
2
2
 
3
- The GUI interface used is RubyWebDialogs
4
3
 
5
- RubyWebDialogs is a platform independent graphical user interface for Ruby applications. It generates HTML and serves it with an internal HTTP server, so you can use your favorite web browser as the front end for your Ruby application. All this means, that it can be used on almost every platform, like Ruby itself. http://www.erikveen.dds.nl/rubywebdialogs/
4
+ RwdTinker is a web brower interface to and system for developing programs
5
+
6
+ == Usage
7
+
8
+
9
+ How to Use the Tinker framework Program (rwdtinker)
10
+
11
+
12
+ 1. stand alone application
13
+ 2. framework for building applications
14
+ 3. Open brower windows with html documents
15
+
16
+ The GUI interface used is RubyWebDialogs
6
17
 
7
18
 
8
- Start the program by:
9
- changing to the directory and
19
+ Start the program by typing
10
20
  ruby init.rb
11
21
 
12
22
  Then point your web browser to:
13
23
  http://localhost:7705/
14
24
 
15
- Or to the port that shows on the console or in the config.cnf file
16
25
 
17
- Requirements:
18
- RubyWebDialogs - I am using 0.0.11 2004-3-9
26
+ == Viewing installed Applets:
27
+
28
+
29
+ Go to "List Scripts" tab
30
+
31
+
32
+ You can get a list of all installed applets by clicking the listfiles button
33
+
34
+ To see the text of a install file
35
+ Type in the name of the file you want.
36
+
37
+ type it without the inf ending
38
+ rwdapplet-0.1
39
+
40
+ Then click the "View Installed File" button
41
+
42
+ If it finds the file it will open it. It displays the text the search box.
43
+
44
+ You can uninstall applets on this screen
45
+
46
+ == Installing Applets
47
+
48
+ click on the "Selection Panel"
49
+ click on Rwdtinker Back Window
50
+
51
+ You can download an applet created by someone else
52
+ put the file in the zips directory
53
+
54
+ click on the "list zips" tab
55
+ click on "list applets available for installing"
56
+
57
+ chose the applet you want
58
+ click on "install applet"
59
+ If all goes well the applet should be installed.
60
+ You will need to restart rwdtinker to see the new screens
61
+
62
+
63
+ == Changing configuration file
64
+
65
+ click on "Edit Configuration"
66
+ You can view the configuration file
67
+
68
+ You can edit the configuration
69
+
70
+ Remember to reload the configuration variables if you want your
71
+ changes used.
72
+
73
+ == Manually installing applets
74
+
75
+ * unzip an applet
76
+
77
+ unzip the applet into the program directoy
78
+ unzip randomapplet.zip
79
+
80
+ This should place the needed files in the correct directories
81
+
82
+
83
+ == Creating Applets
84
+
85
+ To add code, commands and gui tabs
86
+
87
+ Move program files into a directory under the code directory.
88
+ Move gui files into a directory under the gui directory.
89
+ The gui directory name you create is important, because the gui
90
+ rwd file is built in alpha order by directory name
91
+
92
+
93
+ There are two ways to add applets to the directories.
94
+
95
+ Creating code
96
+
97
+
98
+ * Manually write code and gui files
99
+
100
+ The files go into your code directory
101
+ the filenames for code do not matter
102
+
103
+ The gui files go into your gui directory
104
+ The gui files need to be in order by name and end with .rwd
105
+
106
+
107
+
108
+ If you need a config file that goes in the configuration directory
109
+
110
+ internationalization and localization are helped by replacing the
111
+ gui files in the subdirectories under gui
112
+
113
+
114
+ == Documents
115
+
116
+
117
+ when you click on a document name, the document should pop up in a
118
+ browser window, or in another browser tab.
119
+
120
+ To exit, press the x inside the browser window.
121
+
122
+ == Languages
123
+
124
+
125
+ You can add tranlations in the lang subdirectory
126
+ You change the $lang constant in Tinker config file in the configuration directory
127
+ You can see one translation on the install applet tab, after you have installed and applet
128
+
129
+ == Using over a Network
130
+
131
+ To serve the application over your local LAN,change the last line in the
132
+ init.rb file to something like:
133
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
134
+ Then you should be able to login at: http://yourhostname:8080
135
+
136
+ You have to authorize yourself. The .rwuids example is a string with
137
+ the name of the authorization file, relative to the home directory
138
+ of the user that started the service. This file has to be in the form of:
139
+
140
+ user1 = password
141
+ user2 = pass phrase
142
+
143
+ Thus the file .rwduids might contain:
144
+
145
+ erik = secret
146
+
147
+ == Requirements:
148
+ RubyWebDialogs - I am using 0.1.2
19
149
  This package you downloaded should have a runtime version of
20
150
  the needed rubywebdialog files
21
151
 
@@ -23,21 +153,25 @@ Ruby I am using version 1.8.2
23
153
 
24
154
  I have tested this under Linux-Debian kernel 2.6.9
25
155
 
26
- Operation:
156
+ = Operation:
27
157
  The code files reside in the code directory and are combined before
28
158
  the main Class is loaded
29
159
 
30
160
  The rwd files in gui are combined before the gui is activated
31
161
 
32
- Trouble shooting:
162
+ Translated text reside in the lang directory
163
+
164
+ == Installing:
33
165
 
34
166
  untar the file
35
- tar zxvf rwdapplication-x.y.tar.gz
167
+ tar zxvf rwdtinker-x.y.tar.gz
36
168
  then cd to the directory
37
- cd rwdapplication-x.y
169
+ cd rwdshell-x.y
38
170
  then start the init.rb program file
39
171
  ruby init.rb
40
-
172
+ Then point your browser at http://localhost:7705
173
+ or where it tells you.
174
+ Trouble shooting:
41
175
 
42
176
  If the program is not working, try looking at the ev subdirectory. That is where
43
177
  the runtime of rubywebdialogs are.
@@ -52,6 +186,129 @@ Closing the browser doesn't terminate the application. You have to use the appli
52
186
 
53
187
  Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
54
188
 
55
- Steven Gibson
56
- stevengibson@superant.com
57
- http://rwdapplications.rubyforge.org/
189
+ RubyWebDialogs is a platform independent graphical user interface for Ruby applications. It generates HTML and serves it with an internal HTTP server, so you can use your favorite web browser as the front end for your Ruby application. All this means, that it can be used on almost every platform, like Ruby itself. http://www.erikveen.dds.nl/rubywebdialogs/
190
+
191
+ == Credits
192
+
193
+ Thanks go to:
194
+
195
+ * Matz, for creating Ruby in the first place.
196
+ * Erik, for creating RubyWebDialogs.
197
+ * Charlotte, my wife for coming up for the name Tinker.
198
+
199
+ == License
200
+
201
+ rwdtinker is copyright (c) 2004 Steven Gibson. It is free software, and may be redistributed
202
+ under the terms of the GPL licence:
203
+
204
+ == Contact
205
+ For more information see:
206
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
207
+
208
+
209
+ For more information about RubyWebDialogs see:
210
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
211
+
212
+ Thanks, Steven Gibson
213
+
214
+ == Changelog
215
+ version 1.43
216
+ changed setup variables file for live changes
217
+ added editing and reloading of config file
218
+ added unzip filename to config file
219
+
220
+ version 1.42
221
+ update for live update system
222
+ update applets for live update
223
+ code file name cleanup
224
+
225
+ version 1.41
226
+ l10n work es,nl, jp
227
+ separated out languge.cnf
228
+ added zip applets refreshacpi, rwdcalc
229
+
230
+ version 1.40
231
+ removed extra lines from init.rb
232
+ fixed help second window
233
+ added some tranlations for Spanish
234
+ More work on l10n
235
+
236
+ version 1.3
237
+ refactored gui files to do easier i10n
238
+ removed lang directories under gui
239
+ added lang files under lang dir
240
+ removed redundant code files left from moving applet handling to back window
241
+ removed zipped applets not yet refactored
242
+
243
+ version 1.24
244
+ added internet usage instructions to HowTo_Tinker.txt
245
+ removed HowTo_Tinker.html
246
+ added panels for Helpabout
247
+ changed photo logo tab to only have embedded picture, no button
248
+
249
+ version 1.23
250
+ moving diagnostic tab and applet handling tabs to second window
251
+ added selection panel tab to choose secondary windows.
252
+
253
+ version 1.21
254
+ changing version on help screen to be button
255
+ added version window
256
+ added diagnostic tab
257
+
258
+ version 1.2
259
+ added gemspec for creating a rwdtinker.gem
260
+ added rdoc comments
261
+ changed order on remove applets tab
262
+
263
+ version 1.1
264
+ changed order of elements on install applet tab
265
+ Add more i81n ablility - added lang directorys for language hash files
266
+ added in test file using WATIR stands for "Web Application Testing In Ruby,
267
+
268
+ version 1.0
269
+ Improved name selection in zips and applet screens
270
+ added rubyslippers applet and rwdrefreshacpi applets as zips
271
+
272
+ version 0.9
273
+ Fixed bug introduced in 0.8 - code files not sorted correctly - class end was not in correct location
274
+ updated RubyWebDialogs for people who do not have it installed
275
+ added rwdschedule applet as zip file
276
+
277
+ version 0.8
278
+ changed location of code files
279
+ only directory of code files needs to be added to inf file
280
+ changed location of gui files
281
+ only directory of gui files needs to be added to inf file
282
+ Added constants in conf file for code location and gui location
283
+ removed all zips not yt updated to new directory layout
284
+ change loading of conf files to not need intermediate file
285
+ and favicon.ico
286
+
287
+ version 0.7
288
+ moved changelog to HowTo_Tinker.html
289
+ copied english gui text to the dirs I think we should translate to
290
+ update backup zip files to newest versions
291
+ upgraded the ev directory - for those who don't have RubyWebDialogs
292
+
293
+ version 0.6
294
+ updated version number
295
+ changed merge name to rwdtinker.rb
296
+
297
+ version 0.4
298
+ added zip listing and installing - Linux only
299
+
300
+ Version 0,3
301
+ changed name to Tinker
302
+
303
+ Version 0.2
304
+ added some i18n directories for the gui files
305
+
306
+ Version 0.1
307
+ first public version released
308
+ includes document screen
309
+ Open Photo screen
310
+ included configuration directory
311
+ zips directories
312
+ installed directory
313
+ installed applet lister
314
+
@@ -3,9 +3,10 @@
3
3
  nametext = "%s" % [@a_installapplet]
4
4
 
5
5
  begin # exception trapped block
6
- fileName = "zips/" + nametext + ".zip"
6
+ fullname = nametext + ".zip"
7
+ fileName = File.join($zipslocation,fullname)
7
8
 
8
- commandline = "unzip -o " + fileName
9
+ commandline = $unzipprogram + fileName
9
10
  system( commandline+' > temp.output' )
10
11
 
11
12
 
@@ -1,7 +1,9 @@
1
1
  # this code is to list the zipped applets that can be installed
2
- def listzipfilestoinstall
3
- fileList = Dir.new("zips").entries.sort.reverse.delete_if { |x| ! (x =~ /zip$/) }
4
- @zipslistresult = fileList.rwd_method("fillziptoinstallname")
2
+ def listzipfilestoinstall
3
+ if File.exist?($zipslocation)
4
+ fileList = Dir.new($zipslocation).entries.sort.delete_if { |x| ! (x =~ /zip$/) }
5
+ @zipslistresult = fileList.rwd_method("fillziptoinstallname")
6
+ end
5
7
  end
6
8
 
7
9
  def fillziptoinstallname(inffile)
@@ -0,0 +1,32 @@
1
+ # this method views an existing address record
2
+ def loadconfigurationrecord
3
+
4
+ require 'fileutils'
5
+ if TinkerWin2ConfigurationFileName
6
+ @a_configurationfilename = TinkerWin2ConfigurationFileName
7
+ end
8
+
9
+ begin # exception trapped block
10
+
11
+ Dir.chdir($progdir)
12
+ fileName = File.join(ConfigurationDir, TinkerWin2ConfigurationFileName)
13
+
14
+ fd = File.open(fileName,"r")
15
+ @a_configline1= fd.readline.chomp
16
+ @a_configline2 = fd.readline.chomp
17
+ @a_configline3 = fd.readline.chomp
18
+ @a_configline4 = fd.readline.chomp
19
+ @a_configline5 = fd.readline.chomp
20
+ @a_configline6 = fd.readline.chomp
21
+ @a_configline7 =fd.readline.chomp
22
+ @a_configline8 = fd.readline.chomp
23
+
24
+ while ! fd.eof?
25
+ @extraconfigdatadisplay = fd.readline
26
+ end
27
+ fd.close
28
+ rescue SystemCallError, StandardError
29
+ $stderr.print "system call error: " + $!
30
+ end # exception rescue
31
+
32
+ end
@@ -0,0 +1,13 @@
1
+ # this method clears the on screen variables
2
+ def loadconfigurationvariables
3
+
4
+ configfiletoload = File.join(ConfigurationDir,TinkerWin2ConfigurationFileName)
5
+ begin
6
+ load configfiletoload
7
+ @extraconfigdatadisplay = ""
8
+ @newconfigurationresult = "Config Variables loaded"
9
+ rescue
10
+ @extraconfigdatadisplay = ""
11
+ @newconfigurationresult = "loading error"
12
+ end
13
+ end
@@ -0,0 +1,18 @@
1
+ # this method adds a new address record
2
+ def saveconfigurationrecord
3
+ require 'fileutils'
4
+ if @a_configurationfilename
5
+ newname = "%s" % [@a_configurationfilename] # grab the filename to create
6
+ newdata =@a_configline1.to_s + "\n" + @a_configline2.to_s + "\n" + @a_configline3.to_s + "\n" + @a_configline4.to_s + "\n" + @a_configline5.to_s + "\n" + @a_configline6.to_s + "\n" + @a_configline7.to_s + "\n" + @a_configline8.to_s + "\n"
7
+
8
+ begin # exception trapped block
9
+ fileName = File.join( ConfigurationDir, newname )
10
+ fd = File.open(fileName,"w")
11
+ fd.print(newdata) # save the record info to the file
12
+ fd.close
13
+ @newconfigurationresult=newdata # show the record info in the browser
14
+ rescue SystemCallError, StandardError
15
+ $stderr.print "system call error: " + $!
16
+ end # exception rescue
17
+ end
18
+ end
@@ -0,0 +1,2 @@
1
+
2
+ RwdShellVersion = "0.92"
@@ -1,12 +1,12 @@
1
1
 
2
+ ConfigurationDir = "configuration" # for use in program - init.rb has this value without using this constant
2
3
  CodeName = "rwdtinker"
3
4
  CodeNameFile = CodeName + ".rb"
4
5
  LangNameFile = "rwdlanguage.rb"
5
6
  RWDFile = "rwdtinker.rwd"
6
- @@codedir = "code"
7
- @@guidir = "gui"
8
- @@langdir = "lang"
9
-
10
- TempLangHashFile = @@langdir + "/" + "templangfile.rb"
11
- LocalLangHashFile = @@langdir + "/" + "xlocallangfile.rb"
12
- $port = 7705
7
+ LangDir = "lang"
8
+ TempLangHashFile = LangDir + "/" + "templangfile.rb"
9
+ LocalLangHashFile = LangDir + "/" + "xlocallangfile.rb"
10
+ CodeDir = "code"
11
+ GuiDir = "gui"
12
+ $port = 7705
@@ -1,2 +1,2 @@
1
1
 
2
- RwdTinkerVersion = "1.42"
2
+ RwdTinkerVersion = "1.43"
@@ -0,0 +1,8 @@
1
+
2
+ TinkerWin2ConfigurationFileName = "tinkerwin2variables.cnf" # this file name - do not change
3
+ $zipslocation = "zips" # location of applets to add
4
+ $unzipprogram = "unzip -o "
5
+
6
+
7
+
8
+
@@ -1,3 +1,3 @@
1
1
 
2
- RwdTinkerWin2Version = "0.6"
2
+ RwdTinkerWin2Version = "0.7"
3
3
 
@@ -0,0 +1,36 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"editconfigurationfile\" caption=\"Edit Configuration\">
4
+ <table>
5
+ <row> <p> </row>
6
+ <row> <p align=\"right\">You can view or edit the rwdtinker applet confiruration file here</row>
7
+ <row> <p> </row>
8
+ <horizontal>
9
+ <button caption=\"Load Record\" action=\"loadconfigurationrecord\"/>
10
+ <button caption=\"Save Changes\" action=\"saveconfigurationrecord\"/>
11
+ <button caption=\"Reload Variables\" action=\"loadconfigurationvariables\"/>
12
+
13
+
14
+
15
+
16
+ </horizontal>
17
+ <table>
18
+ <row> <p align=\"right\">FileName:</p> <text name=\"a_configurationfilename\"/> </row>
19
+ <row> <p align=\"right\">1:</p> <text name=\"a_configline1\"/> </row>
20
+ <row> <p align=\"right\">2:</p> <text name=\"a_configline2\"/> </row>
21
+ <row> <p align=\"right\">3:</p> <text name=\"a_configline3\"/> </row>
22
+ <row> <p align=\"right\">4:</p> <text name=\"a_configline4\"/> </row>
23
+ <row> <p align=\"right\">5:</p> <text name=\"a_configline5\"/> </row>
24
+ <row> <p align=\"right\">6:</p> <text name=\"a_configline6\"/> </row>
25
+ <row> <p align=\"right\">7:</p> <text name=\"a_configline7\"/> </row>
26
+ <row> <p align=\"right\">8:</p> <text name=\"a_configline8\"/> </row>
27
+
28
+ </table>
29
+ <p>%extraconfigdatadisplay%</p>
30
+ <p>
31
+ <p>%newconfigurationresult%</p>
32
+
33
+
34
+
35
+ </tab>"
36
+
data/init.rb CHANGED
@@ -73,7 +73,7 @@ $progdir = File::expand_path( File.dirname(__FILE__))
73
73
  Dir.chdir($progdir) # change back to top program directory
74
74
 
75
75
  # build the English Language hash file from the parts
76
- startlangdir = @@langdir +"/" + "en"
76
+ startlangdir = File.join(LangDir,"en")
77
77
  #get a list of the files and subdirectories on the starting directory only
78
78
  alanghash = Array.new(Dir[startlangdir].entries.sort)
79
79
  #loop through the list, ignore the files and add all new directories found
@@ -108,7 +108,7 @@ $progdir = File::expand_path( File.dirname(__FILE__))
108
108
  Dir.chdir($progdir) # change back to top program directory
109
109
 
110
110
  # build the local Language hash file from the parts
111
- startlangdir = @@langdir +"/" + $lang
111
+ startlangdir = File.join(LangDir,$lang)
112
112
  #get a list of the files and subdirectories on the starting directory only
113
113
  alanghash = Array.new(Dir[startlangdir].entries.sort)
114
114
  #loop through the list, ignore the files and add all new directories found
@@ -145,11 +145,11 @@ $tempdoc = " "
145
145
 
146
146
  # build the language hash constant object from the lang parts
147
147
  #get a list of the files in lang directory only
148
- alangfile = Dir.new(@@langdir).entries.sort.reverse.delete_if { |x| ! (x =~ /rb$/) }
148
+ alangfile = Dir.new(LangDir).entries.sort.reverse.delete_if { |x| ! (x =~ /rb$/) }
149
149
  alangfile.length.times{
150
150
  fileName = alangfile.pop
151
151
  Dir.chdir($progdir)
152
- Dir.chdir(@@langdir)
152
+ Dir.chdir(LangDir)
153
153
  fileLangA=File.open("#{fileName}","r") #opens the file thats in fileName as read only
154
154
  $tempdoc += fileLangA.read #reads the file into the doc string
155
155
  fileLangA.close
@@ -165,7 +165,7 @@ Dir.chdir($progdir)
165
165
 
166
166
  # build the actual program from the code parts
167
167
  #get a list of the files and subdirectories on the starting directory only
168
- a = Array.new(Dir[@@codedir].entries.sort)
168
+ a = Array.new(Dir[CodeDir].entries.sort)
169
169
  #loop through the list, ignore the files and add all new directories found
170
170
  a.each do |x|
171
171
  #if a directory...
@@ -198,7 +198,7 @@ Dir.chdir($progdir)
198
198
  # build the actual GUI from the gui parts
199
199
  $tempdoc = " "
200
200
  #get a list of the files and subdirectories on the starting directory only
201
- a = Array.new(Dir[@@guidir].entries.sort)
201
+ a = Array.new(Dir[GuiDir].entries.sort)
202
202
  #loop through the list, ignore the files and add all new directories found
203
203
  a.each do |x|
204
204
  #if a directory...
@@ -22,24 +22,10 @@ ruby init.rb
22
22
  Then point your web browser to:
23
23
  http://localhost:7705/
24
24
 
25
- == Installing Applets
26
-
27
- * unzip an applet
28
-
29
- You can download an applet created by someone else
30
- put the file in the zips directory
31
- unzip the directory into the program directoy
32
- unzip randomapplet.zip
33
-
34
- This should right the needed files in the correct directories
35
-
36
-
37
-
38
-
39
-
40
- Viewing a installed Applets:
41
25
 
26
+ == Viewing installed Applets:
42
27
 
28
+
43
29
  Go to "List Scripts" tab
44
30
 
45
31
 
@@ -55,9 +41,46 @@ Go to "List Scripts" tab
55
41
 
56
42
  If it finds the file it will open it. It displays the text the search box.
57
43
 
44
+ You can uninstall applets on this screen
45
+
46
+ == Installing Applets
47
+
48
+ click on the "Selection Panel"
49
+ click on Rwdtinker Back Window
50
+
51
+ You can download an applet created by someone else
52
+ put the file in the zips directory
53
+
54
+ click on the "list zips" tab
55
+ click on "list applets available for installing"
56
+
57
+ chose the applet you want
58
+ click on "install applet"
59
+ If all goes well the applet should be installed.
60
+ You will need to restart rwdtinker to see the new screens
61
+
62
+
63
+ == Changing configuration file
64
+
65
+ click on "Edit Configuration"
66
+ You can view the configuration file
67
+
68
+ You can edit the configuration
69
+
70
+ Remember to reload the configuration variables if you want your
71
+ changes used.
58
72
 
73
+ == Manually installing applets
74
+
75
+ * unzip an applet
76
+
77
+ unzip the applet into the program directoy
78
+ unzip randomapplet.zip
79
+
80
+ This should place the needed files in the correct directories
81
+
59
82
 
60
- == Adding Applets
83
+ == Creating Applets
61
84
 
62
85
  To add code, commands and gui tabs
63
86
 
@@ -88,10 +111,6 @@ There are two ways to add applets to the directories.
88
111
  gui files in the subdirectories under gui
89
112
 
90
113
 
91
-
92
-
93
-
94
-
95
114
  == Documents
96
115
 
97
116
 
@@ -100,8 +119,6 @@ There are two ways to add applets to the directories.
100
119
 
101
120
  To exit, press the x inside the browser window.
102
121
 
103
-
104
-
105
122
  == Languages
106
123
 
107
124
 
@@ -194,7 +211,12 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
194
211
 
195
212
  Thanks, Steven Gibson
196
213
 
197
- == Changelog:
214
+ == Changelog
215
+ version 1.43
216
+ changed setup variables file for live changes
217
+ added editing and reloading of config file
218
+ added unzip filename to config file
219
+
198
220
  version 1.42
199
221
  update for live update system
200
222
  update applets for live update
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
3
3
  specification_version: 1
4
4
  name: rwdtinker
5
5
  version: !ruby/object:Gem::Version
6
- version: "1.42"
7
- date: 2005-01-12
6
+ version: "1.43"
7
+ date: 2005-01-17
8
8
  summary: rwdtinker application is a framework to program for RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -39,11 +39,15 @@ files:
39
39
  - code/xb1rwdtinkerbackwindow/diagnostictab.rb
40
40
  - code/xb1rwdtinkerbackwindow/rwdtinkerwin2version.rb
41
41
  - code/xb1rwdtinkerbackwindow/listinstalledfiles.rb
42
- - configuration/tinkerwin2.cnf
42
+ - code/xb1rwdtinkerbackwindow/loadconfigurationrecord.rb
43
+ - code/xb1rwdtinkerbackwindow/loadconfigurationvariables.rb
44
+ - code/xb1rwdtinkerbackwindow/saveconfigurationrecord.rb
45
+ - configuration/rwdtinker.cnf
43
46
  - configuration/rwdtinkerversion.cnf
44
47
  - configuration/language.cnf
45
- - configuration/rwdtinker.cnf
46
48
  - configuration/tinkerwin2version.cnf
49
+ - configuration/rwdplayscriptsversion.cnf
50
+ - configuration/tinkerwin2variables.cnf
47
51
  - ev/sgml.rb
48
52
  - ev/xml.rb
49
53
  - ev/net.rb
@@ -78,11 +82,12 @@ files:
78
82
  - gui/xa5rwdtinkercallablewindow/1appname.rwd
79
83
  - gui/xa5rwdtinkercallablewindow/9end.rwd
80
84
  - gui/xb1rwdtinkerbackwindow/1appname.rwd
81
- - gui/xb1rwdtinkerbackwindow/2tab1.rwd
82
85
  - gui/xb1rwdtinkerbackwindow/9backend.rwd
83
- - gui/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
84
86
  - gui/xb1rwdtinkerbackwindow/3arwddiagnostics.rwd
85
- - gui/xb1rwdtinkerbackwindow/4arwdlistzips.rwd
87
+ - gui/xb1rwdtinkerbackwindow/50rwdlistapplets.rwd
88
+ - gui/xb1rwdtinkerbackwindow/80tab1.rwd
89
+ - gui/xb1rwdtinkerbackwindow/50rwdlistzips.rwd
90
+ - gui/xb1rwdtinkerbackwindow/40editconfiguration.rwd
86
91
  - gui/ya1helpaboutbegin/ya0helpscreenstart.rwd
87
92
  - gui/yg5rwdhelpabout/1appname.rwd
88
93
  - gui/yg5rwdhelpabout/3copyright.rwd
@@ -1,3 +0,0 @@
1
-
2
- ZipsLocation = "zips" # not yet functional
3
-