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 ed58788884
commit c74ecef194
158 changed files with 46 additions and 42 deletions

View file

@ -0,0 +1,10 @@
<!-- http://microformat2-node.jit.su/h-review-aggregate.html -->
<div class="h-review-aggregate">
<h3 class="p-item h-item">Mediterranean Wraps</h3>
<span class="p-summary">
Customers flock to this small restaurant for their
tasty falafel and shawerma wraps and welcoming staff.
</span>
<span class="p-rating">4.5</span> out of 5
</div>

View file

@ -0,0 +1,19 @@
// http://microformat2-node.jit.su/h-review-aggregate.html
{
"items": [{
"type": ["h-review-aggregate"],
"properties": {
"item": [{
"value": "Mediterranean Wraps",
"type": ["h-item"],
"properties": {
"name": ["Mediterranean Wraps"]
}
}],
"summary": ["Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff."],
"rating": ["4.5"],
"name": ["Mediterranean Wraps Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff. 4.5 out of 5"]
}
}]
}

View file

@ -0,0 +1,20 @@
<!-- http://microformat2-node.jit.su/h-review-aggregate.html -->
<div class="hreview-aggregate">
<div class="p-item h-card">
<h3 class="p-name">Mediterranean Wraps</h3>
<p>
<span class="p-street-address">433 S California Ave</span>,
<span class="p-locality">Palo Alto</span>,
<span class="p-region">CA</span> -
<span class="p-tel">(650) 321-8189</span>
</p>
</div>
<span class="p-summary">Customers flock to this small restaurant for their
tasty falafel and shawerma wraps and welcoming staff.</span>
<span class="p-rating">
<span class="p-average value">9.2</span> out of
<span class="p-best">10</span>
based on <span class="p-count">17</span> reviews
</span>
</div>

View file

@ -0,0 +1,26 @@
// http://microformat2-node.jit.su/h-review-aggregate.html
{
"items": [{
"type": ["h-review-aggregate"],
"properties": {
"item": [{
"value": "Mediterranean Wraps 433 S California Ave, Palo Alto, CA - (650) 321-8189",
"type": ["h-card"],
"properties": {
"name": ["Mediterranean Wraps"],
"street-address": ["433 S California Ave"],
"locality": ["Palo Alto"],
"region": ["CA"],
"tel": ["(650) 321-8189"]
}
}],
"summary": ["Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff."],
"rating": ["9.2"],
"average": ["9.2"],
"best": ["10"],
"count": ["17"],
"name": ["Mediterranean Wraps 433 S California Ave, Palo Alto, CA - (650) 321-8189 Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff. 9.2 out of 10 based on 17 reviews"]
}
}]
}

View file

@ -0,0 +1,15 @@
<!-- http://microformat2-node.jit.su/h-review-aggregate.html -->
<div class="h-review-aggregate">
<div class="p-item h-event">
<h3 class="p-name">Fullfrontal</h3>
<p class="p-description">A one day JavaScript Conference held in Brighton</p>
<p><time class="dt-start" datetime="2012-11-09">9th November 2012</time></p>
</div>
<p class="p-rating">
<span class="p-average value">9.9</span> out of
<span class="p-best">10</span>
based on <span class="p-count">62</span> reviews
</p>
</div>

View file

@ -0,0 +1,23 @@
// http://microformat2-node.jit.su/h-review-aggregate.html
{
"items": [{
"type": ["h-review-aggregate"],
"properties": {
"item": [{
"value": "Fullfrontal A one day JavaScript Conference held in Brighton 9th November 2012",
"type": ["h-event"],
"properties": {
"name": ["Fullfrontal"],
"description": ["A one day JavaScript Conference held in Brighton"],
"start": ["2012-11-09"]
}
}],
"rating": ["9.9"],
"average": ["9.9"],
"best": ["10"],
"count": ["62"],
"name": ["Fullfrontal A one day JavaScript Conference held in Brighton 9th November 2012 9.9 out of 10 based on 62 reviews"]
}
}]
}