Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2010-09-19 01:00:43 +0400
committerYann Leboulanger <asterix@lagaule.org>2010-09-19 01:00:43 +0400
commit0b448cfb104ff7c0bd2868f326afd56c0676bb53 (patch)
tree74e47e83edcb34b1926f0b3bab11c32c4fa4759a /plugins
parent90d1ee31761f87db96955474f61f268c541b4cb2 (diff)
[Dicson] use manifest.ini files in plugins to have a separate file for plugin's information. Fixes #5920
Diffstat (limited to 'plugins')
-rw-r--r--plugins/acronyms_expander/acronyms_expander.py6
-rw-r--r--plugins/acronyms_expander/manifest.ini9
-rw-r--r--plugins/banner_tweaks/manifest.ini10
-rw-r--r--plugins/banner_tweaks/plugin.py9
-rw-r--r--plugins/dbus_plugin/manifest.ini10
-rw-r--r--plugins/dbus_plugin/plugin.py7
-rw-r--r--plugins/events_dump/manifest.ini8
-rw-r--r--plugins/events_dump/plugin.py6
-rw-r--r--plugins/google_translation/manifest.ini8
-rw-r--r--plugins/google_translation/plugin.py6
-rw-r--r--plugins/length_notifier/length_notifier.py6
-rw-r--r--plugins/length_notifier/manifest.ini9
-rw-r--r--plugins/new_events_example/manifest.ini11
-rw-r--r--plugins/new_events_example/plugin.py6
-rw-r--r--plugins/roster_buttons/manifest.ini10
-rw-r--r--plugins/roster_buttons/plugin.py6
-rw-r--r--plugins/snarl_notifications/manifest.ini11
-rw-r--r--plugins/snarl_notifications/plugin.py7
18 files changed, 86 insertions, 59 deletions
diff --git a/plugins/acronyms_expander/acronyms_expander.py b/plugins/acronyms_expander/acronyms_expander.py
index 12ad677b0..919f1a12c 100644
--- a/plugins/acronyms_expander/acronyms_expander.py
+++ b/plugins/acronyms_expander/acronyms_expander.py
@@ -33,12 +33,6 @@ from plugins import GajimPlugin
from plugins.helpers import log, log_calls
class AcronymsExpanderPlugin(GajimPlugin):
- name = u'Acronyms Expander'
- short_name = u'acronyms_expander'
- version = u'0.1'
- description = u'''Replaces acronyms (or other strings) with given expansions/substitutes.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('AcronymsExpanderPlugin')
def init(self):
diff --git a/plugins/acronyms_expander/manifest.ini b/plugins/acronyms_expander/manifest.ini
new file mode 100644
index 000000000..0674c2f88
--- /dev/null
+++ b/plugins/acronyms_expander/manifest.ini
@@ -0,0 +1,9 @@
+[info]
+name: Acronyms Expander
+short_name: acronyms_expander
+version: 0.1
+description: Replaces acronyms (or other strings) with given expansions/substitutes.
+authors: Mateusz Biliński <mateusz@bilinski.it>
+homepage: http://blog.bilinski.it
+
+
diff --git a/plugins/banner_tweaks/manifest.ini b/plugins/banner_tweaks/manifest.ini
new file mode 100644
index 000000000..4cc3652f7
--- /dev/null
+++ b/plugins/banner_tweaks/manifest.ini
@@ -0,0 +1,10 @@
+[info]
+name: Banner Tweaks
+short_name: banner_tweaks
+version: 0.1
+description: Allows user to tweak chat window banner appearance (eg. make it compact).
+ Based on patch by pb in ticket #4133:
+ http://trac.gajim.org/attachment/ticket/4133.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
diff --git a/plugins/banner_tweaks/plugin.py b/plugins/banner_tweaks/plugin.py
index 121606aa4..d959097e1 100644
--- a/plugins/banner_tweaks/plugin.py
+++ b/plugins/banner_tweaks/plugin.py
@@ -43,15 +43,6 @@ from plugins.helpers import log, log_calls
from plugins.gui import GajimPluginConfigDialog
class BannerTweaksPlugin(GajimPlugin):
- name = u'Banner Tweaks'
- short_name = u'banner_tweaks'
- version = u'0.1'
- description = u'''Allows user to tweak chat window banner appearance (eg. make it compact).
-
-Based on patch by pb in ticket #4133:
-http://trac.gajim.org/attachment/ticket/4133'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('BannerTweaksPlugin')
def init(self):
diff --git a/plugins/dbus_plugin/manifest.ini b/plugins/dbus_plugin/manifest.ini
new file mode 100644
index 000000000..6322eae99
--- /dev/null
+++ b/plugins/dbus_plugin/manifest.ini
@@ -0,0 +1,10 @@
+[info]
+name: D-Bus Support
+short_name: dbus
+version: 0.1
+description: D-Bus support. Based on remote_control module from
+ Gajim core but uses new events handling system.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
+
diff --git a/plugins/dbus_plugin/plugin.py b/plugins/dbus_plugin/plugin.py
index c34e0ad0c..8db517c26 100644
--- a/plugins/dbus_plugin/plugin.py
+++ b/plugins/dbus_plugin/plugin.py
@@ -680,13 +680,6 @@ from plugins.helpers import log_calls, log
from common import ged
class DBusPlugin(GajimPlugin):
- name = u'D-Bus Support'
- short_name = u'dbus'
- version = u'0.1'
- description = u'''D-Bus support. Based on remote_control module from
-Gajim core but uses new events handling system.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('DBusPlugin')
def init(self):
diff --git a/plugins/events_dump/manifest.ini b/plugins/events_dump/manifest.ini
new file mode 100644
index 000000000..de46bca7f
--- /dev/null
+++ b/plugins/events_dump/manifest.ini
@@ -0,0 +1,8 @@
+[info]
+name: Events Dump
+short_name: events_dump
+version: 0.1
+description: Dumps info about selected events to console.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
diff --git a/plugins/events_dump/plugin.py b/plugins/events_dump/plugin.py
index 3e816ae3a..0d1026165 100644
--- a/plugins/events_dump/plugin.py
+++ b/plugins/events_dump/plugin.py
@@ -33,12 +33,6 @@ from plugins.helpers import log_calls, log
from common import ged
class EventsDumpPlugin(GajimPlugin):
- name = u'Events Dump'
- short_name = u'events_dump'
- version = u'0.1'
- description = u'''Dumps info about selected events to console.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('EventsDumpPlugin')
def init(self):
diff --git a/plugins/google_translation/manifest.ini b/plugins/google_translation/manifest.ini
new file mode 100644
index 000000000..5abbe3d9f
--- /dev/null
+++ b/plugins/google_translation/manifest.ini
@@ -0,0 +1,8 @@
+[info]
+name: Google Translation
+short_name: google_translation
+version: 0.1
+description: Translates (currently only incoming) messages using Google Translate.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
diff --git a/plugins/google_translation/plugin.py b/plugins/google_translation/plugin.py
index 9b441a077..a0a4f6833 100644
--- a/plugins/google_translation/plugin.py
+++ b/plugins/google_translation/plugin.py
@@ -41,12 +41,6 @@ from common import ged
from common import nec
class GoogleTranslationPlugin(GajimPlugin):
- name = u'Google Translation'
- short_name = u'google_translation'
- version = u'0.1'
- description = u'''Translates (currently only incoming) messages using Google Translate.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('GoogleTranslationPlugin')
def init(self):
diff --git a/plugins/length_notifier/length_notifier.py b/plugins/length_notifier/length_notifier.py
index cde132208..5a05c91c6 100644
--- a/plugins/length_notifier/length_notifier.py
+++ b/plugins/length_notifier/length_notifier.py
@@ -34,12 +34,6 @@ from plugins.helpers import log, log_calls
from plugins.gui import GajimPluginConfigDialog
class LengthNotifierPlugin(GajimPlugin):
- name = u'Message Length Notifier'
- short_name = u'length_notifier'
- version = u'0.1'
- description = u'''Highlights message entry field in chat window when given length of message is exceeded.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('LengthNotifierPlugin')
def init(self):
diff --git a/plugins/length_notifier/manifest.ini b/plugins/length_notifier/manifest.ini
new file mode 100644
index 000000000..d50feaa8d
--- /dev/null
+++ b/plugins/length_notifier/manifest.ini
@@ -0,0 +1,9 @@
+[info]
+name: Message Length Notifier
+short_name: length_notifier
+version: 0.1
+description: Highlights message entry field in chat window when given length of message is exceeded.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
+
diff --git a/plugins/new_events_example/manifest.ini b/plugins/new_events_example/manifest.ini
new file mode 100644
index 000000000..a18423d6a
--- /dev/null
+++ b/plugins/new_events_example/manifest.ini
@@ -0,0 +1,11 @@
+[info]
+name: New Events Example
+short_name: new_events_example
+version: 0.1
+description: Shows how to generate new network events based on existing one using Network Events Controller.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
+
+
+
diff --git a/plugins/new_events_example/plugin.py b/plugins/new_events_example/plugin.py
index ff40dd56f..82712a422 100644
--- a/plugins/new_events_example/plugin.py
+++ b/plugins/new_events_example/plugin.py
@@ -38,12 +38,6 @@ from common import ged
from common import nec
class NewEventsExamplePlugin(GajimPlugin):
- name = u'New Events Example'
- short_name = u'new_events_example'
- version = u'0.1'
- description = u'''Shows how to generate new network events based on existing one using Network Events Controller.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('NewEventsExamplePlugin')
def init(self):
diff --git a/plugins/roster_buttons/manifest.ini b/plugins/roster_buttons/manifest.ini
new file mode 100644
index 000000000..f928c1916
--- /dev/null
+++ b/plugins/roster_buttons/manifest.ini
@@ -0,0 +1,10 @@
+[info]
+name: Roster Buttons
+short_name: roster_buttons
+version: 0.1
+description: Adds quick action buttons to roster window.
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
+
+
diff --git a/plugins/roster_buttons/plugin.py b/plugins/roster_buttons/plugin.py
index a75fd8c6c..398804407 100644
--- a/plugins/roster_buttons/plugin.py
+++ b/plugins/roster_buttons/plugin.py
@@ -34,12 +34,6 @@ from plugins import GajimPlugin
from plugins.helpers import log, log_calls
class RosterButtonsPlugin(GajimPlugin):
- name = u'Roster Buttons'
- short_name = u'roster_buttons'
- version = u'0.1'
- description = u'''Adds quick action buttons to roster window.'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('RosterButtonsPlugin')
def init(self):
diff --git a/plugins/snarl_notifications/manifest.ini b/plugins/snarl_notifications/manifest.ini
new file mode 100644
index 000000000..45597bfc0
--- /dev/null
+++ b/plugins/snarl_notifications/manifest.ini
@@ -0,0 +1,11 @@
+[info]
+name: Snarl Notifications
+short_name: snarl_notifications
+version: 0.1
+description: Shows events notification using Snarl (http://www.fullphat.net/) under Windows. Snarl needs to be installed in system.
+ PySnarl bindings are used (http://code.google.com/p/pysnarl/).
+authors = Mateusz Biliński <mateusz@bilinski.it>
+homepage = http://blog.bilinski.it
+
+
+
diff --git a/plugins/snarl_notifications/plugin.py b/plugins/snarl_notifications/plugin.py
index 3e21acb77..c01194427 100644
--- a/plugins/snarl_notifications/plugin.py
+++ b/plugins/snarl_notifications/plugin.py
@@ -38,13 +38,6 @@ from plugins.helpers import log_calls, log
from common import ged
class SnarlNotificationsPlugin(GajimPlugin):
- name = u'Snarl Notifications'
- short_name = u'snarl_notifications'
- version = u'0.1'
- description = u'''Shows events notification using Snarl (http://www.fullphat.net/) under Windows. Snarl needs to be installed in system.
-PySnarl bindings are used (http://code.google.com/p/pysnarl/).'''
- authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
- homepage = u'http://blog.bilinski.it'
@log_calls('SnarlNotificationsPlugin')
def init(self):