[jira] Updated: (OPENJPA-15) EJBQL grammar needs to be updated to relfect JPA specification

2006-08-30 Thread Kevin Sutter (JIRA)
[ http://issues.apache.org/jira/browse/OPENJPA-15?page=all ] Kevin Sutter updated OPENJPA-15: Attachment: (was: openjpa-15.openjpa-kernel.patch) EJBQL grammar needs to be updated to relfect JPA specification

Process for Patch verification

2006-08-30 Thread Kevin Sutter
Hi, I'm looking to start a conversation on how we can coordinate timely verification of patch submissions. As you have probably noticed, Catalina and I have been working on a patch for OPENJPA-15 ( http://issues.apache.org/jira/browse/OPENJPA-15). Granted, we have had a couple of miscues as we

svn issues

2006-08-30 Thread Patrick Linskey
Hey, Frustratingly, things like 'grep -l @since openjpa-*/src | xargs sed ...' don't have quite the intended effect, since that search will find files in the .svn directory. Does anyone know of a clever way to work around this (other than tossing a 'grep -v .svn' into the middle)? I've screwed up

Re: Process for Patch verification

2006-08-30 Thread Marc Prud'hommeaux
On Aug 30, 2006, at 8:56 AM, Eddie O'Neil wrote: Kevin-- Wearing my mentor hat... I say go for it -- if you're confident in your changes, it passes the tests, and does right by the project, this is how community is built. Occasionally, we'll break a few eggs, but this is how everyone

Re: svn issues

2006-08-30 Thread Marc Prud'hommeaux
Sadly, I think the only way to do it is: find openjpa-*/src -path '*/.svn' -prune -o -type f -print | xargs -e grep -l '@since' On Aug 30, 2006, at 9:57 AM, Patrick Linskey wrote: Hey, Frustratingly, things like 'grep -l @since openjpa-*/src | xargs sed ...' don't have quite the

Re: svn issues

2006-08-30 Thread Eddie O'Neil
Something like this might be handy: find . ! ( -path */.svn/* ) -exec sed ... ; -print as it won't descend into .svn directories. Or something that just greps *.java extensions since SVN stores its work files as *.java.svn-work: find . -name *.java -exec sed ... ; -print These have

Re: svn issues

2006-08-30 Thread Marc Prud'hommeaux
Note that there is a proposed patch to grep to address this sort of problem. You can vote for it (registration required) at: http://savannah.gnu.org/bugs/? func=detailitemitem_id=11017#dependencies On Aug 30, 2006, at 10:20 AM, Eddie O'Neil wrote: Something like this might be

RE: svn issues

2006-08-30 Thread Patrick Linskey
Sweet! This is more what I was hoping for. Between now and 2017 when this gets addressed, I guess I'll just create wrapper scripts for grep and egrep. (The find / grep type solutions are easy, but require that I remember to filter out .svn. Often I don't remember that until too late.) -Patrick

RE: version numbers

2006-08-30 Thread Patrick Linskey
Ok, I just checked in an update that changes all of them (except for the ones in the repackage util.concurrent package). I admire the discipline it took to put all those tags in there in the first place. Thanks! Sadly, they're not 100% -- we certainly have added important APIs without

[jira] Resolved: (OPENJPA-15) EJBQL grammar needs to be updated to relfect JPA specification

2006-08-30 Thread Marc Prud'hommeaux (JIRA)
[ http://issues.apache.org/jira/browse/OPENJPA-15?page=all ] Marc Prud'hommeaux resolved OPENJPA-15. --- Resolution: Fixed Applied patch and it passes all our internal tests. I've gone ahead and committed the changes and am marking this issue

Re: Process for Patch verification

2006-08-30 Thread Bill Dudney
Hi Kevin, Sorry I did not realize you were new to the whole thing. I'm not a mentor on this project but I would echo Eddie and say 'go for it'. The community will have your back so even if it blows up you have lots of folks around to help pick up the pieces. The beauty of community! :-)

RE: Creating sandbox branches

2006-08-30 Thread Patrick Linskey
+1. Now, to find the right person -Patrick -- Patrick Linskey BEA Systems, Inc. -Original Message- From: Kevin Sutter [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 30, 2006 2:50 PM To: open-jpa-dev@incubator.apache.org Subject: Re: Creating sandbox branches Still