rwdtinker 1.73 → 1.74
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 +0 -0
- data/bin/rwdtinker +0 -0
- data/code/01rwdcore/01rwdcore.rb +4 -0
- data/code/01rwdcore/jumplinkcommand.rb +0 -0
- data/code/01rwdcore/openhelpwindow.rb +1 -1
- data/code/01rwdcore/rwdtinkerversion.rb +1 -1
- data/code/superant.com.rwdtinkerbackwindow/installgemapplet.rb +11 -4
- data/configuration/rwdtinker.dist +2 -2
- data/ev/rwd.rb +0 -0
- data/gui/00coreguibegin/applicationguitop.rwd +1 -1
- data/rwd_files/HowTo_Tinker.txt +24 -0
- data/tests/makedist.rb +11 -5
- data/zips/rwdwcalc-0.61.zip +0 -0
- data/zips/rwdwgutenberg-0.09.zip +0 -0
- data/zips/rwdwshell-1.04.zip +0 -0
- data/zips/wrubyslippers-1.06.zip +0 -0
- metadata +6 -2
data/Readme.txt
CHANGED
File without changes
|
data/bin/rwdtinker
CHANGED
File without changes
|
data/code/01rwdcore/01rwdcore.rb
CHANGED
@@ -4,11 +4,15 @@
|
|
4
4
|
# For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
|
5
5
|
# This class is the top class for the RwdTinker application
|
6
6
|
|
7
|
+
$DEBUG=false
|
8
|
+
$VERBOSE=false
|
9
|
+
|
7
10
|
class RwdTinker < RWDialog
|
8
11
|
|
9
12
|
def main
|
10
13
|
@rwd_window = "main"
|
11
14
|
@result = "idle"
|
15
|
+
|
12
16
|
@display= "idle"
|
13
17
|
if TestNow
|
14
18
|
|
File without changes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# this code is to call the help window
|
2
2
|
def runhelpwindow
|
3
|
-
$helptopicsarray = $helptopicsarray | ["applet_installation","applet_viewing","applet_tinkerbackeditconfiguration"
|
3
|
+
$helptopicsarray = $helptopicsarray | ["applet_installation","applet_viewing","applet_tinkerbackeditconfiguration"]
|
4
4
|
|
5
5
|
if @rwd_window == "main"
|
6
6
|
if @rwd_tab == "documentsrwdtinkerone"
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# return the version constant defined in the config file
|
6
6
|
def tinkerhelpaboutsetup
|
7
|
-
return ["RwdTinker","(c) 2004 Steven Gibson ","Version #{RwdTinkerVersion}"]
|
7
|
+
return ["RwdTinker","(c) 2004-2008 Steven Gibson ","Version #{RwdTinkerVersion}"]
|
8
8
|
end
|
9
9
|
|
10
10
|
def runrwdtinkerversion
|
@@ -12,6 +12,16 @@ def installgemapplet
|
|
12
12
|
|entry|
|
13
13
|
zf.extract(entry.to_s, entry.to_s)
|
14
14
|
}
|
15
|
+
|
16
|
+
rescue
|
17
|
+
|
18
|
+
if $DEBUG
|
19
|
+
$stderr.puts "unzip error - applet may not be installed correctly"
|
20
|
+
end
|
21
|
+
@installapplettext = " .. "
|
22
|
+
|
23
|
+
end # exception rescue
|
24
|
+
|
15
25
|
@nametextbase = File.basename(nametext)
|
16
26
|
@returninitateresults = initiateapplet(@nametextbase)
|
17
27
|
@installapplettext = Message[:applet_installed] + " " + @returninitateresults
|
@@ -19,9 +29,6 @@ def installgemapplet
|
|
19
29
|
|
20
30
|
RWDWindow.new($rwd_gui_tinker, @rwd_window).render("DEFAULT")
|
21
31
|
|
22
|
-
|
23
|
-
@installapplettext = "unzip error - applet may not be installed correctly"
|
24
|
-
|
25
|
-
end # exception rescue
|
32
|
+
|
26
33
|
end
|
27
34
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
##VERSION:1.
|
1
|
+
##VERSION:1.74
|
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"
|
@@ -14,5 +14,5 @@ LangDir = "lang"
|
|
14
14
|
$rwdjumplink = ["helpscreen","tinkerbackwindow","returntomain","opendocuments","editconfiguration"]
|
15
15
|
Browser_Exe = 'mozilla '
|
16
16
|
$tinkerdocumentsarray +=["HowTo_Tinker.txt","rwdapplications.html","RubyWebDialogs.html"]
|
17
|
-
RwdTinkerVersion = "1.
|
17
|
+
RwdTinkerVersion = "1.74"
|
18
18
|
|
data/ev/rwd.rb
CHANGED
File without changes
|
data/rwd_files/HowTo_Tinker.txt
CHANGED
@@ -227,6 +227,30 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
227
227
|
Thanks, Steven Gibson
|
228
228
|
|
229
229
|
== Changelog
|
230
|
+
Version 1.74
|
231
|
+
remove remote control from help
|
232
|
+
more dependable gui loading for applets
|
233
|
+
|
234
|
+
Version 1.73
|
235
|
+
more debug info in initiateapplet
|
236
|
+
remove gutenberg lang translations
|
237
|
+
correct gui building error recovery
|
238
|
+
|
239
|
+
Version 1.72
|
240
|
+
additional cleanup for live applet add and removal
|
241
|
+
after applet removal focus returns to proper tab
|
242
|
+
error messages are reduced unless $DEBUG=true
|
243
|
+
|
244
|
+
Version 1.70
|
245
|
+
major update to applet loading routines
|
246
|
+
a properly prepared applet should be loadable and unloadable live with not restarting
|
247
|
+
localization is not yet updated in live applet loading
|
248
|
+
remove network line debugging output
|
249
|
+
|
250
|
+
Version 1.69
|
251
|
+
More work on translations - Spanish almost done
|
252
|
+
removed remote control
|
253
|
+
|
230
254
|
Version 1.68
|
231
255
|
updated to newest Ruby webdialogs
|
232
256
|
|
data/tests/makedist.rb
CHANGED
@@ -5,15 +5,21 @@
|
|
5
5
|
#* at "steven@superant.com".
|
6
6
|
#***********************************************************************/
|
7
7
|
$progdir =""
|
8
|
+
$tinkerhelpaboutarray = [""]
|
9
|
+
$tinkerdocumentsarray = [""]
|
10
|
+
$testharnessarray = [""]
|
11
|
+
$rwdjumplink = [""]
|
12
|
+
JumpLink = Hash.new("default")
|
8
13
|
require 'fileutils'
|
9
|
-
load 'rwdconfig.dist'
|
10
|
-
DistroName = "rwdtinker"
|
11
|
-
load "configuration/#{DistroName}.dist"
|
12
|
-
DistroVersion=RwdTinkerVersion
|
13
14
|
|
14
|
-
|
15
|
+
DistroName = "rwdtinker"
|
15
16
|
|
17
|
+
DistroVersion="1.74"
|
16
18
|
|
19
|
+
DistroTitle="#{DistroName}.dist"
|
20
|
+
load "configuration/#{DistroTitle}"
|
21
|
+
DistroTitle = "#{DistroName}-#{DistroVersion}"
|
22
|
+
# DistroName = "rwdtorrent"
|
17
23
|
|
18
24
|
$progdir = File::expand_path( File.dirname(__FILE__))
|
19
25
|
results = " "
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rwdtinker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "1.
|
4
|
+
version: "1.74"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Gibson
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-09-
|
12
|
+
date: 2008-09-02 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -141,7 +141,11 @@ files:
|
|
141
141
|
- rwd_files/HowTo_TinkerWin2.txt
|
142
142
|
- rwd_files/RubyWebDialogs.html
|
143
143
|
- rwd_files/HowTo_Tinker.txt
|
144
|
+
- zips/rwdwgutenberg-0.09.zip
|
144
145
|
- zips/temp.rb
|
146
|
+
- zips/rwdwcalc-0.61.zip
|
147
|
+
- zips/rwdwshell-1.04.zip
|
148
|
+
- zips/wrubyslippers-1.06.zip
|
145
149
|
- tests/rdep.rb
|
146
150
|
- tests/cleancnf.sh
|
147
151
|
- tests/makedist.rb
|