rwdziprwdaschedule 0.93 → 0.97

Sign up to get free protection for your applications and to get access to all the features.
data/HowTo_Schedule.txt CHANGED
@@ -97,7 +97,13 @@ Click on "Event Utilites" tab
97
97
 
98
98
  It will display one month
99
99
 
100
-
100
+ == ics files
101
+
102
+ You can create an ics file
103
+ you can view a raw ics file
104
+ Rename ics File
105
+ Delete ics File
106
+
101
107
  == Using over a Network
102
108
 
103
109
  To serve the application over your local LAN,change the last line in the
@@ -147,7 +153,29 @@ Don't use the back-button of the browser! Strange and unpredictable things may a
147
153
  Steven Gibson
148
154
  steven@superant.com
149
155
 
150
- == Changelog
156
+ == Changelog
157
+ version 0.97
158
+ added rconftool use to update configuration files
159
+ changed applet removal to not use external rm
160
+ removed version number from directory name
161
+
162
+ version 0.96
163
+ added export ics record
164
+ added end time for ics create record
165
+
166
+ version 0.95
167
+ added ics file view tab
168
+ added ics file creation tab
169
+ ics file rename and deletion tab
170
+ reorganized schedule edit screen for future isc output
171
+ corrected typo on menu tab
172
+
173
+ version 0.94
174
+ added RwdSchedule Menu tab for easier navigation
175
+ wider text boxes for contact information
176
+ Improvement to context sensitive help
177
+ updated for rwdtinker 1.51 - finds available port and remote control
178
+
151
179
  version 0.93
152
180
  added some context sensitive help
153
181
  added edit config file and reload config variables
Binary file
data/rwdschedule.rb ADDED
@@ -0,0 +1,221 @@
1
+ = rwdschedule - for rwdtinker and RubyWebDialogs
2
+
3
+ rwdschedule is a simple little database
4
+
5
+ The GUI interface used is RubyWebDialogs
6
+
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/
8
+
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 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
+ There is a button to delete the update directory when finished
89
+
90
+ == Show Month
91
+
92
+ Click on "Show Month" tab
93
+ enter
94
+ Year: 2005
95
+ Month: 1
96
+ Click on show month
97
+
98
+ It will display one month
99
+
100
+ == ics files
101
+
102
+ You can create an ics file
103
+ you can view a raw ics file
104
+ Rename ics File
105
+ Delete ics File
106
+
107
+ == Using over a Network
108
+
109
+ To serve the application over your local LAN,change the last line in the
110
+ init.rb file to something like:
111
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
112
+ Then you should be able to login at: http://yourhostname:8080
113
+
114
+ You have to authorize yourself. The .rwuids example is a string with
115
+ the name of the authorization file, relative to the home directory
116
+ of the user that started the service. This file has to be in the form of:
117
+
118
+ user1 = password
119
+ user2 = pass phrase
120
+
121
+ Thus the file .rwduids might contain:
122
+
123
+ erik = secret
124
+
125
+ == Requirements:
126
+ RubyWebDialogs - I am using 0.0.11 2004-3-9
127
+
128
+ Ruby I am using version 1.8.2
129
+
130
+
131
+ I have tested this under Linux-Debian kernel 2.6.9
132
+
133
+ == PROBLEMS:
134
+ It is easy to type a date with a space after it. That will have a somewhat invisible space
135
+ in it.
136
+
137
+ don't type in the extension .sch
138
+
139
+ 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.
140
+
141
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
142
+
143
+
144
+ == contacts
145
+ For more information see:
146
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
147
+
148
+
149
+ For more information about RubyWebDialogs see:
150
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
151
+
152
+
153
+ Steven Gibson
154
+ steven@superant.com
155
+
156
+ == Changelog
157
+ version 0.97
158
+ added rconftool use to update configuration files
159
+ changed applet removal to not use external rm
160
+ removed version number from directory name
161
+
162
+ version 0.96
163
+ added export ics record
164
+ added end time for ics create record
165
+
166
+ version 0.95
167
+ added ics file view tab
168
+ added ics file creation tab
169
+ ics file rename and deletion tab
170
+ reorganized schedule edit screen for future isc output
171
+ corrected typo on menu tab
172
+
173
+ version 0.94
174
+ added RwdSchedule Menu tab for easier navigation
175
+ wider text boxes for contact information
176
+ Improvement to context sensitive help
177
+ updated for rwdtinker 1.51 - finds available port and remote control
178
+
179
+ version 0.93
180
+ added some context sensitive help
181
+ added edit config file and reload config variables
182
+ change to tinker context help script
183
+ updated for rwdtinker 1.47
184
+ factored month calendar display - should be more readable
185
+ fixed l10n calls for calendar for Dutch
186
+ added archive function for old events
187
+
188
+ version 0.92
189
+ Added delete update files function in sync tab
190
+
191
+ version 0.91
192
+ updated for rwdtinker 1.44 - refactored gui files
193
+ Changed gui directory names - more like Java package titles
194
+
195
+ version 0.9
196
+ added back window for sync tasks
197
+ added configuration viewing
198
+ added ftp file download for sync
199
+ added ftp file upload for sync
200
+ add update files and schedule sync compares
201
+
202
+ version 0.8
203
+ updated for rwdtinker 1.42 - semi-live updates
204
+
205
+ version 0.7
206
+ updated for rwdtinker 1.4
207
+ addition to documentation
208
+
209
+ version 0.6
210
+ updated for rwdtinker 1.3
211
+
212
+ version 0.5
213
+ added edit commands to change event record
214
+ Rename event
215
+ Delete event
216
+ changed order of event list - descending = oldest at top
217
+
218
+ version 0.4
219
+ added configuration file with location of schedules directory
220
+ add date selection to view event tab
221
+ updated to version 1.0 of rwdtinker
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.3
2
+ rubygems_version: 0.8.6
3
3
  specification_version: 1
4
4
  name: rwdziprwdaschedule
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.93"
7
- date: 2005-02-08
8
- summary: rwdschedule is event book using rwdtinker and RubyWebDialogs. Requires rwdtinker
6
+ version: "0.97"
7
+ date: 2005-03-07
8
+ summary: rwdziprwdaschedule is a event schedule application using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.51
9
9
  require_paths:
10
10
  - "."
11
11
  email: steven@superant.com
12
12
  homepage: http://rubyforge.org/projects/rwdapplications/
13
13
  rubyforge_project: rwdapplications
14
- description: rwdschedule is an event book using rwdtinker and RubyWebDialogs. Requires rwdtinker
14
+ description: rwdziprwdaschedule is a event schedule application using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.51rwdcalc is calculator rwdtinker and RubyWebDialogs
15
15
  autorequire:
16
16
  default_executable:
17
17
  bindir: bin
@@ -26,15 +26,17 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
26
26
  platform: ruby
27
27
  authors: []
28
28
  files:
29
- - rwdaschedule-0.93.zip
29
+ - rwdaschedule-0.97.zip
30
30
  - HowTo_Schedule.txt
31
+ - rwdschedule.rb
31
32
  test_files: []
32
33
  rdoc_options:
33
34
  - "--main"
34
35
  - HowTo_Schedule.txt
35
- extra_rdoc_files: []
36
+ extra_rdoc_files:
37
+ - HowTo_Schedule.txt
36
38
  executables: []
37
39
  extensions: []
38
40
  requirements:
39
- - rwdtinker > 1.50
41
+ - rwdtinker > 1.51
40
42
  dependencies: []
Binary file