bugzilla | 3 Dec 2009 23:36
Picon
Favicon

DO NOT REPLY [Bug 46592] trim() on property file entries

https://issues.apache.org/bugzilla/show_bug.cgi?id=46592

--- Comment #1 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-03 14:36:40 UTC ---
Created an attachment (id=24667)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24667)
Patch adds trim() to encoding setter

This patch adds trimming of the encoding string to the setter method.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 3 Dec 2009 23:38
Picon
Favicon

DO NOT REPLY [Bug 46592] trim() on property file entries

https://issues.apache.org/bugzilla/show_bug.cgi?id=46592

Sven Diedrichsen <sdiedrichsen <at> yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #2 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-03 14:38:14 UTC ---
I have added trimming to the setter of the encoding property.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 4 Dec 2009 00:06
Picon
Favicon

DO NOT REPLY [Bug 46592] trim() on property file entries

https://issues.apache.org/bugzilla/show_bug.cgi?id=46592

Sven Diedrichsen <sdiedrichsen <at> yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

--- Comment #3 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-03 15:06:56 UTC ---
The trimming should already be done. Please see PropertySetter class:

- snip
  Object convertArg(String val, Class type) {
    if(val == null)
      return null;

    String v = val.trim();
    if (String.class.isAssignableFrom(type)) {
      return val;
- snip

Why does this not work for you?

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 7 Dec 2009 00:08
Picon
Favicon

Bug report for Log4j [2009/12/06]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|13099|Opn|Nor|2002-09-27|DOMConfigurator ignores category factory setting  |
|17887|Opn|Maj|2003-03-11|RollingFileAppender does not work for 10 threads  |
|20395|Inf|Enh|2003-06-01|PreparedStatementAppender Enhancement             |
|23329|New|Enh|2003-09-22|<logger> element in XML config should support reso|
|26084|Inf|Nor|2004-01-13|Log Event detail panel does not show special chara|
|27363|Inf|Enh|2004-03-02|JNI based SyslogAppender                          |
|27367|Inf|Enh|2004-03-02|NetSendAppender                                   |
|29244|Inf|Nor|2004-05-27|Preserve XML content in log messages when using XM|
|29305|New|Nor|2004-05-30|Chainsaw doesn't see locationinfo from XMLSocketRe|
|30055|New|Nor|2004-07-12|Problem with registering Appenders with the same n|
|30407|Inf|Maj|2004-07-30|Externally rolled file problem                    |
|30888|New|Maj|2004-08-27|Chainsaw mixes files in same panel                |
|30892|New|Min|2004-08-27|Log files cannot be closed                        |
|31089|New|Nor|2004-09-07|Does not accept ISO8601 dates in focus field      |
|31178|Inf|Cri|2004-09-11|Exception using Chainsaw for simple debugging     |
|31179|Ass|Enh|2004-09-11|Implement Chainsaw as Eclipse stand-alone applicat|
|33278|New|Min|2005-01-27|NPE thrown durring daily log file rollover        |
(Continue reading)

bugzilla | 7 Dec 2009 21:42
Picon
Favicon

DO NOT REPLY [Bug 48200] Allow SMTPAppender to have replaceable parameters in Subject using MDC

https://issues.apache.org/bugzilla/show_bug.cgi?id=48200

--- Comment #1 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-07 12:42:12 UTC ---
Created an attachment (id=24677)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24677)
Simple patch of the SMTPAppender to allow PatternLayout in mail subject

Simple patch of the SMTPAppender to allow PatternLayout in mail subject.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 7 Dec 2009 21:48
Picon
Favicon

DO NOT REPLY [Bug 48200] Allow SMTPAppender to have replaceable parameters in Subject using MDC

https://issues.apache.org/bugzilla/show_bug.cgi?id=48200

Sven Diedrichsen <sdiedrichsen <at> yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
          Component|Other                       |Appender
         Resolution|                            |WORKSFORME
           Severity|critical                    |enhancement

--- Comment #2 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-07 12:48:27 UTC ---
I have attached some simple patch of the SMTPAppender to allow the mail subject
to use some PatternLayout string. For this the first log event to be send by
mail is used.
This should better be done by allowing the subject to be configured and
layouted by some pattern but this requires some additional properties/ XML
elements for LOG4J SMTPAppender config.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 7 Dec 2009 22:16
Picon
Favicon

DO NOT REPLY [Bug 46723] log4j subject line host expansion

https://issues.apache.org/bugzilla/show_bug.cgi?id=46723

Sven Diedrichsen <sdiedrichsen <at> yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE

--- Comment #1 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-07 13:16:21 UTC ---

*** This bug has been marked as a duplicate of bug 48200 ***

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 7 Dec 2009 22:16
Picon
Favicon

DO NOT REPLY [Bug 48200] Allow SMTPAppender to have replaceable parameters in Subject using MDC

https://issues.apache.org/bugzilla/show_bug.cgi?id=48200

Sven Diedrichsen <sdiedrichsen <at> yahoo.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |swells <at> veoh.com

--- Comment #3 from Sven Diedrichsen <sdiedrichsen <at> yahoo.de> 2009-12-07 13:16:21 UTC ---
*** Bug 46723 has been marked as a duplicate of this bug. ***

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 9 Dec 2009 00:32
Picon
Favicon

DO NOT REPLY [Bug 48355] New: Download page problems

https://issues.apache.org/bugzilla/show_bug.cgi?id=48355

           Summary: Download page problems
           Product: Log4j
           Version: unspecified
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: critical
          Priority: P2
         Component: chainsaw
        AssignedTo: log4j-dev <at> logging.apache.org
        ReportedBy: sebb <at> apache.org

The download page does not link to a mirrored download directory.

There are no sigs or hash files.

There is no link to a KEYS file, and no description of how to check the
integrity of downloads.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
bugzilla | 9 Dec 2009 00:45
Picon
Favicon

DO NOT REPLY [Bug 48356] New: Download page does not have link to KEYS file

https://issues.apache.org/bugzilla/show_bug.cgi?id=48356

           Summary: Download page does not have link to KEYS file
           Product: Log4j
           Version: unspecified
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Other
        AssignedTo: log4j-dev <at> logging.apache.org
        ReportedBy: sebb <at> apache.org

The download page http://logging.apache.org/log4j/1.2/download.html has a link
describing why one should verify releases, but fails to provide a link to the
KEYS file, i.e. http://www.apache.org/dist/logging/KEYS.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

Gmane