Skip to content

Commit 7b8ebfc

Browse files
website init
1 parent ca4a762 commit 7b8ebfc

File tree

351 files changed

+67336
-0
lines changed

Some content is hidden

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

351 files changed

+67336
-0
lines changed

bower_components/backbone/.bower.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "backbone",
3+
"version": "1.1.2",
4+
"main": "backbone.js",
5+
"dependencies": {
6+
"underscore": ">=1.5.0"
7+
},
8+
"ignore": [
9+
"backbone-min.js",
10+
"docs",
11+
"examples",
12+
"test",
13+
"*.yml",
14+
"*.map",
15+
".html",
16+
"*.ico"
17+
],
18+
"homepage": "https://github.com/jashkenas/backbone",
19+
"_release": "1.1.2",
20+
"_resolution": {
21+
"type": "version",
22+
"tag": "1.1.2",
23+
"commit": "53f77901a4ea9c7cf75d3db93ddddf491998d90f"
24+
},
25+
"_source": "git://github.com/jashkenas/backbone.git",
26+
"_target": "~1.1.2",
27+
"_originalSource": "backbone",
28+
"_direct": true
29+
}

bower_components/backbone/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
raw
2+
*.sw?
3+
.DS_Store
4+
node_modules
5+
bower_components

bower_components/backbone/.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
test/
2+
Rakefile
3+
docs/
4+
raw/
5+
examples/
6+
index.html
7+
.jshintrc

bower_components/backbone/CNAME

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
backbonejs.org
2+
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## How to Open a Backbone.js Ticket
2+
3+
* Do not use tickets to ask for help with (debugging) your application. Ask on
4+
the [mailing list](https://groups.google.com/forum/#!forum/backbonejs),
5+
in the IRC channel (`#documentcloud` on Freenode), or if you understand your
6+
specific problem, on [StackOverflow](http://stackoverflow.com/questions/tagged/backbone.js).
7+
8+
* Before you open a ticket or send a pull request,
9+
[search](https://github.com/jashkenas/backbone/issues) for previous
10+
discussions about the same feature or issue. Add to the earlier ticket if you
11+
find one.
12+
13+
* Before sending a pull request for a feature or bug fix, be sure to have
14+
[tests](http://backbonejs.org/test/).
15+
16+
* Use the same coding style as the rest of the
17+
[codebase](https://github.com/jashkenas/backbone/blob/master/backbone.js).
18+
19+
* In your pull request, do not add documentation or rebuild the minified
20+
`backbone-min.js` file. We'll do that before cutting a new release.
21+
22+
* All pull requests should be made to the `master` branch.

bower_components/backbone/LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2010-2014 Jeremy Ashkenas, DocumentCloud
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

bower_components/backbone/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
____ __ __
2+
/\ _`\ /\ \ /\ \ __
3+
\ \ \ \ \ __ ___\ \ \/'\\ \ \____ ___ ___ __ /\_\ ____
4+
\ \ _ <' /'__`\ /'___\ \ , < \ \ '__`\ / __`\ /' _ `\ /'__`\ \/\ \ /',__\
5+
\ \ \ \ \/\ \ \.\_/\ \__/\ \ \\`\\ \ \ \ \/\ \ \ \/\ \/\ \/\ __/ __ \ \ \/\__, `\
6+
\ \____/\ \__/.\_\ \____\\ \_\ \_\ \_,__/\ \____/\ \_\ \_\ \____\/\_\_\ \ \/\____/
7+
\/___/ \/__/\/_/\/____/ \/_/\/_/\/___/ \/___/ \/_/\/_/\/____/\/_/\ \_\ \/___/
8+
\ \____/
9+
\/___/
10+
(_'_______________________________________________________________________________'_)
11+
(_.———————————————————————————————————————————————————————————————————————————————._)
12+
13+
14+
Backbone supplies structure to JavaScript-heavy applications by providing models key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface.
15+
16+
For Docs, License, Tests, pre-packed downloads, and everything else, really, see:
17+
http://backbonejs.org
18+
19+
To suggest a feature, report a bug, or general discussion:
20+
http://github.com/jashkenas/backbone/issues
21+
22+
Backbone is an open-sourced component of DocumentCloud:
23+
https://github.com/documentcloud
24+
25+
Many thanks to our contributors:
26+
http://github.com/jashkenas/backbone/contributors
27+
28+
Special thanks to Robert Kieffer for the original philosophy behind Backbone.
29+
http://github.com/broofa

0 commit comments

Comments
 (0)