Skip to content

Commit

Permalink
Bug 977090 - Added MPL 2.0 licensing information.
Browse files Browse the repository at this point in the history
  • Loading branch information
n1k0 committed Feb 26, 2014
1 parent 08e9e78 commit 5244921
Show file tree
Hide file tree
Showing 8 changed files with 404 additions and 0 deletions.
374 changes: 374 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

NODE_LOCAL_BIN=./node_modules/.bin

.PHONY: test
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Loop server
===========

License
-------

The Loop server code is released under the terms of the
[Mozilla Public License v2.0](http://www.mozilla.org/MPL/2.0/). See the
`LICENSE` file at the root of the repository.
4 changes: 4 additions & 0 deletions loop/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

var express = require('express');
Expand Down
4 changes: 4 additions & 0 deletions loop/tokenlib.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

var crypto = require("crypto");
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "mozilla-loop-server",
"description": "The Mozilla Loop (WebRTC App) server",
"version": "0.0.1",
"license" : "MPL-2.0",
"engines": {
"node": "0.10.x",
"npm":"1.3.x"
Expand Down
4 changes: 4 additions & 0 deletions test/functional_test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var expect = require("chai").expect;
var request = require("supertest");

Expand Down
4 changes: 4 additions & 0 deletions test/tokenlib_test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var expect = require("chai").expect;
var base64 = require('urlsafe-base64');
var tokenlib = require("../loop/tokenlib");
Expand Down

0 comments on commit 5244921

Please sign in to comment.