[X2Go-Commits] [x2gohtmlclient] 02/02: Add license headers to non-image files.
git-admin at x2go.org
git-admin at x2go.org
Wed Jun 16 13:15:17 CEST 2021
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch master
in repository x2gohtmlclient.
commit 87022c5f37b44bc850f577656f1e5d6476a30565
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date: Wed Jun 16 13:15:05 2021 +0200
Add license headers to non-image files.
---
index.html | 20 ++++++++++++++++++++
minify.sh | 17 +++++++++++++++++
src/x2godomcontroller.js | 19 +++++++++++++++++++
src/x2gohtmlclient.js | 19 +++++++++++++++++++
src/x2gokdrivehtmlclient.js | 29 +++++++++++++++++++----------
x2gokdriveclient.html | 20 ++++++++++++++++++++
6 files changed, 114 insertions(+), 10 deletions(-)
diff --git a/index.html b/index.html
index eafc1a1..0e16f28 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,24 @@
<!DOCTYPE html>
+
+<!--
+ Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program; if not, write to the
+ Free Software Foundation, Inc.,
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+-->
+
<html>
<head>
<h1>X2Go HTML Client</h1>
diff --git a/minify.sh b/minify.sh
index 887d720..fa1b8f1 100755
--- a/minify.sh
+++ b/minify.sh
@@ -1,3 +1,20 @@
#!/bin/bash
+# Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the
+# Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
minify src/x2godomcontroller.js src/x2gokdrivehtmlclient.js src/x2gohtmlclient.js > dist/x2goclient.js
diff --git a/src/x2godomcontroller.js b/src/x2godomcontroller.js
index 852ab5a..81f0e0f 100644
--- a/src/x2godomcontroller.js
+++ b/src/x2godomcontroller.js
@@ -1,3 +1,22 @@
+/*
+ * Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
class
X2GoDOMController
{
diff --git a/src/x2gohtmlclient.js b/src/x2gohtmlclient.js
index fce7ede..cad9dec 100644
--- a/src/x2gohtmlclient.js
+++ b/src/x2gohtmlclient.js
@@ -1,3 +1,22 @@
+/*
+ * Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
var X2GOClientVersion = "1.0";
class
diff --git a/src/x2gokdrivehtmlclient.js b/src/x2gokdrivehtmlclient.js
index c11e29d..70884c8 100644
--- a/src/x2gokdrivehtmlclient.js
+++ b/src/x2gokdrivehtmlclient.js
@@ -1,14 +1,23 @@
-/* ************************************************************************
-
- Copyright:2020 o.shneyder at phoca-gmbh.de
-
- License:
-
- Authors:
-
- ************************************************************************ */
+/*
+ * Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
-/**
+/*
* This is the main application class of your custom application "x2gokdrivehtmlclient"
*
*/
diff --git a/x2gokdriveclient.html b/x2gokdriveclient.html
index e33003e..33765c7 100644
--- a/x2gokdriveclient.html
+++ b/x2gokdriveclient.html
@@ -1,4 +1,24 @@
<!DOCTYPE html>
+
+<!--
+ Copyright © 2020-2021 Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program; if not, write to the
+ Free Software Foundation, Inc.,
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+-->
+
<html>
<head>
<link rel="stylesheet" href="CSS/x2gostyle.css">
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gohtmlclient.git
More information about the x2go-commits
mailing list