Граф коммитов

1002 Коммитов

Автор SHA1 Сообщение Дата
mattwillis%gmail.com d15778330c bug 272732
more fixes to eventdialog.js/xul - rev8 patch
todo alarms are now correctly handled, rejecting invalid combinations of enabled pickers and alarm related properties
r=pavlov@pavlov.net
2005-01-04 21:38:35 +00:00
mattwillis%gmail.com e0f711d653 bug 272732
more work on eventdialog.xul/js
priority level support now working correctly
ui updates to todo - unifying completed/cancelled/status widgets
alarm groupbox removed and widgets added to details
r=pavlov@pavlov.net
2005-01-04 17:03:13 +00:00
vladimir%pobox.com c88b490207 updated FE for new recurrence bits; also some todo fixes 2005-01-03 23:33:16 +00:00
mattwillis%gmail.com 6fddcdd596 bug 272732
applying patch rev5
more updates to eventDialog.js/xul per suggestions in irc
r=pavlov@pavlov.net
2005-01-03 21:37:04 +00:00
mattwillis%gmail.com 412b460e7d bug 226209 - clean up code bug
removes tabs and craziness from dragDrop.js
r=mostafah
2005-01-03 21:18:41 +00:00
mattwillis%gmail.com d89de942e5 bug 272732
more updates and fixes to eventDialog.js/xul to work with new interfaces and to combine eventDialog and toDoDialog
r=pavlov@pavlov.net
2005-01-03 17:30:54 +00:00
mattwillis%gmail.com e57a05baac bug 272732
fixes window title regression
r=pavlov@pavlov.net
2004-12-29 21:58:04 +00:00
mattwillis%gmail.com 7cf8f4a5a1 bug 272732
more work on new/edit event dialog.
more of the todo/task controls are wired in and working.
r=pavlov@pavlov.net
2004-12-29 20:35:38 +00:00
pavlov%pavlov.net cc43dd8408 Merging the event and todo dialogs 2004-12-23 19:34:50 +00:00
mattwillis%gmail.com 4b1aaccdfe bug 243494
long event titles/locations/descriptions should break into multiple lines rather than crop
r=pavlov@pavlov.net
2004-12-23 02:04:24 +00:00
mattwillis%gmail.com 3699fc6a01 bug 249820
change alertDialog from window to dialog to remove last vestiges of dialogOverlay
r=mostafah
2004-12-23 00:26:47 +00:00
mattwillis%gmail.com 2c8182b065 Since we're combining eventDialog.* and toDoDialog.*, there is no longer a need to abstract this functionality out.
ok to remove without a bug = mostafah
2004-12-23 00:02:37 +00:00
mattwillis%gmail.com d2fe356703 bug 275404
fixes day view description placement
r=mattwillis
2004-12-22 16:25:41 +00:00
mattwillis%gmail.com 6d8ac4df7b bug 275059
move width of date/timepickers to css
r=mattwillis
2004-12-22 16:05:09 +00:00
mattwillis%gmail.com d1972c6acc bug 274916
removes remnants of calendar and clock icons for date/timepickers
r=mostafah
2004-12-22 15:35:07 +00:00
pavlov%pavlov.net b777f89723 adding new calendar attachment interface -- bug 274966 2004-12-20 18:04:15 +00:00
vladimir%pobox.com b397544e5e new recurrence system. exceptions supported now, along with everything else ical can throw at us. I hope. 2004-12-18 01:54:30 +00:00
pavlov%pavlov.net d003e3de03 adding attachment support (not enabled currently)
work on all day events
lots of code removal
2004-12-16 21:28:00 +00:00
pavlov%pavlov.net b9cbc4fac9 always bring up the right prefs 2004-12-16 21:24:53 +00:00
mostafah%oeone.com 085ff234f5 Checked in images from attachment 168797 for bug 274783:
Crush PNG images to reduce filesize
2004-12-16 15:03:22 +00:00
mostafah%oeone.com a4b605a020 Fixed bug 274530:CSS Error (file:///C:/DOCUME~1/user/LOCALS~1/Temp/calendarPrint.html :0.43):
Unknown property 'vertical-alignment'. Declaration dropped.
2004-12-14 14:18:34 +00:00
pavlov%pavlov.net 73a35cc943 present the stored recurrence info when modifying an item 2004-12-14 08:35:44 +00:00
pavlov%pavlov.net 0c6275c33e fixing events to show up on the right day 2004-12-14 08:34:27 +00:00
vladimir%pobox.com 9a9719b366 fixed storage recurrence; notpartofthebuild 2004-12-14 03:27:32 +00:00
pavlov%pavlov.net e224e150e4 hook up a week view observer to refresh the display when you add/modify/delete 2004-12-14 01:41:35 +00:00
pavlov%pavlov.net 200652205a clear out the attendees before adding the current set. insert mailto: before new attendees 2004-12-14 01:08:30 +00:00
pavlov%pavlov.net a3523f2ba5 changing weekView to display occurrences 2004-12-14 00:47:51 +00:00
shaver%mozilla.org 03e9917344 Use var to avoid using window.title as a temporary and triggering assertions. 2004-12-14 00:36:18 +00:00
pavlov%pavlov.net 1ed18969a4 fixing recurrence to set the interval and type and fixing a bug when adding attendeees 2004-12-14 00:19:01 +00:00
pavlov%pavlov.net d8bcffcf0b Adding support for attendees and setting of recurrence 2004-12-13 23:15:41 +00:00
shaver%mozilla.org c384132735 - Use literal strings instead of integer constants, for better insulation
from libical changes, and a vastly improved debugging experience.
  The requisite data validation is coming once I figure out how best to
  get libical to do that validation in any reasonable fashion whatsoever.

- Remove METHOD from calIItemBase, as it's a bit of ICS specificity that should
  live elsewhere for manipulation in calling code.

- Remove useless getAttendees/setAttendees from calIIcalComponent, now that
  real property/parameter support exists.

- Unify property/x-property interfaces as much as possible.

- Likewise for parameters/x-parameters.

- Real property and parameters support, sufficient at least to whack ATTENDEE
  props in interesting ways.

- Properties on calIAttendee (mapped generally to ICS parameters, though
  somewhat fragilely).

- Round-trip X-WHATEVER ICS properties and params reliably.

- Attendee serialization/deserialization in calItemBase.

- In various places, SetIsVoid on empty strings returned to signify
  missing property/parameters.  Nicer from JS, to be sure.

- Fix test cases and one little spot in Sunbird to keep up.

CalDAV event modification works now.
2004-12-13 09:50:30 +00:00
mvl%exedo.nl 13e68f643d set class on eventboxes to actually draw a box 2004-12-11 18:52:19 +00:00
pavlov%pavlov.net b0a66f05f0 clean up some code and fix up deleting of items 2004-12-10 20:34:30 +00:00
pavlov%pavlov.net 7fd4187c45 Making clone() do a QI back to calIEvent 2004-12-10 11:35:05 +00:00
pavlov%pavlov.net 4a7ecbc7ca fixing new event dialog to start with the correct start/end times 2004-12-10 11:13:04 +00:00
pavlov%pavlov.net 0613c4802a getting the edit dialog up 2004-12-10 10:58:59 +00:00
shaver%mozilla.org 522338eedf Use prefs to control calendar type ("calendar.default-calendar.type") and
uri ("calendar.default-calendar.uri", only for caldav and storage types), so
we can all stop hacking createCalendar ourselves. r=dmose.

The default remains a memory-type calendar.
2004-12-10 09:56:34 +00:00
pavlov%pavlov.net 9bd7c9f40b fixing weekView to request events for the full 7 days instead of just 6 2004-12-10 01:45:02 +00:00
pavlov%pavlov.net 566a1dbb47 fixing weekView to clear events when changing weeks 2004-12-10 00:15:25 +00:00
pavlov%pavlov.net ea78fa45b7 fix week view to show events in the right column and time slot 2004-12-09 23:47:44 +00:00
pavlov%pavlov.net 977bf12427 set the start/end times correctly 2004-12-09 22:51:59 +00:00
pavlov%pavlov.net 70ddf9a2e2 work on getting the week view to work again bug 273955 r=mvl 2004-12-09 22:32:39 +00:00
mostafah%oeone.com 3197e6c742 Checked in attachment 167835 for bug 270724:
Parses PM time as AM if format has leading tt or non AM/PM, as in taiwan locale tt hh:mm:ss
2004-12-06 17:20:26 +00:00
mvl%exedo.nl 48e11b894b Show errors from publishing.
bug 271029, r=mostafah
2004-12-03 20:26:48 +00:00
mostafah%oeone.com 8ae2763ceb Checked in patch for bug 265265: grid lines dissapear in weekly view 2004-12-03 14:04:54 +00:00
mostafah%oeone.com f516d2ea36 Checked in patch for bug 270724:
Parses PM time as AM if format has leading tt or non AM/PM, as in taiwan locale tt hh:mm:ss
2004-12-02 19:43:53 +00:00
pavlov%pavlov.net 84dee1b4db updating eventDialog to use the new calendar APIs
revamp of the event dialog by mattwillis@gmail.com
bug 272732 r=shaver
2004-12-02 17:41:13 +00:00
mvl%exedo.nl 421b81182b fix javascript strict warning
bug 258324, patch by gekacheka, r=mvl
2004-12-02 10:56:36 +00:00
mvl%exedo.nl 0951e54b13 fix javascript strict warning
bug 248884, patch by gekacheka, r=mvl
2004-12-02 10:53:47 +00:00
mvl%exedo.nl 13761798e3 fix javascript strict warning
bug 265274, patch by gekacheka, r=mvl
2004-12-02 10:51:16 +00:00