Confirmed users
59
edits
(header) |
|||
| Line 1: | Line 1: | ||
==== Development goals | Back to [[Calendar:Feature_Implementations| << Features]] [[Calendar:Feature_Implementations:ImportExport| < ImportExport]] | ||
This page is meant to be used by calendar developers. To add minor comments/feedback, please use the [[Calendar_Talk:Feature_Implementations:ImportExport:CSV|discussion page]]. More extensive discussion should be taken the [http://groups.google.com/group/mozilla.dev.apps.calendar?hl=en newsgroup]. | |||
==Basic overview== | |||
This page covers features of importing and exporting events and tasks in Comma Separated Value format. | |||
This very basic format is human readable and understood by nearly all programs. | |||
=== Development goals === | |||
Recommended date format is <code>YYYY-MM-DD</code> with a '''four''' digit year at the beginning. Time format should be <code>HH:MM:SS</code> with 24-hour values. Calendar will also understand dates and times in the locale scheme of the operating system but data format must not change within a file. The universal indicators <code>AM</code>, <code>a.m.</code>, <code>PM</code> and <code>p.m.</code> are always recognized. | Recommended date format is <code>YYYY-MM-DD</code> with a '''four''' digit year at the beginning. Time format should be <code>HH:MM:SS</code> with 24-hour values. Calendar will also understand dates and times in the locale scheme of the operating system but data format must not change within a file. The universal indicators <code>AM</code>, <code>a.m.</code>, <code>PM</code> and <code>p.m.</code> are always recognized. | ||
==Proposal pages== | |||
* | |||
==Related bugs== | |||
* {{bug|359083}} | |||
== Design/Implementation status on the CVS trunk as of YYYY/MM/DD == | |||
We can do all this cool stuff... | |||
[[category:calendar]] | |||
| Line 75: | Line 96: | ||
|} | |} | ||
'' Source '' | |||
http://mxr.mozilla.org/mozilla/source/calendar/import-export/calOutlookCSVImportExport.js | http://mxr.mozilla.org/mozilla/source/calendar/import-export/calOutlookCSVImportExport.js | ||