diff -r 95cd3376cc9f -r 68524f7c58b5 objdictgen/doc_index/DS301_index.py --- a/objdictgen/doc_index/DS301_index.py Thu Jan 25 17:36:58 2007 +0100 +++ b/objdictgen/doc_index/DS301_index.py Fri Jan 26 08:54:02 2007 +0100 @@ -6,13 +6,14 @@ DS301_PDF_INDEX = {0x1000: 86, 0x1001: 87, 0x1002: 87, 0x1003: 88, 0x1005: 89, 0x1006: 90, 0x1007: 90, 0x1008: 91, 0x1009: 91, 0x100A: 91, 0x100C: 92, 0x100D: 92, 0x1010: 92, 0x1011: 94, 0x1012: 97, 0x1013: 98, 0x1014: 98, 0x1015: 99, 0x1016: 100, 0x1017: 101, 0x1018: 101, 0x1020: 117, 0x1200: 103, 0x1201: 103, 0x1280: 105, 0x1400: 106, 0x1600: 109, 0x1800: 111, 0x1A00: 112} def OpenPDFDocIndex(index): - if index not in DS301_PDF_INDEX: - return """No documentation for this index.""" if not os.path.isfile("../doc/301_v04000201.pdf"): return """No documentation file available. Please read can festival documentation to know how to obtain one.""" try: - os.system("xpdf -remote DS301 ../doc/301_v04000201.pdf "+str(DS301_PDF_INDEX[index])+" &") + if index in DS301_PDF_INDEX: + os.system("xpdf -remote DS301 ../doc/301_v04000201.pdf "+str(DS301_PDF_INDEX[index])+" &") + else: + os.system("xpdf -remote DS301 ../doc/301_v04000201.pdf &") return True except: return """Check if xpdf is correctly installed on your computer"""