opening-hours-formats: Difference between revisions
Jump to navigation
Jump to search
(wrapper for HTML code) |
(entry-title, related, intro, openstreetmap placeholder based in implication in brainstorming) |
||
Line 1: | Line 1: | ||
<entry-title>opening hours formats</entry-title> | |||
This is part of an effort per the microformats [[process]] to research, gather examples, and brainstorm for a microformat for marking up the [[opening-hours]] for a business or organization. | |||
* [[opening-hours-examples]] | |||
* [[opening-hours-formats]] | |||
* [[opening-hours-brainstorming]] | |||
== Openstreetmap == | |||
* ??? | |||
== Google maps display == | |||
Google places uses this format to *display* the opening hours, and then applies some javascript to hide the lines which are not immediately useful: | Google places uses this format to *display* the opening hours, and then applies some javascript to hide the lines which are not immediately useful: | ||
The translate the day names and the time formats into the users locale. | The translate the day names and the time formats into the users locale. | ||
Line 68: | Line 80: | ||
</table> | </table> | ||
</source> | </source> | ||
== see also == | |||
* [[opening-hours]] | |||
* [[opening-hours-examples]] | |||
* [[opening-hours-formats]] | |||
* [[opening-hours-brainstorming]] |
Revision as of 18:11, 21 December 2012
<entry-title>opening hours formats</entry-title>
This is part of an effort per the microformats process to research, gather examples, and brainstorm for a microformat for marking up the opening-hours for a business or organization.
Openstreetmap
- ???
Google maps display
Google places uses this format to *display* the opening hours, and then applies some javascript to hide the lines which are not immediately useful: The translate the day names and the time formats into the users locale.
This is clearly rendered data for end user consumption and not a format one can use to establish a standard.
See an example here with opening hours: http://maps.google.com/maps/place?cid=17374953169507020841
<table style="" id="oh-ov-table" class="oh-table">
<tbody>
<tr class="oh-highlight-day">
<td class="oh-day">
Montag
</td>
<td dir="ltr">
11:00-16:00
</td>
</tr>
<tr>
<td class="oh-day">
Dienstag
</td>
<td dir="ltr">
11:00-22:00
</td>
</tr>
<tr>
<td class="oh-day">
Mittwoch
</td>
<td dir="ltr">
11:00-22:00
</td>
</tr>
<tr>
<td class="oh-day">
Donnerstag
</td>
<td dir="ltr">
11:00-22:00
</td>
</tr>
<tr>
<td class="oh-day">
Freitag
</td>
<td dir="ltr">
11:00-16:00
</td>
</tr>
<tr>
<td class="oh-day">
Samstag
</td>
<td dir="ltr">
Geschlossen
</td>
</tr>
<tr>
<td class="oh-day">
Sonntag
</td>
<td dir="ltr">
Geschlossen
</td>
</tr>
</tbody>
</table>