<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can I increase the font size used in the document preview feature? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314818#M1819</link>
    <description>&lt;P&gt;For what kinds of documents?&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2012 10:53:13 GMT</pubDate>
    <dc:creator>Florent_Guillau</dc:creator>
    <dc:date>2012-03-08T10:53:13Z</dc:date>
    <item>
      <title>How can I increase the font size used in the document preview feature?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314817#M1818</link>
      <description>&lt;P&gt;When previewing LibreOffice Writer documents (.odt), the font used is very small, and in combination with the shaded background, it is very difficult to read and takes only about half of the space provided in the panel (see below). Oddly, the header in the document is wider than the text below it, while in the original document the margins are the same. &lt;IMG src="https://connect.hyland.com/upfiles/Screenshot_1.png" alt="alt text" /&gt;&lt;/P&gt;
&lt;P&gt;I'm running Nuxeo Platform 5.5.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2012 05:11:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314817#M1818</guid>
      <dc:creator>zerubbabel_</dc:creator>
      <dc:date>2012-03-08T05:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I increase the font size used in the document preview feature?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314818#M1819</link>
      <description>&lt;P&gt;For what kinds of documents?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2012 10:53:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314818#M1819</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2012-03-08T10:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I increase the font size used in the document preview feature?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314819#M1820</link>
      <description>&lt;P&gt;I updated my entry to give more details.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2012 18:33:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314819#M1820</guid>
      <dc:creator>zerubbabel_</dc:creator>
      <dc:date>2012-03-08T18:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I increase the font size used in the document preview feature?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314820#M1821</link>
      <description>&lt;P&gt;Your question is a bit technical and I give you an answer technical. I hope that you have this profile.&lt;/P&gt;
&lt;P&gt;The HTML preview is generated by LibreOffice/OpenOffice Server side.&lt;/P&gt;
&lt;P&gt;The class that calls the LibreOffice/OpenOffice server is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt; org.nuxeo.ecm.platform.convert.plugins.JODBasedConverter
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I don't know if the DocumentFormat offer the possibility to change the rendering generated by LibreOffice. I let you check &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you found something (tell us :D) and you can create your own converter, that can extends our converter for instance. And you will have to declare your converter in Nuxeo with same name as the one implemented by us to override it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;converter name="office2html"
      class="com.yourcompany.convert.plugins.JODBasedConverter"&amp;gt;
      &amp;lt;destinationMimeType&amp;gt;text/html&amp;lt;/destinationMimeType&amp;gt;

      &amp;lt;sourceMimeType&amp;gt;text/plain&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;text/rtf&amp;lt;/sourceMimeType&amp;gt;

      &amp;lt;!-- Microsoft office documents --&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/msword&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.ms-powerpoint&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.ms-excel&amp;lt;/sourceMimeType&amp;gt;

      &amp;lt;!-- Microsoft office 2007 documents --&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.openxmlformats-officedocument.wordprocessingml.document
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.openxmlformats-officedocument.presentationml.presentation
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
      &amp;lt;/sourceMimeType&amp;gt;

      &amp;lt;!-- OpenOffice.org 1.x documents --&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.writer&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.writer.template&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.impress&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.impress.template&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.calc&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.calc.template&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.draw&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.sun.xml.draw.template&amp;lt;/sourceMimeType&amp;gt;

      &amp;lt;!-- OpenOffice.org 2.x documents --&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.spreadsheet
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.spreadsheet-template
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;application/vnd.oasis.opendocument.text&amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.text-template
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.presentation
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.presentation-template
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.graphics
      &amp;lt;/sourceMimeType&amp;gt;
      &amp;lt;sourceMimeType&amp;gt;
        application/vnd.oasis.opendocument.graphics-template
      &amp;lt;/sourceMimeType&amp;gt;

    &amp;lt;parameters&amp;gt;
        &amp;lt;parameter name="ooo_host_name"&amp;gt;
          ${org.nuxeo.ecm.platform.transform.ooo.host.name}
        &amp;lt;/parameter&amp;gt;
        &amp;lt;parameter name="ooo_host_port"&amp;gt;
          ${org.nuxeo.ecm.platform.transform.ooo.host.port}
        &amp;lt;/parameter&amp;gt;
    &amp;lt;/parameters&amp;gt;
   &amp;lt;/converter&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm not sure that Open Office offers a way to modify the rendering. It would be great.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2012 14:54:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314820#M1821</guid>
      <dc:creator>Benjamin_Jalon1</dc:creator>
      <dc:date>2012-03-14T14:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can I increase the font size used in the document preview feature?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314821#M1822</link>
      <description>&lt;P&gt;Did anyone ever figure this out? Preview is nearly useless with 6-point font.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2012 17:23:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-can-i-increase-the-font-size-used-in-the-document-preview/m-p/314821#M1822</guid>
      <dc:creator>cogitech</dc:creator>
      <dc:date>2012-11-28T17:23:58Z</dc:date>
    </item>
  </channel>
</rss>

