Changeset 489:55e3398e395e in documentViewer for zpt
- Timestamp:
- Aug 25, 2011, 3:05:22 PM (13 years ago)
- Branch:
- elementtree
- Location:
- zpt
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
zpt/head_main.zpt
r480 r489 13 13 bib docinfo/bib | nothing; bibType docinfo/bibType | nothing; 14 14 formattedLabel python:here.metadataService.getBibFormattedLabel(bibdata=bib);"> 15 < spantal:condition="not:formattedLabel"15 <div tal:condition="not:formattedLabel" 16 16 tal:content="string:(no bibliographical information for ${bibType})" /> 17 < spantal:condition="formattedLabel" tal:content="structure formattedLabel" />17 <div tal:condition="formattedLabel" tal:content="structure formattedLabel" /> 18 18 </metal:block> 19 19 </body> -
zpt/toc_figures.zpt
r488 r489 7 7 <body> 8 8 <!-- block used for main content area --> 9 <div class=" col-left" metal:define-macro="main"9 <div class="toc-figures" metal:define-macro="main" 10 10 tal:define="start pageinfo/start; tocsize docinfo/tocSize_figures; grpsize pageinfo/tocPageSize; 11 11 batch python:here.getBatch(start=start,size=grpsize,end=tocsize);"> -
zpt/toc_text.zpt
r488 r489 7 7 <body> 8 8 <!-- block used for main content area --> 9 <div class=" col-left" metal:define-macro="main"9 <div class="toc-text" metal:define-macro="main" 10 10 tal:define="start pageinfo/start; tocsize docinfo/tocSize_text; grpsize pageinfo/tocPageSize; 11 11 batch python:here.getBatch(start=start,size=grpsize,end=tocsize);"> -
zpt/toc_thumbs.zpt
r488 r489 7 7 <body> 8 8 <!-- block used for main content area --> 9 <div class=" col-left" metal:define-macro="main"9 <div class="toc-thumbs" metal:define-macro="main" 10 10 tal:define="start pageinfo/start; 11 11 grpsize pageinfo/groupsize; -
zpt/viewer_images.zpt
r485 r489 54 54 <div class="page-body" tal:condition="python:here.isAccessible(docinfo)"> 55 55 <!--table of contents--> 56 <div class="col-left" metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> 56 <div class="col-left"> 57 <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> 58 </div> 57 59 <!-- text page --> 58 60 <div class="col-main"> -
zpt/viewer_text.zpt
r485 r489 22 22 <div class="page-body" tal:condition="python:here.isAccessible(docinfo)"> 23 23 <!--table of contents--> 24 <div class="col-left" 25 metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> 24 <div class="col-left"> 25 <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> 26 </div> 26 27 27 28 <!-- text page -->
Note: See TracChangeset
for help on using the changeset viewer.