Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Xmlgraphics-fop Wiki" 
for change notification.

The following page has been changed by AndreasDelmelle:
http://wiki.apache.org/xmlgraphics-fop/ExtensionsForPdf

------------------------------------------------------------------------------
    <pdf:entry key="PageMode" type="name">FullScreen</pdf:entry>
    <pdf:entry key="PageLayout" type="name">SinglePage</pdf:entry>
    <pdf:dictionary type="normal" key="ViewerPreferences">
-     <pdf:entry key="HideToolbar" type="boolean">True</pdf:entry>
+     <pdf:entry key="HideToolbar" type="boolean">true</pdf:entry>
-     <pdf:entry key="HideWindowUI" type="boolean">True</pdf:entry>
+     <pdf:entry key="HideWindowUI" type="boolean">true</pdf:entry>
      <pdf:entry key="NonFullScreenPageMode" type="name">UseThumbs</pdf:entry>
    </pdf:dictionary>
  </pdf:dictionary>
@@ -65, +65 @@

  
  For a prototype implementation, check out 
http://issues.apache.org/bugzilla/show_bug.cgi?id=45390
  
- Maybe the abstract pdf:entry object would better be replaced by strictly 
typed objects, i.e. pdf:name, pdf:boolean, pdf:number, pdf:array...?
+ Maybe the abstract pdf:entry object would better be replaced by strictly 
typed objects, to make the representation a bit more compact...?
  
+ {{{
+ <pdf:dictionary type="catalog" 
xmlns:pdf="http://xmlgraphics.apache/org/fop/extensions/pdf";>
+   <pdf:name key="PageMode">FullScreen</pdf:name>
+   <pdf:name key="PageLayout">SinglePage</pdf:name>
+   <pdf:dictionary type="normal" key="ViewerPreferences">
+     <pdf:boolean key="HideToolbar">true</pdf:boolean>
+     <pdf:boolean key="HideWindowUI">true</pdf:boolean>
+     <pdf:name key="NonFullScreenPageMode">UseThumbs</pdf:entry>
+   </pdf:dictionary>
+ </pdf:dictionary>
+ }}}
+ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to