]> git.proxmox.com Git - spiceterm.git/commitdiff
add copyright (GPLv2)
authorDietmar Maurer <dietmar@proxmox.com>
Wed, 11 Sep 2013 10:08:08 +0000 (12:08 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 11 Sep 2013 10:11:43 +0000 (12:11 +0200)
copyright [new file with mode: 0644]
event_loop.c
screen.c
spiceterm.c

diff --git a/copyright b/copyright
new file mode 100644 (file)
index 0000000..ea08073
--- /dev/null
+++ b/copyright
@@ -0,0 +1,20 @@
+Copyright (C) 2013 Proxmox Server Solutions GmbH
+
+Copyright: spiceterm is under GNU GPL, the GNU General Public License.
+
+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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+The complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
index 3ce7f3cffced19814b2d0410130c778a1b1c20fa..ca6948e856446715382860a59e1d4e294d7520e6 100644 (file)
@@ -1,3 +1,27 @@
+/*
+
+     Copyright (C) 2013 Proxmox Server Solutions GmbH
+
+     Copyright: spiceterm is under GNU GPL, the GNU General Public License.
+
+     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; version 2 dated June, 1991.
+
+     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., 59 Temple Place - Suite 330, Boston, MA
+     02111-1307, USA.
+
+     Author: Dietmar Maurer <dietmar@proxmox.com>
+
+*/
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <sys/time.h>
index 360a7f6b06249a81ccd768ff80df51e681b7b191..e41bc914a86ff93ab109439981b2d6c466d7abe7 100644 (file)
--- a/screen.c
+++ b/screen.c
@@ -1,3 +1,29 @@
+/*
+
+     Copyright (C) 2013 Proxmox Server Solutions GmbH
+
+     Copyright: spiceterm is under GNU GPL, the GNU General Public License.
+
+     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; version 2 dated June, 1991.
+
+     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., 59 Temple Place - Suite 330, Boston, MA
+     02111-1307, USA.
+
+     Author: Dietmar Maurer <dietmar@proxmox.com>
+
+     Note: qlx drawing code is copied from spice-server test code.
+
+*/
+
 #include <stdlib.h>
 #include <math.h>
 #include <string.h>
index 1f597a93e8a10a31572531590fccf83c90475868..ede2e3283065b9868f7419fe660aff65b4e20687 100644 (file)
@@ -1,24 +1,27 @@
 /*
 
-  Copyright (C) 2007-2011 Proxmox Server Solutions GmbH
+     Copyright (C) 2013 Proxmox Server Solutions GmbH
 
-  Copyright: spiceterm is under GNU GPL, the GNU General Public License.
+     Copyright: spiceterm is under GNU GPL, the GNU General Public License.
 
-  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; version 2 dated June, 1991.
+     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; version 2 dated June, 1991.
 
-  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.
+     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., 59 Temple Place - Suite 330, Boston, MA
-  02111-1307, USA.
+     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., 59 Temple Place - Suite 330, Boston, MA
+     02111-1307, USA.
 
-  Author: Dietmar Maurer <dietmar@proxmox.com>
+     Author: Dietmar Maurer <dietmar@proxmox.com>
+
+     Note: most of the code here is copied from vncterm (which is 
+     also written by me).
 
 */