rwdschedule 1.00 → 1.01
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 +6 -0
- data/code/01rwdcore/01rwdcore.rb +3 -0
- data/code/01rwdcore/runopentinkerdocument.rb +7 -0
- data/code/01rwdcore/rwdtinkerversion.rb +11 -3
- data/code/01rwdcore/setuphelpaboutoptions.rb +13 -0
- data/code/01rwdcore/setuptinkerdocuments.rb +6 -0
- data/code/superant.com.rwdtinkerbackwindow/listgemzips.rb +1 -1
- data/code/superant.com.rwdtinkerbackwindow/listzips.rb +1 -1
- data/code/superant.com.rwdtinkerbackwindow/loadconfigurationrecord.rb +1 -12
- data/code/superant.com.rwdtinkerbackwindow/saveconfigurationrecord.rb +2 -2
- data/code/superant.com.schedule/loadconfigurationrecord.rb +1 -23
- data/code/superant.com.schedule/rwdtinkerversion.rb +22 -0
- data/code/superant.com.schedule/saveconfigurationrecord.rb +2 -4
- data/configuration/rwdapplicationidentity.dist +1 -1
- data/configuration/rwdschedule.dist +4 -2
- data/configuration/rwdtinker.dist +6 -2
- data/configuration/tinkerwin2variables.dist +1 -1
- data/gui/00coreguibegin/applicationguitop.rwd +1 -1
- data/gui/frontwindow0/superant.com.rwdschedules/gl6editrecord.rwd +4 -1
- data/gui/frontwindowselectionbegin/selectiontabbegin/{selectiontabbegin.rwd → 00selectiontabbegin.rwd} +1 -1
- data/gui/frontwindowselectionzend/viewselectionzend/{viewselectionend.rwd → wwselectionend.rwd} +0 -0
- data/gui/{frontwindowtdocumentbegin/superant.com.documentsbegin/tt0documentbegin.rwd → frontwindowselectionzend/viewselectionzend/zzdocumentbegin.rwd} +0 -0
- data/gui/frontwindowtdocuments/superant.com.documents/tinkerdocuments.rwd +14 -0
- data/gui/helpaboutbegin/superant.com.helpaboutbegin/zzdocumentend.rwd +8 -0
- data/gui/{frontwindowz1end/frontwindowend/xx0rwdfirsttab.rwd → helpaboutbegin/superant.com.helpaboutbegin/zzzrwdlasttab.rwd} +0 -0
- data/gui/helpaboutbegin/superant.com.helpaboutbegin/{ya0helpscreenstart.rwd → zzzzhelpscreenstart.rwd} +0 -0
- data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/helpabouttab.rwd +15 -0
- data/gui/helpaboutzend/superant.com.helpaboutend/zhelpscreenstart2.rwd +3 -0
- data/gui/helpaboutzend/superant.com.helpaboutend/zzzzhelpabout2.rwd +15 -0
- data/gui/helpaboutzend/superant.com.helpaboutend/zzzzhelpscreen2end.rwd +3 -0
- data/gui/tinkerbackwindows/superant.com.rwdschedulebackwindow/67viewconfiguration.rwd +1 -20
- data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/60editconfiguration.rwd +2 -10
- data/gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd +1 -1
- data/gui/tinkerbackwindows/superant.com.versionwindow/helpaboutwindow.rwd +17 -0
- data/rwd_files/HowTo_Schedule.txt +6 -0
- data/rwd_files/HowTo_Tinker.txt +10 -0
- data/rwd_files/{rwdindex.html → RubyWebDialogs.html} +0 -0
- data/rwdconfig.dist +9 -2
- data/schedules/archive/sample.archive +1 -0
- data/tests/makerwdwaddresses-1.04.rb +40 -0
- metadata +21 -23
- data/gui/frontwindowtdocuments/superant.com.documents/uu5documents.rwd +0 -15
- data/gui/frontwindowtdocuments/superant.com.rwdscheduledocument/uu8doc_rwdschedule.rwd +0 -5
- data/gui/frontwindowtdocuments/superant.com.tinkerwin2documents/uu5documents.rwd +0 -6
- data/gui/frontwindowtdocumentzend/superant.com.documentsend/ww0documentend.rwd +0 -12
- data/gui/helpaboutinstalled/superant.com.schedulehelpabout/1rwdschedule.rwd +0 -6
- data/gui/helpaboutinstalled/superant.com.schedulehelpabout/5version.rwd +0 -9
- data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/1appname.rwd +0 -4
- data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/3copyright.rwd +0 -3
- data/gui/helpaboutinstalled/superant.com.tinkerhelpabout/5version.rwd +0 -10
data/Readme.txt
CHANGED
|
@@ -154,6 +154,12 @@ Steven Gibson
|
|
|
154
154
|
steven@superant.com
|
|
155
155
|
|
|
156
156
|
== Changelog
|
|
157
|
+
Version 1.01
|
|
158
|
+
changed schedule configuration screen
|
|
159
|
+
updated for rwdtinker 1.66
|
|
160
|
+
new helpabout
|
|
161
|
+
new documents list
|
|
162
|
+
|
|
157
163
|
Version 1.00
|
|
158
164
|
fixed sync download
|
|
159
165
|
added more unit tests
|
data/code/01rwdcore/01rwdcore.rb
CHANGED
|
@@ -3,11 +3,19 @@
|
|
|
3
3
|
# For information see http://www.rubyforge.net/projects/rwdapplications
|
|
4
4
|
|
|
5
5
|
# return the version constant defined in the config file
|
|
6
|
+
def tinkerhelpaboutsetup
|
|
7
|
+
return ["RwdTinker","(c) 2004 Steven Gibson ","Version #{RwdTinkerVersion}"]
|
|
8
|
+
end
|
|
9
|
+
|
|
6
10
|
def runrwdtinkerversion
|
|
7
11
|
@rwd_window = "applicationversion"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
helpaboutinput = @a_helpaboutinput.downcase
|
|
13
|
+
versionarraysetup = "#{helpaboutinput}helpaboutsetup"
|
|
14
|
+
versionarray= self.send(versionarraysetup)
|
|
15
|
+
|
|
16
|
+
@versionappnamedisplay = versionarray[0].to_s
|
|
17
|
+
@versioncopyrightdisplay = versionarray[1].to_s
|
|
18
|
+
@versionnumberdisplay = versionarray[2].to_s
|
|
11
19
|
|
|
12
20
|
end
|
|
13
21
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# help about option setup for rwdtinker application
|
|
2
|
+
def setuphelpaboutoptions
|
|
3
|
+
|
|
4
|
+
@rwd_window = "tinkerhelpabout"
|
|
5
|
+
@helpaboutoptions = $tinkerhelpaboutarray.rwd_options
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def setuphelpaboutoptionspassive
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@helpaboutoptions = $tinkerhelpaboutarray.rwd_options
|
|
12
|
+
end
|
|
13
|
+
|
|
@@ -16,7 +16,7 @@ def listzipfilestoinstall
|
|
|
16
16
|
a.each do |x|
|
|
17
17
|
# only zip files
|
|
18
18
|
if x =~ /\.zip/
|
|
19
|
-
|
|
19
|
+
#adds the file to the array to display on the screen
|
|
20
20
|
$zipsarraylocal = $zipsarraylocal | ["#{x}"]
|
|
21
21
|
end
|
|
22
22
|
|
|
@@ -12,18 +12,7 @@ def loadconfigurationrecord
|
|
|
12
12
|
fileName = File.join(ConfigurationDir, TinkerWin2ConfigurationFileName)
|
|
13
13
|
|
|
14
14
|
fd = File.open(fileName,"r")
|
|
15
|
-
@
|
|
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
|
|
15
|
+
@a_configurationfile = fd.read
|
|
27
16
|
fd.close
|
|
28
17
|
rescue SystemCallError, StandardError
|
|
29
18
|
$stderr.print "system call error: " + $!
|
|
@@ -3,9 +3,9 @@ def saveconfigurationrecord
|
|
|
3
3
|
require 'fileutils'
|
|
4
4
|
if @a_configurationfilename
|
|
5
5
|
newname = "%s" % [@a_configurationfilename] # grab the filename to create
|
|
6
|
-
newdata =@
|
|
6
|
+
newdata =@a_configurationfile
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
begin # exception trapped block
|
|
9
9
|
fileName = File.join( ConfigurationDir, newname )
|
|
10
10
|
fd = File.open(fileName,"w")
|
|
11
11
|
fd.print(newdata) # save the record info to the file
|
|
@@ -13,29 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
fd = File.open(fileName,"r")
|
|
16
|
-
@
|
|
17
|
-
@a_schconfigline2 = fd.readline.chomp
|
|
18
|
-
@a_schconfigline3 = fd.readline.chomp
|
|
19
|
-
@a_schconfigline4 = fd.readline.chomp
|
|
20
|
-
@a_schconfigline5 = fd.readline.chomp
|
|
21
|
-
@a_schconfigline6 = fd.readline.chomp
|
|
22
|
-
@a_schconfigline7 =fd.readline.chomp
|
|
23
|
-
@a_schconfigline8 = fd.readline.chomp
|
|
24
|
-
@a_schconfigline9 = fd.readline.chomp
|
|
25
|
-
@a_schconfigline10= fd.readline.chomp
|
|
26
|
-
@a_schconfigline11= fd.readline.chomp
|
|
27
|
-
@a_schconfigline12= fd.readline.chomp
|
|
28
|
-
@a_schconfigline13= fd.readline.chomp
|
|
29
|
-
@a_schconfigline14= fd.readline.chomp
|
|
30
|
-
@a_schconfigline15= fd.readline.chomp
|
|
31
|
-
@a_schconfigline16= fd.readline.chomp
|
|
32
|
-
@a_schconfigline17= fd.readline.chomp
|
|
33
|
-
@a_schconfigline18= fd.readline.chomp
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
while ! fd.eof?
|
|
37
|
-
@extraschconfigdatadisplay = fd.readline
|
|
38
|
-
end
|
|
16
|
+
@a_schconfigurationfile = fd.read
|
|
39
17
|
fd.close
|
|
40
18
|
rescue SystemCallError, StandardError
|
|
41
19
|
$stderr.print "system call error: " + $!
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
|
|
2
|
+
# This application is a framework for writing programs from RubyWebDialogs
|
|
3
|
+
# For information see http://www.rubyforge.net/projects/rwdapplications
|
|
4
|
+
|
|
5
|
+
# return the version constant defined in the config file
|
|
6
|
+
def rwdschedulehelpaboutsetup
|
|
7
|
+
return ["RwdSchedule","(c) 2004,2005 Steven Gibson ","Version #{RwdScheduleVersion}"]
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def runrwdtinkerversion
|
|
11
|
+
@rwd_window = "applicationversion"
|
|
12
|
+
helpaboutinput = @a_helpaboutinput.downcase
|
|
13
|
+
versionarraysetup = "#{helpaboutinput}helpaboutsetup"
|
|
14
|
+
versionarray= self.send(versionarraysetup)
|
|
15
|
+
|
|
16
|
+
@versionappnamedisplay = versionarray[0].to_s
|
|
17
|
+
@versioncopyrightdisplay = versionarray[1].to_s
|
|
18
|
+
@versionnumberdisplay = versionarray[2].to_s
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
|
|
@@ -3,10 +3,8 @@
|
|
|
3
3
|
require 'fileutils'
|
|
4
4
|
|
|
5
5
|
newname = "rwdschedule.cnf" # grab the filename to create
|
|
6
|
-
newdata =@
|
|
7
|
-
|
|
8
|
-
@a_schconfigline10.to_s + "\n" + @a_schconfigline11.to_s + "\n"+ @a_schconfigline12.to_s +
|
|
9
|
-
"\n" + @a_schconfigline13.to_s + "\n"+ @a_schconfigline14.to_s + "\n"+ @a_schconfigline15.to_s + "\n"
|
|
6
|
+
newdata =@a_schconfigurationfile
|
|
7
|
+
|
|
10
8
|
|
|
11
9
|
begin # exception trapped block
|
|
12
10
|
fileName = File.join( ConfigurationDir, newname )
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
##VERSION:1.
|
|
1
|
+
##VERSION:1.01
|
|
2
2
|
##NAME:$rwdschedule_directory:0
|
|
3
3
|
$rwdschedule_directory = "schedules"
|
|
4
4
|
##NAME:$rwdschedule_ftpsite:0
|
|
@@ -12,5 +12,7 @@ $rwdschedule_ftpdirectory = "/incoming/rwdschedules/"
|
|
|
12
12
|
##NAME:$rwdschedule_updatedirectory:0
|
|
13
13
|
$rwdschedule_updatedirectory = "updates"
|
|
14
14
|
$testharnessarray += ["rwdschedule_all_tests"]
|
|
15
|
-
|
|
15
|
+
$tinkerhelpaboutarray += ["RwdSchedule"]
|
|
16
|
+
$tinkerdocumentsarray += ["HowTo_Schedule.txt"]
|
|
17
|
+
RwdScheduleVersion = "1.01"
|
|
16
18
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
##VERSION:1.
|
|
1
|
+
##VERSION:1.66
|
|
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,8 @@ LangDir = "lang"
|
|
|
12
12
|
$rwdcontrolports =["13713","13714","13715","13716","13717","13718"]
|
|
13
13
|
$port = 7705
|
|
14
14
|
$rwdjumplink = ["helpscreen","tinkerbackwindow","returntomain","opendocuments","editconfiguration"]
|
|
15
|
-
|
|
15
|
+
Browser_Exe = 'mozilla '
|
|
16
|
+
$tinkerdocumentsarray +=["COPYING","HowTo_Tinker.txt","rwdapplications.html","RubyWebDialogs.html"]
|
|
17
|
+
RwdTinkerVersion = "1.66"
|
|
18
|
+
|
|
19
|
+
|
|
@@ -8,6 +8,8 @@ $rwdguivar=
|
|
|
8
8
|
<horizontal>
|
|
9
9
|
<button caption=\"Fill Record\" action=\"loadeventrecord\"/>
|
|
10
10
|
<button caption=\"Save Changes\" action=\"saveeventrecord\"/>
|
|
11
|
+
<button caption=\"Export ics Record\" action=\"exporteventrecord\"/>
|
|
12
|
+
|
|
11
13
|
<button caption=\"Clear\" action=\"cleareventscreendisplay\"/>
|
|
12
14
|
|
|
13
15
|
<button caption=\"Help\" action=\"runhelpwindowrwdschedule\"/>
|
|
@@ -40,7 +42,8 @@ $rwdguivar=
|
|
|
40
42
|
<row> <p align=\"right\">Description:</p> <text size=70 name=\"a_eventdescription\"/> </row>
|
|
41
43
|
<row> <p align=\"right\">Location:</p> <text size=70 name=\"a_eventlocation\"/> </row>
|
|
42
44
|
<horizontal>
|
|
43
|
-
<button caption=\"
|
|
45
|
+
<button caption=\"Save Changes\" action=\"saveeventrecord\"/>
|
|
46
|
+
|
|
44
47
|
</horizontal>
|
|
45
48
|
</table>
|
|
46
49
|
<p>%extraeventdatadisplay%</p>
|
data/gui/frontwindowselectionzend/viewselectionzend/{viewselectionend.rwd → wwselectionend.rwd}
RENAMED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$rwdguivar=
|
|
2
|
+
"
|
|
3
|
+
<horizontal>
|
|
4
|
+
<button caption=\"Show Documents List\" action=\"setuptinkerdocuments\"/>
|
|
5
|
+
|
|
6
|
+
</horizontal>
|
|
7
|
+
<table>
|
|
8
|
+
<select name=\"a_tinkerdocumentinput\"> %%tinkerdocumentsarray%% </select>
|
|
9
|
+
|
|
10
|
+
</table>
|
|
11
|
+
<horizontal>
|
|
12
|
+
<button caption=\"Open Document\" action=\"runopentinkerdocument\"/>
|
|
13
|
+
</horizontal>
|
|
14
|
+
"
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
$rwdguivar=
|
|
2
|
+
"
|
|
3
|
+
<horizontal>
|
|
4
|
+
<button caption=\"Show Help About Links\" action=\"setuphelpaboutoptions\"/>
|
|
5
|
+
|
|
6
|
+
</horizontal>
|
|
7
|
+
<table>
|
|
8
|
+
<select name=\"a_helpaboutinput\"> %%helpaboutoptions%% </select>
|
|
9
|
+
|
|
10
|
+
</table>
|
|
11
|
+
|
|
12
|
+
<horizontal>
|
|
13
|
+
<button caption=\"Open Selected Help About\" action=\"runrwdtinkerversion\"/>
|
|
14
|
+
</horizontal>
|
|
15
|
+
"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
$rwdguivar=
|
|
2
|
+
"
|
|
3
|
+
<horizontal>
|
|
4
|
+
<button caption=\"Show Help About Links\" action=\"setuphelpaboutoptions\"/>
|
|
5
|
+
|
|
6
|
+
</horizontal>
|
|
7
|
+
<table>
|
|
8
|
+
<select name=\"a_helpaboutinput\"> %%helpaboutoptions%% </select>
|
|
9
|
+
|
|
10
|
+
</table>
|
|
11
|
+
|
|
12
|
+
<horizontal>
|
|
13
|
+
<button caption=\"Open Selected Help About\" action=\"runrwdtinkerversion\"/>
|
|
14
|
+
</horizontal>
|
|
15
|
+
"
|
|
@@ -16,26 +16,7 @@ $rwdguivar=
|
|
|
16
16
|
</horizontal>
|
|
17
17
|
<table>
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
<row> <p align=\"right\">1:</p> <text size=70 name=\"a_schconfigline1\"/> </row>
|
|
21
|
-
<row> <p align=\"right\">2:</p> <text size=70 name=\"a_schconfigline2\"/> </row>
|
|
22
|
-
<row> <p align=\"right\">3:</p> <text size=70 name=\"a_schconfigline3\"/> </row>
|
|
23
|
-
<row> <p align=\"right\">4:</p> <text size=70 name=\"a_schconfigline4\"/> </row>
|
|
24
|
-
<row> <p align=\"right\">5:</p> <text size=70 name=\"a_schconfigline5\"/> </row>
|
|
25
|
-
<row> <p align=\"right\">6:</p> <text size=70 name=\"a_schconfigline6\"/> </row>
|
|
26
|
-
<row> <p align=\"right\">7:</p> <text size=70 name=\"a_schconfigline7\"/> </row>
|
|
27
|
-
<row> <p align=\"right\">8:</p> <text size=70 name=\"a_schconfigline8\"/> </row>
|
|
28
|
-
<row> <p align=\"right\">9:</p> <text size=70 name=\"a_schconfigline9\"/> </row>
|
|
29
|
-
<row> <p align=\"right\">10:</p> <text size=70 name=\"a_schconfigline10\"/> </row>
|
|
30
|
-
<row> <p align=\"right\">11:</p> <text size=70 name=\"a_schconfigline11\"/> </row>
|
|
31
|
-
|
|
32
|
-
<row> <p align=\"right\">12:</p> <text size=70 name=\"a_schconfigline12\"/> </row>
|
|
33
|
-
<row> <p align=\"right\">13:</p> <text size=70 name=\"a_schconfigline13\"/> </row>
|
|
34
|
-
<row> <p align=\"right\">14:</p> <text size=70 name=\"a_schconfigline14\"/> </row>
|
|
35
|
-
<row> <p align=\"right\">15:</p> <text size=70 name=\"a_schconfigline15\"/> </row>
|
|
36
|
-
<row> <p align=\"right\">16:</p> <text size=70 name=\"a_schconfigline16\"/> </row>
|
|
37
|
-
<row> <p align=\"right\">17:</p> <text size=70 name=\"a_schconfigline17\"/> </row>
|
|
38
|
-
<row> <p align=\"right\">18:</p> <text size=70 name=\"a_schconfigline18\"/> </row>
|
|
19
|
+
<p> <textarea name=\"a_schconfigurationfile\"/>
|
|
39
20
|
|
|
40
21
|
</table>
|
|
41
22
|
<p>%extraschconfigdatadisplay%</p>
|
|
@@ -16,16 +16,8 @@ $rwdguivar=
|
|
|
16
16
|
|
|
17
17
|
</horizontal>
|
|
18
18
|
<table>
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<row> <p align=\"right\">2:</p> <text size=70 name=\"a_configline2\"/> </row>
|
|
22
|
-
<row> <p align=\"right\">3:</p> <text size=70 name=\"a_configline3\"/> </row>
|
|
23
|
-
<row> <p align=\"right\">4:</p> <text size=70 name=\"a_configline4\"/> </row>
|
|
24
|
-
<row> <p align=\"right\">5:</p> <text size=70 name=\"a_configline5\"/> </row>
|
|
25
|
-
<row> <p align=\"right\">6:</p> <text size=70 name=\"a_configline6\"/> </row>
|
|
26
|
-
<row> <p align=\"right\">7:</p> <text size=70 name=\"a_configline7\"/> </row>
|
|
27
|
-
<row> <p align=\"right\">8:</p> <text size=70 name=\"a_configline8\"/> </row>
|
|
28
|
-
|
|
19
|
+
<textarea name=\"a_configurationfile\"/>
|
|
20
|
+
|
|
29
21
|
|
|
30
22
|
</table>
|
|
31
23
|
<p>%extraconfigdatadisplay%</p>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$rwdguivar=
|
|
2
|
+
"
|
|
3
|
+
<window name=tinkerhelpabout title=\"Help About Window\">
|
|
4
|
+
<horizontal>
|
|
5
|
+
<button caption=\"Show Help About Links\" action=\"setuphelpaboutoptions\"/>
|
|
6
|
+
|
|
7
|
+
</horizontal>
|
|
8
|
+
<table>
|
|
9
|
+
<select name=\"a_helpaboutinput\"> %%helpaboutoptions%% </select>
|
|
10
|
+
|
|
11
|
+
</table>
|
|
12
|
+
|
|
13
|
+
<horizontal>
|
|
14
|
+
<button caption=\"Open Selected Help About\" action=\"runrwdtinkerversion\"/>
|
|
15
|
+
</horizontal>
|
|
16
|
+
</window>
|
|
17
|
+
"
|
|
@@ -154,6 +154,12 @@ Steven Gibson
|
|
|
154
154
|
steven@superant.com
|
|
155
155
|
|
|
156
156
|
== Changelog
|
|
157
|
+
Version 1.01
|
|
158
|
+
changed schedule configuration screen
|
|
159
|
+
updated for rwdtinker 1.66
|
|
160
|
+
new helpabout
|
|
161
|
+
new documents list
|
|
162
|
+
|
|
157
163
|
Version 1.00
|
|
158
164
|
fixed sync download
|
|
159
165
|
added more unit tests
|
data/rwd_files/HowTo_Tinker.txt
CHANGED
|
@@ -227,6 +227,16 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
|
|
|
227
227
|
Thanks, Steven Gibson
|
|
228
228
|
|
|
229
229
|
== Changelog
|
|
230
|
+
Version 1.66
|
|
231
|
+
Fixed directory layout
|
|
232
|
+
increased size of config edit screen
|
|
233
|
+
|
|
234
|
+
Version 1.65
|
|
235
|
+
Changed documents listing screen - now using hash
|
|
236
|
+
Changed helpabout screen - now using hash
|
|
237
|
+
added more lines for config edit
|
|
238
|
+
added help about to back window
|
|
239
|
+
|
|
230
240
|
Version 1.64
|
|
231
241
|
fixed jump with no location
|
|
232
242
|
|
|
File without changes
|
data/rwdconfig.dist
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
##VERSION:1.
|
|
1
|
+
##VERSION:1.66
|
|
2
2
|
# rwdtinker core configuration file
|
|
3
3
|
##NAME: ConfigLocation:0
|
|
4
4
|
ConfigLocation=""
|
|
@@ -9,4 +9,11 @@ $testharnessarray = ["rwdtinker_all_tests"]
|
|
|
9
9
|
##NAME:TestNow:0
|
|
10
10
|
TestNow=false # turning this on will run the unit tests
|
|
11
11
|
##NAME:$testharness:0
|
|
12
|
-
$testharness=true
|
|
12
|
+
$testharness=true
|
|
13
|
+
##NAME:$tinkerhelpaboutarray:0
|
|
14
|
+
$tinkerhelpaboutarray = ["Tinker"]
|
|
15
|
+
##NAME:$tinkerdocumentsarray:0
|
|
16
|
+
$tinkerdocumentsarray = ["Readme.txt"]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#just a test
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/usr/bin/ruby -w
|
|
2
|
+
#***********************************************************************
|
|
3
|
+
#* Rwd/Tinker -- A Ruby program for the RudyWebDialog.
|
|
4
|
+
#* Copyright (c) 2004, 2005 by Steven Gibson. All Rights Reserved.
|
|
5
|
+
#* at "steven@superant.com".
|
|
6
|
+
#***********************************************************************/
|
|
7
|
+
$progdir =""
|
|
8
|
+
require 'fileutils'
|
|
9
|
+
|
|
10
|
+
DistroName = "rwdwaddresses-1.04"
|
|
11
|
+
|
|
12
|
+
$progdir = File::expand_path( File.dirname(__FILE__))
|
|
13
|
+
results = " "
|
|
14
|
+
|
|
15
|
+
puts "creating #{DistroName} applet distribution files "
|
|
16
|
+
sourcedir = "../rwdaddresses/"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
fileName = "installed/" + "#{DistroName}" + ".inf"
|
|
20
|
+
|
|
21
|
+
fd = File.open(fileName,"r")
|
|
22
|
+
@@displaytext = " "
|
|
23
|
+
temp = fd.readline.chomp
|
|
24
|
+
while ! fd.eof?
|
|
25
|
+
|
|
26
|
+
@@displaytext = fd.readline.chomp
|
|
27
|
+
lastslash = @@displaytext.rindex('/')
|
|
28
|
+
@@pathaddress = @@displaytext.slice(0..lastslash)
|
|
29
|
+
puts @@pathaddress
|
|
30
|
+
sourcefile = sourcedir + @@displaytext
|
|
31
|
+
puts @@displaytext
|
|
32
|
+
FileUtils.mkdir_p(@@pathaddress)
|
|
33
|
+
@@copycommand = "cp -v -r -f -a #{sourcefile} #{@@pathaddress}"
|
|
34
|
+
|
|
35
|
+
puts `#{@@copycommand}`
|
|
36
|
+
end
|
|
37
|
+
fd.close
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
ListingCommand = "ls -1 -s -h *"
|
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.8.8
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: rwdschedule
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: "1.
|
|
7
|
-
date: 2005-04-
|
|
6
|
+
version: "1.01"
|
|
7
|
+
date: 2005-04-19
|
|
8
8
|
summary: rwdschedule is an calendar application using rwdtinker and RubyWebDialogs.
|
|
9
9
|
require_paths:
|
|
10
10
|
- "."
|
|
@@ -43,6 +43,9 @@ files:
|
|
|
43
43
|
- code/01rwdcore/rundocuments.rb
|
|
44
44
|
- code/01rwdcore/runhelpabout.rb
|
|
45
45
|
- code/01rwdcore/runeditconfiguration.rb
|
|
46
|
+
- code/01rwdcore/setuptinkerdocuments.rb
|
|
47
|
+
- code/01rwdcore/setuphelpaboutoptions.rb
|
|
48
|
+
- code/01rwdcore/runopentinkerdocument.rb
|
|
46
49
|
- code/superant.com.rwdtinkerbackwindow/controlclient.rb
|
|
47
50
|
- code/superant.com.rwdtinkerbackwindow/diagnostictab.rb
|
|
48
51
|
- code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb
|
|
@@ -101,6 +104,7 @@ files:
|
|
|
101
104
|
- code/superant.com.schedule/exporticseventrecord.rb
|
|
102
105
|
- code/superant.com.schedule/jumplinkupdate.rb
|
|
103
106
|
- code/superant.com.schedule/test_cases.rb
|
|
107
|
+
- code/superant.com.schedule/rwdtinkerversion.rb
|
|
104
108
|
- configuration/tinkerwin2variables.dist
|
|
105
109
|
- configuration/rwdtinker.dist
|
|
106
110
|
- configuration/language.dist
|
|
@@ -128,7 +132,6 @@ files:
|
|
|
128
132
|
- extras/icalendar/component/event.rb
|
|
129
133
|
- extras/icalendar/component/alarm.rb
|
|
130
134
|
- extras/icalendar/component/timezone.rb
|
|
131
|
-
- schedules/archive
|
|
132
135
|
- schedules/20050120T09.ics
|
|
133
136
|
- schedules/Enterprise.ics
|
|
134
137
|
- schedules/US Holidays.ics
|
|
@@ -136,6 +139,7 @@ files:
|
|
|
136
139
|
- schedules/200505may02a.sch
|
|
137
140
|
- schedules/200502february20.ics
|
|
138
141
|
- schedules/200502february26.ics
|
|
142
|
+
- schedules/archive/sample.archive
|
|
139
143
|
- ev/browser.rb
|
|
140
144
|
- ev/ftools.rb
|
|
141
145
|
- ev/net.rb
|
|
@@ -159,32 +163,24 @@ files:
|
|
|
159
163
|
- gui/frontwindow0/superant.com.rwdschedules/gl6editrecord.rwd
|
|
160
164
|
- gui/frontwindow0/superant.com.rwdschedules/gl8contactutilities.rwd
|
|
161
165
|
- gui/frontwindow0/superant.com.tinkercalendar/hl9calendar.rwd
|
|
162
|
-
- gui/frontwindowselectionbegin/selectiontabbegin/
|
|
166
|
+
- gui/frontwindowselectionbegin/selectiontabbegin/00selectiontabbegin.rwd
|
|
163
167
|
- gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab
|
|
164
168
|
- gui/frontwindowselections/superant.com.rwdtinkerwin2selectiontab/jumplinkcommands.rwd
|
|
165
|
-
- gui/frontwindowselectionzend/viewselectionzend/
|
|
166
|
-
- gui/
|
|
167
|
-
- gui/frontwindowtdocumentbegin/superant.com.documentsbegin/tt0documentbegin.rwd
|
|
169
|
+
- gui/frontwindowselectionzend/viewselectionzend/zzdocumentbegin.rwd
|
|
170
|
+
- gui/frontwindowselectionzend/viewselectionzend/wwselectionend.rwd
|
|
168
171
|
- gui/frontwindowtdocuments/superant.com.documents
|
|
169
|
-
- gui/frontwindowtdocuments/superant.com.
|
|
170
|
-
- gui/frontwindowtdocuments/superant.com.rwdscheduledocument
|
|
171
|
-
- gui/frontwindowtdocuments/superant.com.documents/uu5documents.rwd
|
|
172
|
-
- gui/frontwindowtdocuments/superant.com.tinkerwin2documents/uu5documents.rwd
|
|
173
|
-
- gui/frontwindowtdocuments/superant.com.rwdscheduledocument/uu8doc_rwdschedule.rwd
|
|
174
|
-
- gui/frontwindowtdocumentzend/superant.com.documentsend
|
|
175
|
-
- gui/frontwindowtdocumentzend/superant.com.documentsend/ww0documentend.rwd
|
|
176
|
-
- gui/frontwindowz1end/frontwindowend/xx0rwdfirsttab.rwd
|
|
172
|
+
- gui/frontwindowtdocuments/superant.com.documents/tinkerdocuments.rwd
|
|
177
173
|
- gui/helpaboutbegin/superant.com.helpaboutbegin
|
|
178
|
-
- gui/helpaboutbegin/superant.com.helpaboutbegin/
|
|
174
|
+
- gui/helpaboutbegin/superant.com.helpaboutbegin/zzdocumentend.rwd
|
|
175
|
+
- gui/helpaboutbegin/superant.com.helpaboutbegin/zzzrwdlasttab.rwd
|
|
176
|
+
- gui/helpaboutbegin/superant.com.helpaboutbegin/zzzzhelpscreenstart.rwd
|
|
179
177
|
- gui/helpaboutinstalled/superant.com.tinkerhelpabout
|
|
180
|
-
- gui/helpaboutinstalled/superant.com.
|
|
181
|
-
- gui/helpaboutinstalled/superant.com.tinkerhelpabout/1appname.rwd
|
|
182
|
-
- gui/helpaboutinstalled/superant.com.tinkerhelpabout/3copyright.rwd
|
|
183
|
-
- gui/helpaboutinstalled/superant.com.tinkerhelpabout/5version.rwd
|
|
184
|
-
- gui/helpaboutinstalled/superant.com.schedulehelpabout/1rwdschedule.rwd
|
|
185
|
-
- gui/helpaboutinstalled/superant.com.schedulehelpabout/5version.rwd
|
|
178
|
+
- gui/helpaboutinstalled/superant.com.tinkerhelpabout/helpabouttab.rwd
|
|
186
179
|
- gui/helpaboutzend/superant.com.helpaboutend
|
|
187
180
|
- gui/helpaboutzend/superant.com.helpaboutend/helpscreenend.rwd
|
|
181
|
+
- gui/helpaboutzend/superant.com.helpaboutend/zzzzhelpscreen2end.rwd
|
|
182
|
+
- gui/helpaboutzend/superant.com.helpaboutend/zzzzhelpabout2.rwd
|
|
183
|
+
- gui/helpaboutzend/superant.com.helpaboutend/zhelpscreenstart2.rwd
|
|
188
184
|
- gui/tinkerbackwindows/superant.com.tinkerbackwindow
|
|
189
185
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow
|
|
190
186
|
- gui/tinkerbackwindows/superant.com.versionwindow
|
|
@@ -202,6 +198,7 @@ files:
|
|
|
202
198
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow/1appname.rwd
|
|
203
199
|
- gui/tinkerbackwindows/superant.com.tinkerhelpwindow/9end.rwd
|
|
204
200
|
- gui/tinkerbackwindows/superant.com.versionwindow/1appname.rwd
|
|
201
|
+
- gui/tinkerbackwindows/superant.com.versionwindow/helpaboutwindow.rwd
|
|
205
202
|
- gui/tinkerbackwindows/superant.com.rwdschedulebackwindow/1appname.rwd
|
|
206
203
|
- gui/tinkerbackwindows/superant.com.rwdschedulebackwindow/20downloadftp.rwd
|
|
207
204
|
- gui/tinkerbackwindows/superant.com.rwdschedulebackwindow/67viewconfiguration.rwd
|
|
@@ -222,8 +219,8 @@ files:
|
|
|
222
219
|
- rwd_files/rdoc-style.css
|
|
223
220
|
- rwd_files/Readme.txt
|
|
224
221
|
- rwd_files/rwdapplications.html
|
|
225
|
-
- rwd_files/rwdindex.html
|
|
226
222
|
- rwd_files/tinker.png
|
|
223
|
+
- rwd_files/RubyWebDialogs.html
|
|
227
224
|
- rwd_files/HowTo_Schedule.txt
|
|
228
225
|
- zips/rwdahelloworld-0.5.zip
|
|
229
226
|
- tests/RubyGauge.rb
|
|
@@ -232,6 +229,7 @@ files:
|
|
|
232
229
|
- tests/rdep.rb
|
|
233
230
|
- tests/checkdepends.sh
|
|
234
231
|
- tests/makedist.rb
|
|
232
|
+
- tests/makerwdwaddresses-1.04.rb
|
|
235
233
|
- Readme.txt
|
|
236
234
|
- init.rb
|
|
237
235
|
- rwdconfig.dist
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
$rwdguivar=
|
|
2
|
-
"
|
|
3
|
-
<row> <p align=\"left\">
|
|
4
|
-
<a href=HowTo_Tinker.txt>Howto_Tinker.txt</a></p></row>
|
|
5
|
-
<row> <p align=\"left\">
|
|
6
|
-
<a href=Readme.txt>Readme.txt</a></p></row>
|
|
7
|
-
<row> <p align=\"left\">
|
|
8
|
-
<a href=COPYING>GPL License </a></p></row>
|
|
9
|
-
<row> <p align=\"left\">
|
|
10
|
-
<a href=rwdapplications.html>more information about rwdapplications </a></p></row>
|
|
11
|
-
<row> <p align=\"left\">
|
|
12
|
-
<a href=rwdindex.html>Link to online information about RubyWebdialogs </a></p></row>"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|