]> git.0d.be Git - empathy.git/commitdiff
Generate plugins for most protocols
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 18 Jul 2012 10:48:46 +0000 (12:48 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 24 Jul 2012 14:20:04 +0000 (16:20 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=680448

30 files changed:
ubuntu-online-accounts/cc-plugins/Makefile.am
ubuntu-online-accounts/cc-plugins/generate-plugins.py
ubuntu-online-accounts/cc-plugins/providers/Makefile.am
ubuntu-online-accounts/cc-plugins/providers/aim.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/gadugadu.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/groupwise.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/icq.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/irc.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/local-xmpp.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/mxit.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/myspace.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/sametime.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/sip.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/yahoo.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/yahoojp.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/providers/zephyr.provider [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/Makefile.am
ubuntu-online-accounts/cc-plugins/services/aim-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/gadugadu-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/groupwise-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/icq-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/irc-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/local-xmpp-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/mxit-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/myspace-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/sametime-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/sip-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/yahoo-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/yahoojp-im.service [new file with mode: 0644]
ubuntu-online-accounts/cc-plugins/services/zephyr-im.service [new file with mode: 0644]

index 2b6029807674e96f0a8ab0bd85e79c6d9d54cc11..6effb6c243aaf2e14d9e338cd48723755c86bb7b 100644 (file)
@@ -15,9 +15,77 @@ INCLUDES =                                   \
        $(EMPATHY_CFLAGS)
 
 plugin_LTLIBRARIES = \
-       libjabber.la \
+       libaim.la\
+       libgadugadu.la\
+       libgroupwise.la\
+       libicq.la\
+       libirc.la\
+       libjabber.la\
+       libmxit.la\
+       libmyspace.la\
+       libsip.la\
+       liblocal-xmpp.la\
+       libsametime.la\
+       libyahoojp.la\
+       libyahoo.la\
+       libzephyr.la \
        $(NULL)
 
+libaim_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libaim_la_LDFLAGS = -module -avoid-version
+libaim_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libgadugadu_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libgadugadu_la_LDFLAGS = -module -avoid-version
+libgadugadu_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libgroupwise_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libgroupwise_la_LDFLAGS = -module -avoid-version
+libgroupwise_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libicq_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libicq_la_LDFLAGS = -module -avoid-version
+libicq_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libirc_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libirc_la_LDFLAGS = -module -avoid-version
+libirc_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
 libjabber_la_SOURCES = \
        empathy-accounts-plugin.c \
        empathy-accounts-plugin.h \
@@ -27,3 +95,91 @@ libjabber_la_LDFLAGS = -module -avoid-version
 libjabber_la_LIBADD = \
        $(UOA_LIBS)                                     \
        $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libmxit_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libmxit_la_LDFLAGS = -module -avoid-version
+libmxit_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libmyspace_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libmyspace_la_LDFLAGS = -module -avoid-version
+libmyspace_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libsip_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libsip_la_LDFLAGS = -module -avoid-version
+libsip_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+liblocal_xmpp_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+liblocal_xmpp_la_LDFLAGS = -module -avoid-version
+liblocal_xmpp_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libsametime_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libsametime_la_LDFLAGS = -module -avoid-version
+libsametime_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libyahoojp_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libyahoojp_la_LDFLAGS = -module -avoid-version
+libyahoojp_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libyahoo_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libyahoo_la_LDFLAGS = -module -avoid-version
+libyahoo_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
+
+
+libzephyr_la_SOURCES = \
+       empathy-accounts-plugin.c \
+       empathy-accounts-plugin.h \
+       empathy-accounts-plugin-widget.c \
+       empathy-accounts-plugin-widget.h
+libzephyr_la_LDFLAGS = -module -avoid-version
+libzephyr_la_LIBADD = \
+       $(UOA_LIBS)                                     \
+       $(top_builddir)/libempathy-gtk/libempathy-gtk.la
index 9f03a289bada37a27a037e9babb13398cf8a2c8b..a5a892f77e741ba54cf7b4c14a01a2e8e08197c1 100755 (executable)
@@ -2,7 +2,20 @@
 
 # (name, CM, protocol, icon)
 ALL = [
+        ('AIM', 'haze', 'aim', 'aim'),
+        ('GaduGadu', 'haze', 'gadugadu', 'gadugadu'),
+        ('Groupwise', 'haze', 'groupwise', 'groupwise'),
+        ('ICQ', 'haze', 'icq', 'icq'),
+        ('IRC', 'idle', 'irc', 'irc'),
         ('Jabber', 'gabble', 'jabber', 'jabber'),
+        ('Mxit', 'haze', 'mxit', 'mxit'),
+        ('Myspace', 'haze', 'myspace', 'myspace'),
+        ('SIP', 'sofiasip', 'sip', 'sip'),
+        ('Salut', 'salut', 'local-xmpp', 'people-nearby'),
+        ('Sametime', 'haze', 'sametime', 'sametime'),
+        ('Yahoo Japan', 'haze', 'yahoojp', 'yahoo'),
+        ('Yahoo!', 'haze', 'yahoo', 'yahoo'),
+        ('Zephyr', 'haze', 'zephyr', 'zephyr'),
       ]
 
 class Plugin:
index 3941ed608cce877b5af69e1a58467dad1e0d7dac..6a57b5ff201437bc716d6eb17b311d5d7dfdf0d1 100644 (file)
@@ -3,7 +3,20 @@
 providersdir = $(ACCOUNTS_PROVIDER_FILES_DIR)
 
 providers_DATA = \
-       jabber.provider \
+       aim.provider\
+       gadugadu.provider\
+       groupwise.provider\
+       icq.provider\
+       irc.provider\
+       jabber.provider\
+       mxit.provider\
+       myspace.provider\
+       sip.provider\
+       local-xmpp.provider\
+       sametime.provider\
+       yahoojp.provider\
+       yahoo.provider\
+       zephyr.provider \
        $(NULL)
 
 EXTRA_DIST = $(providers_DATA)
diff --git a/ubuntu-online-accounts/cc-plugins/providers/aim.provider b/ubuntu-online-accounts/cc-plugins/providers/aim.provider
new file mode 100644 (file)
index 0000000..f309431
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="aim">
+  <name>AIM</name>
+  <icon>aim</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/gadugadu.provider b/ubuntu-online-accounts/cc-plugins/providers/gadugadu.provider
new file mode 100644 (file)
index 0000000..8da98e7
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="gadugadu">
+  <name>GaduGadu</name>
+  <icon>gadugadu</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/groupwise.provider b/ubuntu-online-accounts/cc-plugins/providers/groupwise.provider
new file mode 100644 (file)
index 0000000..368988d
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="groupwise">
+  <name>Groupwise</name>
+  <icon>groupwise</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/icq.provider b/ubuntu-online-accounts/cc-plugins/providers/icq.provider
new file mode 100644 (file)
index 0000000..a225aa4
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="icq">
+  <name>ICQ</name>
+  <icon>icq</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/irc.provider b/ubuntu-online-accounts/cc-plugins/providers/irc.provider
new file mode 100644 (file)
index 0000000..ab40288
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="irc">
+  <name>IRC</name>
+  <icon>irc</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/local-xmpp.provider b/ubuntu-online-accounts/cc-plugins/providers/local-xmpp.provider
new file mode 100644 (file)
index 0000000..45f1b3c
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="local-xmpp">
+  <name>Salut</name>
+  <icon>people-nearby</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/mxit.provider b/ubuntu-online-accounts/cc-plugins/providers/mxit.provider
new file mode 100644 (file)
index 0000000..4fd3b8c
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="mxit">
+  <name>Mxit</name>
+  <icon>mxit</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/myspace.provider b/ubuntu-online-accounts/cc-plugins/providers/myspace.provider
new file mode 100644 (file)
index 0000000..d6edad4
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="myspace">
+  <name>Myspace</name>
+  <icon>myspace</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/sametime.provider b/ubuntu-online-accounts/cc-plugins/providers/sametime.provider
new file mode 100644 (file)
index 0000000..b8e3b20
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="sametime">
+  <name>Sametime</name>
+  <icon>sametime</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/sip.provider b/ubuntu-online-accounts/cc-plugins/providers/sip.provider
new file mode 100644 (file)
index 0000000..15a62b5
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="sip">
+  <name>SIP</name>
+  <icon>sip</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/yahoo.provider b/ubuntu-online-accounts/cc-plugins/providers/yahoo.provider
new file mode 100644 (file)
index 0000000..f962e03
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="yahoo">
+  <name>Yahoo!</name>
+  <icon>yahoo</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/yahoojp.provider b/ubuntu-online-accounts/cc-plugins/providers/yahoojp.provider
new file mode 100644 (file)
index 0000000..b83ec8e
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="yahoojp">
+  <name>Yahoo Japan</name>
+  <icon>yahoo</icon>
+</provider>
diff --git a/ubuntu-online-accounts/cc-plugins/providers/zephyr.provider b/ubuntu-online-accounts/cc-plugins/providers/zephyr.provider
new file mode 100644 (file)
index 0000000..6e21f11
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<provider id="zephyr">
+  <name>Zephyr</name>
+  <icon>zephyr</icon>
+</provider>
index 2c0dfa3d53ab4289b25098c528c81e6ec8f5c801..545c260b0f6e687259acc178e6732e9a5669e908 100644 (file)
@@ -3,7 +3,20 @@
 servicesdir = $(ACCOUNTS_SERVICE_FILES_DIR)
 
 services_DATA = \
-       jabber-im.service \
+       aim-im.service\
+       gadugadu-im.service\
+       groupwise-im.service\
+       icq-im.service\
+       irc-im.service\
+       jabber-im.service\
+       mxit-im.service\
+       myspace-im.service\
+       sip-im.service\
+       local-xmpp-im.service\
+       sametime-im.service\
+       yahoojp-im.service\
+       yahoo-im.service\
+       zephyr-im.service \
        $(NULL)
 
 EXTRA_DIST = $(services_DATA)
diff --git a/ubuntu-online-accounts/cc-plugins/services/aim-im.service b/ubuntu-online-accounts/cc-plugins/services/aim-im.service
new file mode 100644 (file)
index 0000000..63a4d7d
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="aim-im">
+  <type>IM</type>
+  <name>AIM</name>
+  <icon>aim</icon>
+  <provider>aim</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">aim</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/gadugadu-im.service b/ubuntu-online-accounts/cc-plugins/services/gadugadu-im.service
new file mode 100644 (file)
index 0000000..76e5903
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="gadugadu-im">
+  <type>IM</type>
+  <name>GaduGadu</name>
+  <icon>gadugadu</icon>
+  <provider>gadugadu</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">gadugadu</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/groupwise-im.service b/ubuntu-online-accounts/cc-plugins/services/groupwise-im.service
new file mode 100644 (file)
index 0000000..ef86688
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="groupwise-im">
+  <type>IM</type>
+  <name>Groupwise</name>
+  <icon>groupwise</icon>
+  <provider>groupwise</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">groupwise</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/icq-im.service b/ubuntu-online-accounts/cc-plugins/services/icq-im.service
new file mode 100644 (file)
index 0000000..e67f25a
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="icq-im">
+  <type>IM</type>
+  <name>ICQ</name>
+  <icon>icq</icon>
+  <provider>icq</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">icq</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/irc-im.service b/ubuntu-online-accounts/cc-plugins/services/irc-im.service
new file mode 100644 (file)
index 0000000..a3e2cfe
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="irc-im">
+  <type>IM</type>
+  <name>IRC</name>
+  <icon>irc</icon>
+  <provider>irc</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">idle</setting>
+      <setting name="protocol">irc</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/local-xmpp-im.service b/ubuntu-online-accounts/cc-plugins/services/local-xmpp-im.service
new file mode 100644 (file)
index 0000000..c8dbb29
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="local-xmpp-im">
+  <type>IM</type>
+  <name>Salut</name>
+  <icon>people-nearby</icon>
+  <provider>local-xmpp</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">salut</setting>
+      <setting name="protocol">local-xmpp</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/mxit-im.service b/ubuntu-online-accounts/cc-plugins/services/mxit-im.service
new file mode 100644 (file)
index 0000000..5c986c1
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="mxit-im">
+  <type>IM</type>
+  <name>Mxit</name>
+  <icon>mxit</icon>
+  <provider>mxit</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">mxit</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/myspace-im.service b/ubuntu-online-accounts/cc-plugins/services/myspace-im.service
new file mode 100644 (file)
index 0000000..38488db
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="myspace-im">
+  <type>IM</type>
+  <name>Myspace</name>
+  <icon>myspace</icon>
+  <provider>myspace</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">myspace</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/sametime-im.service b/ubuntu-online-accounts/cc-plugins/services/sametime-im.service
new file mode 100644 (file)
index 0000000..623a017
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="sametime-im">
+  <type>IM</type>
+  <name>Sametime</name>
+  <icon>sametime</icon>
+  <provider>sametime</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">sametime</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/sip-im.service b/ubuntu-online-accounts/cc-plugins/services/sip-im.service
new file mode 100644 (file)
index 0000000..e46ef7a
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="sip-im">
+  <type>IM</type>
+  <name>SIP</name>
+  <icon>sip</icon>
+  <provider>sip</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">sofiasip</setting>
+      <setting name="protocol">sip</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/yahoo-im.service b/ubuntu-online-accounts/cc-plugins/services/yahoo-im.service
new file mode 100644 (file)
index 0000000..6fffb85
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="yahoo-im">
+  <type>IM</type>
+  <name>Yahoo!</name>
+  <icon>yahoo</icon>
+  <provider>yahoo</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">yahoo</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/yahoojp-im.service b/ubuntu-online-accounts/cc-plugins/services/yahoojp-im.service
new file mode 100644 (file)
index 0000000..d3a4592
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="yahoojp-im">
+  <type>IM</type>
+  <name>Yahoo Japan</name>
+  <icon>yahoo</icon>
+  <provider>yahoojp</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">yahoojp</setting>
+    </group>
+  </template>
+
+</service>
diff --git a/ubuntu-online-accounts/cc-plugins/services/zephyr-im.service b/ubuntu-online-accounts/cc-plugins/services/zephyr-im.service
new file mode 100644 (file)
index 0000000..bcf3592
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- Generated using empathy/ubuntu-online-accounts/cc-plugins/generate-plugins.py
+     Do NOT edit manually -->
+<service id="zephyr-im">
+  <type>IM</type>
+  <name>Zephyr</name>
+  <icon>zephyr</icon>
+  <provider>zephyr</provider>
+
+  <!-- default settings (account settings have precedence over these) -->
+  <template>
+    <group name="telepathy">
+      <setting name="manager">haze</setting>
+      <setting name="protocol">zephyr</setting>
+    </group>
+  </template>
+
+</service>