svn commit: r178611 - /struts/core/trunk/doc/announce.xml

2005-05-25 Thread niallp
Author: niallp Date: Wed May 25 23:40:46 2005 New Revision: 178611 URL: http://svn.apache.org/viewcvs?rev=178611&view=rev Log: Update announcement page for Struts 1.2.7 Modified: struts/core/trunk/doc/announce.xml Modified: struts/core/trunk/doc/announce.xml URL: http://svn.apache.org/viewc

svn commit: r178600 - in /struts/core/trunk/doc: acquiring.xml download.xml

2005-05-25 Thread niallp
Author: niallp Date: Wed May 25 22:59:14 2005 New Revision: 178600 URL: http://svn.apache.org/viewcvs?rev=178600&view=rev Log: Update Acquiring/Download for Struts 1.2.7 Modified: struts/core/trunk/doc/acquiring.xml struts/core/trunk/doc/download.xml Modified: struts/core/trunk/doc/acqui

svn commit: r178595 [2/2] - /struts/core/trunk/doc/userGuide/release-notes-1.2.7.xml /struts/core/trunk/doc/userGuide/release-notes.xml

2005-05-25 Thread niallp
Modified: struts/core/trunk/doc/userGuide/release-notes.xml URL: http://svn.apache.org/viewcvs/struts/core/trunk/doc/userGuide/release-notes.xml?rev=178595&r1=178594&r2=178595&view=diff == --- struts/core/trunk/doc/userGui

svn commit: r178595 [1/2] - /struts/core/trunk/doc/userGuide/release-notes-1.2.7.xml /struts/core/trunk/doc/userGuide/release-notes.xml

2005-05-25 Thread niallp
Author: niallp Date: Wed May 25 22:47:48 2005 New Revision: 178595 URL: http://svn.apache.org/viewcvs?rev=178595&view=rev Log: Copy Release Notes to current branch Added: struts/core/trunk/doc/userGuide/release-notes-1.2.7.xml (with props) Modified: struts/core/trunk/doc/userGuide/relea

Re: svn commit: r178550 - in /struts/core/trunk/src: share/org/apache/struts/config/ActionConfig.java share/org/apache/struts/config/BaseConfig.java share/org/apache/struts/config/FormBeanConfig.java test/org/apache/struts/config/TestActionConfig.java test/org/apache/struts/config/TestFormBeanConfig.java

2005-05-25 Thread Riyaz Mansoor
just a thought. ie, not expose the "properties" object (as it is) by the getProperties,setProperties methods. by my last viewing of the Config classes, only ActionConfig uses "properties" and needs to change for this - not much. get/setProperties can be replaced by void inheritProperties(c

Re: [Shale] Questions and suggestion to Clay

2005-05-25 Thread gvanmatre
Manfred, >> A simpler solution might be to let an extending meta component or element >> override the component type. This way we could morph a outputText into an >> inputText. >> >> >> >> >> >> This would give us the same flexibility but still make sure that the meta >> component is associated

svn commit: r178572 - /struts/build/trunk/KEYS

2005-05-25 Thread niallp
Author: niallp Date: Wed May 25 20:45:56 2005 New Revision: 178572 URL: http://svn.apache.org/viewcvs?rev=178572&view=rev Log: Add my public key Modified: struts/build/trunk/KEYS Modified: struts/build/trunk/KEYS URL: http://svn.apache.org/viewcvs/struts/build/trunk/KEYS?rev=178572&r1=17857

DO NOT REPLY [Bug 34849] - Expression Language Field Validator

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 33202] - DispatchChainAction needs review

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

commons-beanutils needs maintainers

2005-05-25 Thread Simon Kitching
Hi All, The struts project is one of the main users of commons-beanutils library, and the original source of the code. However there doesn't seem to be anyone maintaining commons-beanutils any more, and the bugzilla list is now up to 88 items. I'm willing to spend some time on this, and James Ca

Re: copy properties for inheritance (Re: svn commit: r178550)

2005-05-25 Thread Hubert Rabago
On 5/25/05, Joe Germuska <[EMAIL PROTECTED]> wrote: > I was wondering about this: > > > BeanUtils.copyProperties(copy, baseHandler); > > this.addExceptionConfig(copy); > >- > >+copy.setProperties(baseHandler.getProperties()); > >+ > > doesn't the

[Struts Wiki] Update of "StrutsRelease127" by MartinCooper

2005-05-25 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by MartinCooper: http://wiki.apache.org/struts/StrutsRelease127 The comment on the change is: New Bugzilla version added. --

[Struts Wiki] Update of "StrutsRelease127" by NiallPemberton

2005-05-25 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by NiallPemberton: http://wiki.apache.org/struts/StrutsRelease127 The comment on the change is: Update results of quality vote -

[RESULT] [VOTE] Struts 1.2.7 Quality

2005-05-25 Thread Niall Pemberton
Its been 72 hours since the vote on the quality of Struts 1.2.7 was posted: http://www.mail-archive.com/dev%40struts.apache.org/msg09214.html The following votes were received:: PMC Member Don Brown voted for "GA" quality PMC Member James Mitchell voted for "GA" quality PMC Member Niall Pemberto

copy properties for inheritance (Re: svn commit: r178550)

2005-05-25 Thread Joe Germuska
I was wondering about this: BeanUtils.copyProperties(copy, baseHandler); this.addExceptionConfig(copy); - +copy.setProperties(baseHandler.getProperties()); + doesn't the strategy you implemented clobber properties which are set on the extendi

svn commit: r178550 - in /struts/core/trunk/src: share/org/apache/struts/config/ActionConfig.java share/org/apache/struts/config/BaseConfig.java share/org/apache/struts/config/FormBeanConfig.java test/org/apache/struts/config/TestActionConfig.java test/org/apache/struts/config/TestFormBeanConfig.java

2005-05-25 Thread hrabago
Author: hrabago Date: Wed May 25 16:35:00 2005 New Revision: 178550 URL: http://svn.apache.org/viewcvs?rev=178550&view=rev Log: Copy arbitrary properties of inherited form bean properties, action mapping forwards and exception handlers. Modified: struts/core/trunk/src/share/org/apache/struts

Jdbc2

2005-05-25 Thread jeff ort
I am noticing that the Ant build scripts reference an optional jdbc20ext.jar file, but the Maven build process does not. I was wondering if there was a reason why this was not used in the Maven build process? - To unsubscribe,

DO NOT REPLY [Bug 35071] New: - Email validation fails for top level domains > 3 chars

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: [Shale] Questions and suggestion to Clay

2005-05-25 Thread Manfred Klug
>> - There is a problem with properties. A component is possibly based >> on the generic attribute map and has no setter for a property. e.g. >> functionName property in ValidatorScript. >> >> At the moment Clay has no knowledge about such attributes and it's >> impossible t

DO NOT REPLY [Bug 35069] New: - [shale] Dialog should allow flexible entry points

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35068] New: - [shale] Position (inner class) should implement Serializable

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35066] New: - [shale] Serious issue with dialog state

2005-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu