[IMP] document :- add comment line. pptx2txt and docx2txt files not support in windows.
authorYsa (Open ERP) <ysa@tinyerp.co.in>
Wed, 28 Apr 2010 09:46:05 +0000 (15:16 +0530)
committerYsa (Open ERP) <ysa@tinyerp.co.in>
Wed, 28 Apr 2010 09:46:05 +0000 (15:16 +0530)
bzr revid: ysa@tinyerp.co.in-20100428094605-y6xsi966zr7lffem

addons/document/__openerp__.py
addons/document/std_index.py

index 7626bd3..5d4fd21 100644 (file)
@@ -26,7 +26,7 @@
     'category': 'Generic Modules/Others',
     'description': """This is a complete document management system:
     * User Authentication
-    * Document Indexation
+    * Document Indexation :- .pptx and .docx files are not support in windows platform.
 
     ATTENTION:
     - When you install this module in a running company that have already PDF files stored into the database,
index 4979c05..2f2f209 100644 (file)
@@ -57,6 +57,7 @@ class PptxIndex(indexer):
         return ['.pptx']
 
     def _doIndexFile(self,fname):
+        # pptx2txt.pl package not support in windows platform.
         # Download pptx2txt package from  http://sourceforge.net/projects/pptx2txt/" link.
         # To install this tool, just copy pptx2txt.pl to appropriate place (e.g. /usr/bin directory)
         fp = Popen(['pptx2txt.pl', fname], shell=False, stdout=PIPE).stdout
@@ -88,6 +89,7 @@ class DocxIndex(indexer):
         return ['.docx']
 
     def _doIndexFile(self,fname):
+        # docx2txt.pl package not support in windows platform.
         # Download docx2txt package from  "http://sourceforge.net/projects/docx2txt/" link.   
         # In case, you don't want to use Makefile for installation, you can follow these steps for manual installation.
         # Copy docx2txt.pl, docx2txt.sh and docx2txt.config to appropriate place (e.g. /usr/bin directory) . used following command.