From 82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Apr 2017 03:09:25 +0200 Subject: Reorganize module loading. We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node. --- thirdparty/URI.js/.editorconfig | 9 - thirdparty/URI.js/.gitignore | 2 - thirdparty/URI.js/.jshintrc | 31 - thirdparty/URI.js/CHANGELOG.md | 332 ---- thirdparty/URI.js/Gruntfile.js | 22 - thirdparty/URI.js/LICENSE.txt | 21 - thirdparty/URI.js/README.md | 244 --- thirdparty/URI.js/about-uris.html | 189 -- thirdparty/URI.js/bower.json | 16 - thirdparty/URI.js/build.html | 71 - thirdparty/URI.js/build.js | 78 - thirdparty/URI.js/contributing.md | 19 - thirdparty/URI.js/docs.html | 1399 -------------- thirdparty/URI.js/index.html | 173 -- thirdparty/URI.js/jquery-1.10.2.min.js | 6 - thirdparty/URI.js/jquery-1.7.2.min.js | 4 - thirdparty/URI.js/jquery-1.8.2.min.js | 2 - thirdparty/URI.js/jquery-1.9.1.min.js | 5 - thirdparty/URI.js/jquery-uri-plugin.html | 203 -- thirdparty/URI.js/package.json | 78 - thirdparty/URI.js/prettify/lang-apollo.js | 2 - thirdparty/URI.js/prettify/lang-clj.js | 18 - thirdparty/URI.js/prettify/lang-css.js | 2 - thirdparty/URI.js/prettify/lang-go.js | 1 - thirdparty/URI.js/prettify/lang-hs.js | 2 - thirdparty/URI.js/prettify/lang-lisp.js | 3 - thirdparty/URI.js/prettify/lang-lua.js | 2 - thirdparty/URI.js/prettify/lang-ml.js | 2 - thirdparty/URI.js/prettify/lang-n.js | 4 - thirdparty/URI.js/prettify/lang-proto.js | 1 - thirdparty/URI.js/prettify/lang-scala.js | 2 - thirdparty/URI.js/prettify/lang-sql.js | 2 - thirdparty/URI.js/prettify/lang-tex.js | 1 - thirdparty/URI.js/prettify/lang-vb.js | 2 - thirdparty/URI.js/prettify/lang-vhdl.js | 3 - thirdparty/URI.js/prettify/lang-wiki.js | 2 - thirdparty/URI.js/prettify/lang-xq.js | 3 - thirdparty/URI.js/prettify/lang-yaml.js | 2 - thirdparty/URI.js/prettify/prettify.css | 1 - thirdparty/URI.js/prettify/prettify.js | 28 - thirdparty/URI.js/prettify/prettify.sunburst.css | 52 - thirdparty/URI.js/screen.css | 181 -- thirdparty/URI.js/screen.js | 39 - thirdparty/URI.js/src/IPv6.js | 185 -- thirdparty/URI.js/src/SecondLevelDomains.js | 240 --- thirdparty/URI.js/src/URI.fragmentQuery.js | 104 - thirdparty/URI.js/src/URI.fragmentURI.js | 97 - thirdparty/URI.js/src/URI.js | 2218 ---------------------- thirdparty/URI.js/src/URI.min.js | 89 - thirdparty/URI.js/src/URITemplate.js | 513 ----- thirdparty/URI.js/src/jquery.URI.js | 234 --- thirdparty/URI.js/src/jquery.URI.min.js | 7 - thirdparty/URI.js/src/punycode.js | 533 ------ thirdparty/URI.js/test/index.html | 26 - thirdparty/URI.js/test/pre_libs.js | 7 - thirdparty/URI.js/test/qunit/qunit-composite.css | 13 - thirdparty/URI.js/test/qunit/qunit-composite.js | 167 -- thirdparty/URI.js/test/qunit/qunit.css | 244 --- thirdparty/URI.js/test/qunit/qunit.js | 2212 --------------------- thirdparty/URI.js/test/test.URI.html | 26 - thirdparty/URI.js/test/test.fragmentQuery.html | 31 - thirdparty/URI.js/test/test.fragmentURI.html | 31 - thirdparty/URI.js/test/test.jQuery-1.10.html | 31 - thirdparty/URI.js/test/test.jQuery-1.7.html | 31 - thirdparty/URI.js/test/test.jQuery-1.8.html | 31 - thirdparty/URI.js/test/test.jQuery-1.9.html | 31 - thirdparty/URI.js/test/test.js | 1837 ------------------ thirdparty/URI.js/test/test_fragmentQuery.js | 59 - thirdparty/URI.js/test/test_fragmentURI.js | 61 - thirdparty/URI.js/test/test_jim.js | 146 -- thirdparty/URI.js/test/test_jquery.js | 141 -- thirdparty/URI.js/test/test_template.js | 411 ---- thirdparty/URI.js/test/urls.js | 1892 ------------------ thirdparty/URI.js/uri-template.html | 234 --- thirdparty/URI.js/utils/SLDs.php | 37 - thirdparty/URI.js/utils/sld.js | 101 - 76 files changed, 15279 deletions(-) delete mode 100644 thirdparty/URI.js/.editorconfig delete mode 100644 thirdparty/URI.js/.gitignore delete mode 100644 thirdparty/URI.js/.jshintrc delete mode 100644 thirdparty/URI.js/CHANGELOG.md delete mode 100644 thirdparty/URI.js/Gruntfile.js delete mode 100644 thirdparty/URI.js/LICENSE.txt delete mode 100644 thirdparty/URI.js/README.md delete mode 100644 thirdparty/URI.js/about-uris.html delete mode 100644 thirdparty/URI.js/bower.json delete mode 100644 thirdparty/URI.js/build.html delete mode 100644 thirdparty/URI.js/build.js delete mode 100644 thirdparty/URI.js/contributing.md delete mode 100644 thirdparty/URI.js/docs.html delete mode 100644 thirdparty/URI.js/index.html delete mode 100644 thirdparty/URI.js/jquery-1.10.2.min.js delete mode 100644 thirdparty/URI.js/jquery-1.7.2.min.js delete mode 100644 thirdparty/URI.js/jquery-1.8.2.min.js delete mode 100644 thirdparty/URI.js/jquery-1.9.1.min.js delete mode 100644 thirdparty/URI.js/jquery-uri-plugin.html delete mode 100644 thirdparty/URI.js/package.json delete mode 100644 thirdparty/URI.js/prettify/lang-apollo.js delete mode 100644 thirdparty/URI.js/prettify/lang-clj.js delete mode 100644 thirdparty/URI.js/prettify/lang-css.js delete mode 100644 thirdparty/URI.js/prettify/lang-go.js delete mode 100644 thirdparty/URI.js/prettify/lang-hs.js delete mode 100644 thirdparty/URI.js/prettify/lang-lisp.js delete mode 100644 thirdparty/URI.js/prettify/lang-lua.js delete mode 100644 thirdparty/URI.js/prettify/lang-ml.js delete mode 100644 thirdparty/URI.js/prettify/lang-n.js delete mode 100644 thirdparty/URI.js/prettify/lang-proto.js delete mode 100644 thirdparty/URI.js/prettify/lang-scala.js delete mode 100644 thirdparty/URI.js/prettify/lang-sql.js delete mode 100644 thirdparty/URI.js/prettify/lang-tex.js delete mode 100644 thirdparty/URI.js/prettify/lang-vb.js delete mode 100644 thirdparty/URI.js/prettify/lang-vhdl.js delete mode 100644 thirdparty/URI.js/prettify/lang-wiki.js delete mode 100644 thirdparty/URI.js/prettify/lang-xq.js delete mode 100644 thirdparty/URI.js/prettify/lang-yaml.js delete mode 100644 thirdparty/URI.js/prettify/prettify.css delete mode 100644 thirdparty/URI.js/prettify/prettify.js delete mode 100644 thirdparty/URI.js/prettify/prettify.sunburst.css delete mode 100644 thirdparty/URI.js/screen.css delete mode 100644 thirdparty/URI.js/screen.js delete mode 100644 thirdparty/URI.js/src/IPv6.js delete mode 100644 thirdparty/URI.js/src/SecondLevelDomains.js delete mode 100644 thirdparty/URI.js/src/URI.fragmentQuery.js delete mode 100644 thirdparty/URI.js/src/URI.fragmentURI.js delete mode 100644 thirdparty/URI.js/src/URI.js delete mode 100644 thirdparty/URI.js/src/URI.min.js delete mode 100644 thirdparty/URI.js/src/URITemplate.js delete mode 100644 thirdparty/URI.js/src/jquery.URI.js delete mode 100644 thirdparty/URI.js/src/jquery.URI.min.js delete mode 100644 thirdparty/URI.js/src/punycode.js delete mode 100644 thirdparty/URI.js/test/index.html delete mode 100644 thirdparty/URI.js/test/pre_libs.js delete mode 100644 thirdparty/URI.js/test/qunit/qunit-composite.css delete mode 100644 thirdparty/URI.js/test/qunit/qunit-composite.js delete mode 100644 thirdparty/URI.js/test/qunit/qunit.css delete mode 100644 thirdparty/URI.js/test/qunit/qunit.js delete mode 100644 thirdparty/URI.js/test/test.URI.html delete mode 100644 thirdparty/URI.js/test/test.fragmentQuery.html delete mode 100644 thirdparty/URI.js/test/test.fragmentURI.html delete mode 100644 thirdparty/URI.js/test/test.jQuery-1.10.html delete mode 100644 thirdparty/URI.js/test/test.jQuery-1.7.html delete mode 100644 thirdparty/URI.js/test/test.jQuery-1.8.html delete mode 100644 thirdparty/URI.js/test/test.jQuery-1.9.html delete mode 100644 thirdparty/URI.js/test/test.js delete mode 100644 thirdparty/URI.js/test/test_fragmentQuery.js delete mode 100644 thirdparty/URI.js/test/test_fragmentURI.js delete mode 100644 thirdparty/URI.js/test/test_jim.js delete mode 100644 thirdparty/URI.js/test/test_jquery.js delete mode 100644 thirdparty/URI.js/test/test_template.js delete mode 100644 thirdparty/URI.js/test/urls.js delete mode 100644 thirdparty/URI.js/uri-template.html delete mode 100644 thirdparty/URI.js/utils/SLDs.php delete mode 100644 thirdparty/URI.js/utils/sld.js (limited to 'thirdparty/URI.js') diff --git a/thirdparty/URI.js/.editorconfig b/thirdparty/URI.js/.editorconfig deleted file mode 100644 index 778c1485c..000000000 --- a/thirdparty/URI.js/.editorconfig +++ /dev/null @@ -1,9 +0,0 @@ -root = true - -[**] -charset = utf-8 -end_of_line = lf -indent_size = 2 -indent_style = space -insert_final_newline = true -trim_trailing_whitespace = true diff --git a/thirdparty/URI.js/.gitignore b/thirdparty/URI.js/.gitignore deleted file mode 100644 index 9daa8247d..000000000 --- a/thirdparty/URI.js/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -node_modules diff --git a/thirdparty/URI.js/.jshintrc b/thirdparty/URI.js/.jshintrc deleted file mode 100644 index 8327de8cb..000000000 --- a/thirdparty/URI.js/.jshintrc +++ /dev/null @@ -1,31 +0,0 @@ -{ - "node": true, - "browser": false, - "esnext": false, - "bitwise": false, - "camelcase": true, - "curly": true, - "eqeqeq": true, - "immed": true, - "indent": 2, - "latedef": true, - "newcap": true, - "noarg": true, - "quotmark": "single", - "regexp": true, - "undef": true, - "unused": true, - "strict": true, - "trailing": true, - "smarttabs": true, - "expr": true, - "globals": { - "describe": false, - "it": false, - "before": false, - "beforeEach": false, - "after": false, - "afterEach": false, - "define": false - } -} \ No newline at end of file diff --git a/thirdparty/URI.js/CHANGELOG.md b/thirdparty/URI.js/CHANGELOG.md deleted file mode 100644 index 49cd3cc96..000000000 --- a/thirdparty/URI.js/CHANGELOG.md +++ /dev/null @@ -1,332 +0,0 @@ -# URI.js - Changelog # - -The release notes tracked in this document are also made available on the [releases page](https://github.com/medialize/URI.js/releases) - -### 1.18.2 (September 25th 2016) ### - -* fixing [`URI.withinString()`](http://medialize.github.io/URI.js/docs.html#static-withinString) to allow callback to return `undefined` or `string` - [Issue #303](https://github.com/medialize/URI.js/issues/303) -* fixing [`.absoluteTo()`](http://medialize.github.io/URI.js/docs.html#absoluteto) to properly resolve relative paths for fragment-only URLs - -### 1.18.1 (May 29th 2016) ### - -* fixing UMD wrapper of `jquery.URI.js` - [Issue #295](https://github.com/medialize/URI.js/issues/295) - -### 1.18.0 (April 30th 2016) ### - -* adding [`URI.joinPaths()`](http://medialize.github.io/URI.js/docs.html#static-joinPaths) to compose paths from directory tokens - [Issue #285](https://github.com/medialize/URI.js/issues/285) -* fixing [`URITemplate()`](http://medialize.github.io/URI.js/uri-template.html) to allow `.` in variable names - [PR #287](https://github.com/medialize/URI.js/pull/287) -* fixing [`URITemplate()`](http://medialize.github.io/URI.js/uri-template.html) to reject invalid literals - [PR #289](https://github.com/medialize/URI.js/pull/289) -* fixing [`URITemplate()`](http://medialize.github.io/URI.js/uri-template.html) to reject prefix modifier on composite values - [PR #290](https://github.com/medialize/URI.js/pull/290) -* fixing [`URI.buildUserinfo()`](http://medialize.github.io/URI.js/docs.html#static-buildUserinfo) to properly serialize password-only values - [PR #293](https://github.com/medialize/URI.js/pull/293) - -### 1.17.1 (February 25th 2016) ### - -* fixing [`.normalizePath()`](http://medialize.github.io/URI.js/docs.html#normalize-path) to properly handle percent-encoded dot segments and leading dots in basename - [Issue #264](https://github.com/medialize/URI.js/issues/264), by [JordanMilne](https://github.com/JordanMilne) -* fixing [`.hasQuery()`](http://medialize.github.io/URI.js/docs.html#search-has) to accept `RegExp` for name argument - [Issue #274](https://github.com/medialize/URI.js/issues/274), [Issue #277](https://github.com/medialize/URI.js/issues/277) by [mbrodala](https://github.com/mbrodala) - -### 1.17.0 (November 13th 2015) ### - -* fixing [`URI.removeQuery()`](http://medialize.github.io/URI.js/docs.html#search-remove) to cast values to string before matching - [Issue #250](https://github.com/medialize/URI.js/pull/250), [Issue #252](https://github.com/medialize/URI.js/pull/252), by [ryanelian](https://github.com/ryanelian) and [Siltaar](https://github.com/Siltaar) -* fixing [`.segment()`](http://medialize.github.io/URI.js/docs.html#accessors-segment) to allow appending an empty element - [Issue #236](https://github.com/medialize/URI.js/issues/236), [Issue #253](https://github.com/medialize/URI.js/pull/253), by [orlando](https://github.com/orlando) -* adding [`.origin()`](http://medialize.github.io/URI.js/docs.html#accessors-origin) to get protocol and authority, counter-part to `.resource()` - [Issue #210](https://github.com/medialize/URI.js/issues/210), [Issue #263](https://github.com/medialize/URI.js/pull/263), by [justinmchase](https://github.com/justinmchase) - -### 1.16.1 (September 19th 2015) ### - -Package Management Cleanup - no changes to source code! - -* renaming package to "urijs", was "URIjs" (because npm decided to go lower-case at some point and maintaining capitals in your package name poses all sorts of stupid issues) -* removing [jam](http://jamjs.org/), [spm](http://spmjs.org/), `component.json` and `URI.jquery.json` as nobody cared that URI.js was stuck on 1.14 for a year - -### 1.16.0 (July 24th 2015) ### - -* **SECURITY** fixing [`URI.parseHost()`](http://medialize.github.io/URI.js/docs.html#static-parseHost) to rewrite `\` to `/` as Node and Browsers do - [Issue #233](https://github.com/medialize/URI.js/pull/233) -* fixing [`.host()`](http://medialize.github.io/URI.js/docs.html#accessors-host) and [`.authority()`](http://medialize.github.io/URI.js/docs.html#accessors-authority) to raise an error if they contain a path segment (extending [Issue #233](https://github.com/medialize/URI.js/pull/233)) - -### 1.15.2 (July 2nd 2015) ### - -* fixing [`URI.parseQuery()`](http://medialize.github.io/URI.js/docs.html#static-parseQuery) to accept `?foo&foo=bar` - [Issue #220](https://github.com/medialize/URI.js/issues/220) -* fixing [`.segmentCoded()`](http://medialize.github.io/URI.js/docs.html#accessors-segmentCoded) to encode (instead of decode) array input - [Issue #223](https://github.com/medialize/URI.js/issues/223) -* fixing [`.normalizePath()`](http://medialize.github.io/URI.js/docs.html#normalize-path) to properly resolve `/foo/..` to `/` - [Issue #224](https://github.com/medialize/URI.js/issues/224) -* fixing [`.relativeTo()`](http://medialize.github.io/URI.js/docs.html#relativeto) to resolve `/foo/` and `/foo/bar` to `./` instead of empty string - [Issue #226](https://github.com/medialize/URI.js/issues/226) -* fixing `bower.json`'s `"main": "src/URI.js"` - [Issue #227](https://github.com/medialize/URI.js/issues/227) - -### 1.15.1 (April 5th 2015) ### - -* fixing `URI()` to match behavior of `new URI()` (caused by [#196](https://github.com/medialize/URI.js/issues/196)) - [Issue #205](https://github.com/medialize/URI.js/issues/205) -* fixing [`URI.removeQuery()`](http://medialize.github.io/URI.js/docs.html#search-remove) to accept RegExp for name and value arguments - ([Issue #204](https://github.com/medialize/URI.js/issues/204), [peterwillis](https://github.com/peterwillis)) - -### 1.15.0 (April 1st 2015 - no joke, promise!) ### - -* fixing `URI(undefined)` to throw TypeError - ([Issue #189](https://github.com/medialize/URI.js/issues/189), [Issue #196](https://github.com/medialize/URI.js/issues/196), [eakron](https://github.com/eakron)) - *tiny backward-compatibility-break* -* fixing [`.absoluteTo()`](http://medialize.github.io/URI.js/docs.html#absoluteto) - ([Issue #200](https://github.com/medialize/URI.js/issues/200), [giltayar](https://github.com/giltayar)) -* fixing [`.pathname()`](http://medialize.github.io/URI.js/docs.html#accessors-pathname) to properly en/decode URN paths - ([Issue #201](https://github.com/medialize/URI.js/pull/201), [mlefoster](https://github.com/mlefoster)) -* fixing URI normalization to properly handle URN paths based on [RFC 2141](https://www.ietf.org/rfc/rfc2141.txt) syntax - ([Issue #201](https://github.com/medialize/URI.js/pull/201), [mlefoster](https://github.com/mlefoster)) - * fixing [`.normalize()`](http://medialize.github.io/URI.js/docs.html#normalize) and [`.normalizePath()`](http://medialize.github.io/URI.js/docs.html#normalize-path) to properly normalize URN paths - * adding `URI.encodeUrnPathSegment()` - * adding `URI.decodeUrnPathSegment()` - * adding `URI.decodeUrnPath()` - * adding `URI.recodeUrnPath()` - -### 1.14.2 (February 25th 2015) ### - -* fixing inclusion of LICENSE in packages - ([Issue #174](https://github.com/medialize/URI.js/issues/174)) -* fixing [`URI.parseHost()`](http://medialize.github.io/URI.js/docs.html#static-parseHost) to not interpret colon in path as IPv6 hostname - ([Issue #190](https://github.com/medialize/URI.js/issues/190)) -* adding meta data for [SPM](http://www.spmjs.io/) package manager - ([Issue #176](https://github.com/medialize/URI.js/issues/176)) -* adding license meta to `bower.json` - -### 1.14.1 (October 1st 2014) ### - -* fixing handling of String instances (not string primitives) - ([Issue #146](https://github.com/medialize/URI.js/issues/146)) -* fixing Firefox [`.watch()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/watch) interfering with `.parseQuery()` - ([Issue #169](https://github.com/medialize/URI.js/issues/169)) -* fixing [`addQuery()`](http://medialize.github.io/URI.js/docs.html#search-add) to not throw error on null value - ([Issue #171](https://github.com/medialize/URI.js/issues/171)) - -### 1.14.0 (September 8th 2014) ### - -* adding Hungarian second level domains - ([Issue #159](https://github.com/medialize/URI.js/issues/159)) -* adding `