aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2019-01-28 17:25:18 +0100
committerMarvin Borner2019-01-28 17:25:18 +0100
commit353d6038b238b5dda6f2494f9d18a2c45131c50a (patch)
treeff69bcb9597aec6c1a4701b6f412beb8c99148f8
parent3f6ef340af9a14dcaa61eb3b2e3ba731f727b414 (diff)
Generated copyright notices
-rw-r--r--public/images/.gitkeep0
-rw-r--r--public/scripts/chat.js7
-rw-r--r--public/scripts/encryption.js7
-rw-r--r--public/scripts/input_pin.js7
-rw-r--r--public/scripts/main.js7
-rw-r--r--public/styles/pin.sass7
-rw-r--r--public/styles/style.sass7
-rw-r--r--src/index.js7
-rw-r--r--src/routes.js7
-rw-r--r--views/error.pug6
-rw-r--r--views/index.pug6
-rw-r--r--views/layout.pug6
12 files changed, 74 insertions, 0 deletions
diff --git a/public/images/.gitkeep b/public/images/.gitkeep
deleted file mode 100644
index e69de29..0000000
--- a/public/images/.gitkeep
+++ /dev/null
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 580c818..35e75db 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -1,3 +1,10 @@
+/*
+ * chat.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
// general imports
const $ = require('jquery');
const crypto = require('crypto');
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 323a5e0..6406906 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -1,3 +1,10 @@
+/*
+ * encryption.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
const Dexie = require('dexie');
const openpgp = require('openpgp');
diff --git a/public/scripts/input_pin.js b/public/scripts/input_pin.js
index b496e95..c28d6e9 100644
--- a/public/scripts/input_pin.js
+++ b/public/scripts/input_pin.js
@@ -1,3 +1,10 @@
+/*
+ * input_pin.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
const $ = require('jquery');
let pin = [];
diff --git a/public/scripts/main.js b/public/scripts/main.js
index 6b3d287..0d1ac3a 100644
--- a/public/scripts/main.js
+++ b/public/scripts/main.js
@@ -1,3 +1,10 @@
+/*
+ * main.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
/**
* This file only pulls all dependencies together
* so it is compileable by browserify
diff --git a/public/styles/pin.sass b/public/styles/pin.sass
index 6578f08..8f396ae 100644
--- a/public/styles/pin.sass
+++ b/public/styles/pin.sass
@@ -1,3 +1,10 @@
+/*!
+ / pin.sass
+ / Copyright (c) 2019, Texx
+ / License: MIT
+ / See https://github.com/texxme/Texx/blob/master/LICENSE
+ /
+
.columns
min-height: 100%
diff --git a/public/styles/style.sass b/public/styles/style.sass
index d61fdf2..34e4a5c 100644
--- a/public/styles/style.sass
+++ b/public/styles/style.sass
@@ -1,3 +1,10 @@
+/*!
+ / style.sass
+ / Copyright (c) 2019, Texx
+ / License: MIT
+ / See https://github.com/texxme/Texx/blob/master/LICENSE
+ /
+
html, body
height: 100% !important
width: 100% !important
diff --git a/src/index.js b/src/index.js
index c664485..f903edd 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,3 +1,10 @@
+/*
+ * index.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
import {ExpressPeerServer} from "peer";
import express from 'express';
import path from 'path';
diff --git a/src/routes.js b/src/routes.js
index ef00e68..d97ed0a 100644
--- a/src/routes.js
+++ b/src/routes.js
@@ -1,3 +1,10 @@
+/*
+ * routes.js
+ * Copyright (c) 2019, Texx
+ * License: MIT
+ * See https://github.com/texxme/Texx/blob/master/LICENSE
+ */
+
import {Router} from 'express';
const routes = Router();
diff --git a/views/error.pug b/views/error.pug
index 192b543..270be46 100644
--- a/views/error.pug
+++ b/views/error.pug
@@ -1,3 +1,9 @@
+//
+ error.pug
+ Copyright (c) 2019, Texx
+ License: MIT
+ See https://github.com/texxme/Texx/blob/master/LICENSE
+
extends layout
block content
diff --git a/views/index.pug b/views/index.pug
index 0375186..517c0a3 100644
--- a/views/index.pug
+++ b/views/index.pug
@@ -1,3 +1,9 @@
+//
+ index.pug
+ Copyright (c) 2019, Texx
+ License: MIT
+ See https://github.com/texxme/Texx/blob/master/LICENSE
+
extends layout
block content
diff --git a/views/layout.pug b/views/layout.pug
index 3a78c46..6f6faf0 100644
--- a/views/layout.pug
+++ b/views/layout.pug
@@ -1,3 +1,9 @@
+//
+ layout.pug
+ Copyright (c) 2019, Texx
+ License: MIT
+ See https://github.com/texxme/Texx/blob/master/LICENSE
+
doctype html
html
head