Directory groovy/groovy-core/src/bin/

Directory Created:
2003-09-05 19:13
Total Files:
15
Deleted Files:
0
Lines of Code:
638

Browse with ViewVC

[root]/groovy/groovy-core/src/bin

Lines of Code

groovy/groovy-core/src/bin/ Lines of Code

Developers

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

Most Recent Commits

russel 2007-03-23 21:22

Solaris 10 /bin/sh doesn't understand combining setting and exporting of environment variables.

2 lines of code changed in:

  • groovy/groovy-core/src/bin: groovy (+2 -1)
russel 2007-02-26 19:50

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:

paulk 2007-01-17 06:12

added script.name property definition as per GROOVY-1642 (partial solution only)

4 lines of code changed in:

jez 2007-01-02 16:41

* 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:

mcspanky 2006-12-04 02:39

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:

russel 2006-11-16 18:30

Rearranged startGroovy so that it works on Ubuntu as well as Solaris, Mac OS X, Windows+Cygwin.

194 lines of code changed in:

blackdrag 2006-11-15 10:05

disable setting of TOOLS_JAR to classes.zip on MAC

7 lines of code changed in:

mcspanky 2006-11-13 21:48

Fix a bug for users with space in home path.

2 lines of code changed in:

jbaumann 2006-10-28 16:36

Argh. Removed echo statement used for debugging (2nd try).

0 lines of code changed in:

jbaumann 2006-10-26 13:11

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:

jbaumann 2006-10-08 23:55

Patch for JIRA issue GROOVY-1521:

The startup scripts for Groovy executables have problems on non-Windows systems

10 lines of code changed in:

blackdrag 2006-08-28 13:27

fixed classpath behaviour if CLASSPATH variable is set (see groovy-1045)

14 lines of code changed in:

blackdrag 2005-10-09 12:11

classpath handling fix from Adrian Sampaleanu

2 lines of code changed in:

blackdrag 2005-09-06 11:45

avoid classpath duplicates

7 lines of code changed in:

mcspanky 2005-09-02 01:24

Fixes classpath problem on Cygwin

1 lines of code changed in:

blackdrag 2005-08-30 22:55

fixed a quoting bug

2 lines of code changed in:

blackdrag 2005-08-29 11:49

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:

glaforge 2005-08-15 17:36

Commit test to see if BJ notices CVS changes

0 lines of code changed in:

glaforge 2005-08-15 13:39

Fix to handle multiple elements after -cp

2 lines of code changed in:

  • groovy/groovy-core/src/bin: groovy.bat (+2 -2)
jez 2005-04-05 22:27

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)

Generated by StatSVN 0.3.2-SNAPSHOT