diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /toolkit/components/microformats/test/static/javascript/parse.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'toolkit/components/microformats/test/static/javascript/parse.js')
-rw-r--r-- | toolkit/components/microformats/test/static/javascript/parse.js | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/toolkit/components/microformats/test/static/javascript/parse.js b/toolkit/components/microformats/test/static/javascript/parse.js new file mode 100644 index 000000000..588e403ee --- /dev/null +++ b/toolkit/components/microformats/test/static/javascript/parse.js @@ -0,0 +1,133 @@ +/*! + parse + Used by http://localhost:3000/ + Copyright (C) 2010 - 2015 Glenn Jones. All Rights Reserved. + MIT License: https://raw.github.com/glennjones/microformat-shiv/master/license.txt +*/ + +window.onload = function() { + + var form; + form= document.getElementById('mf-form'); + + form.onsubmit = function(e){ + e = (e)? e : window.event; + + if (e.preventDefault) { + e.preventDefault(); + } else { + event.returnValue = false; + } + + + var html, + baseUrl, + filter, + collapsewhitespace, + overlappingversions, + impliedPropertiesByVersion, + dateformatElt, + dateformat, + doc, + node, + options, + mfJSON, + parserJSONElt; + + // get data from html + html = document.getElementById('html').value; + baseUrl = document.getElementById('baseurl').value; + filters = document.getElementById('filters').value; + collapsewhitespace = document.getElementById('collapsewhitespace').checked; + //overlappingversions = document.getElementById('overlappingversions').checked; + //impliedPropertiesByVersion = document.getElementById('impliedPropertiesByVersion').checked; + parseLatLonGeo = document.getElementById('parseLatLonGeo').checked; + dateformatElt = document.getElementById("dateformat"); + dateformat = dateformatElt.options[dateformatElt.selectedIndex].value; + parserJSONElt = document.querySelector('#parser-json pre code') + + + var dom = new DOMParser(); + doc = dom.parseFromString( html, 'text/html' ); + + options ={ + 'document': doc, + 'node': doc, + 'dateFormat': dateformat, + 'parseLatLonGeo': false + }; + + if(baseUrl.trim() !== ''){ + options.baseUrl = baseUrl; + } + + if(filters.trim() !== ''){ + if(filters.indexOf(',') > -1){ + options.filters = trimArrayItems(filters.split(',')); + }else{ + options.filters = [filters.trim()]; + } + } + + if(collapsewhitespace === true){ + options.textFormat = 'normalised'; + } + + /* + if(overlappingversions === true){ + options.overlappingVersions = false; + } + + if(impliedPropertiesByVersion === true){ + options.impliedPropertiesByVersion = true; + } + */ + + if(parseLatLonGeo === true){ + options.parseLatLonGeo = true + } + + if(options.baseUrl){ + html = '<base href="' + baseUrl+ '">' + html; + } + + + + // parse direct into Modules to help debugging + if(window.Modules){ + var parser = new Modules.Parser(); + mfJSON = parser.get(options); + }else if(window.Microformats){ + mfJSON = Microformats.get(options); + } + + + // format output + parserJSONElt.innerHTML = htmlEscape( js_beautify( JSON.stringify(mfJSON) ) ); + //prettyPrint(); + + } + + +}; + + + + + +function htmlEscape(str) { + return String(str) + .replace(/&/g, '&') + .replace(/"/g, '"') + .replace(/'/g, ''') + .replace(/</g, '<') + .replace(/>/g, '>'); +} + + +function trimArrayItems( arr ){ + return arr.map(function(item){ + return item.trim(); + }) +} + |