Jul
03
2009
--

Re: [2.2] ThreadLocal use in PoolableProxyHandler

On 03.07.2009, at 14:20, Carsten Ziegeler wrote:

> Alexander Daniel wrote:
>> On 03.07.2009, at 10:41, Carsten Ziegeler wrote:
>>
>>> Alexander Daniel wrote:
>>>> Does somebody know why ThreadLocal is used in
>>>> PoolableProxyHandler [1]
>>>> for the componentHolder in Cocoon 2.2?
>>>>
>>> Sure :)
>>>
>>> Whenever components are taken out of the pool they need to be put
>>> back
>>> somehow, so they are available for other clients again.
>>> We use a thread local which is cleared when the request finishes,
>>> so all used components get back into the pool.
>>
>> Thanks for the answer Carsten. What you describe is done by the
>> destruction callback mechanism of Spring. But why can’t we simply
>> use a
>> direct reference [2] to the component? Why is a ThreadLocal used as
>> key
>> to the component?
>>
> Hmm, not sure if I understand you correctly.
> The poolable factory returns a single instance to spring which is the
> proxy - spring has no knowledge of poolable components.
> Therefore the proxy together with a thread local is used to internally
> forward the method calls to instances from the pool. There is a
> separate
> instance per thread - otherwise you would run into multi-threading
> issues as the same instance would be used across requests.

PoolableFactoryBean [2] creates a new PoolableProxyHandler instance
[1] for each pooled component used in a pipeline, i.e. it will not be
shared across different requests. Therefore I do not understand the
use of ThreadLocal.

Alex

[1]
public Object getObject() throws Exception {
return Proxy.newProxyInstance(this.getClass().getClassLoader(),
this.interfaces,
new PoolableProxyHandler(this));
}

[2] http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/src/main/java/org/apache/cocoon/core/container/spring/avalon/PoolableFactoryBean.java

Written by admin in: cocoon |
Jul
03
2009
--

Re: [2.2] ThreadLocal use in PoolableProxyHandler

Alexander Daniel wrote:
> On 03.07.2009, at 10:41, Carsten Ziegeler wrote:
>
>> Alexander Daniel wrote:
>>> Does somebody know why ThreadLocal is used in PoolableProxyHandler [1]
>>> for the componentHolder in Cocoon 2.2?
>>>
>> Sure :)
>>
>> Whenever components are taken out of the pool they need to be put back
>> somehow, so they are available for other clients again.
>> We use a thread local which is cleared when the request finishes,
>> so all used components get back into the pool.
>
> Thanks for the answer Carsten. What you describe is done by the
> destruction callback mechanism of Spring. But why can’t we simply use a
> direct reference [2] to the component? Why is a ThreadLocal used as key
> to the component?
>
Hmm, not sure if I understand you correctly.
The poolable factory returns a single instance to spring which is the
proxy - spring has no knowledge of poolable components.
Therefore the proxy together with a thread local is used to internally
forward the method calls to instances from the pool. There is a separate
instance per thread - otherwise you would run into multi-threading
issues as the same instance would be used across requests.

Carsten

Carsten Ziegeler
cziegeler@apache.org

Written by admin in: cocoon |
Jul
03
2009
--

Re: Cocoon interest to a Content Technology track in ACUS09?

Hi,

On Mon, Apr 27, 2009 at 10:59 AM, Jukka Zitting wrote:
> I’m putting together a plan for a “Content Technology” track for the
> ApacheCon US 2009 in Oakland later this year.

I’m moving forward with this. Apart from Thorsten’s proposal, are you
interested in organizing some Cocoon-related program at the ApacheCon?
The Content Technology track is already pretty crowded so I probably
can’t promise you more than a single normal session with speaker
benefits (note that unlike before, speaker travel is not covered), but
we can also arrange space for unofficial sessions, workshops, meetups,
etc. To do this, I need people who’d like to help in planning and
organizing the Cocoon parts of the event. Any volunteers?

See the suggestions below and
http://wiki.apache.org/jackrabbit/ContentTrackApacheConUs2009 for more
information.

BR,

Jukka Zitting

SUGGESTIONS

* People pay to see the scheduled content at ApacheCon. Provide
material which will reach and attract our paying audience. If you have
Geeks for Geeks content to present, please save that for the daytime
un-con tracks, or evening MeetUps/BOFs. Consider that people attending
the main tracks probably need to have a clear business case for
registration costs - but your community are free to attend the free
evening programming (and that’s free as in beer!), so choose
appropriately!

* Work with your community. Some of the best presentations have been
from presenters who don’t belong to that project’s PMC.

* Be creative! You’re not limited to the strict 50-minute-sessions
model. You can organize the schedule in whatever way makes the most
sense for your project’s content. (Ensure that your attendees still
get their coffee- and lunch-breaks and keynote sessions.)

* The main track drives paid attendence, so you must submit
well-written proposals. If the proposals are not clearly written, and
answer “Who, What, and Why?”, then what can be expected of the
presentations? We’ve reviewed the proposals that were received in the
main CFP, and they accompany this email. You can use these verbatim
(appropriately edited for spelling/to fit the program!), or work with
the submitters to refine them to work better within the track you’re
planning and/or solicit completely new proposals. Use whichever
solution creates the most effective program.

* During the day, we will run un-con tracks on Wednesday through
Friday in smaller rooms (capacity ~50), also coordinated by PMCs. They
do not need to be formalized until the morning of the track, but
guidance for the prospective audience can be gathered on the un-con
tracks’ wiki pages. Registration will be required to attend these
parallel tracks, but they’re a great place to schedule the
?Geeks4Geeks content that’s really interesting for a narrower
audience.

FREE STUFF!

During the day, on Monday and Tuesday, we will run a free BarCamp
alongside the traditional Hackathon. The space set aside for the
BarCamp and Hackathon is truly massive, and should have a very open
feel without excessive background noise. By colocating these events,
we can enable attendees to jump between hacking together and attending
BarCamp sessions.

Free evening activities include MeetUps and BOFs. These will be
organized by the PMCs, and can be scheduled for any night from Sunday
through Thursday. Wednesday night is set aside for the free BIG
FEATHER BIRTHDAY BASH! and Welcome Reception. We expect to attract
many commuting attendees from the Bay Area, both for the main program
(paid registration required) and for all of these free events and
opportunities.

REALITY CHECK

Of course the economic realities do not permit the Conference Producer
to cover the costs of everyone who has information to present to such
a diverse audience of this many topics. For this conference, for each
hour of main track material, the Producer will be covering one (1)
hotel night plus one (1) conference pass, and will provide an
additional (1) night for overseas travelers. However, the conference
will not be paying airfare for speakers from the US and Canada, and
will work on a limited case-by-case basis with those from overseas.
And with so many friends in the Bay Area, those who are not covered
can consider staying with fellow ASF members who are willing to host.

If you’re not sure how this will work for you, or what it means when
you start getting creative with the program, please check with your
planning-mentor.

Written by admin in: cocoon |
Jul
03
2009
--

Re: [2.2] ThreadLocal use in PoolableProxyHandler

On 03.07.2009, at 10:41, Carsten Ziegeler wrote:

> Alexander Daniel wrote:
>> Does somebody know why ThreadLocal is used in PoolableProxyHandler
>> [1]
>> for the componentHolder in Cocoon 2.2?
>>
> Sure :)
>
> Whenever components are taken out of the pool they need to be put back
> somehow, so they are available for other clients again.
> We use a thread local which is cleared when the request finishes,
> so all used components get back into the pool.

Thanks for the answer Carsten. What you describe is done by the
destruction callback mechanism of Spring. But why can’t we simply use
a direct reference [2] to the component? Why is a ThreadLocal used as
key to the component?

Alex

[2] private Object component = null;

>>
>> [1]
>> http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/src/main/java/org/apache/cocoon/core/container/spring/avalon/PoolableFactoryBean.java
>>

Written by admin in: cocoon |
Jul
03
2009
--

Re: [2.2] ThreadLocal use in PoolableProxyHandler

Alexander Daniel wrote:
> Does somebody know why ThreadLocal is used in PoolableProxyHandler [1]
> for the componentHolder in Cocoon 2.2?
>
Sure :)

Whenever components are taken out of the pool they need to be put back
somehow, so they are available for other clients again.
We use a thread local which is cleared when the request finishes,
so all used components get back into the pool.

Carsten

> Thanks, Alex
>
> [1]
> http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/src/main/java/org/apache/cocoon/core/container/spring/avalon/PoolableFactoryBean.java
>
>


Carsten Ziegeler
cziegeler@apache.org

Written by admin in: cocoon |
Jul
03
2009
--

[2.2] ThreadLocal use in PoolableProxyHandler

Does somebody know why ThreadLocal is used in PoolableProxyHandler [1]
for the componentHolder in Cocoon 2.2?

Thanks, Alex

[1] http://svn.apache.org/repos/asf/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-impl/src/main/java/org/apache/cocoon/core/container/spring/avalon/PoolableFactoryBean.java

Written by admin in: cocoon |
Jul
02
2009
--

[jira] Subscription: COCOON-open-with-patch

Issue Subscription
Filter: COCOON-open-with-patch (106 issues)
Subscriber: cocoon

Key Summary
COCOON-2250 Wrong error message in Element.java (jx:element)
https://issues.apache.org/jira/browse/COCOON-2250
COCOON-2249 XHTMLSerializer uses entity references " and ' which cause JavaScript parse errors
https://issues.apache.org/jira/browse/COCOON-2249
COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way
https://issues.apache.org/jira/browse/COCOON-2246
COCOON-2233 Update archetypes to current trunk artifact versions
https://issues.apache.org/jira/browse/COCOON-2233
COCOON-2222 Add SaxParser configuration properties
https://issues.apache.org/jira/browse/COCOON-2222
COCOON-2216 IncludeCacheManager can not perfom parallel includes
https://issues.apache.org/jira/browse/COCOON-2216
COCOON-2212 jx:attribute does not check name is correct before proceeding
https://issues.apache.org/jira/browse/COCOON-2212
COCOON-2197 Making the cocoon-auth-block acegi-security-sample work
https://issues.apache.org/jira/browse/COCOON-2197
COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other
https://issues.apache.org/jira/browse/COCOON-2173
COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page
https://issues.apache.org/jira/browse/COCOON-2162
COCOON-2137 XSD Schemas for CForms Development
https://issues.apache.org/jira/browse/COCOON-2137
COCOON-2114 fix sorting in TraversableGenerator
https://issues.apache.org/jira/browse/COCOON-2114
COCOON-2108 xmodule:flow-attr Does not accept document objects
https://issues.apache.org/jira/browse/COCOON-2108
COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer
https://issues.apache.org/jira/browse/COCOON-2104
COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow
https://issues.apache.org/jira/browse/COCOON-2100
COCOON-2041 WebDAV Returns improper status on PUT
https://issues.apache.org/jira/browse/COCOON-2041
COCOON-2040 Union widget does not work with booleanfield set as case widget
https://issues.apache.org/jira/browse/COCOON-2040
COCOON-2037 New DynamicGroup widget
https://issues.apache.org/jira/browse/COCOON-2037
COCOON-2035 NPE in the sorter of the EnhancedRepeater
https://issues.apache.org/jira/browse/COCOON-2035
COCOON-2032 [PATCH] Sort order in paginated repeater
https://issues.apache.org/jira/browse/COCOON-2032
COCOON-2030 submit-on-change doesn’t work for a multivaluefield with list-type=”checkbox”
https://issues.apache.org/jira/browse/COCOON-2030
COCOON-2018 Use thread context class loader to load custom binding classes
https://issues.apache.org/jira/browse/COCOON-2018
COCOON-2017 More output beautification options for serializers
https://issues.apache.org/jira/browse/COCOON-2017
COCOON-2015 Doctype added twice because root element (html) is inlined
https://issues.apache.org/jira/browse/COCOON-2015
COCOON-2002 HTML transformer only works with latin-1 characters
https://issues.apache.org/jira/browse/COCOON-2002
COCOON-1974 Donating ContextAttributeInputModule
https://issues.apache.org/jira/browse/COCOON-1974
COCOON-1973 CaptchaValidator: allow case-insensitive matching
https://issues.apache.org/jira/browse/COCOON-1973
COCOON-1964 Redirects inside a block called via the servlet protocol fail
https://issues.apache.org/jira/browse/COCOON-1964
COCOON-1963 Add a redirect action to the browser update handler
https://issues.apache.org/jira/browse/COCOON-1963
COCOON-1960 Pipeline errors for “generator/reader already set” should provide more information
https://issues.apache.org/jira/browse/COCOON-1960
COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object
https://issues.apache.org/jira/browse/COCOON-1949
COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates
https://issues.apache.org/jira/browse/COCOON-1946
COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early
https://issues.apache.org/jira/browse/COCOON-1943
COCOON-1932 [PATCH] correct styling of disabled suggestion lists
https://issues.apache.org/jira/browse/COCOON-1932
COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2
https://issues.apache.org/jira/browse/COCOON-1929
COCOON-1917 Request Encoding problem: multipart/form vs. url encoded
https://issues.apache.org/jira/browse/COCOON-1917
COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList
https://issues.apache.org/jira/browse/COCOON-1915
COCOON-1914 Text as XMLizable in EmptySelectionList
https://issues.apache.org/jira/browse/COCOON-1914
COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice
https://issues.apache.org/jira/browse/COCOON-1899
COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin
https://issues.apache.org/jira/browse/COCOON-1898
COCOON-1893 XML-Binding: Problem creating a new element
https://issues.apache.org/jira/browse/COCOON-1893
COCOON-1877 [PATCH] Pageable Repeater
https://issues.apache.org/jira/browse/COCOON-1877
COCOON-1870 Lucene block does not store attributes when instructed so
https://issues.apache.org/jira/browse/COCOON-1870
COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE
https://issues.apache.org/jira/browse/COCOON-1846
COCOON-1843 LDAPTransformer: add-entry tag doesn’t work
https://issues.apache.org/jira/browse/COCOON-1843
COCOON-1842 LDAPTransformer: ClassCastException with Binary fields
https://issues.apache.org/jira/browse/COCOON-1842
COCOON-1810 [PATCH] JMSEventMessageListener does not work
https://issues.apache.org/jira/browse/COCOON-1810
COCOON-1807 Workaround for IE Bug in

Written by admin in: cocoon |
Jun
29
2009
--

Cocoon 2.1.11 - Mysterious FileSystem I/O operations when creating a new EnvironmentWrapper ???

SGksCkluIHRoZSBjb250ZXh0IG9mIGEgY29jb29uOi8vIHJlZGlyZWN0IGZyb20gYSBwaXBlbGlu
ZSBpbiBhIHN1YiBzaXRlbWFwLCB3ZSBjYW4gbm90aWNlIHNvbWUgd2VpcmQgRmlsZVN5c3RlbSBh
Y2Nlc3Mgb24gdGhlIC53YXIgb2Ygb3VyIGFwcGxpY2F0aW9uLgoKTG9va2luZyBhdCB0aGUgY29k
ZSwgd2hlbiB0aGUgU2l0ZW1hcFNvdXJjZSBjcmVhdGVzIGEgbmV3IEVudmlyb25tZW50V3JhcHBl
ciAoaW4gZmFjdCBpbiBBYnN0cmFjdEVudmlyb25tZW50LmluaXRDb21wb25lbnRzKCkpIHRoZXJl
IGlzIGFuIGF0dGVtcHQgYXQgcmVzb2×2aW5nIHRlbXBJbml0Q29udGV4dCwgbGVhZGluZyB0byBh
IG5ldyBGaWxlU291cmNlIChpbiBmYWN0IGluIEZpbGVTb3VyY2UuaW5pdCgpKSBhbmQgYSBmaWxl
LnRvVVJMKCkuLi4gVHJpZ2dlcmluZyBGaWxlU3l0ZW0gb3BlcmF0aW9ucyBvbiB0aGUgLndhciBm
aWxlLi4uCgpXaGlsZSBkZWJ1Z2dpbmcgaXQgcmVwcmVzZW50cyBxdWl0ZSBhIGZldyBJL08gb3Bl
cmF0aW9ucyBmb3IgZWFjaCByZXF1ZXN0IChkdWUgdG8gc2V2ZXJhbCBpbmNsdWRlcyB0aHJvdWdo
IHRoZSBjb2Nvb24gcHJvdG9jb2wuLi4pLgoKUXVlc3Rpb246IFdoYXQgY2FuIHdlIGRvIHRvIGF2
b2lkIHRoaXMgPyBXaHkgdHJ5aW5nIHRvIHJlc29sdmUgYW4gYWxyZWFkeSBrbm93biBjb250ZXh0
ID8gKHRoZSBtYWluIHNpdGVtYXAgb25lLCBlYXNpbHkgYWNjZXNzaWJsZSB0aHJvdWdoIHJvb3RD
b250ZXh0IG5vID8pCgpBbnkgZG9jL2luZm8gb24gdGhpcyBFbnZpcm9ubWVudCBtYW5hZ2VtZW50
IHNvbWV3aGVyZSA/CgpNYW55IHRoYW5rcywKTGF1cmVudAoKX19fX19fX19fX19fX19fX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCgqVIFRoaXMgZW1haWwgYW5k
IGFueSBmaWxlcyB0cmFuc21pdHRlZCB3aXRoIGl0IGFyZSBDT05GSURFTlRJQUwgYW5kIGludGVu
ZGVkCiAgc29sZWx5IGZvciB0aGUgdXNlIG9mIHRoZSBpbmRpdmlkdWFsIG9yIGVudGl0eSB0byB3
aGljaCB0aGV5IGFyZSBhZGRyZXNzZWQuCpUgQW55IHVuYXV0aG9yaXplZCBjb3B5aW5nLCBkaXNj
bG9zdXJlLCBvciBkaXN0cmlidXRpb24gb2YgdGhlIG1hdGVyaWFsIHdpdGhpbgogIHRoaXMgZW1h
aWwgaXMgc3RyaWN0bHkgZm9yYmlkZGVuLgqVIEFueSB2aWV3cyBvciBvcGluaW9ucyBwcmVzZW50
ZWQgd2l0aGluIHRoaXMgZS1tYWlsIGFyZSBzb2xlbHkgdGhvc2Ugb2YgdGhlCiAgYXV0aG9yIGFu
ZCBkbyBub3QgbmVjZXNzYXJpbHkgcmVwcmVzZW50IHRob3NlIG9mIE9keXNzZXkgRmluYW5jaWFs
ClRlY2hub2xvZ2llcyBTQSB1bmxlc3Mgb3RoZXJ3aXNlIHNwZWNpZmljYWxseSBzdGF0ZWQuCpUg
QW4gZWxlY3Ryb25pYyBtZXNzYWdlIGlzIG5vdCBiaW5kaW5nIG9uIGl0cyBzZW5kZXIuIEFueSBt
ZXNzYWdlIHJlZmVycmluZyB0bwogIGEgYmluZGluZyBlbmdhZ2VtZW50IG11c3QgYmUgY29uZmly
bWVkIGluIHdyaXRpbmcgYW5kIGR1bHkgc2lnbmVkLgqVIElmIHlvdSBoYXZlIHJlY2VpdmVkIHRo
aXMgZW1haWwgaW4gZXJyb3IsIHBsZWFzZSBub3RpZnkgdGhlIHNlbmRlciBpbW1lZGlhdGVseQog
IGFuZCBkZWxldGUgdGhlIG9yaWdpbmFsLgo=

Written by admin in: cocoon |
Jun
25
2009
--

[jira] Subscription: COCOON-open-with-patch

Issue Subscription
Filter: COCOON-open-with-patch (106 issues)
Subscriber: cocoon

Key Summary
COCOON-2250 Wrong error message in Element.java (jx:element)
https://issues.apache.org/jira/browse/COCOON-2250
COCOON-2249 XHTMLSerializer uses entity references " and ' which cause JavaScript parse errors
https://issues.apache.org/jira/browse/COCOON-2249
COCOON-2246 HttpRequest should handle encoding in getParameter and getParameterValues in the same way
https://issues.apache.org/jira/browse/COCOON-2246
COCOON-2233 Update archetypes to current trunk artifact versions
https://issues.apache.org/jira/browse/COCOON-2233
COCOON-2222 Add SaxParser configuration properties
https://issues.apache.org/jira/browse/COCOON-2222
COCOON-2216 IncludeCacheManager can not perfom parallel includes
https://issues.apache.org/jira/browse/COCOON-2216
COCOON-2212 jx:attribute does not check name is correct before proceeding
https://issues.apache.org/jira/browse/COCOON-2212
COCOON-2197 Making the cocoon-auth-block acegi-security-sample work
https://issues.apache.org/jira/browse/COCOON-2197
COCOON-2173 AbstractCachingProcessingPipeline: Two requests can deadlock each other
https://issues.apache.org/jira/browse/COCOON-2173
COCOON-2162 [PATCH] Fix for Paginator when accessing out of bounds Pagination page
https://issues.apache.org/jira/browse/COCOON-2162
COCOON-2137 XSD Schemas for CForms Development
https://issues.apache.org/jira/browse/COCOON-2137
COCOON-2114 fix sorting in TraversableGenerator
https://issues.apache.org/jira/browse/COCOON-2114
COCOON-2108 xmodule:flow-attr Does not accept document objects
https://issues.apache.org/jira/browse/COCOON-2108
COCOON-2104 [PATCH] Add base URI fixup support to XIncludeTransformer
https://issues.apache.org/jira/browse/COCOON-2104
COCOON-2100 Retrieving mimeType returned by pipeline executed from Flow
https://issues.apache.org/jira/browse/COCOON-2100
COCOON-2041 WebDAV Returns improper status on PUT
https://issues.apache.org/jira/browse/COCOON-2041
COCOON-2040 Union widget does not work with booleanfield set as case widget
https://issues.apache.org/jira/browse/COCOON-2040
COCOON-2037 New DynamicGroup widget
https://issues.apache.org/jira/browse/COCOON-2037
COCOON-2035 NPE in the sorter of the EnhancedRepeater
https://issues.apache.org/jira/browse/COCOON-2035
COCOON-2032 [PATCH] Sort order in paginated repeater
https://issues.apache.org/jira/browse/COCOON-2032
COCOON-2030 submit-on-change doesn’t work for a multivaluefield with list-type=”checkbox”
https://issues.apache.org/jira/browse/COCOON-2030
COCOON-2018 Use thread context class loader to load custom binding classes
https://issues.apache.org/jira/browse/COCOON-2018
COCOON-2017 More output beautification options for serializers
https://issues.apache.org/jira/browse/COCOON-2017
COCOON-2015 Doctype added twice because root element (html) is inlined
https://issues.apache.org/jira/browse/COCOON-2015
COCOON-2002 HTML transformer only works with latin-1 characters
https://issues.apache.org/jira/browse/COCOON-2002
COCOON-1974 Donating ContextAttributeInputModule
https://issues.apache.org/jira/browse/COCOON-1974
COCOON-1973 CaptchaValidator: allow case-insensitive matching
https://issues.apache.org/jira/browse/COCOON-1973
COCOON-1964 Redirects inside a block called via the servlet protocol fail
https://issues.apache.org/jira/browse/COCOON-1964
COCOON-1963 Add a redirect action to the browser update handler
https://issues.apache.org/jira/browse/COCOON-1963
COCOON-1960 Pipeline errors for “generator/reader already set” should provide more information
https://issues.apache.org/jira/browse/COCOON-1960
COCOON-1949 [PATCH] load flowscript from file into specified Rhino context object
https://issues.apache.org/jira/browse/COCOON-1949
COCOON-1946 [PATCH] - Javaflow Sample errors trying to enhance Javaflow classes and showing cform templates
https://issues.apache.org/jira/browse/COCOON-1946
COCOON-1943 [Patch] Parameters in blocks-protocol URIs get decoded too early
https://issues.apache.org/jira/browse/COCOON-1943
COCOON-1932 [PATCH] correct styling of disabled suggestion lists
https://issues.apache.org/jira/browse/COCOON-1932
COCOON-1929 [PATCH] Reloading classloader in Cocoon 2.2
https://issues.apache.org/jira/browse/COCOON-1929
COCOON-1917 Request Encoding problem: multipart/form vs. url encoded
https://issues.apache.org/jira/browse/COCOON-1917
COCOON-1915 Nullable value with additional String or XMLizable in JavaSelectionList
https://issues.apache.org/jira/browse/COCOON-1915
COCOON-1914 Text as XMLizable in EmptySelectionList
https://issues.apache.org/jira/browse/COCOON-1914
COCOON-1899 [PATCH] Cocoon XML:DB Implementation should not depend on Xindice
https://issues.apache.org/jira/browse/COCOON-1899
COCOON-1898 [PATCH] XPatch support for maven-cocoon-deployer-plugin
https://issues.apache.org/jira/browse/COCOON-1898
COCOON-1893 XML-Binding: Problem creating a new element
https://issues.apache.org/jira/browse/COCOON-1893
COCOON-1877 [PATCH] Pageable Repeater
https://issues.apache.org/jira/browse/COCOON-1877
COCOON-1870 Lucene block does not store attributes when instructed so
https://issues.apache.org/jira/browse/COCOON-1870
COCOON-1846 [PATCH] BooleanField and radio do not send on-value-changed at the rigth time with IE
https://issues.apache.org/jira/browse/COCOON-1846
COCOON-1843 LDAPTransformer: add-entry tag doesn’t work
https://issues.apache.org/jira/browse/COCOON-1843
COCOON-1842 LDAPTransformer: ClassCastException with Binary fields
https://issues.apache.org/jira/browse/COCOON-1842
COCOON-1810 [PATCH] JMSEventMessageListener does not work
https://issues.apache.org/jira/browse/COCOON-1810
COCOON-1807 Workaround for IE Bug in

Written by admin in: cocoon |
Jun
22
2009
--

Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes