[maemo-commits] [maemo-commits] r16025 - in projects/haf/branches/hildon-thumbnail/daemonize: daemon daemon/plugins tests

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Thu Sep 4 20:34:39 EEST 2008
Author: pvanhoof
Date: 2008-09-04 20:34:37 +0300 (Thu, 04 Sep 2008)
New Revision: 16025

Modified:
   projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugin-runner.c
   projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugins/gdkpixbuf-plugin.h
   projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.c
   projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.h
   projects/haf/branches/hildon-thumbnail/daemonize/tests/daemon.c
Log:
Correcting some copyright stuff

Modified: projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugin-runner.c
===================================================================
--- projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugin-runner.c	2008-09-04 17:26:39 UTC (rev 16024)
+++ projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugin-runner.c	2008-09-04 17:34:37 UTC (rev 16025)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of hildon-thumbnail package
+ *
+ * Copyright (C) 2005 Nokia Corporation.  All Rights reserved.
+ *
+ * Contact: Marius Vollmer <marius.vollmer at nokia.com>
+ * Author: Philip Van Hoof <philip at codeminded.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
 #include <glib.h>
 #include <gio/gio.h>
 #include <dbus/dbus-glib-bindings.h>

Modified: projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugins/gdkpixbuf-plugin.h
===================================================================
--- projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugins/gdkpixbuf-plugin.h	2008-09-04 17:26:39 UTC (rev 16024)
+++ projects/haf/branches/hildon-thumbnail/daemonize/daemon/plugins/gdkpixbuf-plugin.h	2008-09-04 17:34:37 UTC (rev 16025)
@@ -1,5 +1,5 @@
-#ifndef __DEFAULT_H__
-#define __DEFAULT_H__
+#ifndef __GDKPIXBUF_PLUGIN_H__
+#define __GDKPIXBUF_PLUGIN_H__
 
 /*
  * This file is part of hildon-thumbnail package

Modified: projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.c
===================================================================
--- projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.c	2008-09-04 17:26:39 UTC (rev 16024)
+++ projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.c	2008-09-04 17:34:37 UTC (rev 16025)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of hildon-thumbnail package
+ *
+ * Copyright (C) 2005 Nokia Corporation.  All Rights reserved.
+ *
+ * Contact: Marius Vollmer <marius.vollmer at nokia.com>
+ * Author: Philip Van Hoof <philip at codeminded.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
 #include <string.h>
 #include "md5.h"
 #include "utils.h"
@@ -2,7 +26,5 @@
 
-
 #define UTILS_ERROR_DOMAIN	"HildonThumbnailerUtils"
 #define UTILS_ERROR		g_quark_from_static_string (UTILS_ERROR_DOMAIN)
 
-
 static void 

Modified: projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.h
===================================================================
--- projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.h	2008-09-04 17:26:39 UTC (rev 16024)
+++ projects/haf/branches/hildon-thumbnail/daemonize/daemon/utils.h	2008-09-04 17:34:37 UTC (rev 16025)
@@ -1,6 +1,30 @@
 #ifndef __UTILS_H__
 #define __UTILS_H__
 
+/*
+ * This file is part of hildon-thumbnail package
+ *
+ * Copyright (C) 2005 Nokia Corporation.  All Rights reserved.
+ *
+ * Contact: Marius Vollmer <marius.vollmer at nokia.com>
+ * Author: Philip Van Hoof <philip at codeminded.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
 #include <glib.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
 #include <gio/gio.h>

Modified: projects/haf/branches/hildon-thumbnail/daemonize/tests/daemon.c
===================================================================
--- projects/haf/branches/hildon-thumbnail/daemonize/tests/daemon.c	2008-09-04 17:26:39 UTC (rev 16024)
+++ projects/haf/branches/hildon-thumbnail/daemonize/tests/daemon.c	2008-09-04 17:34:37 UTC (rev 16025)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of hildon-thumbnail package
+ *
+ * Copyright (C) 2005 Nokia Corporation.  All Rights reserved.
+ *
+ * Contact: Marius Vollmer <marius.vollmer at nokia.com>
+ * Author: Philip Van Hoof <philip at codeminded.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
 #include <glib.h>
 #include <gio/gio.h>
 #include <dbus/dbus-glib-bindings.h>
@@ -2,3 +26,2 @@
 
-
 #define DAEMON_SERVICE      "org.freedesktop.Thumbnailer"


More information about the maemo-commits mailing list