microformats 4.0.6 → 4.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.editorconfig +10 -0
- data/.gitignore +33 -15
- data/.rspec +3 -2
- data/.rubocop +3 -0
- data/.rubocop.yml +22 -0
- data/.ruby-version +1 -0
- data/.simplecov +11 -0
- data/.travis.yml +16 -2
- data/CONTRIBUTING.md +103 -0
- data/Guardfile +2 -2
- data/LICENSE +116 -0
- data/README.md +112 -172
- data/Rakefile +6 -7
- data/bin/microformats +10 -9
- data/lib/microformats.rb +15 -14
- data/lib/microformats/absolute_uri.rb +4 -8
- data/lib/microformats/format_parser.rb +271 -251
- data/lib/microformats/parser.rb +39 -39
- data/lib/microformats/parser_core.rb +142 -109
- data/lib/microformats/property_parser.rb +42 -65
- data/lib/microformats/results/collection.rb +19 -38
- data/lib/microformats/results/parser_result.rb +25 -37
- data/lib/microformats/results/property_set.rb +24 -31
- data/lib/microformats/time_property_parser.rb +130 -104
- data/lib/microformats/version.rb +1 -1
- data/logo.svg +23 -0
- data/microformats.gemspec +35 -33
- metadata +122 -445
- data/LICENSE.md +0 -36
- data/spec/lib/microformats/absolute_uri_spec.rb +0 -56
- data/spec/lib/microformats/parser_spec.rb +0 -132
- data/spec/lib/microformats_spec.rb +0 -33
- data/spec/spec_helper.rb +0 -10
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-0.html +0 -2
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-0.js +0 -9
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-1.html +0 -2
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-1.js +0 -10
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-2.html +0 -5
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-2.js +0 -11
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-3.html +0 -17
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-3.js +0 -20
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-4.html +0 -16
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-4.js +0 -24
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-5.html +0 -7
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-5.js +0 -11
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-6.html +0 -9
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-6.js +0 -18
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-7.html +0 -9
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-7.js +0 -18
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-8.html +0 -9
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-8.js +0 -17
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-9.html +0 -9
- data/spec/support/cases/microformats.org/microformats-2/microformats-2-9.js +0 -17
- data/spec/support/lib/edge_cases/blank_href.html +0 -23
- data/spec/support/lib/edge_cases/blank_href.js +0 -15
- data/spec/support/lib/edge_cases/blank_rel.html +0 -23
- data/spec/support/lib/edge_cases/blank_rel.js +0 -41
- data/spec/support/lib/edge_cases/blank_src.html +0 -24
- data/spec/support/lib/edge_cases/blank_src.js +0 -16
- data/spec/support/lib/edge_cases/blank_value.html +0 -5
- data/spec/support/lib/edge_cases/blank_value.js +0 -19
- data/spec/support/lib/edge_cases/relative.html +0 -29
- data/spec/support/lib/edge_cases/relative.js +0 -15
- data/spec/support/lib/microformats/blank_href.html +0 -23
- data/spec/support/lib/microformats/blank_href.js +0 -11
- data/spec/support/lib/microformats/implied_property/name-fail.html +0 -60
- data/spec/support/lib/microformats/implied_property/name-pass.html +0 -30
- data/spec/support/lib/microformats/implied_property/photo-fail.html +0 -60
- data/spec/support/lib/microformats/implied_property/photo-pass.html +0 -30
- data/spec/support/lib/microformats/implied_property/url-fail.html +0 -18
- data/spec/support/lib/microformats/implied_property/url-pass.html +0 -12
- data/spec/support/lib/microformats/implied_property/url-relative.html +0 -13
- data/spec/support/lib/microformats/implied_property/url-unnormalized.html +0 -12
- data/spec/support/lib/microformats/nested-format-with-property-of-same-name.html +0 -13
- data/spec/support/lib/microformats/nested-format-with-property-of-same-name.js +0 -16
- data/spec/support/lib/microformats/nested-format-with-property.html +0 -12
- data/spec/support/lib/microformats/nested-format-with-property.js +0 -16
- data/spec/support/lib/microformats/nested-format-without-property.html +0 -13
- data/spec/support/lib/microformats/nested-property.html +0 -12
- data/spec/support/lib/microformats/nested-property.js +0 -10
- data/spec/support/lib/microformats/rels-that-drop-the-base.html +0 -11
- data/spec/support/lib/microformats/rels-with-unnormalized-urls.html +0 -11
- data/spec/support/lib/microformats/rels.html +0 -12
- data/spec/support/lib/microformats/rels.js +0 -13
- data/spec/support/lib/microformats/simple.html +0 -23
- data/spec/support/lib/microformats/simple.js +0 -11
- data/vendor/tests/.gitignore +0 -25
- data/vendor/tests/LICENSE.md +0 -36
- data/vendor/tests/README.md +0 -48
- data/vendor/tests/app.js +0 -84
- data/vendor/tests/composer.json +0 -5
- data/vendor/tests/css/testsuite.css +0 -159
- data/vendor/tests/interface.js +0 -18
- data/vendor/tests/package.json +0 -27
- data/vendor/tests/tests/microformats-mixed/h-card/change-log.html +0 -63
- data/vendor/tests/tests/microformats-mixed/h-card/mixedpropertries.html +0 -14
- data/vendor/tests/tests/microformats-mixed/h-card/mixedpropertries.json +0 -22
- data/vendor/tests/tests/microformats-mixed/h-card/tworoots.html +0 -1
- data/vendor/tests/tests/microformats-mixed/h-card/tworoots.json +0 -10
- data/vendor/tests/tests/microformats-mixed/h-entry/mixedroots.html +0 -16
- data/vendor/tests/tests/microformats-mixed/h-entry/mixedroots.json +0 -38
- data/vendor/tests/tests/microformats-mixed/h-resume/change-log.html +0 -68
- data/vendor/tests/tests/microformats-mixed/h-resume/mixedroots.html +0 -16
- data/vendor/tests/tests/microformats-mixed/h-resume/mixedroots.json +0 -31
- data/vendor/tests/tests/microformats-v1/adr/change-log.html +0 -63
- data/vendor/tests/tests/microformats-v1/adr/simpleproperties.html +0 -8
- data/vendor/tests/tests/microformats-v1/adr/simpleproperties.json +0 -15
- data/vendor/tests/tests/microformats-v1/geo/abbrpattern.html +0 -5
- data/vendor/tests/tests/microformats-v1/geo/abbrpattern.json +0 -11
- data/vendor/tests/tests/microformats-v1/geo/change-log.1.html +0 -78
- data/vendor/tests/tests/microformats-v1/geo/change-log.html +0 -63
- data/vendor/tests/tests/microformats-v1/geo/hidden.html +0 -10
- data/vendor/tests/tests/microformats-v1/geo/hidden.json +0 -11
- data/vendor/tests/tests/microformats-v1/geo/simpleproperties.html +0 -6
- data/vendor/tests/tests/microformats-v1/geo/simpleproperties.json +0 -11
- data/vendor/tests/tests/microformats-v1/geo/valuetitleclass.html +0 -11
- data/vendor/tests/tests/microformats-v1/geo/valuetitleclass.json +0 -11
- data/vendor/tests/tests/microformats-v1/hcalendar/ampm.html +0 -41
- data/vendor/tests/tests/microformats-v1/hcalendar/ampm.json +0 -21
- data/vendor/tests/tests/microformats-v1/hcalendar/attendees.html +0 -13
- data/vendor/tests/tests/microformats-v1/hcalendar/attendees.json +0 -37
- data/vendor/tests/tests/microformats-v1/hcalendar/change-log.html +0 -68
- data/vendor/tests/tests/microformats-v1/hcalendar/combining.html +0 -15
- data/vendor/tests/tests/microformats-v1/hcalendar/combining.json +0 -31
- data/vendor/tests/tests/microformats-v1/hcalendar/concatenate.html +0 -7
- data/vendor/tests/tests/microformats-v1/hcalendar/concatenate.json +0 -12
- data/vendor/tests/tests/microformats-v1/hcalendar/time.html +0 -44
- data/vendor/tests/tests/microformats-v1/hcalendar/time.json +0 -22
- data/vendor/tests/tests/microformats-v1/hcard/change-log.html +0 -68
- data/vendor/tests/tests/microformats-v1/hcard/email.html +0 -14
- data/vendor/tests/tests/microformats-v1/hcard/email.json +0 -11
- data/vendor/tests/tests/microformats-v1/hcard/format.html +0 -6
- data/vendor/tests/tests/microformats-v1/hcard/format.json +0 -11
- data/vendor/tests/tests/microformats-v1/hcard/hyperlinkedphoto.html +0 -3
- data/vendor/tests/tests/microformats-v1/hcard/hyperlinkedphoto.json +0 -8
- data/vendor/tests/tests/microformats-v1/hcard/justahyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v1/hcard/justahyperlink.json +0 -8
- data/vendor/tests/tests/microformats-v1/hcard/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v1/hcard/justaname.json +0 -8
- data/vendor/tests/tests/microformats-v1/hcard/multiple.html +0 -74
- data/vendor/tests/tests/microformats-v1/hcard/multiple.json +0 -65
- data/vendor/tests/tests/microformats-v1/hcard/name.html +0 -11
- data/vendor/tests/tests/microformats-v1/hcard/name.json +0 -15
- data/vendor/tests/tests/microformats-v1/hcard/single.html +0 -14
- data/vendor/tests/tests/microformats-v1/hcard/single.json +0 -24
- data/vendor/tests/tests/microformats-v1/hentry/change-log.html +0 -73
- data/vendor/tests/tests/microformats-v1/hentry/summarycontent.html +0 -20
- data/vendor/tests/tests/microformats-v1/hentry/summarycontent.json +0 -24
- data/vendor/tests/tests/microformats-v1/hfeed/simple.html +0 -30
- data/vendor/tests/tests/microformats-v1/hfeed/simple.json +0 -49
- data/vendor/tests/tests/microformats-v1/hnews/all.html +0 -37
- data/vendor/tests/tests/microformats-v1/hnews/all.json +0 -74
- data/vendor/tests/tests/microformats-v1/hnews/change-log.html +0 -72
- data/vendor/tests/tests/microformats-v1/hnews/minimum.html +0 -25
- data/vendor/tests/tests/microformats-v1/hnews/minimum.json +0 -48
- data/vendor/tests/tests/microformats-v1/hproduct/aggregate.html +0 -26
- data/vendor/tests/tests/microformats-v1/hproduct/aggregate.json +0 -52
- data/vendor/tests/tests/microformats-v1/hproduct/change-log.html +0 -62
- data/vendor/tests/tests/microformats-v1/hproduct/simpleproperties.html +0 -13
- data/vendor/tests/tests/microformats-v1/hproduct/simpleproperties.json +0 -33
- data/vendor/tests/tests/microformats-v1/hresume/affiliation.html +0 -12
- data/vendor/tests/tests/microformats-v1/hresume/affiliation.json +0 -25
- data/vendor/tests/tests/microformats-v1/hresume/change-log.html +0 -73
- data/vendor/tests/tests/microformats-v1/hresume/contact.html +0 -18
- data/vendor/tests/tests/microformats-v1/hresume/contact.json +0 -32
- data/vendor/tests/tests/microformats-v1/hresume/education.html +0 -13
- data/vendor/tests/tests/microformats-v1/hresume/education.json +0 -29
- data/vendor/tests/tests/microformats-v1/hresume/skill.html +0 -12
- data/vendor/tests/tests/microformats-v1/hresume/skill.json +0 -33
- data/vendor/tests/tests/microformats-v1/hresume/work.html +0 -16
- data/vendor/tests/tests/microformats-v1/hresume/work.json +0 -30
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/change-log.html +0 -67
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/hcard.html +0 -18
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/hcard.json +0 -31
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/justahyperlink.html +0 -6
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/justahyperlink.json +0 -19
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/vevent.html +0 -13
- data/vendor/tests/tests/microformats-v1/hreview-aggregate/vevent.json +0 -22
- data/vendor/tests/tests/microformats-v1/hreview/change-log.html +0 -73
- data/vendor/tests/tests/microformats-v1/hreview/item.html +0 -8
- data/vendor/tests/tests/microformats-v1/hreview/item.json +0 -19
- data/vendor/tests/tests/microformats-v1/hreview/vcard.html +0 -23
- data/vendor/tests/tests/microformats-v1/hreview/vcard.json +0 -58
- data/vendor/tests/tests/microformats-v1/includes/change-log.html +0 -72
- data/vendor/tests/tests/microformats-v1/includes/hcarditemref.html +0 -16
- data/vendor/tests/tests/microformats-v1/includes/hcarditemref.json +0 -49
- data/vendor/tests/tests/microformats-v1/includes/heventitemref.html +0 -25
- data/vendor/tests/tests/microformats-v1/includes/heventitemref.json +0 -33
- data/vendor/tests/tests/microformats-v1/includes/hyperlink.html +0 -18
- data/vendor/tests/tests/microformats-v1/includes/hyperlink.json +0 -43
- data/vendor/tests/tests/microformats-v1/includes/object.html +0 -23
- data/vendor/tests/tests/microformats-v1/includes/object.json +0 -42
- data/vendor/tests/tests/microformats-v1/includes/table.html +0 -12
- data/vendor/tests/tests/microformats-v1/includes/table.json +0 -19
- data/vendor/tests/tests/microformats-v2/h-adr/change-log.html +0 -62
- data/vendor/tests/tests/microformats-v2/h-adr/geo.html +0 -10
- data/vendor/tests/tests/microformats-v2/h-adr/geo.json +0 -16
- data/vendor/tests/tests/microformats-v2/h-adr/geourl.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-adr/geourl.json +0 -13
- data/vendor/tests/tests/microformats-v2/h-adr/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-adr/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-adr/lettercase.html +0 -21
- data/vendor/tests/tests/microformats-v2/h-adr/lettercase.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-adr/simpleproperties.html +0 -8
- data/vendor/tests/tests/microformats-v2/h-adr/simpleproperties.json +0 -16
- data/vendor/tests/tests/microformats-v2/h-as-note/note.html +0 -56
- data/vendor/tests/tests/microformats-v2/h-as-note/note.json +0 -98
- data/vendor/tests/tests/microformats-v2/h-card/baseurl.html +0 -6
- data/vendor/tests/tests/microformats-v2/h-card/baseurl.json +0 -26
- data/vendor/tests/tests/microformats-v2/h-card/change-log.html +0 -100
- data/vendor/tests/tests/microformats-v2/h-card/childimplied.html +0 -7
- data/vendor/tests/tests/microformats-v2/h-card/childimplied.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-card/extendeddescription.html +0 -10
- data/vendor/tests/tests/microformats-v2/h-card/extendeddescription.json +0 -15
- data/vendor/tests/tests/microformats-v2/h-card/hcard.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-card/hcard.json +0 -19
- data/vendor/tests/tests/microformats-v2/h-card/horghcard.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-card/horghcard.json +0 -19
- data/vendor/tests/tests/microformats-v2/h-card/hyperlinkedphoto.html +0 -3
- data/vendor/tests/tests/microformats-v2/h-card/hyperlinkedphoto.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-card/impliedname.html +0 -15
- data/vendor/tests/tests/microformats-v2/h-card/impliedname.json +0 -90
- data/vendor/tests/tests/microformats-v2/h-card/impliedphoto.html +0 -11
- data/vendor/tests/tests/microformats-v2/h-card/impliedphoto.json +0 -72
- data/vendor/tests/tests/microformats-v2/h-card/impliedurl.html +0 -5
- data/vendor/tests/tests/microformats-v2/h-card/impliedurl.json +0 -45
- data/vendor/tests/tests/microformats-v2/h-card/justahyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-card/justahyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-card/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-card/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-card/nested.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-card/nested.json +0 -18
- data/vendor/tests/tests/microformats-v2/h-card/p-property.html +0 -21
- data/vendor/tests/tests/microformats-v2/h-card/p-property.json +0 -15
- data/vendor/tests/tests/microformats-v2/h-card/relativeurls.html +0 -6
- data/vendor/tests/tests/microformats-v2/h-card/relativeurls.json +0 -29
- data/vendor/tests/tests/microformats-v2/h-entry/change-log.html +0 -90
- data/vendor/tests/tests/microformats-v2/h-entry/encoding.html +0 -3
- data/vendor/tests/tests/microformats-v2/h-entry/encoding.json +0 -14
- data/vendor/tests/tests/microformats-v2/h-entry/impliedvalue-nested.html +0 -9
- data/vendor/tests/tests/microformats-v2/h-entry/impliedvalue-nested.json +0 -27
- data/vendor/tests/tests/microformats-v2/h-entry/justahyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-entry/justahyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-entry/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-entry/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-entry/scriptstyletags.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-entry/scriptstyletags.json +0 -14
- data/vendor/tests/tests/microformats-v2/h-entry/summarycontent.html +0 -20
- data/vendor/tests/tests/microformats-v2/h-entry/summarycontent.json +0 -25
- data/vendor/tests/tests/microformats-v2/h-entry/u-property.html +0 -33
- data/vendor/tests/tests/microformats-v2/h-entry/u-property.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-entry/urlincontent.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-entry/urlincontent.json +0 -14
- data/vendor/tests/tests/microformats-v2/h-event/ampm.html +0 -41
- data/vendor/tests/tests/microformats-v2/h-event/ampm.json +0 -21
- data/vendor/tests/tests/microformats-v2/h-event/attendees.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-event/attendees.json +0 -37
- data/vendor/tests/tests/microformats-v2/h-event/change-log.html +0 -82
- data/vendor/tests/tests/microformats-v2/h-event/combining.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-event/combining.json +0 -25
- data/vendor/tests/tests/microformats-v2/h-event/concatenate.html +0 -8
- data/vendor/tests/tests/microformats-v2/h-event/concatenate.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-event/dates.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-event/dates.json +0 -26
- data/vendor/tests/tests/microformats-v2/h-event/dt-property.html +0 -23
- data/vendor/tests/tests/microformats-v2/h-event/dt-property.json +0 -20
- data/vendor/tests/tests/microformats-v2/h-event/justahyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-event/justahyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-event/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-event/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-event/time.html +0 -47
- data/vendor/tests/tests/microformats-v2/h-event/time.json +0 -25
- data/vendor/tests/tests/microformats-v2/h-feed/implied-title.html +0 -30
- data/vendor/tests/tests/microformats-v2/h-feed/implied-title.json +0 -23
- data/vendor/tests/tests/microformats-v2/h-feed/simple.html +0 -26
- data/vendor/tests/tests/microformats-v2/h-feed/simple.json +0 -33
- data/vendor/tests/tests/microformats-v2/h-geo/abbrpattern.html +0 -5
- data/vendor/tests/tests/microformats-v2/h-geo/abbrpattern.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-geo/altitude.html +0 -8
- data/vendor/tests/tests/microformats-v2/h-geo/altitude.json +0 -13
- data/vendor/tests/tests/microformats-v2/h-geo/change-log.html +0 -67
- data/vendor/tests/tests/microformats-v2/h-geo/hidden.html +0 -10
- data/vendor/tests/tests/microformats-v2/h-geo/hidden.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-geo/justaname.html +0 -3
- data/vendor/tests/tests/microformats-v2/h-geo/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-geo/simpleproperties.html +0 -5
- data/vendor/tests/tests/microformats-v2/h-geo/simpleproperties.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-geo/valuetitleclass.html +0 -11
- data/vendor/tests/tests/microformats-v2/h-geo/valuetitleclass.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-news/all.html +0 -35
- data/vendor/tests/tests/microformats-v2/h-news/all.json +0 -51
- data/vendor/tests/tests/microformats-v2/h-news/change-log.html +0 -78
- data/vendor/tests/tests/microformats-v2/h-news/minimum.html +0 -24
- data/vendor/tests/tests/microformats-v2/h-news/minimum.json +0 -40
- data/vendor/tests/tests/microformats-v2/h-org/change-log.html +0 -57
- data/vendor/tests/tests/microformats-v2/h-org/hyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-org/hyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-org/simple.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-org/simple.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-org/simpleproperties.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-org/simpleproperties.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-product/aggregate.html +0 -21
- data/vendor/tests/tests/microformats-v2/h-product/aggregate.json +0 -45
- data/vendor/tests/tests/microformats-v2/h-product/change-log.html +0 -62
- data/vendor/tests/tests/microformats-v2/h-product/justahyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-product/justahyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-product/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-product/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-product/simpleproperties.html +0 -10
- data/vendor/tests/tests/microformats-v2/h-product/simpleproperties.json +0 -26
- data/vendor/tests/tests/microformats-v2/h-recipe/all.html +0 -63
- data/vendor/tests/tests/microformats-v2/h-recipe/all.json +0 -54
- data/vendor/tests/tests/microformats-v2/h-recipe/change-log.html +0 -62
- data/vendor/tests/tests/microformats-v2/h-recipe/minimum.html +0 -7
- data/vendor/tests/tests/microformats-v2/h-recipe/minimum.json +0 -17
- data/vendor/tests/tests/microformats-v2/h-resume/affiliation.html +0 -12
- data/vendor/tests/tests/microformats-v2/h-resume/affiliation.json +0 -20
- data/vendor/tests/tests/microformats-v2/h-resume/change-log.html +0 -78
- data/vendor/tests/tests/microformats-v2/h-resume/contact.html +0 -17
- data/vendor/tests/tests/microformats-v2/h-resume/contact.json +0 -26
- data/vendor/tests/tests/microformats-v2/h-resume/education.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-resume/education.json +0 -30
- data/vendor/tests/tests/microformats-v2/h-resume/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-resume/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-resume/skill.html +0 -12
- data/vendor/tests/tests/microformats-v2/h-resume/skill.json +0 -12
- data/vendor/tests/tests/microformats-v2/h-resume/work.html +0 -16
- data/vendor/tests/tests/microformats-v2/h-resume/work.json +0 -31
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/change-log.html +0 -78
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/hevent.html +0 -13
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/hevent.json +0 -23
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/justahyperlink.html +0 -8
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/justahyperlink.json +0 -19
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/simpleproperties.html +0 -18
- data/vendor/tests/tests/microformats-v2/h-review-aggregate/simpleproperties.json +0 -26
- data/vendor/tests/tests/microformats-v2/h-review/change-log.html +0 -84
- data/vendor/tests/tests/microformats-v2/h-review/hyperlink.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-review/hyperlink.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-review/implieditem.html +0 -4
- data/vendor/tests/tests/microformats-v2/h-review/implieditem.json +0 -19
- data/vendor/tests/tests/microformats-v2/h-review/item.html +0 -8
- data/vendor/tests/tests/microformats-v2/h-review/item.json +0 -20
- data/vendor/tests/tests/microformats-v2/h-review/justaname.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-review/justaname.json +0 -10
- data/vendor/tests/tests/microformats-v2/h-review/photo.html +0 -1
- data/vendor/tests/tests/microformats-v2/h-review/photo.json +0 -11
- data/vendor/tests/tests/microformats-v2/h-review/vcard.html +0 -23
- data/vendor/tests/tests/microformats-v2/h-review/vcard.json +0 -48
- data/vendor/tests/tests/microformats-v2/rel/change-log.html +0 -67
- data/vendor/tests/tests/microformats-v2/rel/duplicate-rels.html +0 -10
- data/vendor/tests/tests/microformats-v2/rel/duplicate-rels.json +0 -75
- data/vendor/tests/tests/microformats-v2/rel/license.html +0 -1
- data/vendor/tests/tests/microformats-v2/rel/license.json +0 -12
- data/vendor/tests/tests/microformats-v2/rel/nofollow.html +0 -1
- data/vendor/tests/tests/microformats-v2/rel/nofollow.json +0 -12
- data/vendor/tests/tests/microformats-v2/rel/rel-urls.html +0 -8
- data/vendor/tests/tests/microformats-v2/rel/rel-urls.json +0 -33
- data/vendor/tests/tests/microformats-v2/rel/varying-text-duplicate-rels.html +0 -4
- data/vendor/tests/tests/microformats-v2/rel/varying-text-duplicate-rels.json +0 -20
- data/vendor/tests/tests/microformats-v2/rel/xfn-all.html +0 -19
- data/vendor/tests/tests/microformats-v2/rel/xfn-all.json +0 -92
- data/vendor/tests/tests/microformats-v2/rel/xfn-elsewhere.html +0 -10
- data/vendor/tests/tests/microformats-v2/rel/xfn-elsewhere.json +0 -40
@@ -1,7 +0,0 @@
|
|
1
|
-
<meta charset="utf-8">
|
2
|
-
<a class="h-card" href="http://people.opera.com/howcome/" title="Håkon Wium Lie, CTO Opera">
|
3
|
-
<article>
|
4
|
-
<h2 class="p-name">Håkon Wium Lie</h2>
|
5
|
-
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/96/H%C3%A5kon-Wium-Lie-2009-03.jpg/215px-H%C3%A5kon-Wium-Lie-2009-03.jpg" />
|
6
|
-
</article>
|
7
|
-
</a>
|
@@ -1,12 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Håkon Wium Lie"],
|
6
|
-
"photo": ["http://upload.wikimedia.org/wikipedia/commons/thumb/9/96/H%C3%A5kon-Wium-Lie-2009-03.jpg/215px-H%C3%A5kon-Wium-Lie-2009-03.jpg"],
|
7
|
-
"url": ["http://people.opera.com/howcome/"]
|
8
|
-
}
|
9
|
-
}],
|
10
|
-
"rels": {},
|
11
|
-
"rel-urls": {}
|
12
|
-
}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<div class="h-card">
|
2
|
-
<img class="u-photo" alt="photo of Mitchell" src="http://blog.mozilla.org/press/files/2012/04/mitchell-baker.jpg" />
|
3
|
-
<p>
|
4
|
-
<a class="p-name u-url" href="http://blog.lizardwrangler.com/">Mitchell Baker</a>
|
5
|
-
(<a class="u-url" href="https://twitter.com/MitchellBaker">@MitchellBaker</a>)
|
6
|
-
<span class="p-org">Mozilla Foundation</span>
|
7
|
-
</p>
|
8
|
-
<p class="p-note">Mitchell is responsible for setting the direction and scope of the Mozilla Foundation and its activities.</p>
|
9
|
-
<p><span class="p-category">Strategy</span> and <span class="p-category">Leadership</span></p>
|
10
|
-
</div>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"photo": ["http://blog.mozilla.org/press/files/2012/04/mitchell-baker.jpg"],
|
6
|
-
"url": ["http://blog.lizardwrangler.com/", "https://twitter.com/MitchellBaker"],
|
7
|
-
"name": ["Mitchell Baker"],
|
8
|
-
"org": ["Mozilla Foundation"],
|
9
|
-
"note": ["Mitchell is responsible for setting the direction and scope of the Mozilla Foundation and its activities."],
|
10
|
-
"category": ["Strategy", "Leadership"]
|
11
|
-
}
|
12
|
-
}],
|
13
|
-
"rels": {},
|
14
|
-
"rel-urls": {}
|
15
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"url": ["http://blog.lizardwrangler.com/"],
|
6
|
-
"name": ["Mitchell Baker"],
|
7
|
-
"org": [{
|
8
|
-
"value": "Mozilla Foundation",
|
9
|
-
"type": ["h-card"],
|
10
|
-
"properties": {
|
11
|
-
"name": ["Mozilla Foundation"],
|
12
|
-
"url": ["http://mozilla.org/"]
|
13
|
-
}
|
14
|
-
}]
|
15
|
-
}
|
16
|
-
}],
|
17
|
-
"rels": {},
|
18
|
-
"rel-urls": {}
|
19
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Mitchell Baker"],
|
6
|
-
"url": ["http://blog.lizardwrangler.com/"],
|
7
|
-
"org": [{
|
8
|
-
"value": "Mozilla Foundation",
|
9
|
-
"type": ["h-card", "h-org"],
|
10
|
-
"properties": {
|
11
|
-
"name": ["Mozilla Foundation"],
|
12
|
-
"url": ["http://mozilla.org/"]
|
13
|
-
}
|
14
|
-
}]
|
15
|
-
}
|
16
|
-
}],
|
17
|
-
"rels": {},
|
18
|
-
"rel-urls": {}
|
19
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
|
2
|
-
<img class="h-card" src="jane.html" alt="Jane Doe"/>
|
3
|
-
<area class="h-card" href="jane.html" alt="Jane Doe"></area>
|
4
|
-
<abbr class="h-card" title="Jane Doe">JD</abbr>
|
5
|
-
|
6
|
-
<div class="h-card"><img src="jane.html" alt="Jane Doe"/></div>
|
7
|
-
<div class="h-card"><area href="jane.html" alt="Jane Doe"></area></div>
|
8
|
-
<div class="h-card"><abbr title="Jane Doe">JD</abbr></div>
|
9
|
-
|
10
|
-
<div class="h-card"><span><img src="jane.html" alt="Jane Doe"/></span></div>
|
11
|
-
<div class="h-card"><span><area href="jane.html" alt="Jane Doe"></area></span></div>
|
12
|
-
<div class="h-card"><span><abbr title="Jane Doe">JD</abbr></span></div>
|
13
|
-
|
14
|
-
<div class="h-card"><img class="h-card" src="john.html" alt="John Doe"/>Name</div>
|
15
|
-
<div class="h-card"><span class="h-card"><img src="john.html" alt="John Doe"/>Name</span></div>
|
@@ -1,90 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Jane Doe"],
|
6
|
-
"photo": ["http://example.com/jane.html"]
|
7
|
-
}
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"type": ["h-card"],
|
11
|
-
"properties": {
|
12
|
-
"name": ["Jane Doe"],
|
13
|
-
"url": ["http://example.com/jane.html"]
|
14
|
-
}
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"type": ["h-card"],
|
18
|
-
"properties": {
|
19
|
-
"name": ["Jane Doe"]
|
20
|
-
}
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"type": ["h-card"],
|
24
|
-
"properties": {
|
25
|
-
"name": ["Jane Doe"],
|
26
|
-
"photo": ["http://example.com/jane.html"]
|
27
|
-
}
|
28
|
-
},
|
29
|
-
{
|
30
|
-
"type": ["h-card"],
|
31
|
-
"properties": {
|
32
|
-
"name": ["Jane Doe"],
|
33
|
-
"url": ["http://example.com/jane.html"]
|
34
|
-
}
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"type": ["h-card"],
|
38
|
-
"properties": {
|
39
|
-
"name": ["Jane Doe"]
|
40
|
-
}
|
41
|
-
},
|
42
|
-
{
|
43
|
-
"type": ["h-card"],
|
44
|
-
"properties": {
|
45
|
-
"name": ["Jane Doe"],
|
46
|
-
"photo": ["http://example.com/jane.html"]
|
47
|
-
}
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"type": ["h-card"],
|
51
|
-
"properties": {
|
52
|
-
"name": ["Jane Doe"],
|
53
|
-
"url": ["http://example.com/jane.html"]
|
54
|
-
}
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"type": ["h-card"],
|
58
|
-
"properties": {
|
59
|
-
"name": ["Jane Doe"]
|
60
|
-
}
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"type": ["h-card"],
|
64
|
-
"properties": {
|
65
|
-
"name": ["Name"]
|
66
|
-
},
|
67
|
-
"children": [{
|
68
|
-
"type": ["h-card"],
|
69
|
-
"properties": {
|
70
|
-
"name": ["John Doe"],
|
71
|
-
"photo": ["http://example.com/john.html"]
|
72
|
-
}
|
73
|
-
}]
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"type": ["h-card"],
|
77
|
-
"properties": {
|
78
|
-
"name": ["Name"]
|
79
|
-
},
|
80
|
-
"children": [{
|
81
|
-
"type": ["h-card"],
|
82
|
-
"properties": {
|
83
|
-
"name": ["John Doe"],
|
84
|
-
"photo": ["http://example.com/john.html"]
|
85
|
-
}
|
86
|
-
}]
|
87
|
-
}],
|
88
|
-
"rels": {},
|
89
|
-
"rel-urls": {}
|
90
|
-
}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<img class="h-card" alt="Jane Doe" src="jane.jpeg"/>
|
2
|
-
<object class="h-card" data="jane.jpeg">Jane Doe</object>
|
3
|
-
|
4
|
-
<div class="h-card"><img alt="Jane Doe" src="jane.jpeg"/></div>
|
5
|
-
<div class="h-card"><object data="jane.jpeg">Jane Doe</object></div>
|
6
|
-
|
7
|
-
<div class="h-card"><span><img alt="Jane Doe" src="jane.jpeg"/></span></div>
|
8
|
-
<div class="h-card"><span><object data="jane.jpeg">Jane Doe</object></span></div>
|
9
|
-
|
10
|
-
<div class="h-card"><img class="h-card" alt="Jane Doe" src="jane.jpeg"/>Jane Doe</div>
|
11
|
-
<div class="h-card"><span class="h-card"><object data="jane.jpeg">Jane Doe</object></span></div>
|
@@ -1,72 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Jane Doe"],
|
6
|
-
"photo": ["http://example.com/jane.jpeg"]
|
7
|
-
}
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"type": ["h-card"],
|
11
|
-
"properties": {
|
12
|
-
"name": ["Jane Doe"],
|
13
|
-
"photo": ["http://example.com/jane.jpeg"]
|
14
|
-
}
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"type": ["h-card"],
|
18
|
-
"properties": {
|
19
|
-
"name": ["Jane Doe"],
|
20
|
-
"photo": ["http://example.com/jane.jpeg"]
|
21
|
-
}
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"type": ["h-card"],
|
25
|
-
"properties": {
|
26
|
-
"name": ["Jane Doe"],
|
27
|
-
"photo": ["http://example.com/jane.jpeg"]
|
28
|
-
}
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"type": ["h-card"],
|
32
|
-
"properties": {
|
33
|
-
"name": ["Jane Doe"],
|
34
|
-
"photo": ["http://example.com/jane.jpeg"]
|
35
|
-
}
|
36
|
-
},
|
37
|
-
{
|
38
|
-
"type": ["h-card"],
|
39
|
-
"properties": {
|
40
|
-
"name": ["Jane Doe"],
|
41
|
-
"photo": ["http://example.com/jane.jpeg"]
|
42
|
-
}
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"type": ["h-card"],
|
46
|
-
"properties": {
|
47
|
-
"name": ["Jane Doe"]
|
48
|
-
},
|
49
|
-
"children": [{
|
50
|
-
"type": ["h-card"],
|
51
|
-
"properties": {
|
52
|
-
"name": ["Jane Doe"],
|
53
|
-
"photo": ["http://example.com/jane.jpeg"]
|
54
|
-
}
|
55
|
-
}]
|
56
|
-
},
|
57
|
-
{
|
58
|
-
"type": ["h-card"],
|
59
|
-
"properties": {
|
60
|
-
"name": ["Jane Doe"]
|
61
|
-
},
|
62
|
-
"children": [{
|
63
|
-
"type": ["h-card"],
|
64
|
-
"properties": {
|
65
|
-
"name": ["Jane Doe"],
|
66
|
-
"photo": ["http://example.com/jane.jpeg"]
|
67
|
-
}
|
68
|
-
}]
|
69
|
-
}],
|
70
|
-
"rels": {},
|
71
|
-
"rel-urls": {}
|
72
|
-
}
|
@@ -1,5 +0,0 @@
|
|
1
|
-
<a class="h-card" href="jane.html">Jane Doe</a>
|
2
|
-
<area class="h-card" href="jane.html" alt="Jane Doe"/ >
|
3
|
-
<div class="h-card" ><a href="jane.html">Jane Doe</a><p></p></div>
|
4
|
-
<div class="h-card" ><area href="jane.html">Jane Doe</area><p></p></div>
|
5
|
-
<div class="h-card" ><a class="h-card" href="jane.html">Jane Doe</a><p></p></div>
|
@@ -1,45 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Jane Doe"],
|
6
|
-
"url": ["http://example.com/jane.html"]
|
7
|
-
}
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"type": ["h-card"],
|
11
|
-
"properties": {
|
12
|
-
"name": ["Jane Doe"],
|
13
|
-
"url": ["http://example.com/jane.html"]
|
14
|
-
}
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"type": ["h-card"],
|
18
|
-
"properties": {
|
19
|
-
"name": ["Jane Doe"],
|
20
|
-
"url": ["http://example.com/jane.html"]
|
21
|
-
}
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"type": ["h-card"],
|
25
|
-
"properties": {
|
26
|
-
"name": ["Jane Doe"],
|
27
|
-
"url": ["http://example.com/jane.html"]
|
28
|
-
}
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"type": ["h-card"],
|
32
|
-
"properties": {
|
33
|
-
"name": ["Jane Doe"]
|
34
|
-
},
|
35
|
-
"children": [{
|
36
|
-
"type": ["h-card"],
|
37
|
-
"properties": {
|
38
|
-
"name": ["Jane Doe"],
|
39
|
-
"url": ["http://example.com/jane.html"]
|
40
|
-
}
|
41
|
-
}]
|
42
|
-
}],
|
43
|
-
"rels": {},
|
44
|
-
"rel-urls": {}
|
45
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
<a class="h-card" href="http://benward.me/">Ben Ward</a>
|
@@ -1 +0,0 @@
|
|
1
|
-
<p class="h-card">Frances Berriman</p>
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [{
|
3
|
-
"type": ["h-card"],
|
4
|
-
"properties": {
|
5
|
-
"name": ["Mitchell Baker"],
|
6
|
-
"url": ["http://blog.lizardwrangler.com/"]
|
7
|
-
},
|
8
|
-
"children": [{
|
9
|
-
"type": ["h-org", "h-card"],
|
10
|
-
"properties": {
|
11
|
-
"name": ["Mozilla Foundation"],
|
12
|
-
"url": ["http://mozilla.org/"]
|
13
|
-
}
|
14
|
-
}]
|
15
|
-
}],
|
16
|
-
"rels": {},
|
17
|
-
"rel-urls": {}
|
18
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<div class="h-card">
|
2
|
-
|
3
|
-
<span class="p-name">
|
4
|
-
<span class="p-given-name value">John</span>
|
5
|
-
<abbr class="p-additional-name" title="Peter">P</abbr>
|
6
|
-
<span class="p-family-name value ">Doe</span>
|
7
|
-
</span>
|
8
|
-
<data class="p-honorific-suffix" value="MSc"></data>
|
9
|
-
|
10
|
-
|
11
|
-
<br class="p-honorific-suffix" />BSc<br />
|
12
|
-
<hr class="p-honorific-suffix" />BA
|
13
|
-
|
14
|
-
|
15
|
-
<img class="p-honorific-suffix" src="images/logo.gif" alt="PHD" />
|
16
|
-
<img src="images/logo.gif" alt="company logos" usemap="#logomap" />
|
17
|
-
<map name="logomap">
|
18
|
-
<area class="p-org" shape="rect" coords="0,0,82,126" href="madgex.htm" alt="Madgex" />
|
19
|
-
<area class="p-org" shape="circle" coords="90,58,3" href="mozilla.htm" alt="Mozilla" />
|
20
|
-
</map>
|
21
|
-
</div>
|