rwdschedule 0.8 → 0.9

Sign up to get free protection for your applications and to get access to all the features.
data/Readme.txt CHANGED
@@ -1,57 +1,175 @@
1
- rwdapplications are web brower applications
1
+ = rwdschedule - for rwdtinker and RubyWebDialogs
2
+
3
+ rwdschedule is a simple little database
2
4
 
3
5
  The GUI interface used is RubyWebDialogs
4
6
 
5
7
  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/
6
8
 
7
-
8
- Start the program by:
9
- changing to the directory and
10
- ruby init.rb
11
-
12
- Then point your web browser to:
13
- http://localhost:7705/
14
-
15
- Or to the port that shows on the console or in the config.cnf file
16
-
17
- Requirements:
9
+ == Quick Start
10
+ Start the program by typing
11
+ ruby init.rb
12
+
13
+ Then point your web browser to:
14
+ http://localhost:7705/
15
+
16
+ Then enter the event date you want to search for in the browser form and press Search.
17
+ 200412december1a
18
+ browser should fill with the event information.
19
+ To exit, press the x inside the browser window.
20
+
21
+
22
+ == How to Use the Schedule Book (rwdschedule)
23
+
24
+ There are two ways to add records to schedule book.
25
+
26
+ == Adding Records
27
+
28
+ 1. Use the "Edit Event" tab
29
+ The first field is the most important. It is the filename that
30
+ will be created. I use the event date starting with yearmonthday
31
+ 2005january11
32
+
33
+ The following lines for entry are for you to fill in as you want.
34
+ When you are finished press the Save Changes button
35
+
36
+ You use this same screen for editing an already saved event
37
+
38
+ 2. Manually add an entry for a event record
39
+ You can use a text editor to create a record
40
+ put information on separate lines. You can have as many lines as you want
41
+ name the file with starting with date and end with .nam
42
+ 2005january11 6 pm dinner party.nam
43
+
44
+ Save your file to the schedules/ subdirectory
45
+
46
+
47
+ == Viewing an schedule book entry:
48
+
49
+
50
+ Go to "View event" tab
51
+
52
+ Click on the list events button.
53
+
54
+ Click on the date you want
55
+
56
+ Then click the "Open" button
57
+
58
+ If it finds the record it will open it. It displays the record
59
+ as text under the "Open" button.
60
+
61
+
62
+ == Event Utilities
63
+
64
+ Click on "Event Utilites" tab
65
+
66
+ You can rename event filenames
67
+ You can delete events
68
+
69
+ == Sync for multiple computers
70
+
71
+ If you are like me, you have more than one system
72
+ I use rwdTinker at home on my Linux laptop
73
+ at work I use it on XP
74
+ on the go I use rwdtinker on my Zaurus PDA
75
+ So I am adding schedule events on different machines.
76
+ There is not a function to help sync the separate systems
77
+
78
+ in "Selection Panel" click on "Open Schedule Sync Window"
79
+
80
+ First you need your ftp details set in the
81
+ configuration/rwdschedule.cnf file
82
+
83
+ you can upload your events from your local schedules directory to the ftp site
84
+ you can download events from the ftp site to your local updates directory
85
+ you can perform a sync which finds remote events and adds them to your local
86
+ schedules directory
87
+
88
+ == Show Month
89
+
90
+ Click on "Show Month" tab
91
+ enter
92
+ Year: 2005
93
+ Month: 1
94
+ Click on show month
95
+
96
+ It will display one month
97
+
98
+
99
+ == Using over a Network
100
+
101
+ To serve the application over your local LAN,change the last line in the
102
+ init.rb file to something like:
103
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
104
+ Then you should be able to login at: http://yourhostname:8080
105
+
106
+ You have to authorize yourself. The .rwuids example is a string with
107
+ the name of the authorization file, relative to the home directory
108
+ of the user that started the service. This file has to be in the form of:
109
+
110
+ user1 = password
111
+ user2 = pass phrase
112
+
113
+ Thus the file .rwduids might contain:
114
+
115
+ erik = secret
116
+
117
+ == Requirements:
18
118
  RubyWebDialogs - I am using 0.0.11 2004-3-9
19
- This package you downloaded should have a runtime version of
20
- the needed rubywebdialog files
21
119
 
22
120
  Ruby I am using version 1.8.2
23
121
 
24
- I have tested this under Linux-Debian kernel 2.6.9
25
122
 
26
- Operation:
27
- The code files reside in the code directory and are combined before
28
- the main Class is loaded
123
+ I have tested this under Linux-Debian kernel 2.6.9
29
124
 
30
- The rwd files in gui are combined before the gui is activated
125
+ == PROBLEMS:
126
+ It is easy to type a date with a space after it. That will have a somewhat invisible space
127
+ in it.
31
128
 
32
- Trouble shooting:
129
+ don't type in the extension .sch
33
130
 
34
- untar the file
35
- tar zxvf rwdapplication-x.y.tar.gz
36
- then cd to the directory
37
- cd rwdapplication-x.y
38
- then start the init.rb program file
39
- ruby init.rb
131
+ Closing the browser doesn't terminate the application. You have to use the application's close-button And terminating the application doesn't terminate the application when running in network mode. You just log out.
40
132
 
133
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
41
134
 
42
- If the program is not working, try looking at the ev subdirectory. That is where
43
- the runtime of rubywebdialogs are.
44
135
 
45
- for long term installation, I would suggest putting most files in a lib directory
46
- like /usr/lib/rwdshell
47
- then make a writable directory the local directory for command files to be written
48
- like ~/rwdshell
136
+ == contacts
137
+ For more information see:
138
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
49
139
 
50
140
 
51
- Closing the browser doesn't terminate the application. You have to use the application's close-button And terminating the application doesn't terminate the application when running in network mode. You just log out.
141
+ For more information about RubyWebDialogs see:
142
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
52
143
 
53
- Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
54
144
 
55
145
  Steven Gibson
56
- stevengibson@superant.com
57
- http://rwdapplications.rubyforge.org/
146
+ steven@superant.com
147
+
148
+ == Changelog
149
+ version 0.9
150
+ added back window for sync tasks
151
+ added configuration viewing
152
+ added ftp file download for sync
153
+ added ftp file upload for sync
154
+ add update files and schedule sync compares
155
+
156
+ version 0.8
157
+ updated for rwdtinker 1.42 - semi-live updates
158
+
159
+ version 0.7
160
+ updated for rwdtinker 1.4
161
+ addition to documentation
162
+
163
+ version 0.6
164
+ updated for rwdtinker 1.3
165
+
166
+ version 0.5
167
+ added edit commands to change event record
168
+ Rename event
169
+ Delete event
170
+ changed order of event list - descending = oldest at top
171
+
172
+ version 0.4
173
+ added configuration file with location of schedules directory
174
+ add date selection to view event tab
175
+ updated to version 1.0 of rwdtinker
@@ -0,0 +1,34 @@
1
+ def downloadrwdschedulefiles
2
+ require 'net/ftp'
3
+ BasicSocket.do_not_reverse_lookup = true
4
+ @rwdscheduleftpdisplays = ""
5
+ begin
6
+ ftp = Net::FTP::new($rwdschedule_ftpsite)
7
+ @rwdscheduleftpdisplay = "files downloaded" + "\n"
8
+ ftp.debug_mode = false
9
+ ftp.login($rwdschedule_ftplogin, $rwdschedule_ftppassword)
10
+ ftp.chdir($rwdschedule_ftpdirectory)
11
+ print "I'm in the directory ", ftp.pwd(), "\n"
12
+ schfiles = ftp.nlst($rwdschedule_ftpdirectory)
13
+ schfiles.each do |x|
14
+ #adjust the filters to the files you want to see...
15
+ if(!test(?d,x))
16
+ if x =~ /sch/
17
+ lastslash = x.rindex('/')+1
18
+ newstring = x.slice!(lastslash..256)
19
+ localupdatefile = File.join($rwdschedule_updatedirectory, "#{newstring}")
20
+ ftp.getbinaryfile("#{newstring}" , localupdatefile )
21
+ @rwdscheduleftpdisplay = @rwdscheduleftpdisplay + newstring + "\n"
22
+ end
23
+ end
24
+
25
+ end
26
+ ftp.close
27
+
28
+ rescue
29
+
30
+ if ftp
31
+ ftp.close
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,9 @@
1
+ # Application RwdAddresses orginally (c) 2004 Steven Gibson under GPL.
2
+ # This application is a contact book
3
+ # For more information about see http://www.rubyforge.net/projects/rwdapplications
4
+
5
+ # call the window
6
+ def runrwdschedulesyncbackwindow
7
+ @rwd_window = "rwdschedulesyncwindow"
8
+ end
9
+
@@ -0,0 +1,30 @@
1
+ def syncrwdscheduledata
2
+ require 'fileutils'
3
+ @rwdschedulesyncresult = ""
4
+ begin
5
+
6
+ @rwdschedulesyncresult = "updating local files" + "\n"
7
+ Dir.chdir($progdir)
8
+
9
+ localfileListarray = Dir.new($rwdschedule_directory).entries.sort.delete_if { |tmpfile| ! (tmpfile =~ /sch$/) }
10
+ remotefileListarray = Dir.new($rwdschedule_updatedirectory ).entries.sort.delete_if { |tmpfile| ! (tmpfile =~ /sch$/) }
11
+
12
+ tempupdatefilelistarray = remotefileListarray - localfileListarray
13
+
14
+ if tempupdatefilelistarray
15
+ tempupdatefilelistarray.each do |temp|
16
+ tmpfilenametosync = File.join($rwdschedule_updatedirectory,temp)
17
+ tmpfilenamecopied = File.join($rwdschedule_directory,temp)
18
+ FileUtils.cp( tmpfilenametosync, tmpfilenamecopied)
19
+ @rwdschedulesyncresult = @rwdschedulesyncresult + temp + "\n"
20
+
21
+ end
22
+ end
23
+
24
+
25
+ rescue
26
+
27
+
28
+ print "sync error"
29
+ end
30
+ end
@@ -0,0 +1,30 @@
1
+ def uploadrwdschedulefiles
2
+ require 'net/ftp'
3
+ BasicSocket.do_not_reverse_lookup = true
4
+ @rwdscheduleftpdisplays = ""
5
+ begin
6
+ ftp = Net::FTP::new($rwdschedule_ftpsite)
7
+ @rwdscheduleftpdisplay = "files uploaded" + "\n"
8
+
9
+ fileListarray = Dir.new($rwdschedule_directory).entries.sort.delete_if { |tmpfile| ! (tmpfile =~ /sch$/) }
10
+ if fileListarray
11
+ ftp.debug_mode = false
12
+ ftp.login($rwdschedule_ftplogin, $rwdschedule_ftppassword)
13
+ ftp.chdir($rwdschedule_ftpdirectory)
14
+ print "I'm in the directory ", ftp.pwd(), "\n"
15
+ fileListarray.each do |temp|
16
+ tmpfilenametoupload = File.join($rwdschedule_directory,temp)
17
+ ftp.puttextfile(tmpfilenametoupload , temp)
18
+ @rwdscheduleftpdisplay = @rwdscheduleftpdisplay + temp + "\n"
19
+ end
20
+ end
21
+ ftp.close
22
+
23
+ rescue
24
+
25
+ if ftp
26
+ ftp.close
27
+ end
28
+ print "ftp error"
29
+ end
30
+ end
File without changes
@@ -0,0 +1,21 @@
1
+ def viewrwdschedulesconfiguration
2
+ require 'fileutils'
3
+ begin # exception trapped block
4
+
5
+ Dir.chdir($progdir)
6
+ rwdschedulesconfigurationfile = File.join( "configuration", "rwdschedule.cnf" )
7
+ if File.exist?(rwdschedulesconfigurationfile)
8
+ fd = File.open(rwdschedulesconfigurationfile,"r")
9
+ @rwdschedulesconfigurationtext = " "
10
+ while ! fd.eof?
11
+ @rwdschedulesconfigurationtext = fd.read
12
+ end
13
+ fd.close
14
+ else
15
+ @rwdschedulesconfigurationtext = "File error"
16
+ end
17
+ rescue SystemCallError, StandardError
18
+ $stderr.print "system call error: " + $!
19
+ @rwdschedulesconfigurationtext = "File error"
20
+ end # exception rescue
21
+ end
@@ -1,2 +1,7 @@
1
1
 
2
2
  $rwdschedule_directory = "schedules"
3
+ $rwdschedule_ftpsite = "ftp.yourpersonal.org"
4
+ $rwdschedule_ftplogin = "anonymous@yourlogin"
5
+ $rwdschedule_ftppassword = "anonymous@yourpassword"
6
+ $rwdschedule_ftpdirectory = "/incoming/rwdschedules/"
7
+ $rwdschedule_updatedirectory = "updates"
@@ -1,3 +1,3 @@
1
1
 
2
- RwdScheduleVersion = "0.8"
2
+ RwdScheduleVersion = "0.9"
3
3
 
@@ -0,0 +1,12 @@
1
+ $rwdguivar=
2
+ "
3
+ <row> <p></row>
4
+
5
+ <horizontal>
6
+
7
+ <button caption=\"Open Schedule Sync Window\" action=\"runrwdschedulesyncbackwindow\"/>
8
+
9
+
10
+ </horizontal>"
11
+
12
+
@@ -0,0 +1,5 @@
1
+ $rwdguivar=
2
+ "
3
+ <window name = \"rwdschedulesyncwindow\" title=\"Rwdschedules Sync Window\">
4
+
5
+ <tabs>"
@@ -0,0 +1,41 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdschedulesynctasks\" caption=\"Rwdschedule Sync Functions\">
4
+
5
+
6
+ <table>
7
+ <row> <p align=\"right\"> </row>
8
+ <row> <p align=\"right\">Upload schedule events to a ftp server to sync </row>
9
+
10
+ <row> <p align=\"right\">Set your ftp details in the configuration file </row>
11
+
12
+
13
+ </table>
14
+
15
+ <horizontal>
16
+ <button caption=\"Download schedule files from ftp site\" action=\"downloadrwdschedulefiles\"/>
17
+ <button caption=\"Upload schedule files from ftp site\" action=\"uploadrwdschedulefiles\"/>
18
+
19
+ </horizontal>
20
+ <p>%rwdscheduleftpdisplay%</p>
21
+
22
+ <table>
23
+ <row> <p align=\"right\"> </row>
24
+
25
+ </table>
26
+
27
+
28
+ <horizontal>
29
+ <button caption=\"Sync Local data with downloaded data\" action=\"syncrwdscheduledata\"/>
30
+
31
+
32
+ </horizontal>
33
+
34
+
35
+
36
+ <p>%rwdschedulesyncresult%</p>
37
+
38
+ </tab>"
39
+
40
+
41
+
@@ -0,0 +1,16 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"viewscheduleftpconfiguration\" caption=\"Rwdschedules ftp Configuration\">
4
+ <table>
5
+
6
+
7
+ </table>
8
+
9
+ <horizontal>
10
+ <button caption=\"View Configuration File\" action=\"viewrwdschedulesconfiguration\"/>
11
+ </horizontal>
12
+ <p>%rwdschedulesconfigurationtext%</p>
13
+ </tab>"
14
+
15
+
16
+
@@ -0,0 +1,33 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"diagnostictab\" caption=\"Diagnostic Tab\">
4
+ <horizontal>
5
+ <button caption=\"View Ruby Version\" action=\"runrubyversion\"/>
6
+
7
+
8
+ </horizontal>
9
+ <p>%rubyversion%</p>
10
+
11
+
12
+ <table>
13
+ <row> <p> </row>
14
+
15
+ </table>
16
+
17
+ <horizontal>
18
+ <button caption=\"view platform\" action=\"runviewplatform\"/>
19
+
20
+ </horizontal>
21
+
22
+ <p>%platformdisplay%</p>
23
+ <horizontal>
24
+ <button caption=\"View rwdtinker Version\" action=\"rwdtinkerversiondiagnostic\"/>
25
+
26
+ </horizontal>
27
+
28
+ <p>%rwdtinkerversionreturn%</p>
29
+
30
+ </tab>"
31
+
32
+
33
+
@@ -0,0 +1,11 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"backone\" caption=\"Back Tab\">
4
+
5
+ <row> You can return to the previous window</row>
6
+ <row><p> </row>
7
+ <row><p> </row>
8
+ <button caption=\"Return to top menu\" action=\"main\"/>
9
+
10
+ </tab>"
11
+
@@ -0,0 +1,6 @@
1
+ $rwdguivar=
2
+ "
3
+ </tabs>
4
+ </window>"
5
+
6
+
@@ -66,7 +66,24 @@ Click on "Event Utilites" tab
66
66
  You can rename event filenames
67
67
  You can delete events
68
68
 
69
-
69
+ == Sync for multiple computers
70
+
71
+ If you are like me, you have more than one system
72
+ I use rwdTinker at home on my Linux laptop
73
+ at work I use it on XP
74
+ on the go I use rwdtinker on my Zaurus PDA
75
+ So I am adding schedule events on different machines.
76
+ There is not a function to help sync the separate systems
77
+
78
+ in "Selection Panel" click on "Open Schedule Sync Window"
79
+
80
+ First you need your ftp details set in the
81
+ configuration/rwdschedule.cnf file
82
+
83
+ you can upload your events from your local schedules directory to the ftp site
84
+ you can download events from the ftp site to your local updates directory
85
+ you can perform a sync which finds remote events and adds them to your local
86
+ schedules directory
70
87
 
71
88
  == Show Month
72
89
 
@@ -129,6 +146,13 @@ Steven Gibson
129
146
  steven@superant.com
130
147
 
131
148
  == Changelog
149
+ version 0.9
150
+ added back window for sync tasks
151
+ added configuration viewing
152
+ added ftp file download for sync
153
+ added ftp file upload for sync
154
+ add update files and schedule sync compares
155
+
132
156
  version 0.8
133
157
  updated for rwdtinker 1.42 - semi-live updates
134
158
 
@@ -0,0 +1,8 @@
1
+ 6:00 am
2
+ Blanche b-day
3
+
4
+
5
+
6
+
7
+
8
+
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
3
3
  specification_version: 1
4
4
  name: rwdschedule
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.8"
7
- date: 2005-01-14
6
+ version: "0.9"
7
+ date: 2005-01-16
8
8
  summary: rwdschedule is an calendar application using rwdtinker and RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -39,15 +39,18 @@ files:
39
39
  - code/xb1rwdtinkerbackwindow/rwdtinkerwin2version.rb
40
40
  - code/xb1rwdtinkerbackwindow/listinstalledfiles.rb
41
41
  - code/gg0schedules/deleteeventrecord.rb
42
- - code/gg0schedules/gg0viewevent.rb
43
- - code/gg0schedules/gg9saveeventchanges.rb
44
- - code/gg0schedules/gh5listdaterecords.rb
45
- - code/gg0schedules/gl7clearscreendisplay.rb
46
- - code/gg0schedules/gm3deletecontactrecord.rb
42
+ - code/gg0schedules/listeventdates.rb
43
+ - code/gg0schedules/cleareventscreendisplay.rb
44
+ - code/gg0schedules/downloadrwdschedulefiles.rb
45
+ - code/gg0schedules/runrwdschedulesyncbackwindow.rb
47
46
  - code/gg0schedules/loadeventrecord.rb
48
47
  - code/gg0schedules/renameeventdata.rb
49
- - code/gg0schedules/rwdaddresseshelpabout.rb
48
+ - code/gg0schedules/syncrwdschedule.rb
50
49
  - code/gg0schedules/rwdschedulehelpabout.rb
50
+ - code/gg0schedules/viewevent.rb
51
+ - code/gg0schedules/saveeventrecord.rb
52
+ - code/gg0schedules/uploadrwdschedulefiles.rb
53
+ - code/gg0schedules/viewrwdschedulesconfiguration.rb
51
54
  - code/gh9calendar/gh9calendar.rb
52
55
  - configuration/tinkerwin2.cnf
53
56
  - configuration/rwdtinkerversion.cnf
@@ -61,6 +64,7 @@ files:
61
64
  - extras/cal.rb
62
65
  - schedules/200501january23CharlotteB-Day.sch
63
66
  - schedules/200501january24jazzfuller.sch
67
+ - updates/200510october26a.sch
64
68
  - ev/sgml.rb
65
69
  - ev/xml.rb
66
70
  - ev/net.rb
@@ -118,9 +122,15 @@ files:
118
122
  - gui/uu8schedule/uu8doc_rwdschedule.rwd
119
123
  - gui/yh1helpschedule/1rwdschedule.rwd
120
124
  - gui/yh1helpschedule/5version.rwd
125
+ - gui/ll6rwdschedulesyncselectiontab/rwdschedulessyncselectiontab.rwd
126
+ - gui/xb4rwdschedulesyncbackwindow/1appname.rwd
127
+ - gui/xb4rwdschedulesyncbackwindow/70rwddiagnostics.rwd
128
+ - gui/xb4rwdschedulesyncbackwindow/20downloadftp.rwd
129
+ - gui/xb4rwdschedulesyncbackwindow/80returntab.rwd
130
+ - gui/xb4rwdschedulesyncbackwindow/zvbackend.rwd
131
+ - gui/xb4rwdschedulesyncbackwindow/66viewconfiguration.rwd
121
132
  - installed/rwdtinkerwin2-0.5.inf
122
133
  - installed/rwdcalendar-0.5.inf
123
- - installed/rwdschedule-0.8.inf
124
134
  - installed/schedulesampledata1.inf
125
135
  - rwd_files/Readme.txt
126
136
  - rwd_files/rwdapplications.html
@@ -133,7 +143,6 @@ files:
133
143
  - zips/rwdrefreshacpi-0.4.zip
134
144
  - zips/rwdwcalc-0.4.zip
135
145
  - zips/rwdwshell-0.92.zip
136
- - zips/rwdaschedule-0.8.zip
137
146
  - zips/rwdhelloworld-0.4.zip
138
147
  - tests/totranslate.lang
139
148
  - tests/rwdtinkertestEN.rb
@@ -1,24 +0,0 @@
1
- # this method views an existing address record
2
- def deletecontactrecord
3
-
4
- require 'fileutils'
5
-
6
- if @a_viewnamedata
7
- $currentnametext = @a_viewnamedata
8
- end
9
-
10
- fileName = $addressfiles_directory + "/" + $currentnametext + ".nam"
11
- $stderr.print fileName
12
-
13
- begin # exception trapped block
14
-
15
- File.delete(fileName)
16
- fileNamephoto = $addressfiles_directory + "/" + $currentnametext + ".png"
17
- if File.exist?(fileNamephoto)
18
- File.delete(fileNamephoto)
19
- end
20
- rescue SystemCallError, StandardError
21
- $stderr.print "system call error: " + $!
22
- end # exception rescue
23
-
24
- end
@@ -1,14 +0,0 @@
1
- # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
2
- # This application is a framework for writing programs from RubyWebDialogs
3
- # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
- # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
-
6
- # return the version constant defined in the config file
7
- def runrwdaddressesversion
8
- @rwd_window = "applicationversion"
9
- @versionappnamedisplay = "RwdAddresses"
10
- @versioncopyrightdisplay = "(c) 2004 Steven Gibson "
11
- @versionnumberdisplay = "Version " + RwdAddressesVersion
12
-
13
- end
14
-
@@ -1,7 +0,0 @@
1
- # rwdschedule - applet to keep track of appointments
2
- code/gg0schedules
3
- configuration/gg1rwdschedule.cnf
4
- gui/en/gg0schedules
5
- gui/en/uu8schedule
6
- gui/en/yh1helpschedule
7
- rwd_files/HowTo_Schedule.txt
Binary file