Configuration Changes

ReportServer 3.0.3

RS-2527ImprovementMake Excel export configurable (XLS vs XLSX)

The support of .xls and .xlsx Excel-export formats are both now supported in Jasper analogously to BIRT and dynamic lists. The configuration file for this purpose can be found in /etc/exportfilemd/excelexport.cf.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <xls>
      <format>xlsx</format>
      <stream>true</stream>
   </xls>
</configuration>
RS-2518New FeatureNew CSV export configuration file: /etc/exportfilemd/csvexport.cf. The CSV export dialogs were also adapted to further customize this new configuration per export.

The file /etc/exportfilemd/csvexport.cf was introduced for customizing the CSV export, e.g. the separator. This configuration can be modified in a per-export matter, e.g. following sample configuration.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <csv>
      <printHeader>true</printHeader>
      <separator>;</separator>
	  <quote>"</quote>
	  <lineSeparator>\r\n</lineSeparator>
   </csv>
</configuration>