WebSite-Watcher 4.42  -  Homepage  -  Help-Start  -  Topics  -  Previous  -  Next

Overview / Templates

The Report/Export feature lets you create reports in your own text, html or xml format. To export bookmarks to a user defined format, you have to work with templates. A report template is a HTML file (for HTML reports) or a text file (for text exports) which contains several predefined datafields. These datafields will be replaced with real values when the report is created.

Reports are always written in the UTF-8 character set!


What to do in WebSite-Watcher?

  1. Create a new report by clicking the "New..." button
  2. Select a report template
  3. Select the output file into which the report should be created
  4. Select the "Bookmarks" tab where you can choose the bookmarks you want to add to the report



General 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>



General 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>