Revision 9f7dadd9
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
SL/ReportGenerator.pm | ||
---|---|---|
37 | 37 |
'quote_char' => '"', |
38 | 38 |
'sep_char' => ';', |
39 | 39 |
'escape_char' => '"', |
40 |
'eol_style' => 'DOS',
|
|
40 |
'eol_style' => 'Unix',
|
|
41 | 41 |
'headers' => 1, |
42 | 42 |
}, |
43 | 43 |
}; |
templates/webpages/report_generator/csv_export_options_de.html | ||
---|---|---|
59 | 59 |
<td align="right">Zeilenumbrüche</td> |
60 | 60 |
<td> |
61 | 61 |
<select name="report_generator_csv_options_eol_style" style="width: 300px"> |
62 |
<option value="DOS" selected>DOS/Windows (CR/LF)</option>
|
|
63 |
<option value="Unix">Unix (LF)</option> |
|
62 |
<option value="DOS">DOS/Windows (CR/LF)</option> |
|
63 |
<option value="Unix" selected>Unix (LF)</option>
|
|
64 | 64 |
</select> |
65 | 65 |
</td> |
66 | 66 |
</tr> |
templates/webpages/report_generator/csv_export_options_master.html | ||
---|---|---|
59 | 59 |
<td align="right"><translate>Line endings</translate></td> |
60 | 60 |
<td> |
61 | 61 |
<select name="report_generator_csv_options_eol_style" style="width: 300px"> |
62 |
<option value="DOS" selected>DOS/Windows (CR/LF)</option>
|
|
63 |
<option value="Unix">Unix (LF)</option> |
|
62 |
<option value="DOS">DOS/Windows (CR/LF)</option> |
|
63 |
<option value="Unix" selected>Unix (LF)</option>
|
|
64 | 64 |
</select> |
65 | 65 |
</td> |
66 | 66 |
</tr> |
Auch abrufbar als: Unified diff
ReportGenerator: Unix-Zeilenenden als Standard aktiviert. Grund ist, dass Excel nicht damit zurecht kommt, wenn Zelleninhalte mit \r\n umgebrochen werden, wohl aber, wenn die ganze Datei nur mit Unix-Zeilenenden formatiert ist.