rwdziprwdaschedule 0.93

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/HowTo_Schedule.txt +193 -0
  2. data/rwdaschedule-0.93.zip +0 -0
  3. metadata +40 -0
@@ -0,0 +1,193 @@
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
+
101
+ == Using over a Network
102
+
103
+ To serve the application over your local LAN,change the last line in the
104
+ init.rb file to something like:
105
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
106
+ Then you should be able to login at: http://yourhostname:8080
107
+
108
+ You have to authorize yourself. The .rwuids example is a string with
109
+ the name of the authorization file, relative to the home directory
110
+ of the user that started the service. This file has to be in the form of:
111
+
112
+ user1 = password
113
+ user2 = pass phrase
114
+
115
+ Thus the file .rwduids might contain:
116
+
117
+ erik = secret
118
+
119
+ == Requirements:
120
+ RubyWebDialogs - I am using 0.0.11 2004-3-9
121
+
122
+ Ruby I am using version 1.8.2
123
+
124
+
125
+ I have tested this under Linux-Debian kernel 2.6.9
126
+
127
+ == PROBLEMS:
128
+ It is easy to type a date with a space after it. That will have a somewhat invisible space
129
+ in it.
130
+
131
+ don't type in the extension .sch
132
+
133
+ 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.
134
+
135
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
136
+
137
+
138
+ == contacts
139
+ For more information see:
140
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
141
+
142
+
143
+ For more information about RubyWebDialogs see:
144
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
145
+
146
+
147
+ Steven Gibson
148
+ steven@superant.com
149
+
150
+ == Changelog
151
+ version 0.93
152
+ added some context sensitive help
153
+ added edit config file and reload config variables
154
+ change to tinker context help script
155
+ updated for rwdtinker 1.47
156
+ factored month calendar display - should be more readable
157
+ fixed l10n calls for calendar for Dutch
158
+ added archive function for old events
159
+
160
+ version 0.92
161
+ Added delete update files function in sync tab
162
+
163
+ version 0.91
164
+ updated for rwdtinker 1.44 - refactored gui files
165
+ Changed gui directory names - more like Java package titles
166
+
167
+ version 0.9
168
+ added back window for sync tasks
169
+ added configuration viewing
170
+ added ftp file download for sync
171
+ added ftp file upload for sync
172
+ add update files and schedule sync compares
173
+
174
+ version 0.8
175
+ updated for rwdtinker 1.42 - semi-live updates
176
+
177
+ version 0.7
178
+ updated for rwdtinker 1.4
179
+ addition to documentation
180
+
181
+ version 0.6
182
+ updated for rwdtinker 1.3
183
+
184
+ version 0.5
185
+ added edit commands to change event record
186
+ Rename event
187
+ Delete event
188
+ changed order of event list - descending = oldest at top
189
+
190
+ version 0.4
191
+ added configuration file with location of schedules directory
192
+ add date selection to view event tab
193
+ updated to version 1.0 of rwdtinker
Binary file
metadata ADDED
@@ -0,0 +1,40 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.3
3
+ specification_version: 1
4
+ name: rwdziprwdaschedule
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
9
+ require_paths:
10
+ - "."
11
+ email: steven@superant.com
12
+ homepage: http://rubyforge.org/projects/rwdapplications/
13
+ rubyforge_project: rwdapplications
14
+ description: rwdschedule is an event book using rwdtinker and RubyWebDialogs. Requires rwdtinker
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
25
+ version:
26
+ platform: ruby
27
+ authors: []
28
+ files:
29
+ - rwdaschedule-0.93.zip
30
+ - HowTo_Schedule.txt
31
+ test_files: []
32
+ rdoc_options:
33
+ - "--main"
34
+ - HowTo_Schedule.txt
35
+ extra_rdoc_files: []
36
+ executables: []
37
+ extensions: []
38
+ requirements:
39
+ - rwdtinker > 1.50
40
+ dependencies: []