You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-user@portals.apache.org by Fabio Latrofa <fl...@sivaspa.com> on 2003/01/29 17:37:22 UTC

JSP localization (l10n) taglib

I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
taglib; I noticed that setting the
services.TemplateService.default.extension property to jsp

    services.TemplateService.default.extension=jsp

Jetspeed get only the default locale strings.

Is there something else that I have to configure?

Regards,

Fabio Latrofa
SIVA S.p.A
Mail: flatrofa@sivaspa.com
Tel. +39 0654220452
Fax +39 0654220484


Questa e-mail e' stata verificata dal sistema di antivirus della Siva S.P.A.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Re: JSP localization (l10n) taglib

Posted by Fabio Latrofa <fl...@sivaspa.com>.
Hi Fabien,

I applied the patch this morning but it seems to work only with Velocity
templates. I'll try to reconfigure everything... I'll let you know.

Thank you.

Fabio


----- Original Message -----
From: "Fabien Toral" <f....@atlantel.fr>
To: "Jetspeed Users List" <je...@jakarta.apache.org>
Sent: Thursday, January 30, 2003 10:47 AM
Subject: Re: JSP localization (l10n) taglib


> hi,
>
> i've a proposed patch for this issue.
> Try with the attached classes.
>
> It work for us for a few day.
> See
> http://www.mail-archive.com/jetspeed-user@jakarta.apache.org/msg06302.html
> on custom localisation.
>
> Fabien
>
>
> Fabio Latrofa wrote:
> > I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
> > taglib; I noticed that setting the
> > services.TemplateService.default.extension property to jsp
> >
> >     services.TemplateService.default.extension=jsp
> >
> > Jetspeed get only the default locale strings.
> >
> > Is there something else that I have to configure?
> >
> > Regards,
> >
> > Fabio Latrofa
> > SIVA S.p.A
> > Mail: flatrofa@sivaspa.com
> > Tel. +39 0654220452
> > Fax +39 0654220484
> >
> >
> > Questa e-mail e' stata verificata dal sistema di antivirus della Siva
S.P.A.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> >
> >
>
>


----------------------------------------------------------------------------
----


> /* ====================================================================
>  * The Apache Software License, Version 1.1
>  *
>  * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
>  * reserved.
>  *
>  * Redistribution and use in source and binary forms, with or without
>  * modification, are permitted provided that the following conditions
>  * are met:
>  *
>  * 1. Redistributions of source code must retain the above copyright
>  *    notice, this list of conditions and the following disclaimer.
>  *
>  * 2. Redistributions in binary form must reproduce the above copyright
>  *    notice, this list of conditions and the following disclaimer in
>  *    the documentation and/or other materials provided with the
>  *    distribution.
>  *
>  * 3. The end-user documentation included with the redistribution,
>  *    if any, must include the following acknowledgment:
>  *       "This product includes software developed by the
>  *        Apache Software Foundation (http://www.apache.org/)."
>  *    Alternately, this acknowledgment may appear in the software itself,
>  *    if and wherever such third-party acknowledgments normally appear.
>  *
>  * 4. The names "Apache" and "Apache Software Foundation" and
>  *     "Apache Jetspeed" must not be used to endorse or promote products
>  *    derived from this software without prior written permission. For
>  *    written permission, please contact apache@apache.org.
>  *
>  * 5. Products derived from this software may not be called "Apache" or
>  *    "Apache Jetspeed", nor may "Apache" appear in their name, without
>  *    prior written permission of the Apache Software Foundation.
>  *
>  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
>  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
>  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
>  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
>  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
>  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
>  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
>  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
>  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
>  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
>  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
>  * SUCH DAMAGE.
>  * ====================================================================
>  *
>  * This software consists of voluntary contributions made by many
>  * individuals on behalf of the Apache Software Foundation.  For more
>  * information on the Apache Software Foundation, please see
>  * <http://www.apache.org/>.
>  */
>
> package org.apache.jetspeed.services.customlocalization;
>
> /**
>  * This service handles the generation of unique identifiers
>  *
>  * @author <a href="mailto:desmax74@yahoo.it">Dessì Massimiliano</a>
>  * @version $Id: JetspeedLocalizationService.java,v 1.3 2002/11/16
17:30:31 paulsp Exp $
>  */
>
> // Java imports
> import java.util.Hashtable;
> import java.util.Locale;
> import java.util.ResourceBundle;
>
> // Turbine imports
> import
org.apache.turbine.services.localization.TurbineLocalizationService;
> import org.apache.turbine.services.InitializationException;
> import org.apache.turbine.services.resources.TurbineResources;
> import org.apache.turbine.util.RunData;
>
> // Jetspeed imports
> import org.apache.jetspeed.om.security.JetspeedUser;
>
>
> public class JetspeedLocalizationService extends
TurbineLocalizationService implements CustomLocalizationService
> {
>     public JetspeedLocalizationService()
>     {
>         super();
>     }
>
>     public void init() throws InitializationException
>     {
>         super.init();
>     }
>
>     protected void initBundleNames(String ignored[])
>     {
>         super.initBundleNames(ignored);
>     }
>
>     public String getDefaultBundleName()
>     {
>         return super.getDefaultBundleName();
>     }
>
>     public ResourceBundle getBundle()
>     {
>         return super.getBundle();
>     }
>
>     public ResourceBundle getBundle(String bundleName)
>     {
>         return super.getBundle(bundleName);
>     }
>
>     public ResourceBundle getBundle(String bundleName, String
languageHeader)
>     {
>       return super.getBundle(bundleName, languageHeader);
>     }
>
>     public ResourceBundle getBundle(RunData data)
>     {
>       return super.getBundle(data);
>     }
>
>     public ResourceBundle getBundle(String bundleName, RunData data)
>     {
>       return super.getBundle(bundleName, data);
>     }
>
>     public ResourceBundle getBundle(String bundleName, Locale locale)
>     {
>      return super.getBundle(bundleName, locale);
>     }
>
>     public void setBundle(String defaultBundle)
>     {
>       super.setBundle(defaultBundle);
>     }
>
>
>     public final Locale getLocale(RunData data)
>     {
>        JetspeedUser user = (JetspeedUser) data.getUser();
>        if (user == null)
>        {
>          return
getLocale(data.getRequest().getHeader(CustomLocalizationService.ACCEPT_LANGU
AGE));
>        }
>        else
>        {
>          String lang = "null";
>
>          try
>          {
>            if (user.getPerm("language") == null)
>            {
>              return
getLocale(data.getRequest().getHeader(CustomLocalizationService.ACCEPT_LANGU
AGE));
>            }
>            else
>            {
>              lang = user.getPerm("language").toString();
>              Locale locale = new Locale(lang, "");
>              return locale;
>            }
>          }
>          catch (Exception use)
>          {
>            return
getLocale(data.getRequest().getHeader(CustomLocalizationService.ACCEPT_LANGU
AGE));
>          }
>        }
>     }
>
>     public Locale getLocale(String header)
>     {
>         return super.getLocale(header);
>     }
>
>     public String getString(String bundleName, Locale locale, String key)
>     {
>       return super.getString(bundleName, locale, key);
>     }
> }
>


----------------------------------------------------------------------------
----


> package org.apache.jetspeed.services.jsp.tags;
>
> /* ====================================================================
>  * The Apache Software License, Version 1.1
>  *
>  * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
>  * reserved.
>  *
>  * Redistribution and use in source and binary forms, with or without
>  * modification, are permitted provided that the following conditions
>  * are met:
>  *
>  * 1. Redistributions of source code must retain the above copyright
>  *    notice, this list of conditions and the following disclaimer.
>  *
>  * 2. Redistributions in binary form must reproduce the above copyright
>  *    notice, this list of conditions and the following disclaimer in
>  *    the documentation and/or other materials provided with the
>  *    distribution.
>  *
>  * 3. The end-user documentation included with the redistribution,
>  *    if any, must include the following acknowledgment:
>  *       "This product includes software developed by the
>  *        Apache Software Foundation (http://www.apache.org/)."
>  *    Alternately, this acknowledgment may appear in the software itself,
>  *    if and wherever such third-party acknowledgments normally appear.
>  *
>  * 4. The names "Apache" and "Apache Software Foundation" and
>  *     "Apache Jetspeed" must not be used to endorse or promote products
>  *    derived from this software without prior written permission. For
>  *    written permission, please contact apache@apache.org.
>  *
>  * 5. Products derived from this software may not be called "Apache" or
>  *    "Apache Jetspeed", nor may "Apache" appear in their name, without
>  *    prior written permission of the Apache Software Foundation.
>  *
>  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
>  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
>  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
>  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
>  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
>  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
>  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
>  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
>  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
>  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
>  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
>  * SUCH DAMAGE.
>  * ====================================================================
>  *
>  * This software consists of voluntary contributions made by many
>  * individuals on behalf of the Apache Software Foundation.  For more
>  * information on the Apache Software Foundation, please see
>  * <http://www.apache.org/>.
>  */
>
> // Java classes
> import java.util.MissingResourceException;
>
> // Servlet API
> import javax.servlet.jsp.JspException;
> import javax.servlet.jsp.PageContext;
> import javax.servlet.jsp.tagext.TagSupport;
>
> // Turbine Classes
> import org.apache.turbine.util.Log;
> import org.apache.turbine.services.jsp.JspService;
> import org.apache.turbine.services.localization.Localization;
>
> // ECS support
> import org.apache.ecs.ConcreteElement;
> import org.apache.ecs.StringElement;
>
> // Jetspeed support
> import org.apache.jetspeed.services.rundata.JetspeedRunData;
>
> /**
>  * Supporting class for the localization (l10n) tag.
>  * Returns a localized text for string specified in the "key" parameter.
>  * Use "alt" parameter to specify a default value if "key" is not
translated.
>  *
>  * @author <a href="mailto:morciuch@apache.org">Mark Orciuch</a>
>  * @version $Id: JetspeedL10NTag.java,v 1.1 2002/11/29 19:26:09 morciuch
Exp $
>  */
> public class JetspeedL10NTag extends TagSupport
> {
>     private String key = null;
>     private String alt = null;
>
>     public void setKey(String value)
>     {
>         this.key = value;
>     }
>
>     public String getKey()
>     {
>         return this.key;
>     }
>
>     public void setAlt(String value)
>     {
>         this.alt = value;
>     }
>
>     public String getAlt()
>     {
>         return this.alt;
>     }
>
>     /**
>      * Method called when the tag is encountered to send attributes to the
>      * output stream
>      *
>      * @return SKIP_BODY, as it is intended to be a single tag.
>      */
>     public int doStartTag() throws JspException
>     {
>         JetspeedRunData data = (JetspeedRunData)
pageContext.getAttribute(JspService.RUNDATA, PageContext.REQUEST_SCOPE);
>
>         try
>         {
>             ConcreteElement result = null;
>             try
>             {
>                 result = new
StringElement(Localization.getString(this.key, data.getRequest()));
>             }
>             catch (MissingResourceException mre)
>             {
>                 if (this.alt != null && this.alt.trim().length() > 0)
>                 {
>                     result = new StringElement(this.alt);
>                 }
>                 else
>                 {
>                     result = new StringElement(this.key);
>                 }
>             }
>
>             // Output the result
>             if (result != null)
>             {
>                 pageContext.getOut().print(result);
>             }
>
>         }
>         catch (Exception e)
>         {
>             String message = "Error processing key '" + this.key + "'.";
>             Log.error(message, e);
>             try
>             {
>                 data.getOut().print("Error translating key '" + this.key +
"'. See log for more information.");
>             }
>             catch (java.io.IOException ioe)
>             {
>             }
>         }
>         return EVAL_BODY_INCLUDE;
>     }
> }
>
>


----------------------------------------------------------------------------
----


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


----------------------------------------------------------------------------
----


>
> Questa e-mail e' stata verificata dal sistema di antivirus della Siva
S.P.A.


Questa e-mail e' stata verificata dal sistema di antivirus della Siva S.P.A.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Re: JSP localization (l10n) taglib

Posted by Fabien Toral <f....@atlantel.fr>.
i've create a new bug :
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16615

It's only for the JSP taglib problem.

Mark Orciuch wrote:
> Fabien,
> 
> Two quick favors: could you please open up a Bugzilla issue for this and
> attach your patches in diff format. Thanks!
> 
> Best regards,
> 
> Mark Orciuch - morciuch@apache.org
> Jakarta Jetspeed - Enterprise Portal in Java
> http://jakarta.apache.org/jetspeed/
> 
> 
>>-----Original Message-----
>>From: Fabien Toral [mailto:f.toral@atlantel.fr]
>>Sent: Thursday, January 30, 2003 3:47 AM
>>To: Jetspeed Users List
>>Subject: Re: JSP localization (l10n) taglib
>>
>>
>>hi,
>>
>>i've a proposed patch for this issue.
>>Try with the attached classes.
>>
>>It work for us for a few day.
>>See
>>http://www.mail-archive.com/jetspeed-user@jakarta.apache.org/msg06
>>302.html
>>on custom localisation.
>>
>>Fabien
>>
>>
>>Fabio Latrofa wrote:
>>
>>>I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
>>>taglib; I noticed that setting the
>>>services.TemplateService.default.extension property to jsp
>>>
>>>    services.TemplateService.default.extension=jsp
>>>
>>>Jetspeed get only the default locale strings.
>>>
>>>Is there something else that I have to configure?
>>>
>>>Regards,
>>>
>>>Fabio Latrofa
>>>SIVA S.p.A
>>>Mail: flatrofa@sivaspa.com
>>>Tel. +39 0654220452
>>>Fax +39 0654220484
>>>
>>>
>>>Questa e-mail e' stata verificata dal sistema di antivirus
>>
>>della Siva S.P.A.
>>
>>>
>>>---------------------------------------------------------------------
>>>To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
>>>For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
>>>
>>>
>>
>>
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> 
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


RE: JSP localization (l10n) taglib

Posted by Mark Orciuch <ma...@ngsltd.com>.
Fabien,

Two quick favors: could you please open up a Bugzilla issue for this and
attach your patches in diff format. Thanks!

Best regards,

Mark Orciuch - morciuch@apache.org
Jakarta Jetspeed - Enterprise Portal in Java
http://jakarta.apache.org/jetspeed/

> -----Original Message-----
> From: Fabien Toral [mailto:f.toral@atlantel.fr]
> Sent: Thursday, January 30, 2003 3:47 AM
> To: Jetspeed Users List
> Subject: Re: JSP localization (l10n) taglib
>
>
> hi,
>
> i've a proposed patch for this issue.
> Try with the attached classes.
>
> It work for us for a few day.
> See
> http://www.mail-archive.com/jetspeed-user@jakarta.apache.org/msg06
> 302.html
> on custom localisation.
>
> Fabien
>
>
> Fabio Latrofa wrote:
> > I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
> > taglib; I noticed that setting the
> > services.TemplateService.default.extension property to jsp
> >
> >     services.TemplateService.default.extension=jsp
> >
> > Jetspeed get only the default locale strings.
> >
> > Is there something else that I have to configure?
> >
> > Regards,
> >
> > Fabio Latrofa
> > SIVA S.p.A
> > Mail: flatrofa@sivaspa.com
> > Tel. +39 0654220452
> > Fax +39 0654220484
> >
> >
> > Questa e-mail e' stata verificata dal sistema di antivirus
> della Siva S.P.A.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> >
> >
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Re: JSP localization (l10n) taglib

Posted by Fabien Toral <f....@atlantel.fr>.
hi,

i've a proposed patch for this issue.
Try with the attached classes.

It work for us for a few day.
See 
http://www.mail-archive.com/jetspeed-user@jakarta.apache.org/msg06302.html 
on custom localisation.

Fabien


Fabio Latrofa wrote:
> I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
> taglib; I noticed that setting the
> services.TemplateService.default.extension property to jsp
> 
>     services.TemplateService.default.extension=jsp
> 
> Jetspeed get only the default locale strings.
> 
> Is there something else that I have to configure?
> 
> Regards,
> 
> Fabio Latrofa
> SIVA S.p.A
> Mail: flatrofa@sivaspa.com
> Tel. +39 0654220452
> Fax +39 0654220484
> 
> 
> Questa e-mail e' stata verificata dal sistema di antivirus della Siva S.P.A.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> 
> 


Re: JSP localization (l10n) taglib

Posted by Fabio Latrofa <fl...@sivaspa.com>.
Velocity templates localize strings properly. JSP templates don't seem to
work in the right way.

When Velocity is the default, platform templates (Velocity templates for
navigation, layouts, etc.) return localized strings based on user browser
settings; JSP templates always provide localized strings based on Turbine
default locale settings.

 locale.default.language=en
 locale.default.country=US

So, when JSP is the default, platform templates (JSP templates this time)
return localized strings based on Turbine default locale settings.
Panes titles (I guess based on Velocity and PSML settings) are always based
on user browser settings.

I have tested it with IE 5.5 SP2 and Netscape 6.01.
Could it be a problem of the l10n taglib init code?

    Fabio

----- Original Message -----
From: "Mark Orciuch" <ma...@ngsltd.com>
To: "Jetspeed Users List" <je...@jakarta.apache.org>
Sent: Thursday, January 30, 2003 6:02 AM
Subject: RE: JSP localization (l10n) taglib


> Hmmm, not sure about this one. Could these settings in tr.props help:
>
> locale.default.language=en
> locale.default.country=US
>
> If Velocity is the default, does it properly localize the strings?
>
>
> > -----Original Message-----
> > From: Fabio Latrofa [mailto:flatrofa@sivaspa.com]
> > Sent: Wednesday, January 29, 2003 10:37 AM
> > To: 'Jetspeed Users List'
> > Subject: JSP localization (l10n) taglib
> >
> >
> > I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
> > taglib; I noticed that setting the
> > services.TemplateService.default.extension property to jsp
> >
> >     services.TemplateService.default.extension=jsp
> >
> > Jetspeed get only the default locale strings.
> >
> > Is there something else that I have to configure?
> >
> > Regards,
> >
> > Fabio Latrofa
> > SIVA S.p.A
> > Mail: flatrofa@sivaspa.com
> > Tel. +39 0654220452
> > Fax +39 0654220484


Questa e-mail e' stata verificata dal sistema di antivirus della Siva S.P.A.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


RE: JSP localization (l10n) taglib

Posted by Mark Orciuch <ma...@ngsltd.com>.
Hmmm, not sure about this one. Could these settings in tr.props help:

locale.default.language=en
locale.default.country=US

If Velocity is the default, does it properly localize the strings?


> -----Original Message-----
> From: Fabio Latrofa [mailto:flatrofa@sivaspa.com]
> Sent: Wednesday, January 29, 2003 10:37 AM
> To: 'Jetspeed Users List'
> Subject: JSP localization (l10n) taglib
> 
> 
> I'm trying to 'localize' Jetspeed using JSP templates and jetspeed:l10n
> taglib; I noticed that setting the
> services.TemplateService.default.extension property to jsp
> 
>     services.TemplateService.default.extension=jsp
> 
> Jetspeed get only the default locale strings.
> 
> Is there something else that I have to configure?
> 
> Regards,
> 
> Fabio Latrofa
> SIVA S.p.A
> Mail: flatrofa@sivaspa.com
> Tel. +39 0654220452
> Fax +39 0654220484
> 
> 
> Questa e-mail e' stata verificata dal sistema di antivirus della 
> Siva S.P.A.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org