Changeset 564:31f562fa7214 in documentViewer
- Timestamp:
- Oct 8, 2012, 6:36:00 PM (12 years ago)
- Branch:
- default
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
__init__.py
r522 r564 1 1 import documentViewer 2 2 import MpdlXmlTextServer 3 import MpiwgXmlTextServer 3 4 4 5 def initialize(context): … … 19 20 ) 20 21 ) 22 23 context.registerClass( 24 MpiwgXmlTextServer.MpiwgXmlTextServer, 25 constructors = ( 26 MpiwgXmlTextServer.manage_addMpiwgXmlTextServerForm, 27 MpiwgXmlTextServer.manage_addMpiwgXmlTextServer 28 ) 29 ) 21 30 -
documentViewer.py
r562 r564 587 587 # document info (including toc) from full text 588 588 if docinfo.get('textURLPath', None): 589 docinfo = self.getTextInfo(mode= tocMode, docinfo=docinfo)589 docinfo = self.getTextInfo(mode='pages', docinfo=docinfo) 590 590 591 591 # bib info … … 724 724 docinfo['textURLPath'] = textUrl 725 725 docinfo['textURLRepository'] = textRepo 726 break 726 727 727 728 else:
Note: See TracChangeset
for help on using the changeset viewer.