mirror of
https://github.com/Synzvato/decentraleyes.git
synced 2026-01-05 21:58:38 -05:00
Compare commits
104 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
444aedaa7c | ||
|
|
aa5f8be116 | ||
|
|
7ec055fd7b | ||
|
|
279cb69a0a | ||
|
|
a744c45413 | ||
|
|
cf21afe88c | ||
|
|
c9fc15e727 | ||
|
|
3cf0f14d23 | ||
|
|
c2670b3de2 | ||
|
|
a7187a83e5 | ||
|
|
955d932b11 | ||
|
|
50a43bfc2e | ||
|
|
18df769998 | ||
|
|
27a60cdec7 | ||
|
|
694fa25a3a | ||
|
|
6c061b2235 | ||
|
|
bd2278fd32 | ||
|
|
a64d6f3f41 | ||
|
|
682570cdea | ||
|
|
19cb2beacf | ||
|
|
f5f3cc9be4 | ||
|
|
e73ad04845 | ||
|
|
2f8733bd0a | ||
|
|
0d868e072f | ||
|
|
560b68932c | ||
|
|
0a664f7cd3 | ||
|
|
8124fe112c | ||
|
|
28b194b7f3 | ||
|
|
042853432e | ||
|
|
524981b841 | ||
|
|
9822093473 | ||
|
|
d04bb51a4d | ||
|
|
926d49d107 | ||
|
|
09a02eb5f3 | ||
|
|
286f7c7f66 | ||
|
|
021cac82dc | ||
|
|
e288d8195d | ||
|
|
20e3ec02b1 | ||
|
|
74fca95767 | ||
|
|
0c6325bb1f | ||
|
|
7f79e6999d | ||
|
|
082c9e78d0 | ||
|
|
b411d04b6f | ||
|
|
54c16775d2 | ||
|
|
f16a81c249 | ||
|
|
4396c1c9f0 | ||
|
|
c02257f184 | ||
|
|
c3f230f32d | ||
|
|
e595faa541 | ||
|
|
146a01c5ce | ||
|
|
b199936150 | ||
|
|
85dfd71920 | ||
|
|
8d137b801b | ||
|
|
07cfc9c251 | ||
|
|
d4d07a3d38 | ||
|
|
40e2681bfd | ||
|
|
33b8f50ddc | ||
|
|
774a91ad5b | ||
|
|
f3af8d5005 | ||
|
|
61b950fa3b | ||
|
|
38317a7a81 | ||
|
|
6938a619fc | ||
|
|
8855358381 | ||
|
|
1f90b36d47 | ||
|
|
92f81f06bc | ||
|
|
b23a484b4c | ||
|
|
445d663d39 | ||
|
|
ff6244a311 | ||
|
|
1a53d2a39a | ||
|
|
54e293f2b9 | ||
|
|
301546619d | ||
|
|
6b510089e9 | ||
|
|
8617873115 | ||
|
|
c95a327363 | ||
|
|
bbd9c39a78 | ||
|
|
d93155844a | ||
|
|
16b887ff2e | ||
|
|
96b957bb09 | ||
|
|
2a6a744156 | ||
|
|
a77cd7f638 | ||
|
|
feb5b19e2c | ||
|
|
d89c22fc26 | ||
|
|
ffed66c813 | ||
|
|
488fb1fa83 | ||
|
|
64a2aefd25 | ||
|
|
9ee499620e | ||
|
|
ac65964995 | ||
|
|
14799d2814 | ||
|
|
1399bb40fd | ||
|
|
e695023bd1 | ||
|
|
685e108905 | ||
|
|
00c253d7cb | ||
|
|
c87a756533 | ||
|
|
216c205532 | ||
|
|
bbe5201e6e | ||
|
|
35a1563a69 | ||
|
|
f5f0154cfd | ||
|
|
7d8eee8607 | ||
|
|
d0277c0348 | ||
|
|
7a76fec2a8 | ||
|
|
2559457d0b | ||
|
|
f15778550c | ||
|
|
7a5e154575 | ||
|
|
4023d7c8d8 |
4
.eslintignore
Normal file
4
.eslintignore
Normal file
@@ -0,0 +1,4 @@
|
||||
locale
|
||||
data
|
||||
preferences
|
||||
webextension
|
||||
157
.eslintrc
Normal file
157
.eslintrc
Normal file
@@ -0,0 +1,157 @@
|
||||
{
|
||||
"env": {
|
||||
"es6": true
|
||||
},
|
||||
"globals": {
|
||||
"exports": true,
|
||||
"module": true,
|
||||
"require": true,
|
||||
"Services": true
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:no-unsanitized/DOM"
|
||||
],
|
||||
"overrides": {
|
||||
"files": [
|
||||
"test/*"
|
||||
],
|
||||
"rules": {
|
||||
"brace-style": "off",
|
||||
"function-paren-newline": "off",
|
||||
"max-len": "off"
|
||||
}
|
||||
},
|
||||
"plugins": [
|
||||
"no-unsanitized"
|
||||
],
|
||||
"rules": {
|
||||
"array-bracket-newline": "error",
|
||||
"array-bracket-spacing": "error",
|
||||
"arrow-body-style": "error",
|
||||
"arrow-parens": "error",
|
||||
"arrow-spacing": "error",
|
||||
"block-spacing": "error",
|
||||
"brace-style": "error",
|
||||
"camelcase": "error",
|
||||
"comma-spacing": "error",
|
||||
"comma-style": "error",
|
||||
"computed-property-spacing": "error",
|
||||
"consistent-this": "error",
|
||||
"curly": "error",
|
||||
"eol-last": "error",
|
||||
"eqeqeq": "error",
|
||||
"func-call-spacing": "error",
|
||||
"function-paren-newline": "error",
|
||||
"generator-star-spacing": "error",
|
||||
"indent": [
|
||||
"error",
|
||||
4
|
||||
],
|
||||
"key-spacing": "error",
|
||||
"keyword-spacing": "error",
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"new-parens": "error",
|
||||
"no-array-constructor": "error",
|
||||
"no-bitwise": "error",
|
||||
"no-confusing-arrow": "error",
|
||||
"no-continue": "error",
|
||||
"no-duplicate-imports": "error",
|
||||
"no-eval": "error",
|
||||
"no-extend-native": "error",
|
||||
"no-implicit-coercion": "error",
|
||||
"no-implied-eval": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-iterator": "error",
|
||||
"no-label-var": "error",
|
||||
"no-labels": "error",
|
||||
"no-lone-blocks": "error",
|
||||
"no-loop-func": "error",
|
||||
"no-multi-spaces": "error",
|
||||
"no-multi-str": "error",
|
||||
"no-multiple-empty-lines": [
|
||||
"error", {
|
||||
"max": 1,
|
||||
"maxEOF": 1,
|
||||
"maxBOF": 0
|
||||
}
|
||||
],
|
||||
"max-len": [
|
||||
"error", {
|
||||
"code": 120
|
||||
}
|
||||
],
|
||||
"no-negated-condition": "error",
|
||||
"no-new": "error",
|
||||
"no-new-func": "error",
|
||||
"no-new-object": "error",
|
||||
"no-new-wrappers": "error",
|
||||
"no-octal-escape": "error",
|
||||
"no-proto": "error",
|
||||
"no-return-assign": "error",
|
||||
"no-return-await": "error",
|
||||
"no-script-url": "error",
|
||||
"no-self-compare": "error",
|
||||
"no-sequences": "error",
|
||||
"no-shadow-restricted-names": "error",
|
||||
"no-tabs": "error",
|
||||
"no-ternary": "error",
|
||||
"no-throw-literal": "error",
|
||||
"no-trailing-spaces": "error",
|
||||
"no-undef-init": "error",
|
||||
"no-unmodified-loop-condition": "error",
|
||||
"no-unused-expressions": "error",
|
||||
"no-useless-call": "error",
|
||||
"no-useless-concat": "error",
|
||||
"no-useless-constructor": "error",
|
||||
"no-useless-rename": "error",
|
||||
"no-useless-return": "error",
|
||||
"no-void": "error",
|
||||
"no-warning-comments": "warn",
|
||||
"no-whitespace-before-property": "error",
|
||||
"no-with": "error",
|
||||
"object-curly-spacing": "error",
|
||||
"object-shorthand": [
|
||||
"error",
|
||||
"consistent-as-needed"
|
||||
],
|
||||
"operator-assignment": "error",
|
||||
"operator-linebreak": "error",
|
||||
"prefer-numeric-literals": "error",
|
||||
"prefer-promise-reject-errors": "error",
|
||||
"quote-props": "error",
|
||||
"prefer-rest-params": "error",
|
||||
"prefer-spread": "error",
|
||||
"prefer-template": "error",
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"rest-spread-spacing": "error",
|
||||
"require-await": "error",
|
||||
"semi": "error",
|
||||
"semi-spacing": "error",
|
||||
"semi-style": "error",
|
||||
"space-before-blocks": "error",
|
||||
"space-before-function-paren": "error",
|
||||
"space-in-parens": "error",
|
||||
"space-infix-ops": "error",
|
||||
"space-unary-ops": "error",
|
||||
"strict": [
|
||||
"error",
|
||||
"global"
|
||||
],
|
||||
"switch-colon-spacing": "error",
|
||||
"symbol-description": "error",
|
||||
"template-curly-spacing": "error",
|
||||
"template-tag-spacing": "error",
|
||||
"unicode-bom": "error",
|
||||
"vars-on-top": "error",
|
||||
"wrap-regex": "error",
|
||||
"yield-star-spacing": "error",
|
||||
"yoda": "error"
|
||||
}
|
||||
}
|
||||
42
README.md
42
README.md
@@ -1,43 +1,33 @@
|
||||
Decentraleyes
|
||||
=============
|
||||
|
||||
A [Firefox add-on](https://addons.mozilla.org/en-US/firefox/addon/decentraleyes) that emulates Content Delivery Networks locally by intercepting requests, finding the required resource and injecting it into the environment. This all happens instantaneously, automatically, and no prior configuration is required.
|
||||
A [web browser extension](https://decentraleyes.org) that emulates Content Delivery Networks to improve your online privacy. It intercepts traffic, finds supported resources locally, and injects them into the environment. All of this happens automatically, so no prior configuration is required. Feel free to use the following [testing utility](https://decentraleyes.org/test) to find out if you are properly protected.
|
||||
|
||||
> **Note:** Decentraleyes is no silver bullet, but it does prevent a lot of websites from making you send these kinds of requests. Ultimately, you can make Decentraleyes block requests for any missing CDN resources, too.
|
||||
|
||||
## Roadmap
|
||||
## Contributing Code
|
||||
|
||||
Now that there's a solid, Mozilla approved, foundation, it's time to move forward. Mobility, extensibility (through support for community-powered resource packages), and usability, will be the main points of attention during this phase.
|
||||
|
||||
#### Essential Next Steps
|
||||
|
||||
* Start work on a resource bundle standard, to allow users to create and import custom resources. With support for these bundles in place, Decentraleyes will still work out of the box, but can be extended if needed.
|
||||
* To keep this add-on from turning into bloatware, it's important to find out which versions of which libraries are most commonly used on websites, so that less popular resources can be removed from the default bundle.
|
||||
|
||||
#### Planned Features
|
||||
|
||||
* Advanced policy management for users who block requests for missing resources.
|
||||
* Smarter resource version interpretation for handling dynamic notations.
|
||||
* A minimalistic and non-essential graphical user interface.
|
||||
* Support for custom, importable, library repositories.
|
||||
|
||||
> **Note:** These long-term goals are subjective to change, and can be discussed. That is, as long as the suggestions do not conflict with the ultimate goal of realizing a free and open standard for exchanging web resource bundles.
|
||||
|
||||
## Contributing
|
||||
|
||||
Suggestions in the form of **Issues** and contributions in the form of **Pull Requests** are highly welcome. You can also use the contact details and PGP key on the add-on [download page](https://addons.mozilla.org/en-US/firefox/addon/decentraleyes) to get in touch.
|
||||
Suggestions in the form of **Issues**, and contributions in the form of **Pull Requests**, are highly welcome. You can also use the public contact details and PGP key on the extension's [contact page](https://decentraleyes.org/contact) to get in touch.
|
||||
|
||||
#### Prerequisites
|
||||
|
||||
* Jetpack Manager [jpm](https://developer.mozilla.org/en-US/Add-ons/SDK/Tools/jpm#Installation) (a Node-based replacement for cfx).
|
||||
* Firefox version 38 or later. *If you need to work with earlier versions of Firefox, you'll need to use the old cfx tool. See instructions for [getting started with cfx](https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Getting_started).
|
||||
* [Jetpack Manager](https://developer.mozilla.org/Add-ons/SDK/Tools/jpm#Installation) ```v1.3.1``` *(or higher)*.
|
||||
* Mozilla Firefox 38 *(or higher)*.
|
||||
|
||||
#### Build Instructions (Unix)
|
||||
> **Note:** If you want to contribute to the Firefox Quantum extension, please check out the ```master``` branch. If you are looking for the Chromium-compatible codebase, please see the ```experimental``` branch.
|
||||
|
||||
git clone https://github.com/Synzvato/decentraleyes
|
||||
#### Building the Code (*nix)
|
||||
|
||||
git clone https://github.com/Synzvato/decentraleyes --branch legacy
|
||||
cd decentraleyes
|
||||
jpm xpi
|
||||
|
||||
> **Important:** All commits since 26 October 2016 are signed with GPG. It's likely best to ignore unsigned commits, unless you really know what you're doing. Please send an email if you have any questions or security concerns.
|
||||
|
||||
## Submitting Translations
|
||||
|
||||
Do you master a non-supported language? Please help out by translating this add-on on [Crowdin](https://crowdin.com/project/decentraleyes).
|
||||
|
||||
## License
|
||||
|
||||
[MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0).
|
||||
[MPL-2.0](https://www.mozilla.org/MPL/2.0).
|
||||
|
||||
19
chrome.manifest
Normal file
19
chrome.manifest
Normal file
@@ -0,0 +1,19 @@
|
||||
locale decentraleyes bg locale/bg/
|
||||
locale decentraleyes da locale/da/
|
||||
locale decentraleyes de locale/de/
|
||||
locale decentraleyes en-GB locale/en-GB/
|
||||
locale decentraleyes en-US locale/en-US/
|
||||
locale decentraleyes eo locale/eo/
|
||||
locale decentraleyes es locale/es/
|
||||
locale decentraleyes fi locale/fi/
|
||||
locale decentraleyes fr locale/fr/
|
||||
locale decentraleyes id locale/id/
|
||||
locale decentraleyes it locale/it/
|
||||
locale decentraleyes ja locale/ja/
|
||||
locale decentraleyes nl locale/nl/
|
||||
locale decentraleyes pl locale/pl/
|
||||
locale decentraleyes pt-PT locale/pt-PT/
|
||||
locale decentraleyes ru locale/ru/
|
||||
locale decentraleyes sv-SE locale/sv-SE/
|
||||
locale decentraleyes zh-CN locale/zh-CN/
|
||||
locale decentraleyes zh-TW locale/zh-TW/
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "decentraleyes-audit",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"author": "Thomas Rientjes",
|
||||
"license": "MPL 2.0",
|
||||
"license": "MPL-2.0",
|
||||
"description": "Library audit tool for Decentraleyes.",
|
||||
"repository": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/",
|
||||
"repository": "https://addons.mozilla.org/firefox/addon/decentraleyes",
|
||||
"keywords": [
|
||||
"decentraleyes",
|
||||
"audit"
|
||||
|
||||
@@ -137,7 +137,7 @@ function _hashFileContents(fileContents) {
|
||||
|
||||
var hash;
|
||||
|
||||
hash = crypto.createHash('md5');
|
||||
hash = crypto.createHash('sha512');
|
||||
|
||||
hash.setEncoding('hex');
|
||||
hash.write(fileContents);
|
||||
@@ -148,20 +148,22 @@ function _hashFileContents(fileContents) {
|
||||
|
||||
function _compareResources(localResourceContents, remoteResourceContents, URL) {
|
||||
|
||||
var hadSourceMappingURL = sourceMappingURL.existsIn(remoteResourceContents);
|
||||
remoteResourceContents = sourceMappingURL.removeFrom(remoteResourceContents);
|
||||
|
||||
var hasSourceMappingURL = sourceMappingURL.existsIn(remoteResourceContents);
|
||||
var sourceMappingNotice = '[ ] REMOTE RESOURCE HAD SOURCE MAPPING URL';
|
||||
|
||||
if (hadSourceMappingURL) {
|
||||
if (hasSourceMappingURL) {
|
||||
remoteResourceContents = sourceMappingURL.removeFrom(remoteResourceContents);
|
||||
sourceMappingNotice = '[X] REMOTE RESOURCE HAD SOURCE MAPPING URL';
|
||||
}
|
||||
|
||||
// Remove the syntax invalidation character from the local contents.
|
||||
localResourceContents = localResourceContents.substring(1);
|
||||
|
||||
var localResourceHash = _hashFileContents(localResourceContents);
|
||||
var remoteResourceHash = _hashFileContents(remoteResourceContents);
|
||||
|
||||
console.log(localResourceHash);
|
||||
console.log(remoteResourceHash);
|
||||
console.log('RESOURCE HASH (SHA512): ' + localResourceHash);
|
||||
console.log('RESOURCE HASH (SHA512): ' + remoteResourceHash);
|
||||
|
||||
var fileHashesMatch = (localResourceHash === remoteResourceHash);
|
||||
|
||||
@@ -172,9 +174,8 @@ function _compareResources(localResourceContents, remoteResourceContents, URL) {
|
||||
}
|
||||
|
||||
console.log();
|
||||
console.log(sourceMappingNotice);
|
||||
console.log('[X] LOCAL AND REMOTE RESOURCE HASHES MATCH');
|
||||
|
||||
console.log(sourceMappingNotice);
|
||||
}
|
||||
|
||||
function _showCompletedMessage() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.1
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.2
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.3
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.4
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.5
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.6
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.8
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.0
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.1
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.10
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.15
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.16
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.20
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.23
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.26
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.28
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.29
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.0
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.10
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.11
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.14
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.15
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.3
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.8
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.0
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.2
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.8
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.0
|
||||
@// Backbone.js 0.9.0
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
// For all details and documentation:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.1
|
||||
@// Backbone.js 0.9.1
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.10
|
||||
@// Backbone.js 0.9.10
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.2
|
||||
@// Backbone.js 0.9.2
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.9
|
||||
@// Backbone.js 0.9.9
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2013, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: ©2011-2013 Tilde Inc. and contributors
|
||||
// Portions ©2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: Copyright 2011-2013 Tilde Inc. and contributors
|
||||
// Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: Copyright 2011-2013 Tilde Inc. and contributors
|
||||
// Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* Ext Core Library 3.0
|
||||
* http://extjs.com/
|
||||
* Copyright(c) 2006-2009, Ext JS, LLC.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* Ext Core Library 3.0
|
||||
* http://extjs.com/
|
||||
* Copyright(c) 2006-2009, Ext JS, LLC.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.0/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.0/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.1/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.1/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.2/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.2/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.3/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.3/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.4/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.4/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery 1.2.3 - New Wave Javascript
|
||||
*
|
||||
* Copyright (c) 2008 John Resig (jquery.com)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery 1.2.6 - New Wave Javascript
|
||||
*
|
||||
* Copyright (c) 2008 John Resig (jquery.com)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.3
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.4
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user