<?php
/**
 * Release focus. Possible values:
 * 0 - N/A
 * 1 - Initial freshmeat announcement
 * 2 - Documentation
 * 3 - Code cleanup
 * 4 - Minor feature enhancements
 * 5 - Major feature enhancements
 * 6 - Minor bugfixes
 * 7 - Major bugfixes
 * 8 - Minor security fixes
 * 9 - Major security fixes
 */
$this->notes['fm']['focus'] = 8;

/* Mailing list release notes. */
$this->notes['ml']['changes'] = <<<ML
The Horde Team is pleased to announce the final release of the Horde
Application Framework version 3.1.2.

This is a bugfix release that also fixes cross site scripting vulnerabilities
in three places and removes some unused proxy code.

Many thanks to Moritz Naumann for reporting these problems and working with us
to test the fixes.

The Horde Application Framework is a modular, general-purpose web application
framework written in PHP.  It provides an extensive array of classes that are
targeted at the common problems and tasks involved in developing modern web
applications.

Major changes compared to Horde 3.1.1 are:
    * Security Fixes
      - Closed XSS problems in dereferrer (IE only), help viewer and problem
        reporting screen.
      - Removed unused image proxy code from dereferrer.
    * Bugfixes and improvements
      - Added configuration option to disable GET-based sessions.
      - Added Oracle and generic SQL upgrade scripts.
      - Improved default charset support.
      - Improved API and RPC interface.
      - Fixed the preference cache.
ML;

/* Freshmeat release notes, not more than 600 characters. */
$this->notes['fm']['changes'] = <<<FM
This is a security release that fixes cross site scripting vulnerabilities in
three places and removes some unused proxy code.
A configuration option to disable GET-based sessions have been added.
Oracle and generic SQL upgrade scripts have been added.
The default charset support, the API and the RPC interface have been improved.
The preference cache has been fixed.
FM;

$this->notes['name'] = 'Horde';
$this->notes['fm']['project'] = 'horde';
$this->notes['fm']['branch'] = 'Horde 3';
