From 41b844d10182377bc3938d3eff3c86cd92c814ef Mon Sep 17 00:00:00 2001 From: nick Date: Fri, 14 Mar 2008 20:58:40 +0000 Subject: [PATCH] Copyright notice git-svn-id: http://svn.nickg.me.uk/work/xcowsay@295 a97b1542-0b21-0410-a459-e47997c36f34 --- AUTHORS | 3 +++ Cowsay_glue.h => src/Cowsay_glue.h | 0 src/display_cow.c | 17 +++++++++++++++++ src/display_cow.h | 17 +++++++++++++++++ src/floating_shape.c | 17 +++++++++++++++++ src/floating_shape.h | 18 ++++++++++++++++++ src/settings.c | 17 +++++++++++++++++ src/settings.h | 17 +++++++++++++++++ src/xcowsay.c | 17 +++++++++++++++++ src/xcowsayd.c | 17 +++++++++++++++++ 10 files changed, 140 insertions(+) rename Cowsay_glue.h => src/Cowsay_glue.h (100%) diff --git a/AUTHORS b/AUTHORS index e69de29..a71c8b9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -0,0 +1,3 @@ +This was all written by: + + Nick Gasson diff --git a/Cowsay_glue.h b/src/Cowsay_glue.h similarity index 100% rename from Cowsay_glue.h rename to src/Cowsay_glue.h diff --git a/src/display_cow.c b/src/display_cow.c index 9f8cac5..2c87562 100644 --- a/src/display_cow.c +++ b/src/display_cow.c @@ -1,3 +1,20 @@ +/* display_cow.c -- Display a cow in a popup window. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/src/display_cow.h b/src/display_cow.h index 5da0cb6..d8ac348 100644 --- a/src/display_cow.h +++ b/src/display_cow.h @@ -1,3 +1,20 @@ +/* display_cow.h -- Display a cow in a popup window. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef INC_DISPLAY_COW_H #define INC_DISPLAY_COW_H diff --git a/src/floating_shape.c b/src/floating_shape.c index 386e7b9..0a27f8a 100644 --- a/src/floating_shape.c +++ b/src/floating_shape.c @@ -1,3 +1,20 @@ +/* floating_shape.c -- Low-ish level window creation and management. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include "floating_shape.h" diff --git a/src/floating_shape.h b/src/floating_shape.h index e335fe6..a2b4ed3 100644 --- a/src/floating_shape.h +++ b/src/floating_shape.h @@ -1,3 +1,21 @@ +/* floating_shape.h -- Low-ish level window creation and management. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + + #ifndef INC_FLOATING_SHAPE_H #define INC_FLOATING_SHAPE_H diff --git a/src/settings.c b/src/settings.c index 62449aa..08aae58 100644 --- a/src/settings.c +++ b/src/settings.c @@ -1,3 +1,20 @@ +/* settings.c -- Manage user options. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/src/settings.h b/src/settings.h index 71f0984..9cb5183 100644 --- a/src/settings.h +++ b/src/settings.h @@ -1,3 +1,20 @@ +/* settings.h -- Manage user options. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef INC_SETTINGS_H #define INC_SETTINGS_H diff --git a/src/xcowsay.c b/src/xcowsay.c index b8a18a2..7020de0 100644 --- a/src/xcowsay.c +++ b/src/xcowsay.c @@ -1,3 +1,20 @@ +/* xcowsay.c -- Cute talking cow for GTK+ + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/src/xcowsayd.c b/src/xcowsayd.c index 985d7db..fca415f 100644 --- a/src/xcowsayd.c +++ b/src/xcowsayd.c @@ -1,3 +1,20 @@ +/* xcowsayd.c -- DBus xcowsay daemon. + * Copyright (C) 2008 Nick Gasson + * + * 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include -- 2.39.2