[Galago-commits] r2683 - in trunk/libgalago: . libgalago tests
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Sat Apr 8 14:20:41 PDT 2006
Author: chipx86
Date: 2006-04-08 14:20:16 -0700 (Sat, 08 Apr 2006)
New Revision: 2683
Modified:
trunk/libgalago/ChangeLog
trunk/libgalago/configure.ac
trunk/libgalago/libgalago/galago-account.c
trunk/libgalago/libgalago/galago-account.h
trunk/libgalago/libgalago/galago-assert.h
trunk/libgalago/libgalago/galago-context-base.h
trunk/libgalago/libgalago/galago-context-priv.h
trunk/libgalago/libgalago/galago-context.c
trunk/libgalago/libgalago/galago-context.h
trunk/libgalago/libgalago/galago-core.c
trunk/libgalago/libgalago/galago-core.h
trunk/libgalago/libgalago/galago-dbus.c
trunk/libgalago/libgalago/galago-dbus.h
trunk/libgalago/libgalago/galago-image.c
trunk/libgalago/libgalago/galago-image.h
trunk/libgalago/libgalago/galago-object.c
trunk/libgalago/libgalago/galago-object.h
trunk/libgalago/libgalago/galago-person.c
trunk/libgalago/libgalago/galago-person.h
trunk/libgalago/libgalago/galago-presence.c
trunk/libgalago/libgalago/galago-presence.h
trunk/libgalago/libgalago/galago-private.h
trunk/libgalago/libgalago/galago-service.c
trunk/libgalago/libgalago/galago-service.h
trunk/libgalago/libgalago/galago-status.c
trunk/libgalago/libgalago/galago-status.h
trunk/libgalago/libgalago/galago-value.c
trunk/libgalago/libgalago/galago-value.h
trunk/libgalago/libgalago/galago.h
trunk/libgalago/tests/check-libgalago.c
trunk/libgalago/tests/get-avatar.c
trunk/libgalago/tests/get-person-attr.c
trunk/libgalago/tests/get-presence.c
trunk/libgalago/tests/list-accounts.c
trunk/libgalago/tests/list-my-accounts.c
trunk/libgalago/tests/list-people.c
trunk/libgalago/tests/list-services.c
trunk/libgalago/tests/monitor.c
trunk/libgalago/tests/person-attr-test.c
trunk/libgalago/tests/presence-feed-2.c
trunk/libgalago/tests/presence-feed.c
trunk/libgalago/tests/test-bug-36.c
Log:
Update copyrights.
Modified: trunk/libgalago/ChangeLog
===================================================================
--- trunk/libgalago/ChangeLog 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/ChangeLog 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,3 +1,48 @@
+Sat Apr 08 14:20:03 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * configure.ac:
+ * libgalago/galago-account.c:
+ * libgalago/galago-account.h:
+ * libgalago/galago-assert.h:
+ * libgalago/galago-context-base.h:
+ * libgalago/galago-context.c:
+ * libgalago/galago-context.h:
+ * libgalago/galago-context-priv.h:
+ * libgalago/galago-core.c:
+ * libgalago/galago-core.h:
+ * libgalago/galago-dbus.c:
+ * libgalago/galago-dbus.h:
+ * libgalago/galago.h:
+ * libgalago/galago-image.c:
+ * libgalago/galago-image.h:
+ * libgalago/galago-object.c:
+ * libgalago/galago-object.h:
+ * libgalago/galago-person.c:
+ * libgalago/galago-person.h:
+ * libgalago/galago-presence.c:
+ * libgalago/galago-presence.h:
+ * libgalago/galago-private.h:
+ * libgalago/galago-service.c:
+ * libgalago/galago-service.h:
+ * libgalago/galago-status.c:
+ * libgalago/galago-status.h:
+ * libgalago/galago-value.c:
+ * libgalago/galago-value.h:
+ * tests/check-libgalago.c:
+ * tests/get-avatar.c:
+ * tests/get-person-attr.c:
+ * tests/get-presence.c:
+ * tests/list-accounts.c:
+ * tests/list-my-accounts.c:
+ * tests/list-people.c:
+ * tests/list-services.c:
+ * tests/monitor.c:
+ * tests/person-attr-test.c:
+ * tests/presence-feed-2.c:
+ * tests/presence-feed.c:
+ * tests/test-bug-36.c:
+ - Update copyrights.
+
Thu Apr 06 01:56:38 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
* libgalago/galago-core.c:
Modified: trunk/libgalago/configure.ac
===================================================================
--- trunk/libgalago/configure.ac 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/configure.ac 2006-04-08 21:20:16 UTC (rev 2683)
@@ -7,7 +7,7 @@
AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(config.h.in)
AC_CONFIG_MACRO_DIR([m4])
-AC_COPYRIGHT([Copyright 2004-2005 Christian Hammond])
+AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
dnl ################################################################
Modified: trunk/libgalago/libgalago/galago-account.c
===================================================================
--- trunk/libgalago/libgalago/galago-account.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-account.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-account.c Galago Account API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-account.h
===================================================================
--- trunk/libgalago/libgalago/galago-account.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-account.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-account.h Galago Account API
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* #GalagoAccount models a single account a #GalagoPerson has with a
* provider (a #GalagoService).
Modified: trunk/libgalago/libgalago/galago-assert.h
===================================================================
--- trunk/libgalago/libgalago/galago-assert.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-assert.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-assert.h Assertion API
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond.
+ * @Copyright (C) 2004-2006 Christian Hammond.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-context-base.h
===================================================================
--- trunk/libgalago/libgalago/galago-context-base.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-context-base.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-context-base.h Galago Context Base Support
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-context-priv.h
===================================================================
--- trunk/libgalago/libgalago/galago-context-priv.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-context-priv.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-context-priv.h Galago Context Private API
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-context.c
===================================================================
--- trunk/libgalago/libgalago/galago-context.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-context.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-context.c Galago Context API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-context.h
===================================================================
--- trunk/libgalago/libgalago/galago-context.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-context.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-context.h Galago Context API
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-core.c
===================================================================
--- trunk/libgalago/libgalago/galago-core.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-core.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-core.c Galago Context API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-core.h
===================================================================
--- trunk/libgalago/libgalago/galago-core.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-core.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-core.h Galago Core API
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-dbus.c
===================================================================
--- trunk/libgalago/libgalago/galago-dbus.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-dbus.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-dbus.c D-BUS Support API
*
- * @Copyright (C) 2004-2005 Christian Hammond.
+ * @Copyright (C) 2004-2006 Christian Hammond.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-dbus.h
===================================================================
--- trunk/libgalago/libgalago/galago-dbus.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-dbus.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-dbus.h D-BUS Support API
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond.
+ * @Copyright (C) 2004-2006 Christian Hammond.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-image.c
===================================================================
--- trunk/libgalago/libgalago/galago-image.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-image.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-image.c Galago Image API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-image.h
===================================================================
--- trunk/libgalago/libgalago/galago-image.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-image.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-image.h Galago Image API
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-object.c
===================================================================
--- trunk/libgalago/libgalago/galago-object.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-object.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-object.c Galago Object API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-object.h
===================================================================
--- trunk/libgalago/libgalago/galago-object.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-object.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-object.h Galago Base Object
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-person.c
===================================================================
--- trunk/libgalago/libgalago/galago-person.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-person.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-person.c Galago Person API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-person.h
===================================================================
--- trunk/libgalago/libgalago/galago-person.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-person.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -7,7 +7,7 @@
* #GalagoPerson can have many #GalagoAccount%s associated with it
* (created using galago_service_create_account()).
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-presence.c
===================================================================
--- trunk/libgalago/libgalago/galago-presence.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-presence.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-presence.c Galago Presence API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-presence.h
===================================================================
--- trunk/libgalago/libgalago/galago-presence.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-presence.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -6,7 +6,7 @@
* account's statuses (#GalagoStatus), the current status, the idle time, and
* other information.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-private.h
===================================================================
--- trunk/libgalago/libgalago/galago-private.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-private.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-private.h Private declarations
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-service.c
===================================================================
--- trunk/libgalago/libgalago/galago-service.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-service.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-service.c Galago Service API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-service.h
===================================================================
--- trunk/libgalago/libgalago/galago-service.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-service.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -6,7 +6,7 @@
* connect that keeps track of the user's presence. Examples are instant
* messaging services (such as Jabber) or video chat (such as SIP).
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-status.c
===================================================================
--- trunk/libgalago/libgalago/galago-status.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-status.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-status.c Galago Status API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-status.h
===================================================================
--- trunk/libgalago/libgalago/galago-status.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-status.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-status.h Galago Status API
* @ingroup Presence
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-value.c
===================================================================
--- trunk/libgalago/libgalago/galago-value.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-value.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago-value.c Value wrapper API
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago-value.h
===================================================================
--- trunk/libgalago/libgalago/galago-value.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago-value.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file libgalago/galago-value.h Value wrapper API
* @ingroup Utility
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/libgalago/galago.h
===================================================================
--- trunk/libgalago/libgalago/galago.h 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/libgalago/galago.h 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file libgalago/galago.h Main Galago include file.
*
- * @Copyright (C) 2004-2005 Christian Hammond.
+ * @Copyright (C) 2004-2006 Christian Hammond.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: trunk/libgalago/tests/check-libgalago.c
===================================================================
--- trunk/libgalago/tests/check-libgalago.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/check-libgalago.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file check-libgalago.c Unit tests
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/get-avatar.c
===================================================================
--- trunk/libgalago/tests/get-avatar.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/get-avatar.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file get-avatar.c Queries an account for its avatar.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/get-person-attr.c
===================================================================
--- trunk/libgalago/tests/get-person-attr.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/get-person-attr.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file get-person-attr.c Queries the attributes of a person.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/get-presence.c
===================================================================
--- trunk/libgalago/tests/get-presence.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/get-presence.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file get-presence.c Queries the presence for a user.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/list-accounts.c
===================================================================
--- trunk/libgalago/tests/list-accounts.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/list-accounts.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file list-accounts.c Displays a list of accounts.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/list-my-accounts.c
===================================================================
--- trunk/libgalago/tests/list-my-accounts.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/list-my-accounts.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -2,7 +2,7 @@
* @file list-my-accounts.c Displays a list of all accounts
* from the "Me" user.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/list-people.c
===================================================================
--- trunk/libgalago/tests/list-people.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/list-people.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file list-people.c Displays a list of all people.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/list-services.c
===================================================================
--- trunk/libgalago/tests/list-services.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/list-services.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file list-services.c Displays a list of services.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/monitor.c
===================================================================
--- trunk/libgalago/tests/monitor.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/monitor.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file monitor.c Monitors Galago for changes.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/person-attr-test.c
===================================================================
--- trunk/libgalago/tests/person-attr-test.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/person-attr-test.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file person-attr-test.c A simple test for person attributes
*
- * @Copyright (C) 2005 Christian Hammond <chipx86 at chipx86.com>
+ * @Copyright (C) 2005-2006 Christian Hammond <chipx86 at chipx86.com>
* @Copyright (C) 2004 Trent Lloyd <lathiat at bur.st>
*
* This program is free software; you can redistribute it and/or
Modified: trunk/libgalago/tests/presence-feed-2.c
===================================================================
--- trunk/libgalago/tests/presence-feed-2.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/presence-feed-2.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file presence-feed.c Sample presence feed.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/presence-feed.c
===================================================================
--- trunk/libgalago/tests/presence-feed.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/presence-feed.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file presence-feed.c Sample presence feed.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Modified: trunk/libgalago/tests/test-bug-36.c
===================================================================
--- trunk/libgalago/tests/test-bug-36.c 2006-04-06 09:00:02 UTC (rev 2682)
+++ trunk/libgalago/tests/test-bug-36.c 2006-04-08 21:20:16 UTC (rev 2683)
@@ -1,7 +1,7 @@
/**
* @file presence-feed.c Sample presence feed.
*
- * @Copyright (C) 2004-2005 Christian Hammond
+ * @Copyright (C) 2004-2006 Christian Hammond
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
More information about the galago-commits
mailing list