summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-23 14:46:30 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-24 10:38:11 -0400
commit1de16af1f3916c94b46e28fb22584dc1e7c17958 (patch)
tree6ad015cf2188bc7df65f1910c539f3c79dab09ff
parentdcaf9b3227f7bd77e14aafe957957df6cfbffb86 (diff)
Change copyrights to be 'Deno authors'.
-rw-r--r--BUILD.gn1
-rw-r--r--build_extra/deno.gni2
-rwxr-xr-xbuild_extra/rust/get_rust_ldflags.py5
-rw-r--r--js/assets.ts3
-rw-r--r--js/deno.d.ts3
-rw-r--r--js/deno.ts3
-rw-r--r--js/dispatch.ts3
-rw-r--r--js/fetch.ts3
-rw-r--r--js/globals.ts3
-rw-r--r--js/main.ts1
-rw-r--r--js/mock_runtime.js2
-rw-r--r--js/os.ts3
-rw-r--r--js/runtime.ts3
-rw-r--r--js/tests.ts3
-rw-r--r--js/timers.ts3
-rw-r--r--js/types.ts3
-rw-r--r--js/util.ts3
-rw-r--r--js/v8_source_maps.ts3
-rw-r--r--src/binding.cc22
-rw-r--r--src/binding.rs3
-rw-r--r--src/deno.h3
-rw-r--r--src/file_util.cc3
-rw-r--r--src/file_util.h3
-rw-r--r--src/file_util_test.cc3
-rw-r--r--src/flatbuffer_builder.cc3
-rw-r--r--src/flatbuffer_builder.h3
-rw-r--r--src/flatbuffer_builder_test.cc3
-rw-r--r--src/from_filesystem.cc3
-rw-r--r--src/from_snapshot.cc3
-rw-r--r--src/handlers.h3
-rw-r--r--src/handlers.rs3
-rw-r--r--src/internal.h3
-rw-r--r--src/mock_runtime_test.cc3
-rw-r--r--src/reply.cc3
-rw-r--r--src/reply.h3
-rw-r--r--src/snapshot_creator.cc3
-rw-r--r--src/test.cc3
37 files changed, 40 insertions, 86 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 1f2cf10e1..6b1d5d17b 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1,3 +1,4 @@
+# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import("//third_party/v8/gni/v8.gni")
import("//third_party/v8/snapshot_toolchain.gni")
import("//build_extra/flatbuffers/flatbuffer.gni")
diff --git a/build_extra/deno.gni b/build_extra/deno.gni
index 6d1293bc1..6fed4816e 100644
--- a/build_extra/deno.gni
+++ b/build_extra/deno.gni
@@ -1,3 +1,5 @@
+# Copyright 2018 the Deno authors. All rights reserved. MIT license.
+
template("run_node") {
action(target_name) {
forward_variables_from(invoker, "*")
diff --git a/build_extra/rust/get_rust_ldflags.py b/build_extra/rust/get_rust_ldflags.py
index b20b66143..a1726fd4f 100755
--- a/build_extra/rust/get_rust_ldflags.py
+++ b/build_extra/rust/get_rust_ldflags.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
-# Copyright 2018 Bert Belder <bertbelder@gmail.com>
-# All rights reserved. MIT License.
-
+# Copyright 2018 the Deno authors. All rights reserved. MIT license.
+#
# The Rust compiler normally builds source code directly into an executable.
# Internally, object code is produced, and then the (system) linker is called,
# but this all happens under the covers.
diff --git a/js/assets.ts b/js/assets.ts
index e247049c0..2eabbc5f9 100644
--- a/js/assets.ts
+++ b/js/assets.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// tslint:disable-next-line:no-reference
/// <reference path="plugins.d.ts" />
diff --git a/js/deno.d.ts b/js/deno.d.ts
index a54dab851..f2b726d8e 100644
--- a/js/deno.d.ts
+++ b/js/deno.d.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
type MessageCallback = (msg: Uint8Array) => void;
interface Deno {
diff --git a/js/deno.ts b/js/deno.ts
index 595d87709..df1148453 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Public deno module.
// TODO get rid of deno.d.ts
export { pub, sub } from "./dispatch";
diff --git a/js/dispatch.ts b/js/dispatch.ts
index 6668014b9..eeb00f38e 100644
--- a/js/dispatch.ts
+++ b/js/dispatch.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import { typedArrayToArrayBuffer } from "./util";
import { deno as fbs } from "./msg_generated";
diff --git a/js/fetch.ts b/js/fetch.ts
index c59d41bf5..7fe7be22b 100644
--- a/js/fetch.ts
+++ b/js/fetch.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import {
assert,
log,
diff --git a/js/globals.ts b/js/globals.ts
index 81e6bdf12..c36eaff60 100644
--- a/js/globals.ts
+++ b/js/globals.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// If you use the eval function indirectly, by invoking it via a reference
// other than eval, as of ECMAScript 5 it works in the global scope rather than
diff --git a/js/main.ts b/js/main.ts
index 728c46e80..818e6aa12 100644
--- a/js/main.ts
+++ b/js/main.ts
@@ -1,3 +1,4 @@
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// tslint:disable-next-line:no-reference
/// <reference path="deno.d.ts" />
import { flatbuffers } from "flatbuffers";
diff --git a/js/mock_runtime.js b/js/mock_runtime.js
index 934fbeab4..313a7fac7 100644
--- a/js/mock_runtime.js
+++ b/js/mock_runtime.js
@@ -1,3 +1,5 @@
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc
diff --git a/js/os.ts b/js/os.ts
index e4263009f..d13519584 100644
--- a/js/os.ts
+++ b/js/os.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import { ModuleInfo } from "./types";
import { deno as fbs } from "./msg_generated";
import { assert } from "./util";
diff --git a/js/runtime.ts b/js/runtime.ts
index c439fb963..6f2007268 100644
--- a/js/runtime.ts
+++ b/js/runtime.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Glossary
// outputCode = generated javascript code
// sourceCode = typescript code (or input javascript code)
diff --git a/js/tests.ts b/js/tests.ts
index 49e6aa9b3..3e8be12a1 100644
--- a/js/tests.ts
+++ b/js/tests.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// This test is executed as part of integration_test.go
// But it can also be run manually:
// ./deno tests.ts
diff --git a/js/timers.ts b/js/timers.ts
index da2cccd89..9f18d2716 100644
--- a/js/timers.ts
+++ b/js/timers.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import { deno as pb } from "./msg.pb";
import { pubInternal, sub } from "./dispatch";
import { assert } from "./util";
diff --git a/js/types.ts b/js/types.ts
index d32d9f5a6..ae8ee1e81 100644
--- a/js/types.ts
+++ b/js/types.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
export type TypedArray = Uint8Array | Float32Array | Int32Array;
export interface ModuleInfo {
diff --git a/js/util.ts b/js/util.ts
index 05b243427..09d74aeb0 100644
--- a/js/util.ts
+++ b/js/util.ts
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
//import { debug } from "./main";
const debug = false;
diff --git a/js/v8_source_maps.ts b/js/v8_source_maps.ts
index 2384f34dc..956ffbe82 100644
--- a/js/v8_source_maps.ts
+++ b/js/v8_source_maps.ts
@@ -1,6 +1,5 @@
// Copyright 2014 Evan Wallace
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Originated from source-map-support but has been heavily modified for deno.
import { SourceMapConsumer, MappedPosition } from "source-map";
import * as base64 from "base64-js";
diff --git a/src/binding.cc b/src/binding.cc
index 2067f1023..60325df1e 100644
--- a/src/binding.cc
+++ b/src/binding.cc
@@ -1,24 +1,4 @@
-/*
-Copyright 2018 Ryan Dahl <ry@tinyclouds.org>. All rights reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to
-deal in the Software without restriction, including without limitation the
-rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-sell copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-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.
-*/
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/binding.rs b/src/binding.rs
index 1e60e01d7..72e8af996 100644
--- a/src/binding.rs
+++ b/src/binding.rs
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#![allow(dead_code)]
extern crate libc;
diff --git a/src/deno.h b/src/deno.h
index ab214ab03..bb4c91f1c 100644
--- a/src/deno.h
+++ b/src/deno.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef DENO_H_
#define DENO_H_
#include <stddef.h>
diff --git a/src/file_util.cc b/src/file_util.cc
index 38e393300..17eb29e67 100644
--- a/src/file_util.cc
+++ b/src/file_util.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <inttypes.h>
#include <stdio.h>
#include <fstream>
diff --git a/src/file_util.h b/src/file_util.h
index a2abb5f68..bba512c0d 100644
--- a/src/file_util.h
+++ b/src/file_util.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FILE_UTIL_H_
#define FILE_UTIL_H_
diff --git a/src/file_util_test.cc b/src/file_util_test.cc
index 33d635881..6d4acd1d8 100644
--- a/src/file_util_test.cc
+++ b/src/file_util_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"
#include "file_util.h"
diff --git a/src/flatbuffer_builder.cc b/src/flatbuffer_builder.cc
index 8a7a0c649..d8f0fb336 100644
--- a/src/flatbuffer_builder.cc
+++ b/src/flatbuffer_builder.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stddef.h>
#include <stdint.h>
diff --git a/src/flatbuffer_builder.h b/src/flatbuffer_builder.h
index 1bc973afe..24e7a887a 100644
--- a/src/flatbuffer_builder.h
+++ b/src/flatbuffer_builder.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FLATBUFFER_BUILDER_H_
#define FLATBUFFER_BUILDER_H_
diff --git a/src/flatbuffer_builder_test.cc b/src/flatbuffer_builder_test.cc
index cfa12f0a0..b0c04d118 100644
--- a/src/flatbuffer_builder_test.cc
+++ b/src/flatbuffer_builder_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdint.h>
diff --git a/src/from_filesystem.cc b/src/from_filesystem.cc
index 3a3de85c6..a47808b82 100644
--- a/src/from_filesystem.cc
+++ b/src/from_filesystem.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/from_snapshot.cc b/src/from_snapshot.cc
index 3aa3bac77..ac48e8a20 100644
--- a/src/from_snapshot.cc
+++ b/src/from_snapshot.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/handlers.h b/src/handlers.h
index a95bc7265..04aed25ef 100644
--- a/src/handlers.h
+++ b/src/handlers.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef HANDLERS_H_
#define HANDLERS_H_
diff --git a/src/handlers.rs b/src/handlers.rs
index 1566fc7e0..e8e197e60 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
extern crate libc;
#[macro_use]
extern crate log;
diff --git a/src/internal.h b/src/internal.h
index 914079d9a..dc28112dc 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef INTERNAL_H_
#define INTERNAL_H_
diff --git a/src/mock_runtime_test.cc b/src/mock_runtime_test.cc
index 74256fa02..971fa68f3 100644
--- a/src/mock_runtime_test.cc
+++ b/src/mock_runtime_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"
#include "deno.h"
diff --git a/src/reply.cc b/src/reply.cc
index 7043292fd..ffb0d493a 100644
--- a/src/reply.cc
+++ b/src/reply.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// When Rust Flatbuffer support is complete this file should be ported
// to Rust and removed: https://github.com/google/flatbuffers/pull/3894
diff --git a/src/reply.h b/src/reply.h
index aa2e61f8c..4b16204da 100644
--- a/src/reply.h
+++ b/src/reply.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// TODO(ry) This library handles parsing and sending Flatbuffers. It's written
// in C++ because flatbuffer support for Rust is not quite there. However, once
diff --git a/src/snapshot_creator.cc b/src/snapshot_creator.cc
index 3aca7c3a8..25aef7d51 100644
--- a/src/snapshot_creator.cc
+++ b/src/snapshot_creator.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#include "deno.h"
diff --git a/src/test.cc b/src/test.cc
index d8b4380d7..9638dba60 100644
--- a/src/test.cc
+++ b/src/test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "deno.h"
#include "testing/gtest/include/gtest/gtest.h"