From 008e6128dc0487b913efeca09a75881af64fcf01 Mon Sep 17 00:00:00 2001 From: Philippe Herlin Date: Sun, 30 Mar 2003 20:54:44 +0000 Subject: [PATCH] Adding new stuff comments (logging, error dialog,...) git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@1654 51baf565-9d33-0410-a72c-fc3788e3496d --- pmd-eclipse/CHANGELOG.txt | 10 ++++++++-- pmd-eclipse/RELNOTES.txt | 25 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/pmd-eclipse/CHANGELOG.txt b/pmd-eclipse/CHANGELOG.txt index 68de6ba270..b2177e5e4e 100644 --- a/pmd-eclipse/CHANGELOG.txt +++ b/pmd-eclipse/CHANGELOG.txt @@ -1,13 +1,19 @@ Change log for the PMD Eclipse plugin ------------------------------------- -vV.R.M - release date +v0.5.1 - release date Runtime ------- . Fixing SWTException when PMD is run on a file with syntax error (thanks to Chris Grindstaff) - +. Generalize above fix for all message dialog in the plugin +. Adding logging facility to help support (using commons-logging and Log4J) +. Removing error dialog when PMD is executed on a file with syntax error + (the PMD exception is logged as a warning) +. Adding PMD actions on folder and package popup menus + (request nnnnnn from Vladimir Bossica) + diff --git a/pmd-eclipse/RELNOTES.txt b/pmd-eclipse/RELNOTES.txt index 94fe719980..fb2391d705 100644 --- a/pmd-eclipse/RELNOTES.txt +++ b/pmd-eclipse/RELNOTES.txt @@ -1,4 +1,29 @@ Release notes for the PMD Eclipse Plugin +---------------------------------------- + +v0.5.1 - release date + +NEW : Adding a logging facility +------------------------------- +The logging support is based on Log4J from Apache (see: http://jakarta.apache.org/log4j). +The default is to log at the warn level to the file "pmd-eclipse.log" using a rolling +file appender of 10 MB and one backup file. +The file is located in the {user.dir} directory which should be your Eclipse home +directory +To change these options, simply edit the "log4j.xml" file located in the plugin. Please +read the Log4J doc to learn how to update this file. + +NEW : PMD actions from folder and package popups +------------------------------------------------ +Now, PMD actions (check code and remove markers) are available from the popup menus of +a folder (resource navigator view) and package (package explorer view). + +UPDATED : +--------- +Now, no more error message is displayed when PMD is executed against a file with syntax +errors. + + v0.5.0 - 19/03/2003