org.guifications.plugins.buddytools: c8682a291bffc1cc284247e82a2f14994180dee1
rlaager at guifications.org
rlaager at guifications.org
Mon Oct 22 00:20:28 CDT 2007
-----------------------------------------------------------------
Revision: c8682a291bffc1cc284247e82a2f14994180dee1
Ancestor: 1c9d4b6e6a8f30d949e8128ee29807d2b201fa02
Author: rlaager at guifications.org
Date: 2006-05-16T03:37:49
Branch: org.guifications.plugins.buddytools
Tag: v0.4pre1
Modified files:
README buddyedit.c buddylang.c buddynotes.c buddytimezone.c
ChangeLog:
[buddytools @ 10]
Importing version 0.4pre1 from the website. The copyright changes were missing
in the first copy of 0.4pre1 that I received.
-----------------------------------------------------------------
This revision's diffstat output:
README | 3 ++-
buddyedit.c | 20 ++++++++++++++++++--
buddylang.c | 19 +++++++++++++++++--
buddynotes.c | 19 +++++++++++++++++--
buddytimezone.c | 20 ++++++++++++++++++--
5 files changed, 72 insertions(+), 9 deletions(-)
-------------- next part --------------
============================================================
--- README f2b19c8eb481b9e4dced9cc28830e9fead319f42
+++ README 5f7a0ea8b41fc9bf1ce90821b144f1d529b49673
@@ -1,10 +1,11 @@
This package contains Gaim modules created by
Martijn van Oosterhout <kleptog at svana.org>
http://svana.org/kleptog/
All the files in this package are licenced under the GNU General Public
-Licence version 2 (see COPYING file), with the exception of the files:
+Licence version 2 (see COPYING file), or (at your option) any later
+version, with the exception of the files:
localtime.c
tzfile.h
============================================================
--- buddyedit.c fa052431556981044cb6ae64745eb0c3193652a0
+++ buddyedit.c ca02ca9dd1946c38cf294922453e68f79d79a2cb
@@ -1,11 +1,27 @@
/*************************************************************************
* Buddy Edit Module
- * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
- * Licenced under the GNU General Public Licence version 2.
*
* A Gaim plugin that adds an edit to to buddies allowing you to change
* various details you can't normally change. It also provides a mechanism
* for subsequent plugins to add themselves to that dialog.
+ *
+ * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
+ * Some code copyright (C) 2006, Richard Laager <rlaager at users.sf.net>
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
*************************************************************************/
#define GAIM_PLUGINS
============================================================
--- buddylang.c 52c01bd74c194d9d08a70d53cc580608a3bbbb15
+++ buddylang.c f09558473cfe6639bc2d00a1a9e2145f79c0421b
@@ -1,10 +1,25 @@
/*************************************************************************
* Buddy Language Module
- * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
- * Licenced under the GNU General Public Licence version 2.
*
* A Gaim plugin that allows you to configure the language of the spelling
* control on the conversation screen on a per-contact basis.
+ *
+ * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
*************************************************************************/
#define GAIM_PLUGINS
============================================================
--- buddynotes.c 209b7b50a3d09a7646bd4f5c73296e9da8714a38
+++ buddynotes.c 01988879604c33906a5af934c47f3613c366bf96
@@ -1,10 +1,25 @@
/*************************************************************************
* Buddy Notes Module
- * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
- * Licenced under the GNU General Public Licence version 2.
*
* A Gaim plugin the allows you to add notes to contacts which will be
* displayed in the conversation screen as well as the hover tooltip.
+ *
+ * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
*************************************************************************/
#define GAIM_PLUGINS
============================================================
--- buddytimezone.c 7e7ab785f7047720dfdc93c9c359146ba582182f
+++ buddytimezone.c c7997b8b417d2b63aa1be225c61c441f8e07468e
@@ -1,12 +1,28 @@
/*************************************************************************
* Buddy Timezone Module
- * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
- * Licenced under the GNU General Public Licence version 2.
*
* A Gaim plugin that allows you to configure a timezone on a per-contact
* basis so it can display the localtime of your contact when a conversation
* starts. Convenient if you deal with contacts from many parts of the
* world.
+ *
+ * by Martijn van Oosterhout <kleptog at svana.org> (C) April 2006
+ * Some code copyright (C) 2006, Richard Laager <rlaager at users.sf.net>
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
*************************************************************************/
#define GAIM_PLUGINS
More information about the Plugins-commits
mailing list