<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212</link>
    <title>MATLAB Central Newsreader - Report Generator Component</title>
    <description>Feed for thread: Report Generator Component</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Fri, 19 Sep 2008 03:50:03 -0400</pubDate>
      <title>Report Generator Component</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212#600966</link>
      <author>James Ross</author>
      <description>Has anyone figured out how to put existing HTML into the output of a report? The standard text component escapes all the tags so that the content ends up as text with the HTML tags rather than formatted text.&lt;br&gt;
&lt;br&gt;
I've tried to create my own custom component for this, but can't figure out how to make that work.</description>
    </item>
    <item>
      <pubDate>Mon, 22 Sep 2008 16:58:09 -0400</pubDate>
      <title>Report Generator Component</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212#601441</link>
      <author>Arkadiy Turevskiy</author>
      <description>Hi James,&lt;br&gt;
&lt;br&gt;
Please use &quot;Import File&quot; component - under group &quot;Report Generator&quot;. Set the option &quot;Import files as&quot; to &quot;Formatted text (HTML/RTF)&quot;. That should get you what you want.&lt;br&gt;
&lt;br&gt;
Hope this helps.&lt;br&gt;
&lt;br&gt;
Arkadiy Turevskiy&lt;br&gt;
The MathWorks&lt;br&gt;
&lt;br&gt;
&quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gav7hb$r89$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Has anyone figured out how to put existing HTML into the output of a report? The standard text component escapes all the tags so that the content ends up as text with the HTML tags rather than formatted text.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I've tried to create my own custom component for this, but can't figure out how to make that work.</description>
    </item>
    <item>
      <pubDate>Mon, 22 Sep 2008 17:55:06 -0400</pubDate>
      <title>Report Generator Component</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212#601458</link>
      <author>James Ross</author>
      <description>Arkadiy,&lt;br&gt;
&lt;br&gt;
Thanks for your response. Unfortunately, this does not solve my problem. I actually have the html content in a string variable in Matlab (having extracted it from other sources in an m-file evaluated by the report). So, my HTML content does not actually exist in a file. I can't import a temporary file because the Import File component requires that the file be found at report design time. I would actually need to write a variable number of temporary files at report generation time and import these temporary files.&lt;br&gt;
&lt;br&gt;
I really need to be able to dump the Matlab variable contents in and have it interepreted as html since my report will actually have a variable number of HTML components to insert - the report design will loop over a cell array and insert the HTML text from each cell.&lt;br&gt;
&lt;br&gt;
&quot;Arkadiy Turevskiy&quot; &amp;lt;aturevsk@mathworks.com&amp;gt; wrote in message &amp;lt;gb8ir1$rjo$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi James,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Please use &quot;Import File&quot; component - under group &quot;Report Generator&quot;. Set the option &quot;Import files as&quot; to &quot;Formatted text (HTML/RTF)&quot;. That should get you what you want.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hope this helps.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Arkadiy Turevskiy&lt;br&gt;
&amp;gt; The MathWorks&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gav7hb$r89$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Has anyone figured out how to put existing HTML into the output of a report? The standard text component escapes all the tags so that the content ends up as text with the HTML tags rather than formatted text.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I've tried to create my own custom component for this, but can't figure out how to make that work.</description>
    </item>
    <item>
      <pubDate>Thu, 25 Sep 2008 15:22:02 -0400</pubDate>
      <title>Report Generator Component</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212#602096</link>
      <author>Arkadiy Turevskiy</author>
      <description>&lt;br&gt;
Hi James,&lt;br&gt;
Thanks for explaining the problem. I talked to product developer and he suggested the following solution:&lt;br&gt;
write a custom component and programmatically call the Import File component, &amp;#8220;rptgen.crg_import_file&amp;#8221;, to set the temporary file name.&lt;br&gt;
&lt;br&gt;
If you find it hard to do this yourself, please contact technical support and they should be able to assist you.&lt;br&gt;
&lt;br&gt;
Arkadiy&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gb8m5q$gkj$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Arkadiy,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks for your response. Unfortunately, this does not solve my problem. I actually have the html content in a string variable in Matlab (having extracted it from other sources in an m-file evaluated by the report). So, my HTML content does not actually exist in a file. I can't import a temporary file because the Import File component requires that the file be found at report design time. I would actually need to write a variable number of temporary files at report generation time and import these temporary files.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I really need to be able to dump the Matlab variable contents in and have it interepreted as html since my report will actually have a variable number of HTML components to insert - the report design will loop over a cell array and insert the HTML text from each cell.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;Arkadiy Turevskiy&quot; &amp;lt;aturevsk@mathworks.com&amp;gt; wrote in message &amp;lt;gb8ir1$rjo$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Hi James,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Please use &quot;Import File&quot; component - under group &quot;Report Generator&quot;. Set the option &quot;Import files as&quot; to &quot;Formatted text (HTML/RTF)&quot;. That should get you what you want.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Hope this helps.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Arkadiy Turevskiy&lt;br&gt;
&amp;gt; &amp;gt; The MathWorks&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gav7hb$r89$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Has anyone figured out how to put existing HTML into the output of a report? The standard text component escapes all the tags so that the content ends up as text with the HTML tags rather than formatted text.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; I've tried to create my own custom component for this, but can't figure out how to make that work.</description>
    </item>
    <item>
      <pubDate>Fri, 26 Sep 2008 14:18:02 -0400</pubDate>
      <title>Report Generator Component</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/236212#602335</link>
      <author>James Ross</author>
      <description>Thanks. I appreciate your help on this. I was able to get this basically working.&lt;br&gt;
&lt;br&gt;
Jim&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Arkadiy Turevskiy&quot; &amp;lt;aturevsk@mathworks.com&amp;gt; wrote in message &amp;lt;gbgaaq$qss$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi James,&lt;br&gt;
&amp;gt; Thanks for explaining the problem. I talked to product developer and he suggested the following solution:&lt;br&gt;
&amp;gt; write a custom component and programmatically call the Import File component, &amp;#8220;rptgen.crg_import_file&amp;#8221;, to set the temporary file name.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; If you find it hard to do this yourself, please contact technical support and they should be able to assist you.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Arkadiy&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gb8m5q$gkj$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Arkadiy,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thanks for your response. Unfortunately, this does not solve my problem. I actually have the html content in a string variable in Matlab (having extracted it from other sources in an m-file evaluated by the report). So, my HTML content does not actually exist in a file. I can't import a temporary file because the Import File component requires that the file be found at report design time. I would actually need to write a variable number of temporary files at report generation time and import these temporary files.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I really need to be able to dump the Matlab variable contents in and have it interepreted as html since my report will actually have a variable number of HTML components to insert - the report design will loop over a cell array and insert the HTML text from each cell.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &quot;Arkadiy Turevskiy&quot; &amp;lt;aturevsk@mathworks.com&amp;gt; wrote in message &amp;lt;gb8ir1$rjo$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Hi James,&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Please use &quot;Import File&quot; component - under group &quot;Report Generator&quot;. Set the option &quot;Import files as&quot; to &quot;Formatted text (HTML/RTF)&quot;. That should get you what you want.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Hope this helps.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Arkadiy Turevskiy&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; The MathWorks&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &quot;James Ross&quot; &amp;lt;ross.remove.jamesh@johndeere.remove.com&amp;gt; wrote in message &amp;lt;gav7hb$r89$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Has anyone figured out how to put existing HTML into the output of a report? The standard text component escapes all the tags so that the content ends up as text with the HTML tags rather than formatted text.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I've tried to create my own custom component for this, but can't figure out how to make that work.</description>
    </item>
  </channel>
</rss>

