RSS Event date - RSS 2.0 Module

Specification Version 1.0

This Version :
December, 2012
Latest Version :
http://www.gsite.org/RSS/modules/event_dates/
Author :
Pérez Guillaume (perez@id-alizes.fr)

Abstract

RSS Event date is an RSS (Really Simple Syndication) 2.0 module that enables RSS entries to possess multiples event dates associated with RSS feeds.

Rights

This work is licensed under a GNU LESSER GENERAL PUBLIC LICENSE.

Contents

  1. Status
  2. Namespace Declaration
  3. Usage
  4. Elements
  5. Example

Status

This document is in final version. It can be used for production. Please send any feedback to Pérez Guillaume.

Namespace Declaration

The namespace for RSS Traits is:

The recommended prefix is event, resulting in the namespace declaration:

Usage

RSS Event date is an RSS 2.0 module. Elements are included as part of the <item> element.

Elements

Exemple

...
<item>
  <title>My news title</title>
  <pubDate>2012-09-28 10:23:27</pubDate>
  <link></link>
  <description>My description></description>
  <events:dates>
    <events:date>
      <events:date_start>2012-09-01</events:date_start>
      <events:time_start>12:00:00</events:time_start>
      <events:date_end>2012-09-01</events:date_end>
      <events:time_end>13:00:00</events:time_end>
    </events:date>
    <events:date>
      <events:date_start>2012-09-03</events:date_start>
      <events:date_end>2012-09-03</events:date_end>
    </events:date>
    <events:date>
      <events:date_start>2012-09-05</events:date_start>
      <events:date_end>2012-09-09</events:date_end>
    </events:date>
  </events:dates>
</item>
...