mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
--HG-- extra : commitid : F2OWKTvXUO4 extra : rebase_source : ec68631342e0edc59d77b6bab1cdc975ad175327
46 lines
865 B
JavaScript
46 lines
865 B
JavaScript
/*
|
|
Copyright (C) 2010 - 2015 Glenn Jones. All Rights Reserved.
|
|
MIT License: https://raw.github.com/glennjones/microformat-shiv/master/license.txt
|
|
*/
|
|
|
|
var Modules = (function (modules) {
|
|
|
|
modules.maps = (modules.maps)? modules.maps : {};
|
|
|
|
modules.maps['h-review'] = {
|
|
root: 'hreview',
|
|
name: 'h-review',
|
|
properties: {
|
|
'summary': {
|
|
'map': 'p-name'
|
|
},
|
|
'description': {
|
|
'map': 'e-description'
|
|
},
|
|
'item': {
|
|
'map': 'p-item',
|
|
'uf': ['h-item', 'h-geo', 'h-adr', 'h-card', 'h-event', 'h-product']
|
|
},
|
|
'reviewer': {
|
|
'uf': ['h-card']
|
|
},
|
|
'dtreviewer': {
|
|
'map': 'dt-reviewer'
|
|
},
|
|
'rating': {},
|
|
'best': {},
|
|
'worst': {},
|
|
'category': {
|
|
'map': 'p-category',
|
|
'relAlt': ['tag']
|
|
},
|
|
'url': {
|
|
'map': 'u-url',
|
|
'relAlt': ['self', 'bookmark']
|
|
}
|
|
}
|
|
};
|
|
|
|
return modules;
|
|
|
|
} (Modules || {}));
|