task-formats: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(moved task effort to more appropriate page, explicitly note that Toby's hCalendar 1.1 is a fork)
 
(6 intermediate revisions by 3 users not shown)
Line 18: Line 18:
  <abbr class="due" title="2007-01-01T13:10:05.0Z">January 1, 2007</abbr>
  <abbr class="due" title="2007-01-01T13:10:05.0Z">January 1, 2007</abbr>


== Comparison chart ==
== Comparison table ==
The following chart maps the terms from existing hCal and hCard implementations to proposed Task values. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. Each column has all the properties and their equivalent in each format. If there is no corresponding property, I have proposed a new property. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones.  
The following table maps the terms from existing hCal and hCard implementations to proposed Task values. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. Each column has all the properties and their equivalent in each format. If there is no corresponding property, I have proposed a new property. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones.  


THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.
THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.
Line 25: Line 25:
<table cellspacing="0" cellpadding="0" border="1">
<table cellspacing="0" cellpadding="0" border="1">
   <tr height="13">
   <tr height="13">
     <td width="75" height="13"><span class="style3">Section</span></td>
     <td width="75" height="13"><strong>Section</strong></td>
     <td width="98"><span class="style3">Name</span></td>
     <td width="98"><strong>Name</strong></td>
     <td width="126"><span class="style3">Class</span></td>
     <td width="126"><strong>Class</strong></td>
     <td width="139"><span class="style3">Values</span></td>
     <td width="139"><strong>Values</strong></td>
   </tr>
   </tr>
   <tr height="12">
   <tr height="12">
Line 242: Line 242:
</table>
</table>


== See Also  ==
= Toby's hCalendar 1.1 fork =
* [[htask|Task Effort]]
 
[[User:TobyInk|TobyInk]]'s [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 fork]] documents a VTODO component.
 
= See Also  =
* [[task|Task Effort]]
* [[task-examples|Task Examples]]
* [[task-examples|Task Examples]]
* [[task-brainstorming|Task Brainstorming]]
* [[task-brainstorming|Task Brainstorming]]
* [[task-faq|Task FAQ]]
* [[task-faq|Task FAQ]]

Latest revision as of 17:18, 10 March 2010

Task Formats

This page will look at existing examples of task (to-do) formats and assess a model task format type. The idea is to put forward the most important properties for creating a task microformat.

Previous Formats

The Task Microformat may be based loosely on elements found in the VTODO spec. VTODO is part of the RFC2445 iCalendar spec used for describing task items. VTODO is fairly straight-forward, as it doesn't contain any nested entities, and has a fairly small list of properties. Most of these it shares with VEVENT, suggesting a Task Microformat be modeled on hevent in hcalendar, and the ground assumption is that htodo should work just like hevent with respect to these properties. The shared properties in this case might include:

class, created, description, dtstamp, dtstart, geo, last-mod, location, organizer, priority, recurid, seq, statusm summary, uid, url, duration, attach, attendee, categories, comment, contact, exdate, exrule, rstatus, related, resources, rdate, rrule, x-prop

The unique properties of the existing VTODO format are:

  • completed The date/time the todo was completed
  • due The date/time this todo is due
  • percent Integer from 0-100, completion status

As the data types for completed and due are the same as, e.g., dtstart, then the usage should be the same. For example,

<abbr class="due" title="2007-01-01T13:10:05.0Z">January 1, 2007</abbr>

Comparison table

The following table maps the terms from existing hCal and hCard implementations to proposed Task values. This is important because if all the properties are introduced to this microformat, then it's possible to map them to a number of different formats. Each column has all the properties and their equivalent in each format. If there is no corresponding property, I have proposed a new property. At the bottom of the list are the unique terms to each format. Dublin Core has basic terms and terms that extend the basic ones.

THIS IS NOT DEFINITIVE, any errors should be corrected. More formats will be added to the list as they are mapped.

Section Name Class Values
Date/Time      
  Timezone tzid  
  Created dtstart  
  Modified    
  Accepted    
  Reviewed    
  Duration duration  
  Due dtend  
  Multiple dates rdate  
  Recurrence Rule rrule  
  Frequency freq  
  Recurrence Date rdate  
  Reminder dtrem  
       
       
People      
  Originator uid  
  Assignee fn n  
  Informee cc  
  Group org  
Status      
  Status status active, disabled, completed
  Progress   %
  Priority priority high, medium, low
  Notes    
  Privacy privacy  
Details      
  Title description  
  Summary summary  
  Category category  
  Tags meta  
  Parent rel="par"  
  Dependency rel="dep  
  Links rel="url"  
  Attachment rel="enclosure"  

Toby's hCalendar 1.1 fork

TobyInk's hCalendar 1.1 fork documents a VTODO component.

See Also