Re: wonder/git question

2013-01-09 Thread Paul Hoadley
Hi Tim, On 09/01/2013, at 5:28 PM, Tim Worman li...@thetimmy.com wrote: For some reason, eGit in Eclipse shows every build.xml file in the Wonder project as changed. Does anyone else experience this that can maybe clue me in on what could be causing modifications to every single

Wonder 6.0.0 is out in the wild!

2013-01-09 Thread Pascal Robert
Hello everyone, Release 6.0.0 (aka The Cleanup Release) have been released in the master branch of Project Wonder! Johann Werner wrote a nice change log on GitHub: https://github.com/projectwonder/wonder/wiki/Changelog-v6 In short, we moved obsolete frameworks and examples to a Archives

Re: Wonder 6.0.0 is out in the wild!

2013-01-09 Thread Stéphan Mertz
Nice job ! For WOStart : . How to use it? . Can it be used with wotaskd ? Le 9 janv. 2013 à 13:52, Pascal Robert prob...@macti.ca a écrit : Hello everyone, Release 6.0.0 (aka The Cleanup Release) have been released in the master branch of Project Wonder! Johann Werner wrote a nice change

Re: Wonder 6.0.0 is out in the wild!

2013-01-09 Thread George Domurot
Nice job! -G On Jan 9, 2013, at 4:52 AM, Pascal Robert prob...@macti.ca wrote: Hello everyone, Release 6.0.0 (aka The Cleanup Release) have been released in the master branch of Project Wonder! Johann Werner wrote a nice change log on GitHub:

Re: wonder/git question

2013-01-09 Thread Tim Worman
On Jan 9, 2013, at 1:31 AM, Paul Hoadley pa...@logicsquad.net wrote: Hi Tim, On 09/01/2013, at 5:28 PM, Tim Worman li...@thetimmy.com wrote: For some reason, eGit in Eclipse shows every build.xml file in the Wonder project as changed. Does anyone else experience this that can maybe

Re: Wonder 6.0.0 is out in the wild!

2013-01-09 Thread Markus Stoll
Nice job ! For WOStart : . How to use it? . Can it be used with wotaskd ? The WOStart can be used instead of the Appname.cmd script under Windows Just copy it into your Appname.woa folder and name it Appname.exe and use it exactly like the cmd script. I never tested this with wotaskd, but I

Re: Why no javadocs?

2013-01-09 Thread Johann Werner
Same now for normal Wonder: http://jenkins.wocommunity.org/job/Wonder/ http://jenkins.wocommunity.org/job/Wonder/lastSuccessfulBuild/artifact/Wonder/dist/Wonder-Documentation.tar.gz Am 07.01.2013 um 13:06 schrieb Johann Werner j...@oyosys.de: Your wish has come true, the Javadocs are now

Re: wonder/git question

2013-01-09 Thread Bastian Triller
egit doesn't know that the build.xml files are symlinks. Java 1.7 doesn't support symlinks. So egit only reads the files content and gets confused. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=354367 Am Mittwoch, den 09.01.2013, 12:04 -0800 schrieb Tim Worman: On Jan 9, 2013, at 1:31 AM,

URL re-writing at the root of the domain

2013-01-09 Thread Paul Hoadley
Hello, I know this topic has been done to death. However, I do have a small variation. While this works great: --- RewriteEngine On RewriteRule ^/$ /Apps/WebObjects/SomeApp.woa/ [PT] RewriteRule ^/SomeApp(.*)$ /Apps/WebObjects/SomeApp.woa$1 [PT,L] ---

Re: URL re-writing at the root of the domain

2013-01-09 Thread George Domurot
This line doesn't look right: RewriteRule ^/(.*)$ /Apps/WebObjects/SomeApp.woa$1 [PT,L] Shouldn't it include a slash before $1? RewriteRule ^/(.*)$ /Apps/WebObjects/SomeApp.woa/$1 [PT,L] I haven't tried it, but it should work. If the URLs then work, but not once you're in the app, then you'll

Re: URL re-writing at the root of the domain

2013-01-09 Thread Paul Hoadley
Hi George, On 10/01/2013, at 3:45 PM, George Domurot masterm...@knuckleheads.net wrote: This line doesn't look right: RewriteRule ^/(.*)$ /Apps/WebObjects/SomeApp.woa$1 [PT,L] Shouldn't it include a slash before $1? RewriteRule ^/(.*)$ /Apps/WebObjects/SomeApp.woa/$1 [PT,L] I haven't