Re: svn commit: r787442 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: svn commit: r787442 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Jacques Le Roux
Administrator
Hi Scott,

Should we not backport this and 787436+787435 ?

Jacques

From: <[hidden email]>

> Author: lektran
> Date: Mon Jun 22 23:24:01 2009
> New Revision: 787442
>
> URL: http://svn.apache.org/viewvc?rev=787442&view=rev
> Log:
> Fix an attribute name
>
> Modified:
>    ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java
>
> Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java
> URL:
> http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java?rev=787442&r1=787441&r2=787442&view=diff
> ==============================================================================
> --- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java (original)
> +++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java Mon Jun 22 23:24:01 2009
> @@ -553,7 +553,7 @@
>                     for (Map.Entry<String, Object> urlParamEntry: urlParams.entrySet()) {
>                         String key = urlParamEntry.getKey();
>                         // Don't overwrite messages coming from the current event
> -                        if (!("_EVENT_MESSAGE".equals(key) || "_ERROR_MESSAGE_".equals(key)
> +                        if (!("_EVENT_MESSAGE_".equals(key) || "_ERROR_MESSAGE_".equals(key)
>                                 || "_EVENT_MESSAGE_LIST_".equals(key) || "_ERROR_MESSAGE_LIST".equals(key))) {
>                             request.setAttribute(key, urlParamEntry.getValue());
>                         }
>
>


Reply | Threaded
Open this post in threaded view
|

Re: svn commit: r787442 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Scott Gray-2
Hi Jacques,

Yes I guess someone could if they were so inclined :-)

Regards
Scott

On 23/06/2009, at 8:42 PM, Jacques Le Roux wrote:

> Hi Scott,
>
> Should we not backport this and 787436+787435 ?
>
> Jacques
>
> From: <[hidden email]>
>> Author: lektran
>> Date: Mon Jun 22 23:24:01 2009
>> New Revision: 787442
>>
>> URL: http://svn.apache.org/viewvc?rev=787442&view=rev
>> Log:
>> Fix an attribute name
>>
>> Modified:
>>   ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/
>> RequestHandler.java
>>
>> Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/
>> RequestHandler.java
>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java?rev=787442&r1=787441&r2=787442&view=diff
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =
>> =====================================================================
>> --- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/
>> RequestHandler.java (original)
>> +++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/
>> RequestHandler.java Mon Jun 22 23:24:01 2009
>> @@ -553,7 +553,7 @@
>>                    for (Map.Entry<String, Object> urlParamEntry:  
>> urlParams.entrySet()) {
>>                        String key = urlParamEntry.getKey();
>>                        // Don't overwrite messages coming from the  
>> current event
>> -                        if (!("_EVENT_MESSAGE".equals(key) ||  
>> "_ERROR_MESSAGE_".equals(key)
>> +                        if (!("_EVENT_MESSAGE_".equals(key) ||  
>> "_ERROR_MESSAGE_".equals(key)
>>                                ||  
>> "_EVENT_MESSAGE_LIST_".equals(key) ||  
>> "_ERROR_MESSAGE_LIST".equals(key))) {
>>                            request.setAttribute(key,  
>> urlParamEntry.getValue());
>>                        }
>>
>
>


smime.p7s (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: svn commit: r787442 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Jacques Le Roux
Administrator
Done, thanks Scott

Jacques

From: "Scott Gray" <[hidden email]>

> Hi Jacques,
>
> Yes I guess someone could if they were so inclined :-)
>
> Regards
> Scott
>
> On 23/06/2009, at 8:42 PM, Jacques Le Roux wrote:
>
>> Hi Scott,
>>
>> Should we not backport this and 787436+787435 ?
>>
>> Jacques
>>
>> From: <[hidden email]>
>>> Author: lektran
>>> Date: Mon Jun 22 23:24:01 2009
>>> New Revision: 787442
>>>
>>> URL: http://svn.apache.org/viewvc?rev=787442&view=rev
>>> Log:
>>> Fix an attribute name
>>>
>>> Modified:
>>>   ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ RequestHandler.java
>>>
>>> Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ RequestHandler.java
>>> URL:
>>> http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java?rev=787442&r1=787441&r2=787442&view=diff
>>> = = = = = = = = = =====================================================================
>>> --- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ RequestHandler.java (original)
>>> +++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ RequestHandler.java Mon Jun 22 23:24:01 2009
>>> @@ -553,7 +553,7 @@
>>>                    for (Map.Entry<String, Object> urlParamEntry:  urlParams.entrySet()) {
>>>                        String key = urlParamEntry.getKey();
>>>                        // Don't overwrite messages coming from the  current event
>>> -                        if (!("_EVENT_MESSAGE".equals(key) ||  "_ERROR_MESSAGE_".equals(key)
>>> +                        if (!("_EVENT_MESSAGE_".equals(key) ||  "_ERROR_MESSAGE_".equals(key)
>>>                                ||  "_EVENT_MESSAGE_LIST_".equals(key) ||  "_ERROR_MESSAGE_LIST".equals(key))) {
>>>                            request.setAttribute(key,  urlParamEntry.getValue());
>>>                        }
>>>
>>
>>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: svn commit: r787442 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java

Scott Gray-2
Thanks Jacques

Regards
Scott

On 24/06/2009, at 12:03 AM, Jacques Le Roux wrote:

> Done, thanks Scott
>
> Jacques
>
> From: "Scott Gray" <[hidden email]>
>> Hi Jacques,
>>
>> Yes I guess someone could if they were so inclined :-)
>>
>> Regards
>> Scott
>>
>> On 23/06/2009, at 8:42 PM, Jacques Le Roux wrote:
>>
>>> Hi Scott,
>>>
>>> Should we not backport this and 787436+787435 ?
>>>
>>> Jacques
>>>
>>> From: <[hidden email]>
>>>> Author: lektran
>>>> Date: Mon Jun 22 23:24:01 2009
>>>> New Revision: 787442
>>>>
>>>> URL: http://svn.apache.org/viewvc?rev=787442&view=rev
>>>> Log:
>>>> Fix an attribute name
>>>>
>>>> Modified:
>>>>  ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/  
>>>> RequestHandler.java
>>>>
>>>> Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/
>>>> control/ RequestHandler.java
>>>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java?rev=787442&r1=787441&r2=787442&view=diff
>>>> = = = = = = = = =  
>>>> =
>>>> =
>>>> ===================================================================
>>>> --- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/  
>>>> RequestHandler.java (original)
>>>> +++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/  
>>>> RequestHandler.java Mon Jun 22 23:24:01 2009
>>>> @@ -553,7 +553,7 @@
>>>>                   for (Map.Entry<String, Object> urlParamEntry:  
>>>> urlParams.entrySet()) {
>>>>                       String key = urlParamEntry.getKey();
>>>>                       // Don't overwrite messages coming from  
>>>> the  current event
>>>> -                        if (!("_EVENT_MESSAGE".equals(key) ||  
>>>> "_ERROR_MESSAGE_".equals(key)
>>>> +                        if (!("_EVENT_MESSAGE_".equals(key) ||  
>>>> "_ERROR_MESSAGE_".equals(key)
>>>>                               ||  
>>>> "_EVENT_MESSAGE_LIST_".equals(key) ||  
>>>> "_ERROR_MESSAGE_LIST".equals(key))) {
>>>>                           request.setAttribute(key,  
>>>> urlParamEntry.getValue());
>>>>                       }
>>>>
>>>
>>>
>>
>
>


smime.p7s (3K) Download Attachment