Skip to content

Commit c3d8300

Browse files
author
oraclejet
committed
Update
1 parent ddd8a97 commit c3d8300

File tree

861 files changed

+20732
-19872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

861 files changed

+20732
-19872
lines changed

LICENSE.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,28 @@ limitations under the License.
2020
Copyright (c) 2014, 2016 Oracle and/or its affiliates
2121
The Universal Permissive License (UPL), Version 1.0
2222
23-
Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this software, associated documentation and/or data (collectively the "Software"), free of charge and under any and all copyright rights in the Software, and any and all patent rights owned or freely licensable by each licensor hereunder covering either (i) the unmodified Software as contributed to or provided by such licensor, or (ii) the Larger Works (as defined below), to deal in both
24-
25-
(a) the Software, and
26-
27-
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if one is included with the Software (each a “Larger Work” to which the Software is contributed by such licensors),
28-
29-
without restriction, including without limitation the rights to copy, create derivative works of, display, perform, and distribute the Software and make, use, sell, offer for sale, import, export, have made, and have sold the Software and the Larger Work(s), and to sublicense the foregoing rights on either these or other terms.
23+
Subject to the condition set forth below, permission is hereby granted to any person obtaining
24+
a copy of this software, associated documentation and/or data (collectively the "Software"),
25+
free of charge and under any and all copyright rights in the Software, and any and all patent
26+
rights owned or freely licensable by each licensor hereunder covering either (i) the unmodified
27+
Software as contributed to or provided by such licensor, or (ii) the Larger Works (as defined below),
28+
to deal in both
29+
30+
(a) the Software, and (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
31+
one is included with the Software (each a “Larger Work” to which the Software is contributed by such licensors),
32+
without restriction, including without limitation the rights to copy, create derivative works of,
33+
display, perform, and distribute the Software and make, use, sell, offer for sale, import, export,
34+
have made, and have sold the Software and the Larger Work(s), and to sublicense the foregoing rights
35+
on either these or other terms.
3036
3137
This license is subject to the following condition:
3238
33-
The above copyright notice and either this complete permission notice or at a minimum a reference to the UPL must be included in all copies or substantial portions of the Software.
39+
The above copyright notice and either this complete permission notice or at a minimum a reference
40+
to the UPL must be included in all copies or substantial portions of the Software.
3441
35-
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.
42+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
43+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
44+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
45+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
46+
THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3647
```

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Oracle JET version 2.0.0
2+
3+
## About Oracle JET
4+
Oracle JET is targeted at intermediate to advanced JavaScript developers working on client-side applications. It's a collection of open source JavaScript libraries along with a set of Oracle contributed JavaScript libraries that make it as simple and efficient as possible to build applications that consume and interact with Oracle products and services, especially Oracle Cloud services.
5+
6+
This is an open source project maintained by Oracle Corp.
7+
8+
### Features and Benefits:
9+
Oracle JET is a modular toolkit allowing developers to use as much or as little of the features as they desire. Watch a short overview of what Oracle JET can do for you.
10+
11+
* Complete JavaScript development toolkit
12+
* Leverages popular open-source technologies
13+
* Full lifecycle management for template based SPA
14+
* Built in accessibility support
15+
* Support for internationalization (28 languages and 160+ locales)
16+
* Rich set of UI components
17+
* Advanced two-way binding with a common model layer
18+
* Powerful routing system supporting single-page application navigation
19+
* Smart resource management
20+
* For intermediate & advanced JS devs
21+
22+
## Examples
23+
Visit the [Oracle JET website](http://oraclejet.org) for examples and much more...
24+
25+
## Installation
26+
Oracle JET uses Bower to perform the initial install and a Yeoman generator to help scaffold up your applications. If you already have Bower and npm installed, you can simply type:
27+
28+
```
29+
bower install oraclejet
30+
npm install generator-oraclejet
31+
```
32+
See the [Oracle JET Developer Guide](http://docs.oracle.com/middleware/jet200/jet/) for details.
33+
34+
## [Documentation](http://docs.oracle.com/middleware/jet112/jet/)
35+
Oracle JET comes with a full [Developers Guide](http://docs.oracle.com/middleware/jet112/jet/) to help with Getting Started and many common issues.
36+
37+
## [Contributing](https://github.com/oracle/oraclejet/tree/master/CONTRIBUTING.md)
38+
Oracle JET is an open source project. See
39+
[CONTRIBUTING](https://github.com/oracle/oraclejet/tree/master/CONTRIBUTING.md)
40+
for details.
41+
42+
## [License](https://github.com/oracle/oraclejet/tree/master/LICENSE.md)
43+
Copyright (c) 2014, 2016 Oracle and/or its affiliates
44+
The Universal Permissive License (UPL), Version 1.0

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "oraclejet",
33
"description": "Oracle JET distribution",
4-
"version": "0.0.1",
4+
"version": "2.0.0",
55
"authors": [
66
"Oracle"
77
],
88
"license": "UPL",
99
"homepage": "http://oraclejet.org",
1010
"moduleType": [],
11-
"ignore":[],
11+
"ignore":["samples"],
1212
"main":[],
1313
"dependencies":
1414
{
@@ -21,4 +21,4 @@
2121
"requirejs": "2.1.16",
2222
"text": "2.0.12"
2323
}
24-
}
24+
}

dist/css/alta-android/oj-alta-min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-android/oj-alta.css

Lines changed: 11 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-android/oj-alta.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-ios/oj-alta-min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-ios/oj-alta.css

Lines changed: 11 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-ios/oj-alta.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-windows/oj-alta-min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)