summaryrefslogtreecommitdiffstats
path: root/ibus
diff options
context:
space:
mode:
Diffstat (limited to 'ibus')
-rw-r--r--ibus/Makefile.am2
-rw-r--r--ibus/__init__.py2
-rw-r--r--ibus/_config.py.in4
-rw-r--r--ibus/_gtk.py2
-rw-r--r--ibus/application.py2
-rw-r--r--ibus/attribute.py2
-rw-r--r--ibus/bus.py2
-rw-r--r--ibus/common.py2
-rw-r--r--ibus/component.py2
-rw-r--r--ibus/config.py2
-rw-r--r--ibus/engine.py2
-rw-r--r--ibus/enginedesc.py2
-rw-r--r--ibus/exception.py2
-rw-r--r--ibus/factory.py2
-rw-r--r--ibus/inputcontext.py2
-rw-r--r--ibus/interface/Makefile.am2
-rw-r--r--ibus/interface/__init__.py2
-rw-r--r--ibus/interface/iconfig.py2
-rw-r--r--ibus/interface/iengine.py2
-rw-r--r--ibus/interface/ienginefactory.py2
-rw-r--r--ibus/interface/iibus.py2
-rw-r--r--ibus/interface/iinputcontext.py2
-rw-r--r--ibus/interface/inotifications.py2
-rw-r--r--ibus/interface/ipanel.py2
-rw-r--r--ibus/lang.py2
-rw-r--r--ibus/lookuptable.py2
-rw-r--r--ibus/modifier.py2
-rw-r--r--ibus/notifications.py2
-rw-r--r--ibus/object.py2
-rw-r--r--ibus/observedpath.py2
-rw-r--r--ibus/panel.py2
-rw-r--r--ibus/property.py2
-rw-r--r--ibus/serializable.py2
-rw-r--r--ibus/text.py2
-rw-r--r--ibus/utility.py2
35 files changed, 36 insertions, 36 deletions
diff --git a/ibus/Makefile.am b/ibus/Makefile.am
index fba01c6..2db69e6 100644
--- a/ibus/Makefile.am
+++ b/ibus/Makefile.am
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/__init__.py b/ibus/__init__.py
index 08432a3..521df47 100644
--- a/ibus/__init__.py
+++ b/ibus/__init__.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/_config.py.in b/ibus/_config.py.in
index ccd2ff5..bdc65eb 100644
--- a/ibus/_config.py.in
+++ b/ibus/_config.py.in
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -29,7 +29,7 @@ def get_version():
return "@PACKAGE_VERSION@"
def get_copyright():
- return "Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>"
+ return "Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>"
def get_license():
return "LGPL"
diff --git a/ibus/_gtk.py b/ibus/_gtk.py
index b9874a6..995e6df 100644
--- a/ibus/_gtk.py
+++ b/ibus/_gtk.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/application.py b/ibus/application.py
index b9d9b3a..b5d690d 100644
--- a/ibus/application.py
+++ b/ibus/application.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/attribute.py b/ibus/attribute.py
index ef4b6a4..953ff4d 100644
--- a/ibus/attribute.py
+++ b/ibus/attribute.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/bus.py b/ibus/bus.py
index 3925385..0846739 100644
--- a/ibus/bus.py
+++ b/ibus/bus.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/common.py b/ibus/common.py
index e9868ee..8ad219d 100644
--- a/ibus/common.py
+++ b/ibus/common.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/component.py b/ibus/component.py
index afdc152..62b8abf 100644
--- a/ibus/component.py
+++ b/ibus/component.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/config.py b/ibus/config.py
index 70bc89a..87f1bab 100644
--- a/ibus/config.py
+++ b/ibus/config.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/engine.py b/ibus/engine.py
index f8c0447..4740e4e 100644
--- a/ibus/engine.py
+++ b/ibus/engine.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/enginedesc.py b/ibus/enginedesc.py
index 430072c..15ec8df 100644
--- a/ibus/enginedesc.py
+++ b/ibus/enginedesc.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/exception.py b/ibus/exception.py
index 9e82317..1680923 100644
--- a/ibus/exception.py
+++ b/ibus/exception.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/factory.py b/ibus/factory.py
index 82751ba..b4f9d7c 100644
--- a/ibus/factory.py
+++ b/ibus/factory.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/inputcontext.py b/ibus/inputcontext.py
index 10233da..50af34d 100644
--- a/ibus/inputcontext.py
+++ b/ibus/inputcontext.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/Makefile.am b/ibus/interface/Makefile.am
index ffc019c..de43af0 100644
--- a/ibus/interface/Makefile.am
+++ b/ibus/interface/Makefile.am
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/__init__.py b/ibus/interface/__init__.py
index 90af265..42d6c81 100644
--- a/ibus/interface/__init__.py
+++ b/ibus/interface/__init__.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/iconfig.py b/ibus/interface/iconfig.py
index 23954fa..f010282 100644
--- a/ibus/interface/iconfig.py
+++ b/ibus/interface/iconfig.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/iengine.py b/ibus/interface/iengine.py
index 63d6c0e..3206d8f 100644
--- a/ibus/interface/iengine.py
+++ b/ibus/interface/iengine.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright(c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright(c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/ienginefactory.py b/ibus/interface/ienginefactory.py
index 5e93fd8..e1cff30 100644
--- a/ibus/interface/ienginefactory.py
+++ b/ibus/interface/ienginefactory.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/iibus.py b/ibus/interface/iibus.py
index fa71a71..4986d49 100644
--- a/ibus/interface/iibus.py
+++ b/ibus/interface/iibus.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/iinputcontext.py b/ibus/interface/iinputcontext.py
index e5cf129..850b249 100644
--- a/ibus/interface/iinputcontext.py
+++ b/ibus/interface/iinputcontext.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/inotifications.py b/ibus/interface/inotifications.py
index 74d4dcf..28de730 100644
--- a/ibus/interface/inotifications.py
+++ b/ibus/interface/inotifications.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright(c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright(c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/interface/ipanel.py b/ibus/interface/ipanel.py
index e5d174c..791eb09 100644
--- a/ibus/interface/ipanel.py
+++ b/ibus/interface/ipanel.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright(c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright(c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/lang.py b/ibus/lang.py
index 52c4800..d3f03f7 100644
--- a/ibus/lang.py
+++ b/ibus/lang.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/lookuptable.py b/ibus/lookuptable.py
index 8eb4480..358981c 100644
--- a/ibus/lookuptable.py
+++ b/ibus/lookuptable.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/modifier.py b/ibus/modifier.py
index 7f6afad..a0d8c09 100644
--- a/ibus/modifier.py
+++ b/ibus/modifier.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/notifications.py b/ibus/notifications.py
index 0509548..a7172e2 100644
--- a/ibus/notifications.py
+++ b/ibus/notifications.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/object.py b/ibus/object.py
index b00e47a..049ea94 100644
--- a/ibus/object.py
+++ b/ibus/object.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/observedpath.py b/ibus/observedpath.py
index 94b3e7e..0896719 100644
--- a/ibus/observedpath.py
+++ b/ibus/observedpath.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/panel.py b/ibus/panel.py
index 9a34109..31e6950 100644
--- a/ibus/panel.py
+++ b/ibus/panel.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/property.py b/ibus/property.py
index 72f72a2..407b079 100644
--- a/ibus/property.py
+++ b/ibus/property.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/serializable.py b/ibus/serializable.py
index 734940a..05904ce 100644
--- a/ibus/serializable.py
+++ b/ibus/serializable.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/text.py b/ibus/text.py
index 9b47dbf..82c2094 100644
--- a/ibus/text.py
+++ b/ibus/text.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/ibus/utility.py b/ibus/utility.py
index 7226740..3d6852e 100644
--- a/ibus/utility.py
+++ b/ibus/utility.py
@@ -2,7 +2,7 @@
#
# ibus - The Input Bus
#
-# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
+# Copyright (c) 2007-2009 Huang Peng <shawn.p.huang@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public