Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py')
-rw-r--r--translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py b/translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py
index cf1c864..2c7fac0 100644
--- a/translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py
+++ b/translate-toolkit-1.5.1/translate/search/indexing/XapianIndexer.py
@@ -36,16 +36,21 @@ __revision__ = "$Id: XapianIndexer.py 13124 2009-11-16 10:51:22Z friedelwolff $"
# xapian module versions before 1.0.13 hangs apache under mod_python
import sys
import re
+
# detect if running under apache
if 'apache' in sys.modules or '_apache' in sys.modules:
+ def _str2version(version):
+ return [int(i) for i in version.split('.')]
+
import subprocess
# even checking xapian version leads to deadlock under apache, must figure version from command line
try:
command = subprocess.Popen(['xapian-check', '--version'], stdout=subprocess.PIPE)
stdout, stderr = command.communicate()
- if re.match('.*([0-9]+\.[0-9]+\.[0-9]+).*', stdout).groups()[0] < '1.0.13':
+ if _str2version(re.match('.*([0-9]+\.[0-9]+\.[0-9]+).*', stdout).groups()[0]) < [1, 0, 13]:
raise ImportError("Running under apache, can't load xapain")
except:
+ #FIXME: report is xapian-check command is missing?
raise ImportError("Running under apache, can't load xapian")
import CommonIndexer