[root]/groovy/groovy-core/src/bin
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 126 (100.0%) | 2220 (100.0%) | 17.6 |
| jstrachan | 32 (25.4%) | 800 (36.0%) | 25.0 |
| bob | 8 (6.3%) | 505 (22.7%) | 63.1 |
| blackdrag | 28 (22.2%) | 386 (17.4%) | 13.7 |
| russel | 9 (7.1%) | 198 (8.9%) | 22.0 |
| glaforge | 21 (16.7%) | 192 (8.6%) | 9.1 |
| jbaumann | 8 (6.3%) | 79 (3.6%) | 9.8 |
| jez | 14 (11.1%) | 48 (2.2%) | 3.4 |
| mcspanky | 3 (2.4%) | 6 (0.3%) | 2.0 |
| paulk | 2 (1.6%) | 4 (0.2%) | 2.0 |
| yuri | 1 (0.8%) | 2 (0.1%) | 2.0 |
Solaris 10 /bin/sh doesn't understand combining setting and exporting of environment variables.
2 lines of code changed in:
Removed the need for the groovy-starter.jar, creating a build edits the startGroovy scripts to use the version of the groovy jar jsut created.
2 lines of code changed in:
added script.name property definition as per GROOVY-1642 (partial solution only)
4 lines of code changed in:
* deprecated the range operator '...' , all groovy code should now use '..<' instead
* added initial java2groovy tool, use at your own risk
Enjoy
Jez.
35 lines of code changed in:
Fix handling of CLASSPATH variable: now works exactly
like --classpath command line argument. Also leave
STARTER_CLASSPATH as just groovy-starter.jar, and make
it always the first element in the classpath.
3 lines of code changed in:
Rearranged startGroovy so that it works on Ubuntu as well as Solaris, Mac OS X, Windows+Cygwin.
194 lines of code changed in:
disable setting of TOOLS_JAR to classes.zip on MAC
7 lines of code changed in:
Fix a bug for users with space in home path.
2 lines of code changed in:
Argh. Removed echo statement used for debugging (2nd try).
0 lines of code changed in:
Cygwin-specific changes to fix the space-in-path problem
Added callback hooks for ~/.groovy/startup (all unix flavors)
and for %PROFILE%/.groovy/preinit.bat, init.bat, postinit.bat
69 lines of code changed in:
Patch for JIRA issue GROOVY-1521:
The startup scripts for Groovy executables have problems on non-Windows systems
10 lines of code changed in:
fixed classpath behaviour if CLASSPATH variable is set (see groovy-1045)
14 lines of code changed in:
classpath handling fix from Adrian Sampaleanu
2 lines of code changed in:
avoid classpath duplicates
7 lines of code changed in:
Fixes classpath problem on Cygwin
1 lines of code changed in:
fixed a quoting bug
2 lines of code changed in:
this patch removes the classworlds dependency from groovy. All command line programs will now use RootLoader instead. It's now possile to have a single conf file for all groovy commands. Each command can have an -cp or -classpath argument. This path will not be part of the java.classpath, it will be part of the classpath of the RootLoader class. The commands are now only wrappers for the centralized startGroovy commands. These are not for direct usage.
327 lines of code changed in:
Commit test to see if BJ notices CVS changes
0 lines of code changed in:
Fix to handle multiple elements after -cp
2 lines of code changed in:
For now I have made an amendment to the latest CVSHEAD of classworlds,
this allows us to run groovyConsole etc
I have included the patch inside the amended jar
Index: Launcher.java
===================================================================
RCS file: /scm/classworlds/classworlds/src/java/main/org/codehaus/classworlds/Launcher.java,v
retrieving revision 1.6
diff -c -r1.6 Launcher.java
*** Launcher.java 2 Nov 2004 18:41:08 -0000 1.6
--- Launcher.java 5 Apr 2005 08:25:28 -0000
***************
*** 372,384 ****
{
try
{
! int exitCode = mainWithExitCode( args );
! System.exit( exitCode );
}
catch ( Exception e )
{
e.printStackTrace();
! System.exit( 100 );
}
}
--- 372,383 ----
{
try
{
! mainWithExitCode( args );
}
catch ( Exception e )
{
e.printStackTrace();
! System.exit(100);
}
}
cheers
jez.
10 lines of code changed in:
(22 more)