damagecontrol 0.5.0 → 0.5.0.1391

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.
Files changed (173) hide show
  1. data/README +67 -11
  2. data/Rakefile +15 -6
  3. data/app/controllers/admin_controller.rb +0 -3
  4. data/app/controllers/application.rb +42 -163
  5. data/app/controllers/build_controller.rb +33 -0
  6. data/app/controllers/files_controller.rb +1 -1
  7. data/app/controllers/project_controller.rb +23 -65
  8. data/app/controllers/rails_ext.rb +247 -0
  9. data/app/controllers/rscm_ext.rb +52 -0
  10. data/app/helpers/build_helper.rb +2 -0
  11. data/app/views/build/email.rhtml +18 -0
  12. data/app/views/build/status.rhtml +20 -0
  13. data/app/views/build/tests.rhtml +2 -0
  14. data/app/views/layouts/{rscm.rhtml → default.rhtml} +10 -4
  15. data/app/views/project/_changesets_list.rhtml +2 -2
  16. data/app/views/project/_cvs.rhtml +4 -5
  17. data/app/views/project/_project.rhtml +9 -9
  18. data/app/views/project/_select_pane.rhtml +26 -0
  19. data/app/views/project/_tab_pane.rhtml +23 -0
  20. data/app/views/project/changeset.rhtml +35 -0
  21. data/app/views/project/view.rhtml +18 -32
  22. data/app/views/setup/welcome.rhtml +118 -0
  23. data/config/database.yml +20 -20
  24. data/config/environment.rb +66 -60
  25. data/config/environments/development.rb +3 -2
  26. data/config/environments/production.rb +3 -2
  27. data/config/environments/test.rb +3 -2
  28. data/config/routes.rb +15 -0
  29. data/lib/damagecontrol/app.rb +11 -40
  30. data/lib/damagecontrol/build.rb +50 -8
  31. data/lib/damagecontrol/directories.rb +7 -6
  32. data/lib/damagecontrol/poller.rb +11 -20
  33. data/lib/damagecontrol/project.rb +83 -16
  34. data/lib/damagecontrol/publisher/ambient_orb.rb +16 -0
  35. data/lib/damagecontrol/publisher/archive.rb +16 -0
  36. data/lib/damagecontrol/publisher/base.rb +25 -0
  37. data/lib/damagecontrol/publisher/build_duration.rb +16 -0
  38. data/lib/damagecontrol/publisher/email.rb +59 -0
  39. data/lib/damagecontrol/publisher/execute.rb +49 -0
  40. data/lib/damagecontrol/publisher/ftp.rb +16 -0
  41. data/lib/damagecontrol/publisher/growl.rb +44 -0
  42. data/lib/damagecontrol/publisher/irc.rb +31 -0
  43. data/lib/damagecontrol/publisher/jabber.rb +68 -0
  44. data/lib/damagecontrol/publisher/scp.rb +16 -0
  45. data/lib/damagecontrol/publisher/x10cm11a.rb +17 -0
  46. data/lib/damagecontrol/publisher/x10cm17a.rb +17 -0
  47. data/lib/damagecontrol/publisher/yahoo.rb +16 -0
  48. data/lib/damagecontrol/standard_persister.rb +2 -2
  49. data/lib/damagecontrol/tracker.rb +48 -6
  50. data/lib/damagecontrol/visitor/rss_writer.rb +1 -1
  51. data/lib/damagecontrol/visitor/yaml_persister.rb +10 -1
  52. data/public/404.html +5 -5
  53. data/public/500.html +5 -5
  54. data/public/dispatch.cgi +2 -2
  55. data/public/dispatch.fcgi +1 -1
  56. data/public/dispatch.rb +2 -2
  57. data/public/images/growlicon.png +0 -0
  58. data/public/images/megaphone.png +0 -0
  59. data/public/images/monotone-logo.png +0 -0
  60. data/public/images/publisher/ambient_orb.png +0 -0
  61. data/public/images/publisher/build_duration.png +0 -0
  62. data/public/images/publisher/email.png +0 -0
  63. data/public/images/publisher/execute.png +0 -0
  64. data/public/images/publisher/growl.png +0 -0
  65. data/public/images/publisher/irc.png +0 -0
  66. data/public/images/publisher/jabber.png +0 -0
  67. data/public/images/publisher/x10cm11a.png +0 -0
  68. data/public/images/publisher/x10cm17a.png +0 -0
  69. data/public/images/publisher/yahoo.png +0 -0
  70. data/public/index.html +70 -1
  71. data/public/javascripts/dateFormat.js +283 -0
  72. data/public/javascripts/jscalendar/ChangeLog +500 -0
  73. data/public/javascripts/jscalendar/README +33 -0
  74. data/public/javascripts/jscalendar/bugtest-hidden-selects.html +108 -0
  75. data/public/javascripts/jscalendar/calendar-blue.css +231 -0
  76. data/public/javascripts/jscalendar/calendar-blue2.css +235 -0
  77. data/public/javascripts/jscalendar/calendar-brown.css +224 -0
  78. data/public/javascripts/jscalendar/calendar-green.css +228 -0
  79. data/public/javascripts/jscalendar/calendar-setup.js +181 -0
  80. data/public/javascripts/jscalendar/calendar-setup_stripped.js +21 -0
  81. data/public/javascripts/jscalendar/calendar-system.css +250 -0
  82. data/public/javascripts/jscalendar/calendar-tas.css +238 -0
  83. data/public/javascripts/jscalendar/calendar-win2k-1.css +270 -0
  84. data/public/javascripts/jscalendar/calendar-win2k-2.css +270 -0
  85. data/public/javascripts/jscalendar/calendar-win2k-cold-1.css +264 -0
  86. data/public/javascripts/jscalendar/calendar-win2k-cold-2.css +270 -0
  87. data/public/javascripts/jscalendar/calendar.js +1715 -0
  88. data/public/javascripts/jscalendar/calendar.php +119 -0
  89. data/public/javascripts/jscalendar/calendar_stripped.js +12 -0
  90. data/public/javascripts/jscalendar/doc/html/reference-Z-S.css +0 -0
  91. data/public/javascripts/jscalendar/doc/html/reference.css +34 -0
  92. data/public/javascripts/jscalendar/doc/html/reference.html +1316 -0
  93. data/public/javascripts/jscalendar/doc/reference.pdf +0 -0
  94. data/public/javascripts/jscalendar/img.gif +0 -0
  95. data/public/javascripts/jscalendar/index.html +333 -0
  96. data/public/javascripts/jscalendar/lang/calendar-af.js +39 -0
  97. data/public/javascripts/jscalendar/lang/calendar-br.js +45 -0
  98. data/public/javascripts/jscalendar/lang/calendar-ca.js +45 -0
  99. data/public/javascripts/jscalendar/lang/calendar-cs-win.js +34 -0
  100. data/public/javascripts/jscalendar/lang/calendar-da.js +63 -0
  101. data/public/javascripts/jscalendar/lang/calendar-de.js +100 -0
  102. data/public/javascripts/jscalendar/lang/calendar-du.js +45 -0
  103. data/public/javascripts/jscalendar/lang/calendar-el.js +89 -0
  104. data/public/javascripts/jscalendar/lang/calendar-en.js +123 -0
  105. data/public/javascripts/jscalendar/lang/calendar-es.js +114 -0
  106. data/public/javascripts/jscalendar/lang/calendar-fi.js +98 -0
  107. data/public/javascripts/jscalendar/lang/calendar-fr.js +86 -0
  108. data/public/javascripts/jscalendar/lang/calendar-hr-utf8.js +49 -0
  109. data/public/javascripts/jscalendar/lang/calendar-hr.js +0 -0
  110. data/public/javascripts/jscalendar/lang/calendar-hu.js +45 -0
  111. data/public/javascripts/jscalendar/lang/calendar-it.js +79 -0
  112. data/public/javascripts/jscalendar/lang/calendar-jp.js +45 -0
  113. data/public/javascripts/jscalendar/lang/calendar-ko-utf8.js +120 -0
  114. data/public/javascripts/jscalendar/lang/calendar-ko.js +120 -0
  115. data/public/javascripts/jscalendar/lang/calendar-lt-utf8.js +114 -0
  116. data/public/javascripts/jscalendar/lang/calendar-lt.js +114 -0
  117. data/public/javascripts/jscalendar/lang/calendar-nl.js +45 -0
  118. data/public/javascripts/jscalendar/lang/calendar-no.js +45 -0
  119. data/public/javascripts/jscalendar/lang/calendar-pl-utf8.js +93 -0
  120. data/public/javascripts/jscalendar/lang/calendar-pl.js +56 -0
  121. data/public/javascripts/jscalendar/lang/calendar-pt.js +45 -0
  122. data/public/javascripts/jscalendar/lang/calendar-ro.js +66 -0
  123. data/public/javascripts/jscalendar/lang/calendar-ru.js +45 -0
  124. data/public/javascripts/jscalendar/lang/calendar-si.js +94 -0
  125. data/public/javascripts/jscalendar/lang/calendar-sk.js +99 -0
  126. data/public/javascripts/jscalendar/lang/calendar-sp.js +63 -0
  127. data/public/javascripts/jscalendar/lang/calendar-sv.js +93 -0
  128. data/public/javascripts/jscalendar/lang/calendar-tr.js +58 -0
  129. data/public/javascripts/jscalendar/lang/calendar-zh.js +45 -0
  130. data/public/javascripts/jscalendar/menuarrow.gif +0 -0
  131. data/public/javascripts/jscalendar/menuarrow2.gif +0 -0
  132. data/public/javascripts/jscalendar/release-notes.html +334 -0
  133. data/public/javascripts/jscalendar/simple-1.html +244 -0
  134. data/public/javascripts/jscalendar/simple-2.html +108 -0
  135. data/public/javascripts/jscalendar/simple-3.html +130 -0
  136. data/public/javascripts/jscalendar/test-position.html +40 -0
  137. data/public/javascripts/jscalendar/test.php +116 -0
  138. data/public/javascripts/toggle_div.js +18 -0
  139. data/public/stylesheets/niceones.txt +1 -0
  140. data/public/stylesheets/style.css +8 -1
  141. data/script/breakpointer +4 -5
  142. data/script/console +19 -27
  143. data/script/console_sandbox.rb +7 -0
  144. data/script/destroy +5 -0
  145. data/script/generate +3 -68
  146. data/script/server +6 -16
  147. data/test/damagecontrol/build_test.rb +8 -8
  148. data/test/damagecontrol/poller_test.rb +10 -18
  149. data/test/damagecontrol/project_test.rb +49 -13
  150. data/test/damagecontrol/publisher/base_test.rb +26 -0
  151. data/test/damagecontrol/publisher/build/email.rhtml +0 -0
  152. data/test/damagecontrol/publisher/email_test.rb +26 -0
  153. data/test/damagecontrol/publisher/fixture.rb +34 -0
  154. data/test/damagecontrol/publisher/growl_test.rb +15 -0
  155. data/test/damagecontrol/publisher/jabber_test.rb +15 -0
  156. data/test/damagecontrol/scm_web_test.rb +1 -1
  157. data/test/damagecontrol/visitor/changesets.rss +1 -1
  158. data/test/damagecontrol/visitor/diff_persister_test.rb +4 -4
  159. data/test/functional/build_controller_test.rb +17 -0
  160. data/test/test_helper.rb +13 -13
  161. metadata +185 -24
  162. data/app/views/project/_bugzilla.rhtml +0 -13
  163. data/app/views/project/_jira.rhtml +0 -19
  164. data/app/views/project/_mooky.rhtml +0 -23
  165. data/app/views/project/_rubyforge.rhtml +0 -19
  166. data/app/views/project/_scarab.rhtml +0 -19
  167. data/app/views/project/_scms.rhtml +0 -15
  168. data/app/views/project/_sourceforge.rhtml +0 -19
  169. data/app/views/project/_starteam.rhtml +0 -43
  170. data/app/views/project/_svn.rhtml +0 -22
  171. data/app/views/project/_trac.rhtml +0 -13
  172. data/app/views/project/_trackers.rhtml +0 -18
  173. data/app/views/project/changesets.rhtml +0 -31
@@ -0,0 +1,500 @@
1
+ 2004-02-06 Mihai Bazon <mishoo@localhost.localdomain>
2
+
3
+ * make-release.pl: ChangeLog included in the distribution (if found)
4
+
5
+ * calendar.js, doc/reference.tex, index.html: switched to version 0.9.6
6
+
7
+ * doc/Calendar.setup.tex, doc/reference.tex: updated documentation
8
+
9
+ * release-notes.html: updated release notes
10
+
11
+ * calendar.js: Fixed bug: Feb/29 and year change now keeps Feb in view
12
+
13
+ * calendar.js: fixed the "ESC" problem (call the close handler)
14
+
15
+ * calendar.js: fixed day of year range (1 to 366 instead of 0 to 365)
16
+
17
+ * calendar.js: fixed week number calculations
18
+
19
+ * doc/reference.tex: fixed (date input format)
20
+
21
+ * calendar.php: removed comment
22
+
23
+ * calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-tas.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js:
24
+ workaround for IE bug (you can't normally specify through CSS the style for
25
+ an element having two classes or more; we had to change a classname)
26
+
27
+ * calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-tas.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
28
+ smaller fonts on days that are in neighbor months
29
+
30
+ 2004-02-04 Mihai Bazon <mishoo@localhost.localdomain>
31
+
32
+ * index.html: first demo shows the "showOtherMonths" capability
33
+
34
+ * calendar-setup.js: support new parameters in the calendar.
35
+ added: firstDay, showOthers, cache.
36
+
37
+ * calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js, lang/calendar-en.js, lang/calendar-ro.js:
38
+ new parameters: firstDayOfWeek, showsOtherMonths; removed mondayFirst.
39
+ This adds support for setting any day to be the first day of week (by just
40
+ clicking the day name in the display); also, if showsOtherMonths is enabled
41
+ then dates belonging to adjacent months that are in the current view will be
42
+ displayed and the calendar will have a fixed height.
43
+
44
+ all themes updated.
45
+
46
+ * test.php: test for calendar.php
47
+
48
+ * calendar.php: fixed bug (pass numeric values as numbers)
49
+
50
+ 2004-02-01 Mihai Bazon <mishoo@localhost.localdomain>
51
+
52
+ * calendar.php: added PHP wrapper
53
+
54
+ * img.gif: icon updated
55
+
56
+ * TODO: updated TODO list
57
+
58
+ 2004-01-27 Mihai Bazon <mishoo@localhost.localdomain>
59
+
60
+ * calendar.js:
61
+ Janusz Piwowarski sent over a patch for IE5 compatibility which is much more
62
+ elegant than the atrocities that I had wrote :-D I'm gettin' old.. Thanks Janusz!
63
+
64
+ * lang/calendar-fi.js: updated
65
+
66
+ 2004-01-15 Mihai Bazon <mishoo@localhost.localdomain>
67
+
68
+ * TODO: updated TODO list
69
+
70
+ * calendar-setup.js: default align changed to "Br"
71
+
72
+ * doc/reference.tex: changed default value for "align"
73
+
74
+ * calendar-setup.js: calling onchange event handler, if available
75
+
76
+ * calendar-setup.js: added "position" option
77
+
78
+ * simple-1.html: demonstrates "step" option
79
+
80
+ * calendar-setup.js: added "step" option
81
+
82
+ * calendar.js: added yearStep config parameter
83
+
84
+ * calendar.js:
85
+ fixed parseDate routine (the NaN bug which occurred when there was a space
86
+ after the date and no time)
87
+
88
+ 2004-01-14 Mihai Bazon <mishoo@localhost.localdomain>
89
+
90
+ * lang/calendar-en.js: added "Time:"
91
+
92
+ * test-position.html: test for the new position algorithm
93
+
94
+ * index.html: do not destroy() the calendar
95
+ avoid bug in parseDate (%p must be separated by non-word characters)
96
+
97
+ * menuarrow2.gif: for calendar-blue2.css
98
+
99
+ * calendar-setup.js: honor "date" parameter if passed
100
+
101
+ * calendar.js: IE5 support is back
102
+ performance improvements in IE6 (mouseover combo boxes)
103
+ display "Time:" beside the clock area, if defined in the language file
104
+ new positioning algorithm (try to keep the calendar in page)
105
+ rewrote parseDate a little cleaner
106
+
107
+ * lang/calendar-el.js:
108
+ updated Greek translation (thanks Alexandros Pappas)
109
+
110
+ 2004-01-13 Mihai Bazon <mishoo@localhost.localdomain>
111
+
112
+ * index.html: added style blue2, using utf-8 instead of iso-8859-2
113
+
114
+ * calendar.js: performance under IE (which sucks, by the way)
115
+
116
+ * doc/reference.tex: Sunny added to sponsor list
117
+
118
+ * doc/Calendar.setup.tex: documenting parameter 'electric'
119
+
120
+ * calendar-blue.css, calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
121
+ fixed IE text size problems
122
+
123
+ 2004-01-08 Mihai Bazon <mishoo@localhost.localdomain>
124
+
125
+ * lang/calendar-pl.js:
126
+ Polish translation updated to UTF-8 (thanks to Artur Filipiak)
127
+
128
+ 2004-01-07 Mihai Bazon <mishoo@localhost.localdomain>
129
+
130
+ * lang/calendar-si.js: updated (David Milost)
131
+
132
+ * lang/calendar-si.js: Slovenian translation (thanks to David Milost)
133
+
134
+ 2003-12-21 Mihai Bazon <mishoo@localhost.localdomain>
135
+
136
+ * TODO: updated TODO list
137
+
138
+ * lang/calendar-de.js: German translation (thanks to Peter Strotmann)
139
+
140
+ 2003-12-19 Mihai Bazon <mishoo@localhost.localdomain>
141
+
142
+ * doc/reference.tex: Thank you, Ian Barrak
143
+
144
+ 2003-12-18 Mihai Bazon <mishoo@localhost.localdomain>
145
+
146
+ * doc/reference.tex: fixed documentation bug (thanks Mike)
147
+
148
+ 2003-12-05 Mihai Bazon <mishoo@localhost.localdomain>
149
+
150
+ * lang/calendar-ko-utf8.js:
151
+ UTF8 version of the Korean language (hopefully correct)
152
+
153
+ * lang/calendar-pl-utf8.js, lang/calendar-pl.js:
154
+ updated Polish translation (thanks to Janusz Piwowarski)
155
+
156
+ 2003-12-04 Mihai Bazon <mishoo@localhost.localdomain>
157
+
158
+ * lang/calendar-fr.js:
159
+ French translation updated (thanks to Angiras Rama)
160
+
161
+ 2003-11-22 Mihai Bazon <mishoo@localhost.localdomain>
162
+
163
+ * lang/calendar-da.js: updated (thanks to Jesper M. Christensen)
164
+
165
+ 2003-11-20 Mihai Bazon <mishoo@localhost.localdomain>
166
+
167
+ * calendar-blue2.css, calendar-tas.css:
168
+ new styles (thanks to Wendall Mosemann for blue2, Mark Lynch for tas)
169
+
170
+ * lang/calendar-lt-utf8.js, lang/calendar-lt.js:
171
+ Lithuanian translation (thanks to Martynas Majeris)
172
+
173
+ * lang/calendar-sp.js: updated
174
+
175
+ 2003-11-17 Mihai Bazon <mishoo@localhost.localdomain>
176
+
177
+ * TODO: added TODO list
178
+
179
+ 2003-11-14 Mihai Bazon <mishoo@localhost.localdomain>
180
+
181
+ * lang/calendar-ko.js: Korean translation (thanks to Yourim Yi)
182
+
183
+ 2003-11-12 Mihai Bazon <mishoo@localhost.localdomain>
184
+
185
+ * lang/calendar-jp.js: small bug fixed (thanks to TAHARA Yusei)
186
+
187
+ 2003-11-10 Mihai Bazon <mishoo@localhost.localdomain>
188
+
189
+ * lang/calendar-fr.js: translation updated, thanks to Florent Ramiere
190
+
191
+ * calendar-setup.js:
192
+ added new parameter: electric (if false then the field will not get updated on each move)
193
+
194
+ * index.html: fixed DOCTYPE
195
+
196
+ 2003-11-07 Mihai Bazon <mishoo@localhost.localdomain>
197
+
198
+ * calendar-setup.js:
199
+ fixed minor problem (maybe we're passing object reference instead of ID for
200
+ the flat calendar parent)
201
+
202
+ 2003-11-06 Mihai Bazon <mishoo@localhost.localdomain>
203
+
204
+ * lang/calendar-fi.js:
205
+ added Finnish translation (thanks to Antti Tuppurainen)
206
+
207
+ 2003-11-05 Mihai Bazon <mishoo@localhost.localdomain>
208
+
209
+ * release-notes.html: fixed typo
210
+
211
+ * doc/reference.tex, index.html, calendar.js: 0.9.5
212
+
213
+ * README: fixed license statement
214
+
215
+ * release-notes.html: updated release notes (0.9.5)
216
+
217
+ 2003-11-03 Mihai Bazon <mishoo@localhost.localdomain>
218
+
219
+ * lang/calendar-de.js:
220
+ updated German translation (thanks to Gerhard Neiner)
221
+
222
+ * calendar-setup.js: fixed license statement
223
+
224
+ * calendar.js: whitespace
225
+
226
+ * calendar.js: fixed license statement
227
+
228
+ * calendar.js:
229
+ fixed positioning problem when input field is inside scrolled divs
230
+
231
+ 2003-11-01 Mihai Bazon <mishoo@localhost.localdomain>
232
+
233
+ * lang/calendar-af.js: Afrikaan language (thanks to Derick Olivier)
234
+
235
+ 2003-10-31 Mihai Bazon <mishoo@localhost.localdomain>
236
+
237
+ * lang/calendar-it.js:
238
+ updated IT translation (thanks to Christian Blaser)
239
+
240
+ * lang/calendar-es.js: updated ES translation, thanks to Raul
241
+
242
+ 2003-10-30 Mihai Bazon <mishoo@localhost.localdomain>
243
+
244
+ * lang/calendar-hu.js: updated thanks to Istvan Karaszi
245
+
246
+ * index.html, simple-1.html, simple-2.html, simple-3.html:
247
+ switched to utf-8 all encodings
248
+
249
+ * lang/calendar-sk.js:
250
+ added Slovak translation (thanks to Peter Valach)
251
+
252
+ * lang/calendar-ro.js: switched to utf-8
253
+
254
+ 2003-10-29 Mihai Bazon <mishoo@localhost.localdomain>
255
+
256
+ * lang/calendar-es.js:
257
+ updated translation, thanks to Jose Ma. Martinez Miralles
258
+
259
+ * doc/reference.tex:
260
+ fixed the footnote problem (thanks Dominique de Waleffe for the tip)
261
+
262
+ * lang/calendar-ro.js: fixed typo
263
+
264
+ * lang/calendar-sv.js: oops, license should be LGPL
265
+
266
+ * lang/calendar-sw.js: new swedish translation is calendar-sv.js
267
+
268
+ * menuarrow.gif, menuarrow.png:
269
+ oops, forgot little drop-down menu arrows
270
+
271
+ * lang/calendar-sv.js: swedish translation thanks to Leonard Norrgard
272
+
273
+ * index.html: oops, some other minor changes
274
+
275
+ * index.html, release-notes.html:
276
+ latest changes in release-notes and index page for 0.9.4
277
+
278
+ * doc/reference.tex, calendar.js:
279
+ added %s date format (# of seconds since Epoch)
280
+
281
+ * calendar.js:
282
+ A click on TODAY will not close the calendar, even in single-click mode
283
+
284
+ 2003-10-28 Mihai Bazon <mishoo@localhost.localdomain>
285
+
286
+ * index.html: previous cal.html
287
+
288
+ * cal.html: moved to index.html
289
+
290
+ * README, cal.html, doc/reference.tex, lang/calendar-de.js, lang/calendar-en.js, lang/calendar-ro.js, release-notes.html:
291
+ LGPL license, forever.
292
+
293
+ * doc/Calendar.setup.tex, simple-1.html:
294
+ doc updated for the onUpdate parameter to Calendar.setup
295
+
296
+ 2003-10-26 Mihai Bazon <mishoo@localhost.localdomain>
297
+
298
+ * calendar.js: fixed bug (correct display of the dropdown menus)
299
+
300
+ * doc/Calendar.setup.tex, doc/reference.tex, lang/calendar-de.js, lang/calendar-en.js, lang/calendar-ro.js, README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-setup.js, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar.js, release-notes.html, simple-1.html, simple-3.html:
301
+ lots of changes for the 0.9.4 release (see the release-notes.html)
302
+
303
+ 2003-10-15 Mihai Bazon <mishoo@localhost.localdomain>
304
+
305
+ * doc/reference.tex:
306
+ documentation updated for 0.9.4 (not yet finished though)
307
+
308
+ 2003-10-07 Mihai Bazon <mishoo@localhost.localdomain>
309
+
310
+ * calendar.js, doc/reference.tex, release-notes.html, README, cal.html, calendar-setup.js:
311
+ modified project website
312
+
313
+ 2003-10-06 Mihai Bazon <mishoo@localhost.localdomain>
314
+
315
+ * calendar-setup.js:
316
+ added some properties (onSelect, onClose, date) (thanks altblue)
317
+
318
+ 2003-09-24 Mihai Bazon <mishoo@localhost.localdomain>
319
+
320
+ * simple-3.html: dateIsSpecial does not need the "date" argument ;-)
321
+
322
+ 2003-09-24 fsoft <fsoft@mishoo>
323
+
324
+ * calendar.js, simple-3.html:
325
+ added year, month, day to getDateStatus() function
326
+
327
+ 2003-09-24 Mihai Bazon <mishoo@localhost.localdomain>
328
+
329
+ * simple-3.html: example on how to use special dates
330
+
331
+ * calendar-setup.js, calendar.js, simple-1.html:
332
+ support for special dates (thanks fabio)
333
+
334
+ 2003-09-17 Mihai Bazon <mishoo@localhost.localdomain>
335
+
336
+ * doc/reference.tex: fixed error in section 3.
337
+
338
+ 2003-08-01 Mihai Bazon <mishoo@localhost.localdomain>
339
+
340
+ * lang/calendar-jp.js: added Japanese translation
341
+
342
+ 2003-07-16 Mihai Bazon <mishoo@localhost.localdomain>
343
+
344
+ * simple-1.html: fixed problem with first example [IE,Opera]
345
+
346
+ 2003-07-09 Mihai Bazon <mishoo@localhost.localdomain>
347
+
348
+ * doc/Calendar.setup.tex: fixed typo (closing parenthesis)
349
+
350
+ * lang/calendar-de.js:
351
+ added German translation, thanks to Hartwig Weinkauf
352
+
353
+ 2003-07-08 Mihai Bazon <mishoo@localhost.localdomain>
354
+
355
+ * cal.html: added link to release-notes
356
+
357
+ * release-notes.html: 0.9.3 release notes
358
+
359
+ * make-release.pl:
360
+ Script to create distribution archive. It needs some additional packages:
361
+
362
+ - LaTeX
363
+ - tex2page
364
+ - jscrunch (JS compressor)
365
+
366
+ * doc/html/makedoc.sh, doc/html/reference.css, doc/reference.tex, doc/makedoc.sh:
367
+ documentation updates...
368
+
369
+ * calendar.js: added semicolon to make the code "compressible"
370
+
371
+ 2003-07-06 Mihai Bazon <mishoo@localhost.localdomain>
372
+
373
+ * doc/reference.tex: spell checked
374
+
375
+ * doc/reference.tex: [minor] changed credits order
376
+
377
+ * doc/reference.tex: various improvements and additions
378
+
379
+ * doc/html/reference.css: minor eye-candy tweaks
380
+
381
+ 2003-07-05 Mihai Bazon <mishoo@localhost.localdomain>
382
+
383
+ * doc/html/Calendar.setup.html.tex, doc/html/makedoc.sh, doc/html/reference.css, doc/html/reference.t2p, doc/hyperref.cfg, doc/makedoc.sh, doc/reference.tex, doc/Calendar.setup.tex, doc/Calendar.setup.pdf.tex:
384
+ full documentation in LaTeX, for PDF and HTML formats
385
+
386
+ * simple-2.html:
387
+ added demonstration of flat calendar with Calendar.setup
388
+
389
+ * simple-1.html:
390
+ modified some links, added link to documentation, added demonstration of
391
+ disableFunc property
392
+
393
+ * calendar-setup.js: added the ability to create flat calendar too
394
+
395
+ * cal.html: added links to documentation and simple-[12].html pages
396
+
397
+ * README: up-to-date...
398
+
399
+ * calendar-setup.html: removed: the documentation is unified
400
+
401
+ 2003-07-03 Mihai Bazon <mishoo@localhost.localdomain>
402
+
403
+ * cal.html: some links to newly added files
404
+
405
+ * calendar-setup.html, calendar-setup.js, img.gif, simple-1.html:
406
+ added some files to simplify calendar creation for non-(JS)-programmers
407
+
408
+ * lang/calendar-zh.js: added simplified chinese (thanks ATang)
409
+
410
+ 2003-07-02 Mihai Bazon <mishoo@localhost.localdomain>
411
+
412
+ * calendar.js: * "yy"-related... [small fix]
413
+
414
+ * calendar.js:
415
+ * #721833 fixed (yy format will understand years prior to 29 as 20xx)
416
+
417
+ * calendar.js: * added refresh() function
418
+
419
+ * calendar.js: * fixed bug when in single click mode
420
+ * added alignment options to "showAtElement" member function
421
+
422
+ 2003-06-25 Mihai Bazon <mishoo@localhost.localdomain>
423
+
424
+ * lang/calendar-pt.js:
425
+ added portugese translation (thanks Nuno Barreto)
426
+
427
+ 2003-06-24 Mihai Bazon <mishoo@localhost.localdomain>
428
+
429
+ * calendar.js:
430
+ call user handler when the date was changed using the keyboard
431
+
432
+ * bugtest-hidden-selects.html:
433
+ file to test bug with hidden select-s (thanks Ying Zhang for reporting and for this test file)
434
+
435
+ * lang/calendar-hr-utf8.js:
436
+ added croatian translation in utf8 (thanks Krunoslav Zubrinic)
437
+
438
+ 2003-06-23 Mihai Bazon <mishoo@localhost.localdomain>
439
+
440
+ * lang/calendar-hu.js: added hungarian translation
441
+
442
+ * lang/calendar-hr.js:
443
+ added croatian translation (thanks to Krunoslav Zubrinic)
444
+
445
+ 2003-06-22 Mihai Bazon <mishoo@localhost.localdomain>
446
+
447
+ * calendar.js:
448
+ * #723335 fixed (clicking TODAY will not select the today date if the
449
+ disabledHandler rejects it)
450
+
451
+ * cal.html: * new code for to work with fix for bug #703238
452
+ * switch to new version
453
+
454
+ * calendar.js:
455
+ * some patches to make code compatible with Opera 7 (well, almost compatible)
456
+ * bug #703238 fixed (fix breaks compatibility with older code that uses
457
+ calendar in single-click mode)
458
+ * bug #703814 fixed
459
+
460
+ 2003-04-09 Mihai Bazon <mishoo@localhost.localdomain>
461
+
462
+ * lang/calendar-tr.js: added turkish lang file
463
+
464
+ 2003-03-19 Mihai Bazon <mishoo@localhost.localdomain>
465
+
466
+ * lang/calendar-ru.js: russian translation added
467
+
468
+ * lang/calendar-no.js: norwegian translation added
469
+
470
+ 2003-03-15 Mihai Bazon <mishoo@localhost.localdomain>
471
+
472
+ * lang/calendar-no.js: norwegian translation
473
+
474
+ 2003-03-12 Mihai Bazon <mishoo@localhost.localdomain>
475
+
476
+ * lang/calendar-pl.js: added polish translation
477
+
478
+ 2003-03-11 Mihai Bazon <mishoo@localhost.localdomain>
479
+
480
+ * calendar.js:
481
+ bugfix in parseDate (added base to parseInt, thanks Alan!)
482
+
483
+ 2003-03-05 Mihai Bazon <mishoo@localhost.localdomain>
484
+
485
+ * calendar.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-cs-win.js, lang/calendar-da.js, lang/calendar-du.js, lang/calendar-el.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fr.js, lang/calendar-it.js, lang/calendar-nl.js, lang/calendar-ro.js, lang/calendar-sp.js, lang/calendar-sw.js:
486
+ New file.
487
+
488
+ * calendar.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-cs-win.js, lang/calendar-da.js, lang/calendar-du.js, lang/calendar-el.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fr.js, lang/calendar-it.js, lang/calendar-nl.js, lang/calendar-ro.js, lang/calendar-sp.js, lang/calendar-sw.js:
489
+ moved to CVS at sourceforge.net
490
+ release: 0.9.2 + new language packs
491
+
492
+
493
+ * README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
494
+ New file.
495
+
496
+ * README, cal.html, calendar-blue.css, calendar-brown.css, calendar-green.css, calendar-system.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css:
497
+ moved to CVS at sourceforge.net
498
+ release: 0.9.2 + new language packs
499
+
500
+