ChangeLog 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. 2005-03-07 Mihai Bazon <mihai_bazon@yahoo.com>
  2. * skins/aqua/theme.css: *** empty log message ***
  3. * release-notes.html: updated release notes
  4. * calendar-setup.js:
  5. use a better approach to initialize the calendar--don't call _init twice,
  6. it's the most time consuming function in the calendar. Instead, determine
  7. the date beforehand if possible and pass it to the calendar at constructor.
  8. * calendar.js:
  9. avoid keyboard operation when 'multiple dates' is set (very buggy for now)
  10. * calendar.js:
  11. fixed keyboard handling problems: now it works fine when "showsOtherMonths"
  12. is passed; it also seems to be fine with disabled dates (won't normally
  13. allow selection)--however this area is still likely to be buggy, i.e. in a
  14. month that has all the dates disabled.
  15. * calendar.js:
  16. some trivial performance improvements in the _init function
  17. Added Date.parseDate (old Calendar.prototype.parseDate now calls this one)
  18. 2005-03-05 Mihai Bazon <mihai_bazon@yahoo.com>
  19. * release-notes.html: updated release notes
  20. * dayinfo.html: *** empty log message ***
  21. * calendar-setup.js:
  22. bugfix--update an inputField even if flat calendar is selected
  23. * calendar.js:
  24. fixed bugs in parseDate function (if for some reason the input string is
  25. totally broken, then check numbers for NaN and use values from the current
  26. date instead)
  27. * make-release.pl: copy the skins subdirectory and all skins
  28. * index.html: added Aqua skin
  29. * skins/aqua/active-bg.gif, skins/aqua/dark-bg.gif, skins/aqua/hover-bg.gif, skins/aqua/menuarrow.gif, skins/aqua/normal-bg.gif, skins/aqua/rowhover-bg.gif, skins/aqua/status-bg.gif, skins/aqua/theme.css, skins/aqua/title-bg.gif, skins/aqua/today-bg.gif:
  30. in the future, skins will go to this directory, each in a separate subdir; for now there's only Aqua, an excellent new skin
  31. * calendar.js: workaround IE bug, needed in the Aqua theme
  32. don't hide select elements unless browser is IE or Opera
  33. * lang/calendar-bg.js, lang/calendar-big5-utf8.js, lang/calendar-big5.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-cs-utf8.js, lang/calendar-cs-win.js, lang/calendar-da.js, lang/calendar-de.js, lang/calendar-el.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fi.js, lang/calendar-fr.js, lang/calendar-he-utf8.js, lang/calendar-hu.js, lang/calendar-it.js, lang/calendar-ko-utf8.js, lang/calendar-ko.js, lang/calendar-lt-utf8.js, lang/calendar-lt.js, lang/calendar-lv.js, lang/calendar-nl.js, lang/calendar-no.js, lang/calendar-pl-utf8.js, lang/calendar-pl.js, lang/calendar-pt.js, lang/calendar-ro.js, lang/calendar-ru.js, lang/calendar-ru_win_.js, lang/calendar-si.js, lang/calendar-sk.js, lang/calendar-sp.js, lang/calendar-sv.js, lang/calendar-zh.js, lang/cn_utf8.js:
  34. updated urls, copyright notices
  35. * doc/reference.tex: updated documentation
  36. * calendar.js, index.html:
  37. renamed the global variable to _dynarch_popupCalendar to avoid name clashes
  38. * multiple-dates.html: start with an empty array
  39. * calendar.js:
  40. fixed bugs in the time selector (12:XX pm was wrongfully understood as 12:XX am)
  41. * calendar.js:
  42. using innerHTML instead of text nodes; works better in Safari and also makes
  43. a smaller, cleaner code
  44. 2005-03-04 Mihai Bazon <mihai_bazon@yahoo.com>
  45. * calendar.js:
  46. fixed a performance regression that occurred after adding support for multiple dates
  47. fixed the time selection bug (now it keeps time correctly)
  48. clicking today will close the calendar if "today" is already selected
  49. * lang/cn_utf8.js: new translation
  50. 2005-02-17 Mihai Bazon <mihai_bazon@yahoo.com>
  51. * lang/calendar-ar-utf8.zip: Added arabic translation
  52. 2004-10-19 Mihai Bazon <mihai_bazon@yahoo.com>
  53. * lang/calendar-zh.js: updated
  54. 2004-09-20 Mihai Bazon <mihai_bazon@yahoo.com>
  55. * lang/calendar-no.js: updated (Daniel Holmen)
  56. 2004-09-20 Mihai Bazon <mihai_bazon@yahoo.com>
  57. * lang/calendar-no.js: updated (Daniel Holmen)
  58. 2004-08-11 Mihai Bazon <mihai_bazon@yahoo.com>
  59. * lang/calendar-nl.js: updated language file (thanks to Arjen Duursma)
  60. * lang/calendar-sp.js: updated (thanks to Rafael Velasco)
  61. 2004-07-21 Mihai Bazon <mihai_bazon@yahoo.com>
  62. * lang/calendar-br.js: updated
  63. * calendar-setup.js: fixed bug (dateText)
  64. 2004-07-21 Mihai Bazon <mihai_bazon@yahoo.com>
  65. * lang/calendar-br.js: updated
  66. * calendar-setup.js: fixed bug (dateText)
  67. 2004-07-04 Mihai Bazon <mihai_bazon@yahoo.com>
  68. * lang/calendar-lv.js:
  69. added LV translation (thanks to Juris Valdovskis)
  70. 2004-06-25 Mihai Bazon <mihai_bazon@yahoo.com>
  71. * calendar.js:
  72. fixed bug in IE (el.calendar.tooltips is null or not an object)
  73. 2004-06-24 Mihai Bazon <mihai_bazon@yahoo.com>
  74. * doc/reference.tex: fixed latex compilation
  75. * index.html: linking other sample files
  76. * calendar-setup.js, calendar.js, dayinfo.html:
  77. ability to display day info (dateText parameter) + sample file
  78. 2004-06-23 Mihai Bazon <mihai_bazon@yahoo.com>
  79. * doc/reference.tex, lang/calendar-bg.js, lang/calendar-br.js, lang/calendar-ca.js, lang/calendar-en.js, lang/calendar-es.js, lang/calendar-fr.js, lang/calendar-it.js, lang/calendar-ko-utf8.js, lang/calendar-ko.js, lang/calendar-nl.js, lang/calendar-sv.js, README, calendar.js, index.html:
  80. email address changed
  81. 2004-06-14 Mihai Bazon <mihai_bazon@yahoo.com>
  82. * lang/calendar-cs-utf8.js, lang/calendar-cs-win.js:
  83. updated translations
  84. * calendar-system.css: added z-index to drop downs
  85. * lang/calendar-en.js:
  86. first day of week can now be part of the language file
  87. * lang/calendar-es.js:
  88. updated language file (thanks to Servilio Afre Puentes)
  89. * calendar-blue2.css, calendar-brown.css, calendar-green.css, calendar-tas.css, calendar-win2k-1.css, calendar-win2k-2.css, calendar-win2k-cold-1.css, calendar-win2k-cold-2.css, calendar-blue.css:
  90. added z-index property to drop downs (fixes bug)
  91. 2004-06-13 Mihai Bazon <mihai_bazon@yahoo.com>
  92. * calendar-setup.js: fixed bug (apply showOthers to flat calendars too)
  93. 2004-06-06 Mihai Bazon <mihai_bazon@yahoo.com>
  94. * calendar-setup.js:
  95. firstDay defaults to "null", in which case the value in the language file
  96. will be used
  97. * calendar.js:
  98. firstDayOfWeek can now default to a value specified in the language definition file
  99. * index.html: first day of week is now numeric
  100. 2004-06-02 Mihai Bazon <mihai_bazon@yahoo.com>
  101. * calendar.js: added date tooltip function
  102. 2004-05-28 Mihai Bazon <mihai_bazon@yahoo.com>
  103. * lang/calendar-br.js: updated (thanks to Marcos Pont)
  104. * calendar-setup.js: fixed small bug
  105. 2004-05-01 Mihai Bazon <mihai_bazon@yahoo.com>
  106. * calendar-setup.js: returns the calendar object
  107. 2004-04-28 Mihai Bazon <mihai_bazon@yahoo.com>
  108. * calendar-setup.js:
  109. patch to read the date value from the inputField, according to ifFormat (if
  110. both are passed), for flat calendars. (thanks Colin T. Hill)
  111. 2004-04-20 Mihai Bazon <mihai_bazon@yahoo.com>
  112. * calendar-setup.js, calendar.js, multiple-dates.html:
  113. added support for multiple dates selection
  114. * lang/calendar-nl.js:
  115. updated Dutch translation, thanks to Jeroen Wolsink
  116. * lang/calendar-big5-utf8.js, lang/calendar-big5.js:
  117. Traditional Chinese language (thanks GaryFu)
  118. 2004-03-26 Mihai Bazon <mihai_bazon@yahoo.com>
  119. * lang/calendar-fr.js, lang/calendar-pt.js: updated
  120. * lang/calendar-ru_win_.js, lang/calendar-ru.js:
  121. updated, thanks to Sly Golovanov
  122. 2004-03-25 Mihai Bazon <mihai_bazon@yahoo.com>
  123. * lang/calendar-fr.js: updated (thanks to David Duret)
  124. 2004-03-24 Mihai Bazon <mihai_bazon@yahoo.com>
  125. * lang/calendar-da.js: updated (thanks to Michael Thingmand Henriksen)
  126. 2004-03-21 Mihai Bazon <mihai_bazon@yahoo.com>
  127. * lang/calendar-ca.js: updated (thanks to David Valls)
  128. 2004-03-17 Mihai Bazon <mihai_bazon@yahoo.com>
  129. * lang/calendar-de.js: updated to UTF8 (thanks to Jack (tR))
  130. 2004-03-09 Mihai Bazon <mihai_bazon@yahoo.com>
  131. * lang/calendar-bg.js: Bulgarian translation
  132. 2004-03-08 Mihai Bazon <mihai_bazon@yahoo.com>
  133. * lang/calendar-he-utf8.js: Hebrew translation (thanks to Idan Sofer)
  134. * lang/calendar-hu.js: updated (thanks to Istvan Karaszi)
  135. 2004-02-27 Mihai Bazon <mihai_bazon@yahoo.com>
  136. * lang/calendar-it.js: updated (thanks to Fabio Di Bernardini)
  137. 2004-02-25 Mihai Bazon <mihai_bazon@yahoo.com>
  138. * calendar.js: fix for Safari (thanks to Olivier Chirouze / XPWeb)
  139. 2004-02-22 Mihai Bazon <mihai_bazon@yahoo.com>
  140. * lang/calendar-al.js: Albanian language file
  141. 2004-02-17 Mihai Bazon <mihai_bazon@yahoo.com>
  142. * lang/calendar-fr.js: fixed
  143. * lang/calendar-fr.js:
  144. FR translation updated (thanks to SIMON Alexandre)
  145. * lang/calendar-es.js: ES translation updated, thanks to David Gonzales
  146. 2004-02-10 Mihai Bazon <mihai_bazon@yahoo.com>
  147. * lang/calendar-pt.js:
  148. updated Portugese translation, thanks to Elcio Ferreira
  149. 2004-02-09 Mihai Bazon <mihai_bazon@yahoo.com>
  150. * TODO: updated
  151. 2004-02-06 Mihai Bazon <mihai_bazon@yahoo.com>
  152. * README: describe the PHP files
  153. * make-release.pl: includes php files
  154. * make-release.pl: ChangeLog included in the distribution (if found)
  155. * calendar.js, doc/reference.tex, index.html: switched to version 0.9.6
  156. * doc/Calendar.setup.tex, doc/reference.tex: updated documentation
  157. * release-notes.html: updated release notes
  158. * calendar.js: Fixed bug: Feb/29 and year change now keeps Feb in view
  159. * calendar.js: fixed the "ESC" problem (call the close handler)
  160. * calendar.js: fixed day of year range (1 to 366 instead of 0 to 365)
  161. * calendar.js: fixed week number calculations
  162. * doc/reference.tex: fixed (date input format)
  163. * calendar.php: removed comment
  164. * 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:
  165. workaround for IE bug (you can't normally specify through CSS the style for
  166. an element having two classes or more; we had to change a classname)
  167. * 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:
  168. smaller fonts on days that are in neighbor months
  169. 2004-02-04 Mihai Bazon <mihai_bazon@yahoo.com>
  170. * index.html: first demo shows the "showOtherMonths" capability
  171. * calendar-setup.js: support new parameters in the calendar.
  172. added: firstDay, showOthers, cache.
  173. * 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:
  174. new parameters: firstDayOfWeek, showsOtherMonths; removed mondayFirst.
  175. This adds support for setting any day to be the first day of week (by just
  176. clicking the day name in the display); also, if showsOtherMonths is enabled
  177. then dates belonging to adjacent months that are in the current view will be
  178. displayed and the calendar will have a fixed height.
  179. all themes updated.
  180. * test.php: test for calendar.php
  181. * calendar.php: fixed bug (pass numeric values as numbers)
  182. 2004-02-01 Mihai Bazon <mihai_bazon@yahoo.com>
  183. * calendar.php: added PHP wrapper
  184. * img.gif: icon updated
  185. * TODO: updated TODO list
  186. 2004-01-27 Mihai Bazon <mihai_bazon@yahoo.com>
  187. * calendar.js:
  188. Janusz Piwowarski sent over a patch for IE5 compatibility which is much more
  189. elegant than the atrocities that I had wrote :-D I'm gettin' old.. Thanks Janusz!
  190. * lang/calendar-fi.js: updated
  191. 2004-01-15 Mihai Bazon <mihai_bazon@yahoo.com>
  192. * TODO: updated TODO list
  193. * calendar-setup.js: default align changed to "Br"
  194. * doc/reference.tex: changed default value for "align"
  195. * calendar-setup.js: calling onchange event handler, if available
  196. * calendar-setup.js: added "position" option
  197. * simple-1.html: demonstrates "step" option
  198. * calendar-setup.js: added "step" option
  199. * calendar.js: added yearStep config parameter
  200. * calendar.js:
  201. fixed parseDate routine (the NaN bug which occurred when there was a space
  202. after the date and no time)
  203. 2004-01-14 Mihai Bazon <mihai_bazon@yahoo.com>
  204. * lang/calendar-en.js: added "Time:"
  205. * test-position.html: test for the new position algorithm
  206. * index.html: do not destroy() the calendar
  207. avoid bug in parseDate (%p must be separated by non-word characters)
  208. * menuarrow2.gif: for calendar-blue2.css
  209. * calendar-setup.js: honor "date" parameter if passed
  210. * calendar.js: IE5 support is back
  211. performance improvements in IE6 (mouseover combo boxes)
  212. display "Time:" beside the clock area, if defined in the language file
  213. new positioning algorithm (try to keep the calendar in page)
  214. rewrote parseDate a little cleaner
  215. * lang/calendar-el.js:
  216. updated Greek translation (thanks Alexandros Pappas)
  217. 2004-01-13 Mihai Bazon <mihai_bazon@yahoo.com>
  218. * index.html: added style blue2, using utf-8 instead of iso-8859-2
  219. * calendar.js: performance under IE (which sucks, by the way)
  220. * doc/reference.tex: Sunny added to sponsor list
  221. * doc/Calendar.setup.tex: documenting parameter 'electric'
  222. * 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:
  223. fixed IE text size problems
  224. 2004-01-08 Mihai Bazon <mihai_bazon@yahoo.com>
  225. * lang/calendar-pl.js:
  226. Polish translation updated to UTF-8 (thanks to Artur Filipiak)
  227. 2004-01-07 Mihai Bazon <mihai_bazon@yahoo.com>
  228. * lang/calendar-si.js: updated (David Milost)
  229. * lang/calendar-si.js: Slovenian translation (thanks to David Milost)
  230. 2003-12-21 Mihai Bazon <mihai_bazon@yahoo.com>
  231. * TODO: updated TODO list
  232. * lang/calendar-de.js: German translation (thanks to Peter Strotmann)
  233. 2003-12-19 Mihai Bazon <mihai_bazon@yahoo.com>
  234. * doc/reference.tex: Thank you, Ian Barrak
  235. 2003-12-18 Mihai Bazon <mihai_bazon@yahoo.com>
  236. * doc/reference.tex: fixed documentation bug (thanks Mike)
  237. 2003-12-05 Mihai Bazon <mihai_bazon@yahoo.com>
  238. * lang/calendar-ko-utf8.js:
  239. UTF8 version of the Korean language (hopefully correct)
  240. * lang/calendar-pl-utf8.js, lang/calendar-pl.js:
  241. updated Polish translation (thanks to Janusz Piwowarski)
  242. 2003-12-04 Mihai Bazon <mihai_bazon@yahoo.com>
  243. * lang/calendar-fr.js:
  244. French translation updated (thanks to Angiras Rama)
  245. 2003-11-22 Mihai Bazon <mihai_bazon@yahoo.com>
  246. * lang/calendar-da.js: updated (thanks to Jesper M. Christensen)
  247. 2003-11-20 Mihai Bazon <mihai_bazon@yahoo.com>
  248. * calendar-blue2.css, calendar-tas.css:
  249. new styles (thanks to Wendall Mosemann for blue2, Mark Lynch for tas)
  250. * lang/calendar-lt-utf8.js, lang/calendar-lt.js:
  251. Lithuanian translation (thanks to Martynas Majeris)
  252. * lang/calendar-sp.js: updated
  253. 2003-11-17 Mihai Bazon <mihai_bazon@yahoo.com>
  254. * TODO: added TODO list
  255. 2003-11-14 Mihai Bazon <mihai_bazon@yahoo.com>
  256. * lang/calendar-ko.js: Korean translation (thanks to Yourim Yi)
  257. 2003-11-12 Mihai Bazon <mihai_bazon@yahoo.com>
  258. * lang/calendar-jp.js: small bug fixed (thanks to TAHARA Yusei)
  259. 2003-11-10 Mihai Bazon <mihai_bazon@yahoo.com>
  260. * lang/calendar-fr.js: translation updated, thanks to Florent Ramiere
  261. * calendar-setup.js:
  262. added new parameter: electric (if false then the field will not get updated on each move)
  263. * index.html: fixed DOCTYPE
  264. 2003-11-07 Mihai Bazon <mihai_bazon@yahoo.com>
  265. * calendar-setup.js:
  266. fixed minor problem (maybe we're passing object reference instead of ID for
  267. the flat calendar parent)
  268. 2003-11-06 Mihai Bazon <mihai_bazon@yahoo.com>
  269. * lang/calendar-fi.js:
  270. added Finnish translation (thanks to Antti Tuppurainen)
  271. 2003-11-05 Mihai Bazon <mihai_bazon@yahoo.com>
  272. * release-notes.html: fixed typo
  273. * doc/reference.tex, index.html, calendar.js: 0.9.5
  274. * README: fixed license statement
  275. * release-notes.html: updated release notes (0.9.5)
  276. 2003-11-03 Mihai Bazon <mihai_bazon@yahoo.com>
  277. * lang/calendar-de.js:
  278. updated German translation (thanks to Gerhard Neiner)
  279. * calendar-setup.js: fixed license statement
  280. * calendar.js: whitespace
  281. * calendar.js: fixed license statement
  282. * calendar.js:
  283. fixed positioning problem when input field is inside scrolled divs
  284. 2003-11-01 Mihai Bazon <mihai_bazon@yahoo.com>
  285. * lang/calendar-af.js: Afrikaan language (thanks to Derick Olivier)
  286. 2003-10-31 Mihai Bazon <mihai_bazon@yahoo.com>
  287. * lang/calendar-it.js:
  288. updated IT translation (thanks to Christian Blaser)
  289. * lang/calendar-es.js: updated ES translation, thanks to Raul
  290. 2003-10-30 Mihai Bazon <mihai_bazon@yahoo.com>
  291. * lang/calendar-hu.js: updated thanks to Istvan Karaszi
  292. * index.html, simple-1.html, simple-2.html, simple-3.html:
  293. switched to utf-8 all encodings
  294. * lang/calendar-sk.js:
  295. added Slovak translation (thanks to Peter Valach)
  296. * lang/calendar-ro.js: switched to utf-8
  297. 2003-10-29 Mihai Bazon <mihai_bazon@yahoo.com>
  298. * lang/calendar-es.js:
  299. updated translation, thanks to Jose Ma. Martinez Miralles
  300. * doc/reference.tex:
  301. fixed the footnote problem (thanks Dominique de Waleffe for the tip)
  302. * lang/calendar-ro.js: fixed typo
  303. * lang/calendar-sv.js: oops, license should be LGPL
  304. * lang/calendar-sw.js: new swedish translation is calendar-sv.js
  305. * menuarrow.gif, menuarrow.png:
  306. oops, forgot little drop-down menu arrows
  307. * lang/calendar-sv.js: swedish translation thanks to Leonard Norrgard
  308. * index.html: oops, some other minor changes
  309. * index.html, release-notes.html:
  310. latest changes in release-notes and index page for 0.9.4
  311. * doc/reference.tex, calendar.js:
  312. added %s date format (# of seconds since Epoch)
  313. * calendar.js:
  314. A click on TODAY will not close the calendar, even in single-click mode
  315. 2003-10-28 Mihai Bazon <mihai_bazon@yahoo.com>
  316. * index.html: previous cal.html
  317. * cal.html: moved to index.html
  318. * README, cal.html, doc/reference.tex, lang/calendar-de.js, lang/calendar-en.js, lang/calendar-ro.js, release-notes.html:
  319. LGPL license, forever.
  320. * doc/Calendar.setup.tex, simple-1.html:
  321. doc updated for the onUpdate parameter to Calendar.setup
  322. 2003-10-26 Mihai Bazon <mihai_bazon@yahoo.com>
  323. * calendar.js: fixed bug (correct display of the dropdown menus)
  324. * 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:
  325. lots of changes for the 0.9.4 release (see the release-notes.html)
  326. 2003-10-15 Mihai Bazon <mihai_bazon@yahoo.com>
  327. * doc/reference.tex:
  328. documentation updated for 0.9.4 (not yet finished though)
  329. 2003-10-07 Mihai Bazon <mihai_bazon@yahoo.com>
  330. * calendar.js, doc/reference.tex, release-notes.html, README, cal.html, calendar-setup.js:
  331. modified project website
  332. 2003-10-06 Mihai Bazon <mihai_bazon@yahoo.com>
  333. * calendar-setup.js:
  334. added some properties (onSelect, onClose, date) (thanks altblue)
  335. 2003-09-24 Mihai Bazon <mihai_bazon@yahoo.com>
  336. * simple-3.html: dateIsSpecial does not need the "date" argument ;-)
  337. 2003-09-24 fsoft <fsoft@mishoo>
  338. * calendar.js, simple-3.html:
  339. added year, month, day to getDateStatus() function
  340. 2003-09-24 Mihai Bazon <mihai_bazon@yahoo.com>
  341. * simple-3.html: example on how to use special dates
  342. * calendar-setup.js, calendar.js, simple-1.html:
  343. support for special dates (thanks fabio)
  344. 2003-09-17 Mihai Bazon <mihai_bazon@yahoo.com>
  345. * doc/reference.tex: fixed error in section 3.
  346. 2003-08-01 Mihai Bazon <mihai_bazon@yahoo.com>
  347. * lang/calendar-jp.js: added Japanese translation
  348. 2003-07-16 Mihai Bazon <mihai_bazon@yahoo.com>
  349. * simple-1.html: fixed problem with first example [IE,Opera]
  350. 2003-07-09 Mihai Bazon <mihai_bazon@yahoo.com>
  351. * doc/Calendar.setup.tex: fixed typo (closing parenthesis)
  352. * lang/calendar-de.js:
  353. added German translation, thanks to Hartwig Weinkauf
  354. 2003-07-08 Mihai Bazon <mihai_bazon@yahoo.com>
  355. * cal.html: added link to release-notes
  356. * release-notes.html: 0.9.3 release notes
  357. * make-release.pl:
  358. Script to create distribution archive. It needs some additional packages:
  359. - LaTeX
  360. - tex2page
  361. - jscrunch (JS compressor)
  362. * doc/html/makedoc.sh, doc/html/reference.css, doc/reference.tex, doc/makedoc.sh:
  363. documentation updates...
  364. * calendar.js: added semicolon to make the code "compressible"
  365. 2003-07-06 Mihai Bazon <mihai_bazon@yahoo.com>
  366. * doc/reference.tex: spell checked
  367. * doc/reference.tex: [minor] changed credits order
  368. * doc/reference.tex: various improvements and additions
  369. * doc/html/reference.css: minor eye-candy tweaks
  370. 2003-07-05 Mihai Bazon <mihai_bazon@yahoo.com>
  371. * 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:
  372. full documentation in LaTeX, for PDF and HTML formats
  373. * simple-2.html:
  374. added demonstration of flat calendar with Calendar.setup
  375. * simple-1.html:
  376. modified some links, added link to documentation, added demonstration of
  377. disableFunc property
  378. * calendar-setup.js: added the ability to create flat calendar too
  379. * cal.html: added links to documentation and simple-[12].html pages
  380. * README: up-to-date...
  381. * calendar-setup.html: removed: the documentation is unified
  382. 2003-07-03 Mihai Bazon <mihai_bazon@yahoo.com>
  383. * cal.html: some links to newly added files
  384. * calendar-setup.html, calendar-setup.js, img.gif, simple-1.html:
  385. added some files to simplify calendar creation for non-(JS)-programmers
  386. * lang/calendar-zh.js: added simplified chinese (thanks ATang)
  387. 2003-07-02 Mihai Bazon <mihai_bazon@yahoo.com>
  388. * calendar.js: * "yy"-related... [small fix]
  389. * calendar.js:
  390. * #721833 fixed (yy format will understand years prior to 29 as 20xx)
  391. * calendar.js: * added refresh() function
  392. * calendar.js: * fixed bug when in single click mode
  393. * added alignment options to "showAtElement" member function
  394. 2003-06-25 Mihai Bazon <mihai_bazon@yahoo.com>
  395. * lang/calendar-pt.js:
  396. added portugese translation (thanks Nuno Barreto)
  397. 2003-06-24 Mihai Bazon <mihai_bazon@yahoo.com>
  398. * calendar.js:
  399. call user handler when the date was changed using the keyboard
  400. * bugtest-hidden-selects.html:
  401. file to test bug with hidden select-s (thanks Ying Zhang for reporting and for this test file)
  402. * lang/calendar-hr-utf8.js:
  403. added croatian translation in utf8 (thanks Krunoslav Zubrinic)
  404. 2003-06-23 Mihai Bazon <mihai_bazon@yahoo.com>
  405. * lang/calendar-hu.js: added hungarian translation
  406. * lang/calendar-hr.js:
  407. added croatian translation (thanks to Krunoslav Zubrinic)
  408. 2003-06-22 Mihai Bazon <mihai_bazon@yahoo.com>
  409. * calendar.js:
  410. * #723335 fixed (clicking TODAY will not select the today date if the
  411. disabledHandler rejects it)
  412. * cal.html: * new code for to work with fix for bug #703238
  413. * switch to new version
  414. * calendar.js:
  415. * some patches to make code compatible with Opera 7 (well, almost compatible)
  416. * bug #703238 fixed (fix breaks compatibility with older code that uses
  417. calendar in single-click mode)
  418. * bug #703814 fixed
  419. 2003-04-09 Mihai Bazon <mihai_bazon@yahoo.com>
  420. * lang/calendar-tr.js: added turkish lang file
  421. 2003-03-19 Mihai Bazon <mihai_bazon@yahoo.com>
  422. * lang/calendar-ru.js: russian translation added
  423. * lang/calendar-no.js: norwegian translation added
  424. 2003-03-15 Mihai Bazon <mihai_bazon@yahoo.com>
  425. * lang/calendar-no.js: norwegian translation
  426. 2003-03-12 Mihai Bazon <mihai_bazon@yahoo.com>
  427. * lang/calendar-pl.js: added polish translation
  428. 2003-03-11 Mihai Bazon <mihai_bazon@yahoo.com>
  429. * calendar.js:
  430. bugfix in parseDate (added base to parseInt, thanks Alan!)
  431. 2003-03-05 Mihai Bazon <mihai_bazon@yahoo.com>
  432. * 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:
  433. New file.
  434. * 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:
  435. moved to CVS at sourceforge.net
  436. release: 0.9.2 + new language packs
  437. * 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:
  438. New file.
  439. * 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:
  440. moved to CVS at sourceforge.net
  441. release: 0.9.2 + new language packs