summaryrefslogtreecommitdiff
path: root/hu_HU
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-02-08 09:12:31 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-02-08 09:20:29 +0100
commit350dc590b04041f15d6c570075ade425e4db93ad (patch)
treeefdbcf79ff1b01050f9f73ab3f5638b7abe2c0ed /hu_HU
parent0aeb113339d2bdeb0cb7fe3a9a2b1ae1c3fd9367 (diff)
fdo#60139: Rename bundled extensions's Lightproof service implementation names
... from org.openoffice.comp.pyuno.Lightproof... to org.libreoffice.comp.pyuno.Lightproof... (and increment the corresponding extensions' version numbers) to avoid clashes with any freestanding Lightproof extension.
Diffstat (limited to 'hu_HU')
-rw-r--r--hu_HU/Lightproof.py6
-rw-r--r--hu_HU/Linguistic.xcu2
-rw-r--r--hu_HU/description.xml2
-rw-r--r--hu_HU/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu2
-rw-r--r--hu_HU/pythonpath/lightproof_handler_hu_HU.py2
5 files changed, 7 insertions, 7 deletions
diff --git a/hu_HU/Lightproof.py b/hu_HU/Lightproof.py
index 8bb0e41..45368ee 100644
--- a/hu_HU/Lightproof.py
+++ b/hu_HU/Lightproof.py
@@ -23,7 +23,7 @@ class Lightproof( unohelper.Base, XProofreader, XServiceInfo, XServiceName, XSer
def __init__( self, ctx, *args ):
self.ctx = ctx
self.ServiceName = "com.sun.star.linguistic2.Proofreader"
- self.ImplementationName = "org.openoffice.comp.pyuno.Lightproof." + pkg
+ self.ImplementationName = "org.libreoffice.comp.pyuno.Lightproof." + pkg
self.SupportedServiceNames = (self.ServiceName, )
self.locales = []
for i in locales:
@@ -147,9 +147,9 @@ class Lightproof( unohelper.Base, XProofreader, XServiceInfo, XServiceName, XSer
g_ImplementationHelper = unohelper.ImplementationHelper()
g_ImplementationHelper.addImplementation( Lightproof, \
- "org.openoffice.comp.pyuno.Lightproof." + pkg,
+ "org.libreoffice.comp.pyuno.Lightproof." + pkg,
("com.sun.star.linguistic2.Proofreader",),)
g_ImplementationHelper.addImplementation( lightproof_handler_hu_HU.LightproofOptionsEventHandler, \
- "org.openoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg,
+ "org.libreoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg,
("com.sun.star.awt.XContainerWindowEventHandler",),)
diff --git a/hu_HU/Linguistic.xcu b/hu_HU/Linguistic.xcu
index cb327ec..f3cf137 100644
--- a/hu_HU/Linguistic.xcu
+++ b/hu_HU/Linguistic.xcu
@@ -5,7 +5,7 @@
<node oor:name="ServiceManager">
<node oor:name="GrammarCheckers">
- <node oor:name="org.openoffice.comp.pyuno.Lightproof.hu_HU"
+ <node oor:name="org.libreoffice.comp.pyuno.Lightproof.hu_HU"
oor:op="fuse">
<prop oor:name="Locales" oor:type="oor:string-list">
<value>hu-HU</value>
diff --git a/hu_HU/description.xml b/hu_HU/description.xml
index eb57339..6d4963d 100644
--- a/hu_HU/description.xml
+++ b/hu_HU/description.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:d="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink">
- <version value="2011.12.05" />
+ <version value="2011.12.05.1" />
<identifier value="org.openoffice.hu.hunspell.dictionaries" />
<display-name>
<name lang="en-US">Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker</name>
diff --git a/hu_HU/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu b/hu_HU/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu
index 56c7467..4379028 100644
--- a/hu_HU/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu
+++ b/hu_HU/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu
@@ -25,7 +25,7 @@
</prop>
<prop oor:name="EventHandlerService">
- <value>org.openoffice.comp.pyuno.LightproofOptionsEventHandler.hu_HU</value>
+ <value>org.libreoffice.comp.pyuno.LightproofOptionsEventHandler.hu_HU</value>
</prop>
</node>
diff --git a/hu_HU/pythonpath/lightproof_handler_hu_HU.py b/hu_HU/pythonpath/lightproof_handler_hu_HU.py
index a313d5f..cc25e40 100644
--- a/hu_HU/pythonpath/lightproof_handler_hu_HU.py
+++ b/hu_HU/pythonpath/lightproof_handler_hu_HU.py
@@ -36,7 +36,7 @@ class LightproofOptionsEventHandler( unohelper.Base, XServiceInfo, XContainerWin
p.Value = "/org.openoffice.Lightproof_%s/Leaves"%pkg
self.xConfig = ctx.ServiceManager.createInstance( 'com.sun.star.configuration.ConfigurationProvider' )
self.node = self.xConfig.createInstanceWithArguments( 'com.sun.star.configuration.ConfigurationUpdateAccess', (p, ) )
- self.service = "org.openoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg
+ self.service = "org.libreoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg
self.ImplementationName = self.service
self.services = (self.service, )