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,10 +0,0 @@
|
|
1
|
-
<a href="http://ma.tt/2015/05/beethoven-mozart-bach/"
|
2
|
-
title="Permalink to Beethoven, Mozart, Bach" rel="bookmark">
|
3
|
-
<time class="entry-date" datetime="2015-05-31T22:42:00+00:00">May 31, 2015</time></a></span>
|
4
|
-
<a href="http://ma.tt/category/asides/" rel="category tag">Asides</a>
|
5
|
-
<span class="author vcard">
|
6
|
-
<a class="url fn n" href="http://ma.tt/author/saxmatt/"
|
7
|
-
title="View all posts by Matt" rel="author">Matt</a></span>
|
8
|
-
<span class="date"><a href="http://ma.tt/2015/06/jefferson-on-idleness/" title="Permalink to Jefferson on Idleness" rel="bookmark"><time class="entry-date" datetime="2015-06-02T21:26:00+00:00">June 2, 2015</time></a></span>
|
9
|
-
<span class="categories-links"><a href="http://ma.tt/category/asides/" rel="category tag">Asides</a></span>
|
10
|
-
<span class="author vcard"><a class="url fn n" href="http://ma.tt/author/saxmatt/" title="View all posts by Matt" rel="author">Matt</a></span>
|
@@ -1,75 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"rels": {
|
3
|
-
"bookmark": [
|
4
|
-
"http://ma.tt/2015/05/beethoven-mozart-bach/",
|
5
|
-
"http://ma.tt/2015/06/jefferson-on-idleness/"
|
6
|
-
],
|
7
|
-
"category": [
|
8
|
-
"http://ma.tt/category/asides/"
|
9
|
-
],
|
10
|
-
"tag": [
|
11
|
-
"http://ma.tt/category/asides/"
|
12
|
-
],
|
13
|
-
"author": [
|
14
|
-
"http://ma.tt/author/saxmatt/"
|
15
|
-
]
|
16
|
-
},
|
17
|
-
"items": [
|
18
|
-
{
|
19
|
-
"type": [
|
20
|
-
"h-card"
|
21
|
-
],
|
22
|
-
"properties": {
|
23
|
-
"url": [
|
24
|
-
"http://ma.tt/author/saxmatt/"
|
25
|
-
],
|
26
|
-
"name": [
|
27
|
-
"Matt"
|
28
|
-
]
|
29
|
-
}
|
30
|
-
},
|
31
|
-
{
|
32
|
-
"type": [
|
33
|
-
"h-card"
|
34
|
-
],
|
35
|
-
"properties": {
|
36
|
-
"url": [
|
37
|
-
"http://ma.tt/author/saxmatt/"
|
38
|
-
],
|
39
|
-
"name": [
|
40
|
-
"Matt"
|
41
|
-
]
|
42
|
-
}
|
43
|
-
}
|
44
|
-
],
|
45
|
-
"rel-urls": {
|
46
|
-
"http://ma.tt/category/asides/": {
|
47
|
-
"rels": [
|
48
|
-
"category",
|
49
|
-
"tag"
|
50
|
-
],
|
51
|
-
"text": "Asides"
|
52
|
-
},
|
53
|
-
"http://ma.tt/author/saxmatt/": {
|
54
|
-
"rels": [
|
55
|
-
"author"
|
56
|
-
],
|
57
|
-
"text": "Matt",
|
58
|
-
"title": "View all posts by Matt"
|
59
|
-
},
|
60
|
-
"http://ma.tt/2015/05/beethoven-mozart-bach/": {
|
61
|
-
"rels": [
|
62
|
-
"bookmark"
|
63
|
-
],
|
64
|
-
"text": "May 31, 2015",
|
65
|
-
"title": "Permalink to Beethoven, Mozart, Bach"
|
66
|
-
},
|
67
|
-
"http://ma.tt/2015/06/jefferson-on-idleness/": {
|
68
|
-
"rels": [
|
69
|
-
"bookmark"
|
70
|
-
],
|
71
|
-
"text": "June 2, 2015",
|
72
|
-
"title": "Permalink to Jefferson on Idleness"
|
73
|
-
}
|
74
|
-
}
|
75
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
<a rel="license" href="http://creativecommons.org/licenses/by/2.5/">cc by 2.5</a>
|
@@ -1 +0,0 @@
|
|
1
|
-
<a rel="nofollow" href="http://microformats.org/wiki/microformats:copyrights">Copyrights</a>
|
@@ -1,8 +0,0 @@
|
|
1
|
-
<a rel="author" href="http://example.com/a">author a</a>
|
2
|
-
<a rel="author" href="http://example.com/b">author b</a>
|
3
|
-
<a rel="in-reply-to" href="http://example.com/1">post 1</a>
|
4
|
-
<a rel="in-reply-to" href="http://example.com/2">post 2</a>
|
5
|
-
<a rel="alternate home"
|
6
|
-
href="http://example.com/fr"
|
7
|
-
media="handheld"
|
8
|
-
hreflang="fr">French mobile homepage</a>
|
@@ -1,33 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [],
|
3
|
-
"rels": {
|
4
|
-
"author": [ "http://example.com/a", "http://example.com/b" ],
|
5
|
-
"in-reply-to": [ "http://example.com/1", "http://example.com/2" ],
|
6
|
-
"home": [ "http://example.com/fr" ],
|
7
|
-
"alternate": [ "http://example.com/fr" ]
|
8
|
-
},
|
9
|
-
"rel-urls": {
|
10
|
-
"http://example.com/a": {
|
11
|
-
"rels": ["author"],
|
12
|
-
"text": "author a"
|
13
|
-
},
|
14
|
-
"http://example.com/b": {
|
15
|
-
"rels": ["author"],
|
16
|
-
"text": "author b"
|
17
|
-
},
|
18
|
-
"http://example.com/1": {
|
19
|
-
"rels": ["in-reply-to"],
|
20
|
-
"text": "post 1"
|
21
|
-
},
|
22
|
-
"http://example.com/2": {
|
23
|
-
"rels": ["in-reply-to"],
|
24
|
-
"text": "post 2"
|
25
|
-
},
|
26
|
-
"http://example.com/fr": {
|
27
|
-
"rels": ["alternate", "home"],
|
28
|
-
"media": "handheld",
|
29
|
-
"hreflang": "fr",
|
30
|
-
"text": "French mobile homepage"
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
This is a contrived example - not found links like this in the wild:
|
2
|
-
<a href="http://ma.tt/category/asides/" rel="category tag">Asides</a>
|
3
|
-
<a href="http://ma.tt/category/asides/" rel="category tag">B-sides</a>
|
4
|
-
<a href="http://ma.tt/category/asides/" rel="category tag">seasides</a>
|
@@ -1,20 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"rels": {
|
3
|
-
"category": [
|
4
|
-
"http://ma.tt/category/asides/"
|
5
|
-
],
|
6
|
-
"tag": [
|
7
|
-
"http://ma.tt/category/asides/"
|
8
|
-
]
|
9
|
-
},
|
10
|
-
"items": [],
|
11
|
-
"rel-urls": {
|
12
|
-
"http://ma.tt/category/asides/": {
|
13
|
-
"rels": [
|
14
|
-
"category",
|
15
|
-
"tag"
|
16
|
-
],
|
17
|
-
"text": "Asides"
|
18
|
-
}
|
19
|
-
}
|
20
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<ul>
|
2
|
-
<li><a rel="friend" href="http://example.com/profile/jane">jane</a></li>
|
3
|
-
<li><a rel="acquaintance" href="http://example.com/profile/jeo">jeo</a></li>
|
4
|
-
<li><a rel="contact" href="http://example.com/profile/lily">lily</a></li>
|
5
|
-
<li><a rel="met" href="http://example.com/profile/oliver">oliver</a></li>
|
6
|
-
<li><a rel="co-worker" href="http://example.com/profile/emily">emily</a></li>
|
7
|
-
<li><a rel="colleague" href="http://example.com/profile/jack">jack</a></li>
|
8
|
-
<li><a rel="neighbor" href="http://example.com/profile/isabella">isabella</a></li>
|
9
|
-
<li><a rel="child" href="http://example.com/profile/harry">harry</a></li>
|
10
|
-
<li><a rel="parent" href="http://example.com/profile/sophia">sophia</a></li>
|
11
|
-
<li><a rel="sibling" href="http://example.com/profile/charlie">charlie</a></li>
|
12
|
-
<li><a rel="spouse" href="http://example.com/profile/olivia">olivia</a></li>
|
13
|
-
<li><a rel="kin" href="http://example.com/profile/james">james</a></li>
|
14
|
-
<li><a rel="muse" href="http://example.com/profile/ava">ava</a></li>
|
15
|
-
<li><a rel="crush" href="http://example.com/profile/joshua">joshua</a></li>
|
16
|
-
<li><a rel="date" href="http://example.com/profile/chloe">chloe</a></li>
|
17
|
-
<li><a rel="sweetheart" href="http://example.com/profile/alfie">alfie</a></li>
|
18
|
-
<li><a rel="me" href="http://example.com/profile/isla">isla</a></li>
|
19
|
-
</ul>
|
@@ -1,92 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [],
|
3
|
-
"rels": {
|
4
|
-
"friend": ["http://example.com/profile/jane"],
|
5
|
-
"acquaintance": ["http://example.com/profile/jeo"],
|
6
|
-
"contact": ["http://example.com/profile/lily"],
|
7
|
-
"met": ["http://example.com/profile/oliver"],
|
8
|
-
"co-worker": ["http://example.com/profile/emily"],
|
9
|
-
"colleague": ["http://example.com/profile/jack"],
|
10
|
-
"neighbor": ["http://example.com/profile/isabella"],
|
11
|
-
"child": ["http://example.com/profile/harry"],
|
12
|
-
"parent": ["http://example.com/profile/sophia"],
|
13
|
-
"sibling": ["http://example.com/profile/charlie"],
|
14
|
-
"spouse": ["http://example.com/profile/olivia"],
|
15
|
-
"kin": ["http://example.com/profile/james"],
|
16
|
-
"muse": ["http://example.com/profile/ava"],
|
17
|
-
"crush": ["http://example.com/profile/joshua"],
|
18
|
-
"date": ["http://example.com/profile/chloe"],
|
19
|
-
"sweetheart": ["http://example.com/profile/alfie"],
|
20
|
-
"me": ["http://example.com/profile/isla"]
|
21
|
-
},
|
22
|
-
"rel-urls": {
|
23
|
-
"http://example.com/profile/jane": {
|
24
|
-
"text": "jane",
|
25
|
-
"rels": ["friend"]
|
26
|
-
},
|
27
|
-
"http://example.com/profile/jeo": {
|
28
|
-
"text": "jeo",
|
29
|
-
"rels": ["acquaintance"]
|
30
|
-
},
|
31
|
-
"http://example.com/profile/lily": {
|
32
|
-
"text": "lily",
|
33
|
-
"rels": ["contact"]
|
34
|
-
},
|
35
|
-
"http://example.com/profile/oliver": {
|
36
|
-
"text": "oliver",
|
37
|
-
"rels": ["met"]
|
38
|
-
},
|
39
|
-
"http://example.com/profile/emily": {
|
40
|
-
"text": "emily",
|
41
|
-
"rels": ["co-worker"]
|
42
|
-
},
|
43
|
-
"http://example.com/profile/jack": {
|
44
|
-
"text": "jack",
|
45
|
-
"rels": ["colleague"]
|
46
|
-
},
|
47
|
-
"http://example.com/profile/isabella": {
|
48
|
-
"text": "isabella",
|
49
|
-
"rels": ["neighbor"]
|
50
|
-
},
|
51
|
-
"http://example.com/profile/harry": {
|
52
|
-
"text": "harry",
|
53
|
-
"rels": ["child"]
|
54
|
-
},
|
55
|
-
"http://example.com/profile/sophia": {
|
56
|
-
"text": "sophia",
|
57
|
-
"rels": ["parent"]
|
58
|
-
},
|
59
|
-
"http://example.com/profile/charlie": {
|
60
|
-
"text": "charlie",
|
61
|
-
"rels": ["sibling"]
|
62
|
-
},
|
63
|
-
"http://example.com/profile/olivia": {
|
64
|
-
"text": "olivia",
|
65
|
-
"rels": ["spouse"]
|
66
|
-
},
|
67
|
-
"http://example.com/profile/james": {
|
68
|
-
"text": "james",
|
69
|
-
"rels": ["kin"]
|
70
|
-
},
|
71
|
-
"http://example.com/profile/ava": {
|
72
|
-
"text": "ava",
|
73
|
-
"rels": ["muse"]
|
74
|
-
},
|
75
|
-
"http://example.com/profile/joshua": {
|
76
|
-
"text": "joshua",
|
77
|
-
"rels": ["crush"]
|
78
|
-
},
|
79
|
-
"http://example.com/profile/chloe": {
|
80
|
-
"text": "chloe",
|
81
|
-
"rels": ["date"]
|
82
|
-
},
|
83
|
-
"http://example.com/profile/alfie": {
|
84
|
-
"text": "alfie",
|
85
|
-
"rels": ["sweetheart"]
|
86
|
-
},
|
87
|
-
"http://example.com/profile/isla": {
|
88
|
-
"text": "isla",
|
89
|
-
"rels": ["me"]
|
90
|
-
}
|
91
|
-
}
|
92
|
-
}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<ul>
|
2
|
-
<li><a rel="me" href="http://twitter.com/glennjones">twitter</a></li>
|
3
|
-
<li><a rel="me" href="http://delicious.com/glennjonesnet/">delicious</a></li>
|
4
|
-
<li><a rel="me" href="https://plus.google.com/u/0/105161464208920272734/about">google+</a></li>
|
5
|
-
<li><a rel="me" href="http://lanyrd.com/people/glennjones/">lanyrd</a></li>
|
6
|
-
<li><a rel="me" href="http://github.com/glennjones">github</a></li>
|
7
|
-
<li><a rel="me" href="http://www.flickr.com/photos/glennjonesnet/">flickr</a></li>
|
8
|
-
<li><a rel="me" href="http://www.linkedin.com/in/glennjones">linkedin</a></li>
|
9
|
-
<li><a rel="me" href="http://www.slideshare.net/glennjones/presentations">slideshare</a></li>
|
10
|
-
</ul>
|
@@ -1,40 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"items": [],
|
3
|
-
"rels": {
|
4
|
-
"me": ["http://twitter.com/glennjones", "http://delicious.com/glennjonesnet/", "https://plus.google.com/u/0/105161464208920272734/about", "http://lanyrd.com/people/glennjones/", "http://github.com/glennjones", "http://www.flickr.com/photos/glennjonesnet/", "http://www.linkedin.com/in/glennjones", "http://www.slideshare.net/glennjones/presentations"]
|
5
|
-
},
|
6
|
-
"rel-urls": {
|
7
|
-
"http://twitter.com/glennjones": {
|
8
|
-
"text": "twitter",
|
9
|
-
"rels": ["me"]
|
10
|
-
},
|
11
|
-
"http://delicious.com/glennjonesnet/": {
|
12
|
-
"text": "delicious",
|
13
|
-
"rels": ["me"]
|
14
|
-
},
|
15
|
-
"https://plus.google.com/u/0/105161464208920272734/about": {
|
16
|
-
"text": "google+",
|
17
|
-
"rels": ["me"]
|
18
|
-
},
|
19
|
-
"http://lanyrd.com/people/glennjones/": {
|
20
|
-
"text": "lanyrd",
|
21
|
-
"rels": ["me"]
|
22
|
-
},
|
23
|
-
"http://github.com/glennjones": {
|
24
|
-
"text": "github",
|
25
|
-
"rels": ["me"]
|
26
|
-
},
|
27
|
-
"http://www.flickr.com/photos/glennjonesnet/": {
|
28
|
-
"text": "flickr",
|
29
|
-
"rels": ["me"]
|
30
|
-
},
|
31
|
-
"http://www.linkedin.com/in/glennjones": {
|
32
|
-
"text": "linkedin",
|
33
|
-
"rels": ["me"]
|
34
|
-
},
|
35
|
-
"http://www.slideshare.net/glennjones/presentations": {
|
36
|
-
"text": "slideshare",
|
37
|
-
"rels": ["me"]
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|