Skip to content

Commit 1f5c012

Browse files
committed
Add CNAME
1 parent 066989f commit 1f5c012

File tree

1,633 files changed

+330613
-61
lines changed

Some content is hidden

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

1,633 files changed

+330613
-61
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-cn.org

Gruntfile.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = function (grunt) {
2+
grunt.initConfig({
3+
concat: {
4+
options: {
5+
separator: ';\n\n'
6+
},
7+
dist: {
8+
src: ['bower_components/jquery/dist/jquery.min.js',
9+
'bower_components/angular/angular.min.js',
10+
'bower_components/marked/lib/marked.js',
11+
'bower_components/angular-route/angular-route.min.js',
12+
'bower_components/angular-animate/angular-animate.min.js',
13+
'bower_components/underscore/underscore.js',
14+
'bower_components/underscore.string/dist/underscore.string.min.js'
15+
],
16+
dest: 'bower_components/concat.js'
17+
}
18+
},
19+
uglify: {
20+
build: {
21+
src: 'bower_components/concat.js',
22+
dest: 'bower_components/concat.min.js'
23+
}
24+
}
25+
26+
});
27+
28+
grunt.loadNpmTasks('grunt-contrib-copy');
29+
grunt.loadNpmTasks('grunt-contrib-uglify');
30+
grunt.loadNpmTasks('grunt-contrib-concat');
31+
grunt.registerTask('default', ['concat', 'uglify']);
32+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "angular-animate",
3+
"version": "1.3.15",
4+
"main": "./angular-animate.js",
5+
"ignore": [],
6+
"dependencies": {
7+
"angular": "1.3.15"
8+
},
9+
"homepage": "https://github.com/angular/bower-angular-animate",
10+
"_release": "1.3.15",
11+
"_resolution": {
12+
"type": "version",
13+
"tag": "v1.3.15",
14+
"commit": "30fb369974560dbeb8a5311861c124e094944dab"
15+
},
16+
"_source": "git://github.com/angular/bower-angular-animate.git",
17+
"_target": "~1.3.15",
18+
"_originalSource": "angular-animate",
19+
"_direct": true
20+
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# packaged angular-animate
2+
3+
This repo is for distribution on `npm` and `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAnimate).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
You can install this package either with `npm` or with `bower`.
10+
11+
### npm
12+
13+
```shell
14+
npm install angular-animate
15+
```
16+
17+
Then add `ngAnimate` as a dependency for your app:
18+
19+
```javascript
20+
angular.module('myApp', [require('angular-animate')]);
21+
```
22+
23+
### bower
24+
25+
```shell
26+
bower install angular-animate
27+
```
28+
29+
Then add a `<script>` to your `index.html`:
30+
31+
```html
32+
<script src="/bower_components/angular-animate/angular-animate.js"></script>
33+
```
34+
35+
Then add `ngAnimate` as a dependency for your app:
36+
37+
```javascript
38+
angular.module('myApp', ['ngAnimate']);
39+
```
40+
41+
## Documentation
42+
43+
Documentation is available on the
44+
[AngularJS docs site](http://docs.angularjs.org/api/ngAnimate).
45+
46+
## License
47+
48+
The MIT License
49+
50+
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
51+
52+
Permission is hereby granted, free of charge, to any person obtaining a copy
53+
of this software and associated documentation files (the "Software"), to deal
54+
in the Software without restriction, including without limitation the rights
55+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
56+
copies of the Software, and to permit persons to whom the Software is
57+
furnished to do so, subject to the following conditions:
58+
59+
The above copyright notice and this permission notice shall be included in
60+
all copies or substantial portions of the Software.
61+
62+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
63+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
64+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
65+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
66+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
67+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
68+
THE SOFTWARE.

0 commit comments

Comments
 (0)