mirror of
https://github.com/apache/cordova-android.git
synced 2026-02-21 00:02:46 +08:00
CB-14145 remove old node_modules before patch fix
This commit is contained in:
42
node_modules/unorm/LICENSE.md
generated
vendored
42
node_modules/unorm/LICENSE.md
generated
vendored
@@ -1,42 +0,0 @@
|
||||
The software dual licensed under the MIT and GPL licenses. MIT license:
|
||||
|
||||
Copyright (c) 2008-2013 Matsuza <matsuza@gmail.com>, Bjarke Walling <bwp@bwp.dk>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
|
||||
GPL notice (please read the [full GPL license] online):
|
||||
|
||||
Copyright (C) 2008-2013 Matsuza <matsuza@gmail.com>, Bjarke Walling <bwp@bwp.dk>
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
|
||||
[full GPL license]: http://www.gnu.org/licenses/gpl-2.0-standalone.html
|
||||
118
node_modules/unorm/README.md
generated
vendored
118
node_modules/unorm/README.md
generated
vendored
@@ -1,118 +0,0 @@
|
||||
This is [Unicode Normalizer] in a Common JS module. I'm not affiliated with Matsuza, the original author of Unicode Normalizer.
|
||||
|
||||
[](https://travis-ci.org/walling/unorm)
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
```bash
|
||||
npm install unorm
|
||||
```
|
||||
|
||||
Polyfill
|
||||
--------
|
||||
|
||||
You can use this module as a polyfill for [String.prototype.normalize], for example:
|
||||
|
||||
```javascript
|
||||
console.log('æøåäüö'.normalize('NFKD'));
|
||||
```
|
||||
|
||||
The module uses some [EcmaScript 5](http://kangax.github.io/es5-compat-table/) features. Other browsers should use a compability shim, e.g. [es5-shim](https://github.com/kriskowal/es5-shim).
|
||||
|
||||
Functions
|
||||
---------
|
||||
|
||||
This module exports four functions: `nfc`, `nfd`, `nfkc`, and `nfkd`; one for each Unicode normalization. In the browser the functions are exported in the `unorm` global. In CommonJS environments you just require the module. Functions:
|
||||
|
||||
* `unorm.nfd(str)` – Canonical Decomposition
|
||||
* `unorm.nfc(str)` – Canonical Decomposition, followed by Canonical Composition
|
||||
* `unorm.nfkd(str)` – Compatibility Decomposition
|
||||
* `unorm.nfkc(str)` – Compatibility Decomposition, followed by Canonical Composition
|
||||
|
||||
|
||||
Node.JS example
|
||||
---------------
|
||||
|
||||
For a longer example, see `examples` directory.
|
||||
|
||||
```javascript
|
||||
var unorm = require('unorm');
|
||||
|
||||
var text =
|
||||
'The \u212B symbol invented by A. J. \u00C5ngstr\u00F6m ' +
|
||||
'(1814, L\u00F6gd\u00F6, \u2013 1874) denotes the length ' +
|
||||
'10\u207B\u00B9\u2070 m.';
|
||||
|
||||
var combining = /[\u0300-\u036F]/g; // Use XRegExp('\\p{M}', 'g'); see example.js.
|
||||
|
||||
console.log('Regular: ' + text);
|
||||
console.log('NFC: ' + unorm.nfc(text));
|
||||
console.log('NFD: ' + unorm.nfd(text));
|
||||
console.log('NFKC: ' + unorm.nfkc(text));
|
||||
console.log('NFKD: * ' + unorm.nfkd(text).replace(combining, ''));
|
||||
console.log(' * = Combining characters removed from decomposed form.');
|
||||
```
|
||||
|
||||
|
||||
Road map
|
||||
--------
|
||||
|
||||
As of November 2013. Longer term:
|
||||
|
||||
- Look at possible optimizations (speed primarely, module size secondarily)
|
||||
- Adding functions to quick check normalizations: `is_nfc`, `is_nfd`, etc.
|
||||
|
||||
|
||||
Contributers
|
||||
------------
|
||||
|
||||
- **Oleg Grenrus** is helping to maintain this library. He cleaned up the code base, fixed JSHint errors, created a test suite and updated the normalization data to Unicode 6.3.
|
||||
|
||||
|
||||
Development notes
|
||||
-----------------
|
||||
|
||||
- [Unicode normalization forms report](http://www.unicode.org/reports/tr15/)
|
||||
- Unicode data can be found from http://www.unicode.org/Public/UCD/latest/ucd
|
||||
|
||||
To generate new unicode data, run:
|
||||
```sh
|
||||
cd src/data/src
|
||||
javac UnormNormalizerBuilder.java
|
||||
java UnormNormalizerBuilder
|
||||
```
|
||||
produced `unormdata.js` contains needed table
|
||||
|
||||
Execute `node benchmark/benchmark.js` to run simple benchmarks, if you do any changes which may affect performance.
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
This project includes the software package **Unicode Normalizer 1.0.0**. The
|
||||
software dual licensed under the MIT and GPL licenses. Here is the MIT license:
|
||||
|
||||
Copyright (c) 2008-2013 Matsuza <matsuza@gmail.com>, Bjarke Walling <bwp@bwp.dk>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
|
||||
|
||||
[Unicode Normalizer]: http://coderepos.org/share/browser/lang/javascript/UnicodeNormalizer
|
||||
[String.prototype.normalize]: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-15.5.3.26
|
||||
442
node_modules/unorm/lib/unorm.js
generated
vendored
442
node_modules/unorm/lib/unorm.js
generated
vendored
File diff suppressed because one or more lines are too long
103
node_modules/unorm/package.json
generated
vendored
103
node_modules/unorm/package.json
generated
vendored
@@ -1,103 +0,0 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
{
|
||||
"raw": "unorm@^1.3.3",
|
||||
"scope": null,
|
||||
"escapedName": "unorm",
|
||||
"name": "unorm",
|
||||
"rawSpec": "^1.3.3",
|
||||
"spec": ">=1.3.3 <2.0.0",
|
||||
"type": "range"
|
||||
},
|
||||
"/Users/steveng/repo/cordova/cordova-android/node_modules/cordova-common"
|
||||
]
|
||||
],
|
||||
"_from": "unorm@>=1.3.3 <2.0.0",
|
||||
"_id": "unorm@1.4.1",
|
||||
"_inCache": true,
|
||||
"_location": "/unorm",
|
||||
"_npmUser": {
|
||||
"name": "walling",
|
||||
"email": "bwp@bwp.dk"
|
||||
},
|
||||
"_npmVersion": "1.4.28",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"raw": "unorm@^1.3.3",
|
||||
"scope": null,
|
||||
"escapedName": "unorm",
|
||||
"name": "unorm",
|
||||
"rawSpec": "^1.3.3",
|
||||
"spec": ">=1.3.3 <2.0.0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/cordova-common"
|
||||
],
|
||||
"_resolved": "http://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz",
|
||||
"_shasum": "364200d5f13646ca8bcd44490271335614792300",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "unorm@^1.3.3",
|
||||
"_where": "/Users/steveng/repo/cordova/cordova-android/node_modules/cordova-common",
|
||||
"author": {
|
||||
"name": "Bjarke Walling",
|
||||
"email": "bwp@bwp.dk"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/walling/unorm/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Bjarke Walling",
|
||||
"email": "bwp@bwp.dk"
|
||||
},
|
||||
{
|
||||
"name": "Oleg Grenrus",
|
||||
"email": "oleg.grenrus@iki.fi"
|
||||
},
|
||||
{
|
||||
"name": "Matsuza",
|
||||
"email": "matsuza@gmail.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"description": "JavaScript Unicode 8.0 Normalization - NFC, NFD, NFKC, NFKD. Read <http://unicode.org/reports/tr15/> UAX #15 Unicode Normalization Forms.",
|
||||
"devDependencies": {
|
||||
"benchmark": "~1.0.0",
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-contrib-jshint": "~0.8.0",
|
||||
"grunt-contrib-watch": "~0.5.0",
|
||||
"grunt-simple-mocha": "~0.4.0",
|
||||
"unorm": "1.4.1"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "364200d5f13646ca8bcd44490271335614792300",
|
||||
"tarball": "https://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4.0"
|
||||
},
|
||||
"gitHead": "e802d0d7844cf74b03742bce1147a82ace218396",
|
||||
"homepage": "https://github.com/walling/unorm",
|
||||
"license": "MIT or GPL-2.0",
|
||||
"main": "./lib/unorm.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "walling",
|
||||
"email": "bwp@bwp.dk"
|
||||
}
|
||||
],
|
||||
"name": "unorm",
|
||||
"optionalDependencies": {},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/walling/unorm.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "grunt test"
|
||||
},
|
||||
"version": "1.4.1"
|
||||
}
|
||||
Reference in New Issue
Block a user