rwdtinker 1.59 → 1.60
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
CHANGED
|
@@ -227,6 +227,10 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
|
227
227
|
Thanks, Steven Gibson
|
|
228
228
|
|
|
229
229
|
== Changelog
|
|
230
|
+
version 1.60
|
|
231
|
+
add rwdapplication info to diagnostic
|
|
232
|
+
turn rescue on in diagnostic upload
|
|
233
|
+
|
|
230
234
|
version 1.59
|
|
231
235
|
removed rwdtinkerwin2 inf file
|
|
232
236
|
refactored diagnotic page - one button to see all information
|
|
@@ -11,10 +11,11 @@ returns_ftplogin = "anonymous@superant.com"
|
|
|
11
11
|
returns_ftppassword = "anonymous@superant.com"
|
|
12
12
|
returns_ftpdirectory = "/incoming/returns/"
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
begin
|
|
15
15
|
platformdisplay = "Platform is " + RUBY_PLATFORM + "\n"
|
|
16
16
|
platformdisplay = platformdisplay + "Ruby Version " + VERSION + "\n"
|
|
17
17
|
platformdisplay = platformdisplay + "rwdtinker version " + RwdTinkerVersion + "\n"
|
|
18
|
+
platformdisplay = platformdisplay + "application name " + $rwdapplicationidentity + "\n"
|
|
18
19
|
platformdisplay = platformdisplay + "program directory " + $progdir + "\n"
|
|
19
20
|
platformdisplay = platformdisplay + "hostname " + Resolv.getname(Resolv.getaddress("localhost")) + "\n"
|
|
20
21
|
platformdisplay = platformdisplay + "Date " + Date.today().to_s + "\n"
|
|
@@ -51,11 +52,11 @@ returns_ftpdirectory = "/incoming/returns/"
|
|
|
51
52
|
|
|
52
53
|
ftp.close
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
end
|
|
59
|
-
print "ftp error"
|
|
60
|
-
|
|
55
|
+
rescue
|
|
56
|
+
@returnsftpdisplay = "upload error"
|
|
57
|
+
if ftp
|
|
58
|
+
ftp.close
|
|
59
|
+
end
|
|
60
|
+
print "ftp error"
|
|
61
|
+
end
|
|
61
62
|
end
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
@platformdisplay = @platformdisplay + "rwdtinker version " + RwdTinkerVersion + "\n"
|
|
17
17
|
@platformdisplay = @platformdisplay + "program directory " + $progdir + "\n"
|
|
18
18
|
@platformdisplay = @platformdisplay + "hostname " + Resolv.getname(Resolv.getaddress("localhost")) + "\n"
|
|
19
|
-
|
|
19
|
+
@platformdisplay = @platformdisplay + "application name " + $rwdapplicationidentity + "\n"
|
|
20
|
+
@platformdisplay = @platformdisplay + "Date " + Date.today().to_s
|
|
20
21
|
|
|
21
22
|
end
|
|
22
23
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
##VERSION:1.
|
|
1
|
+
##VERSION:1.60
|
|
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.
|
|
15
|
+
RwdTinkerVersion = "1.60"
|
data/rwd_files/HowTo_Tinker.txt
CHANGED
|
@@ -227,6 +227,10 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
|
227
227
|
Thanks, Steven Gibson
|
|
228
228
|
|
|
229
229
|
== Changelog
|
|
230
|
+
version 1.60
|
|
231
|
+
add rwdapplication info to diagnostic
|
|
232
|
+
turn rescue on in diagnostic upload
|
|
233
|
+
|
|
230
234
|
version 1.59
|
|
231
235
|
removed rwdtinkerwin2 inf file
|
|
232
236
|
refactored diagnotic page - one button to see all information
|
metadata
CHANGED