~ubuntu-branches/ubuntu/edgy/awstats/edgy

« back to all changes in this revision

Viewing changes to tools/xslt/README.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2005-02-05 17:13:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050205171348-h8uy32bhbcnhciie
Tags: 6.3-1
* New upstream release. Closes: bug#293702, #293668 (thanks to Nelson
  A. de Oliveira <naoliv@biolinux.df.ibilce.unesp.br>).
  + Includes upstream fix for security bug fixed in 6.2-1.1.
  + Includes upstream fix for most of security bug fixed in 6.2-1.1.
* Acknowledge NMUs. Closes: bug#291064, #294488 (thanks to Martin
  Schulze <joey@infodrom.org>, Martin Pitt <mpitt@debian.org>, Ubuntu,
  Joey Hess <joeyh@debian.org>, Frank Lichtenheld <djpig@debian.org> and Steve
  Langasek <vorlon@debian.org>).
* Include patch for last parts of security bug fixed in 6.2-1.1:
  01_sanitize_more.patch.
* Patch (02) to include snapshot of recent development:
  + Fix security hole that allowed a user to read log file content
    even when plugin rawlog was not enabled.
  + Fix a possible use of AWStats for a DoS attack.
  + configdir option was broken on windows servers.
  + DebugMessages is by default set to 0 for security reasons.
  + Minor fixes.
* References:
  CAN-2005-0435 - read server logs via loadplugin and pluginmode
  CAN-2005-0436 - code injection via PluginMode
  CAN-2005-0437 - directory traversal via loadplugin
  CAN-2005-0438 - information leak via debug

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This directory is absolutely not required to make AWStats working.
 
2
All files here are demo files you can use if you want to manipulate AWStats XML
 
3
database to build report by yourself and without using AWStats output features.
 
4
 
 
5
 
 
6
The following file describe the structure of the AWStats XML database (built
 
7
when BuildHistoryOutput is set to 'xml').
 
8
* awstats61.xsd               File descriptor for AWStats xml database schema.
 
9
 
 
10
 
 
11
The following two files can be used to test a xslt processing to
 
12
transform an AWStats XML database (built when BuildHistoryOutput is set to 'xml').
 
13
into a report.
 
14
* awstats61.datademo1.xml     A xml data demo file to test xslt transform with style sheet.
 
15
* awstats61.datademo1.xslt    A demo xsl style sheet to transform de xml data demo file.
 
16
 
 
17
 
 
18
 
 
19
To build a report using this 2 files and a xslt processor, you must run the command:
 
20
 
 
21
xsltproc  awstats61.datademo1.xslt  awstats61.datademo1.xml  > output.html
 
22