rwdtinker 1.55 → 1.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Readme.txt +25 -6
- data/configuration/rwdtinkerversion.cnf +1 -1
- data/init.rb +9 -10
- data/rwd_files/HowTo_Tinker.txt +5 -0
- metadata +3 -3
data/Readme.txt
CHANGED
@@ -1,14 +1,11 @@
|
|
1
1
|
= RwdTinker framework for RubyWebDialogs
|
2
2
|
|
3
|
-
|
4
3
|
RwdTinker is a web brower interface to and system for developing programs
|
5
4
|
|
6
5
|
== Usage
|
7
6
|
|
8
|
-
|
9
7
|
How to Use the Tinker framework Program (rwdtinker)
|
10
8
|
|
11
|
-
|
12
9
|
1. stand alone application
|
13
10
|
2. framework for building applications
|
14
11
|
3. Open brower windows with html documents
|
@@ -22,13 +19,10 @@ ruby init.rb
|
|
22
19
|
Then point your web browser to:
|
23
20
|
http://localhost:7705/
|
24
21
|
|
25
|
-
|
26
22
|
== Viewing installed Applets:
|
27
|
-
|
28
23
|
|
29
24
|
Go to "List Scripts" tab
|
30
25
|
|
31
|
-
|
32
26
|
You can get a list of all installed applets by clicking the listfiles button
|
33
27
|
|
34
28
|
To see the text of a install file
|
@@ -233,11 +227,36 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
233
227
|
Thanks, Steven Gibson
|
234
228
|
|
235
229
|
== Changelog
|
230
|
+
version 1.56
|
231
|
+
refactored gui files to load without intermediate files
|
232
|
+
refactored code files to load without intermediate files
|
233
|
+
|
234
|
+
version 1.55
|
235
|
+
refactored language files to load without intermediate files
|
236
|
+
refactored language files to load without intermediate files
|
237
|
+
|
238
|
+
version 1.54
|
239
|
+
refactored rwdtinker applet installation tab - remote gem and local installs share menu buttons
|
240
|
+
corrected some program logic errors in remote control code including close socket
|
241
|
+
|
242
|
+
version 1.53
|
243
|
+
added search of Gems repository for rwdtinker gems
|
244
|
+
download and install of Gems
|
245
|
+
|
246
|
+
version 1.52
|
247
|
+
added function to install applets from gem directory
|
248
|
+
|
249
|
+
version 1.51
|
250
|
+
changed return to main
|
251
|
+
changed configuration of remote ports
|
252
|
+
updated context sensitive help
|
253
|
+
|
236
254
|
version 1.50
|
237
255
|
changed unzip applet to be internal code - no exec to unzip program
|
238
256
|
changed order of tabs on back window - list applets now first
|
239
257
|
added rwdwcalc applet in to zips directory
|
240
258
|
changed width of text fields with help from RubyWebDialogs author
|
259
|
+
changed listing of help options, vertical instead of horizontal
|
241
260
|
|
242
261
|
version 1.49
|
243
262
|
added demon function for remote queries
|
@@ -1,2 +1,2 @@
|
|
1
1
|
|
2
|
-
RwdTinkerVersion = "1.
|
2
|
+
RwdTinkerVersion = "1.56"
|
data/init.rb
CHANGED
@@ -51,8 +51,9 @@ $progdir = File::expand_path( File.dirname(__FILE__))
|
|
51
51
|
if(!test(?d,x))
|
52
52
|
# only rwd files
|
53
53
|
if x =~ /rb|rwd|txt/
|
54
|
-
|
55
|
-
|
54
|
+
|
55
|
+
load x #opens the file thats in fileName and reads it
|
56
|
+
$tempdoc += $rwdguivar # adds the file into the doc string
|
56
57
|
end
|
57
58
|
end
|
58
59
|
end
|
@@ -178,10 +179,9 @@ $tempdoc = " "
|
|
178
179
|
end
|
179
180
|
end
|
180
181
|
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
require CodeName # load the program file
|
182
|
+
|
183
|
+
# load the program file
|
184
|
+
tempcoderesult = eval( $tempdoc )
|
185
185
|
|
186
186
|
# build the actual GUI from the gui parts
|
187
187
|
$tempdoc = " "
|
@@ -212,9 +212,8 @@ $tempdoc = " "
|
|
212
212
|
end
|
213
213
|
end
|
214
214
|
|
215
|
-
|
216
|
-
|
217
|
-
fileB.close
|
215
|
+
# gui variable is done
|
216
|
+
guiRWD = $tempdoc
|
218
217
|
|
219
218
|
require 'socket' # Network stuff
|
220
219
|
host = "127.0.0.1"
|
@@ -254,4 +253,4 @@ $port = port
|
|
254
253
|
end
|
255
254
|
|
256
255
|
|
257
|
-
RwdTinker.
|
256
|
+
RwdTinker.new( guiRWD).serve(port) # start the main class and program
|
data/rwd_files/HowTo_Tinker.txt
CHANGED
@@ -227,8 +227,13 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
227
227
|
Thanks, Steven Gibson
|
228
228
|
|
229
229
|
== Changelog
|
230
|
+
version 1.56
|
231
|
+
refactored gui files to load without intermediate files
|
232
|
+
refactored code files to load without intermediate files
|
233
|
+
|
230
234
|
version 1.55
|
231
235
|
refactored language files to load without intermediate files
|
236
|
+
refactored language files to load without intermediate files
|
232
237
|
|
233
238
|
version 1.54
|
234
239
|
refactored rwdtinker applet installation tab - remote gem and local installs share menu buttons
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.6
|
3
3
|
specification_version: 1
|
4
4
|
name: rwdtinker
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "1.
|
7
|
-
date: 2005-02-
|
6
|
+
version: "1.56"
|
7
|
+
date: 2005-02-28
|
8
8
|
summary: rwdtinker application is a framework to program for RubyWebDialogs.
|
9
9
|
require_paths:
|
10
10
|
- "."
|