reorganizes spec cases and fixes a couple few

This commit is contained in:
Jessica Lynn Suttles 2013-02-11 17:17:31 -08:00
parent 67465879fa
commit 72ce8e3cd6
158 changed files with 46 additions and 42 deletions

View file

@ -0,0 +1,3 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<p class="h-event">IndieWebCamp 2012</p>

View file

@ -0,0 +1,10 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["IndieWebCamp 2012"]
}
}]
}

View file

@ -0,0 +1,3 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<a class="h-event" href="http://indiewebcamp.com/2012">IndieWebCamp 2012</a>

View file

@ -0,0 +1,11 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["IndieWebCamp 2012"],
"url": ["http://indiewebcamp.com/2012"]
}
}]
}

View file

@ -0,0 +1,14 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<div class="h-event">
<span class="p-name">CPJ Online Press Freedom Summit</span>
(<time class="dt-start" datetime="2012-10-10">10 Nov 2012</time>) in
<span class="p-location">San Francisco</span>.
Attendees:
<ul>
<li class="p-attendee h-card">Brian Warner</li>
<li class="p-attendee h-card">Kyle Machulis</li>
<li class="p-attendee h-card">Tantek Çelik</li>
<li class="p-attendee h-card">Sid Sutter</li>
</ul>
</div>

View file

@ -0,0 +1,57 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["CPJ Online Press Freedom Summit"],
"start": ["2012-10-10"],
"location": ["San Francisco"],
"attendee": [{
"value": "Brian Warner",
"type": ["h-card"],
"properties": {
"name": ["Brian Warner"]
}
},{
"value": "Kyle Machulis",
"type": ["h-card"],
"properties": {
"name": ["Kyle Machulis"]
}
},{
"value": "Tantek Çelik",
"type": ["h-card"],
"properties": {
"name": ["Tantek Çelik"]
}
},{
"value": "Sid Sutter",
"type": ["h-card"],
"properties": {
"name": ["Sid Sutter"]
}
}]
}
},{
"type": ["h-card"],
"properties": {
"name": ["Brian Warner"]
}
},{
"type": ["h-card"],
"properties": {
"name": ["Kyle Machulis"]
}
},{
"type": ["h-card"],
"properties": {
"name": ["Tantek Çelik"]
}
},{
"type": ["h-card"],
"properties": {
"name": ["Sid Sutter"]
}
}]
}

View file

@ -0,0 +1,15 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<div class="h-event">
<a class="p-name u-url" href="http://indiewebcamp.com/2012">
IndieWebCamp 2012
</a>
from <time class="dt-start">2012-06-30</time>
to <time class="dt-end">2012-07-01</time> at
<span class="p-location h-card">
<a class="p-name p-org u-url" href="http://geoloqi.com/">Geoloqi</a>,
<span class="p-street-address">920 SW 3rd Ave. Suite 400</span>,
<span class="p-locality">Portland</span>,
<abbr class="p-region" title="Oregon">OR</abbr>
</span>
</div>

View file

@ -0,0 +1,35 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["IndieWebCamp 2012"],
"url": ["http://indiewebcamp.com/2012"],
"start": ["2012-06-30"],
"end": ["2012-07-01"],
"location": [{
"value": "Geoloqi, 920 SW 3rd Ave. Suite 400, Portland, OR",
"type": ["h-card"],
"properties": {
"name": ["Geoloqi"],
"org": ["Geoloqi"],
"url": ["http://geoloqi.com/"],
"street-address": ["920 SW 3rd Ave. Suite 400"],
"locality": ["Portland"],
"region": ["Oregon"]
}
}]
}
},{
"type": ["h-card"],
"properties": {
"name": ["Geoloqi"],
"org": ["Geoloqi"],
"url": ["http://geoloqi.com/"],
"street-address": ["920 SW 3rd Ave. Suite 400"],
"locality": ["Portland"],
"region": ["Oregon"]
}
}]
}

View file

@ -0,0 +1,9 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<span class="h-event">
<span class="p-name">The 4th Microformat party</span> will be on
<span class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00</time></span> to
<span class="dt-end"><time class="value">22:00</time></span>.
</span>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["The 4th Microformat party"],
"start": ["2009-06-26T19:00:00"],
"end": ["2009-06-26T22:00:00"]
}
}]
}

View file

@ -0,0 +1,45 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<span class="h-event">
<span class="p-name">The 4th Microformat party</span> will be on
<ul>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00:00-08:00</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00:00-0800</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00:00+0800</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00:00Z</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00:00</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00-08:00</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00+08:00</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00Z</time>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<time class="value">19:00</time>
</li>
<li>
<time class="dt-end" datetime="2013-034">3 February 2013</time>
</li>
</ul></span>

View file

@ -0,0 +1,22 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["The 4th Microformat party"],
"start": [
"2009-06-26T19:00:00-0800",
"2009-06-26T19:00:00-0800",
"2009-06-26T19:00:00+0800",
"2009-06-26T19:00:00Z",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00-0800",
"2009-06-26T19:00:00+0800",
"2009-06-26T19:00:00Z",
"2009-06-26T19:00:00"
],
"end": ["2013-034"]
}
}]
}

View file

@ -0,0 +1,51 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<span class="h-event">
<span class="p-name">The 4th Microformat party</span> will be on
<ul>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07:00:00pm
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07:00:00am
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07:00pm
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07pm
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">7pm
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">7:00pm
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07:00p.m.
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">07:00PM
</span>
</li>
<li class="dt-start">
<time class="value" datetime="2009-06-26">26 July</time>, from
<span class="value">7:00am
</span>
</li>
</ul></span>

View file

@ -0,0 +1,21 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["The 4th Microformat party"],
"start": [
"2009-06-26T19:00:00",
"2009-06-26T07:00:00",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00",
"2009-06-26T19:00:00",
"2009-06-26T07:00:00"
]
}
}]
}

View file

@ -0,0 +1,22 @@
<!-- http://microformat2-node.jit.su/h-event.html -->
<span class="h-event">
<span class="p-name">The party</span> will be on
<!-- value and value-title patterns -->
<p class="dt-start">
<span class="value-title" title="2013-03-14"> </span>
March 14th 2013
</p>
<p class="dt-start">
<time class="value" datetime="2013-06-25">25 July</time>, from
<span class="value">07:00:00am
</span></p>
<!-- elements with datetime attribute -->
<p>
<time class="dt-start" datetime="2013-06-26">26 June</time><ins class="dt-start" datetime="2013-06-27">Just added</ins>,
<del class="dt-start" datetime="2013-06-28">Removed</del>
</p>
<abbr class="dt-start" title="2013-06-29">June 29</abbr>
<data class="dt-start" value="2013-07-01"></data><p class="dt-start">2013-07-02</p>
</span>

View file

@ -0,0 +1,20 @@
// http://microformat2-node.jit.su/h-event.html
{
"items": [{
"type": ["h-event"],
"properties": {
"name": ["The party"],
"start": [
"2013-03-14",
"2013-06-25T07:00:00",
"2013-06-26",
"2013-06-27",
"2013-06-28",
"2013-06-29",
"2013-07-01",
"2013-07-02"
]
}
}]
}