The Report/Export feature lets you create your own reports in HTML, XML or any other TEXT format.
With report templates you can create your own individual reports. A report template is a HTML file (for HTML reports) or a text file (for text exports) that contains several predefined datafields. These datafields are replaced with real values when the report is created.
Reports are always created in UTF-8 format!
1. | Call "Report/Export" in the Tools menu |
2. | Select the bookmarks that should be included in the report |
3. | Select a report template |
4. | Select the output file into which the report should be created |
5. | Click the button "Start report" |
Structure of a HTML report template (without folders):
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>your title</title>
</head>
<body>
Your header text
{wsw_begin_url}
<a href="{wsw_url_url}" target="_top">{wsw_url_name}</a><br>
{wsw_url_text}<br>
date: {wsw_url_date_changed}<br>
{wsw_end_url}
<br>
<br>
report date: {wsw_report_date}<br>
</body>
</html>
|
Structure of a HTML report template (with folders):
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>your title</title>
</head>
<body>
Your header text
{wsw_begin_folder}
Folder: <b>{wsw_folder_name}</b><br><br>
{wsw_begin_url}
<a href="{wsw_url_url}" target="_top">{wsw_url_name}</a><br>
{wsw_url_text}<br>
date: {wsw_url_date_changed}<br>
{wsw_end_url}
{wsw_end_folder}
<br>
<br>
report date: {wsw_report_date}<br>
</body>
</html>
|
|