Ant Developers: costin

Login name:
costin
Total Commits:
251 (0.4%)
Lines of Code:
14414 (1.6%)
Most Recent Commit:
2004-03-13 08:29

Activity by Clock Time

Activity by Hour of Day for costin

Activity by Day of Week for costin

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 251 (100.0%) 14414 (100.0%) 57.4
proposal/sandbox/embed/ 67 (26.7%) 2632 (18.3%) 39.2
proposal/embed/src/java/org/apache/tools/ant/ 24 (9.6%) 2473 (17.2%) 103.0
src/main/org/apache/tools/ant/ 43 (17.1%) 2280 (15.8%) 53.0
src/main/org/apache/tools/ant/helper/ 11 (4.4%) 2231 (15.5%) 202.8
proposal/embed/src/java/org/apache/tools/ant/helper/ 10 (4.0%) 1483 (10.3%) 148.3
proposal/embed/src/java/org/apache/tools/ant/taskdefs/ 10 (4.0%) 999 (6.9%) 99.9
proposal/embed/src/java/org/apache/tools/ant/taskdefs/optional/ 21 (8.4%) 891 (6.2%) 42.4
src/main/org/apache/tools/ant/taskdefs/ 21 (8.4%) 674 (4.7%) 32.0
proposal/embed/ 18 (7.2%) 280 (1.9%) 15.5
src/main/org/apache/tools/ant/listener/ 1 (0.4%) 173 (1.2%) 173.0
src/main/org/apache/tools/ant/util/ 1 (0.4%) 114 (0.8%) 114.0
src/main/org/apache/tools/ant/types/ 2 (0.8%) 81 (0.6%) 40.5
/ 5 (2.0%) 36 (0.2%) 7.2
src/etc/testcases/taskdefs/ 4 (1.6%) 24 (0.2%) 6.0
src/script/ 2 (0.8%) 16 (0.1%) 8.0
src/testcases/org/apache/tools/ant/taskdefs/optional/ 1 (0.4%) 11 (0.1%) 11.0
src/main/org/apache/tools/ant/taskdefs/compilers/ 1 (0.4%) 6 (0.0%) 6.0
src/testcases/org/apache/tools/ant/taskdefs/ 1 (0.4%) 4 (0.0%) 4.0
src/testcases/org/apache/tools/ant/ 1 (0.4%) 3 (0.0%) 3.0
src/testcases/org/apache/tools/ant/util/ 1 (0.4%) 1 (0.0%) 1.0
src/etc/ 1 (0.4%) 1 (0.0%) 1.0
proposal/embed/src/java/META-INF/services/ 1 (0.4%) 1 (0.0%) 1.0
proposal/embed/src/java/org/apache/tools/ant/types/ 2 (0.8%) 0 (0.0%) 0.0
proposal/embed/src/java/org/apache/tools/ant/tasks/optional/ 2 (0.8%) 0 (0.0%) 0.0

Activity of costin

Most Recent Commits

costin 2004-03-13 08:29

Removing my name



PR:

Obtained from:

Submitted by:

Reviewed by:

0 lines of code changed in:

costin 2003-05-05 13:59

Last part of component helper merge ( including the fix contains -> containsKey for the test case )



PR:

Obtained from:

Submitted by:

Reviewed by:

16 lines of code changed in:

costin 2003-05-05 02:20

ComponentHelper has been checked in for some time - and I don't know

any -1 or major complain.



This removes the duplicated code and switches the component creation

to component helper.



I used it in my workspace for a long time without problem - and the gump

seems to work just like before.

14 lines of code changed in:

costin 2003-05-05 02:17

Remove one method - it wasn't used, and it seems it's not powerfull enough for

all cases discussed. The method that takes UnknownElement, ns, tag should

be able to cover everything ( by having access to UE you get access to parent

and all the tree - so any kind of policy can be implemented )



Of course - nothing calls this method yet. Switching UnknwonElement and the

normal component creation is easy - but there are many pieces of code that

call the old method.

24 lines of code changed in:

costin 2003-05-03 14:30

Plug the namespace uri. One way or another - we'll need it.



Also fix the qname - we need to use the localname.



Originally used qname to avoid breaking build files that used : ( they still

needed to declare a namespace for that previx - otherwise SAX would complain ).

( not sure about the last part - I think some parsers, when validation is off, will

allow : to be used and pass whatever was used as qname ).

24 lines of code changed in:

costin 2003-05-03 06:27

The ctor takes Project as param.



PR:

Obtained from:

Submitted by:

Reviewed by:

1 lines of code changed in:

costin 2003-05-03 05:59

Update with the changes in Project.



This makes ComponentHelper the almost exact duplication of the task creation

code in Project.





PR:

Obtained from:

Submitted by:

Reviewed by:

12 lines of code changed in:

costin 2003-04-10 19:14

Patch from Lo??c P??ron <loic.peron@bigfoot.com> to compile against ant153

5 lines of code changed in:

costin 2003-01-08 04:35

Few changes:

- implement the BuildLogger - so it can be used with -logger



- few hacks/changes to support logging messages to stdout/stderr without

going to infinite loop. The trick is to create the logger with stdout

beeing the "real" one. Just to be sure it also logs with stdout set to

the real one. This could be done more cleanely probably - with some

changes in core.



- less verbosity ( task started/stoped doesn't need info, etc ).



- the log category is based on the real task name, combine with the

target. That means you can arbitrarily enable debug on tasks and

to tasks that are in particular target.







PR:

Obtained from:

Submitted by:

Reviewed by:

173 lines of code changed in:

costin 2003-01-06 16:00

Warn of duplicated project name only if importing.



There are normal cases ( antcall) where the same build file is parsed many times

( this could be avoided now - as an optimization ).

It is a problem only in import, because of the target conflict resolution.

( targets are qualified with the project name )

2 lines of code changed in:

costin 2003-01-04 16:36

Cut&paste of all code related to task/types from Project.



This is _not_ an antlib, just a mechansim to make the task/type

management pluggable and simplify Project ( which will just delegate

for backward compat. ).



Please review - and -1 ( or just remove/change ) if you think this

is bad.



The actual details of the plugin mechanisms are not perfect -

we need to settle on them before 1.6 is released ( same for PropertyHelper).



PR:

Obtained from:

Submitted by:

Reviewed by:

662 lines of code changed in:

costin 2002-12-31 22:07

Ant is reusing the same helper



PR:

Obtained from:

Submitted by:

Reviewed by:

1 lines of code changed in:

costin 2002-12-31 17:36

Remove the debug statement.



PR:

Obtained from:

Submitted by:

Reviewed by:

1 lines of code changed in:

costin 2002-12-31 17:36

Ant will try to copy all inheritedReferences. Some may not exist.

Display a warning.



I don't understand very well the code - but we take the name from

"references" ( which is specified by the user ), and assume that

all of them exist. For some reason that's not allways true.

6 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: Ant.java (+6 -1)
costin 2002-12-31 17:33

Added back the import property.

Added a small message to allow debugging of duplicated project names.





PR:

Obtained from:

Submitted by:

Reviewed by:

30 lines of code changed in:

costin 2002-12-31 15:49

Extra check for null.



Input is calling setNewProperty - but if defaultValue and value are null

we'll get NPE



PR:

Obtained from:

Submitted by:

Reviewed by:

3 lines of code changed in:

costin 2002-12-31 15:33

Weird. UE didn't seem to call setProject on the task. That seems to be

the cause of the NPE.



PR:

Obtained from:

Submitted by:

Reviewed by:

1 lines of code changed in:

costin 2002-12-30 15:36

Fix getParent() ( cut&paste from ProjectHelperImpl )

2 lines of code changed in:

costin 2002-12-30 06:11

Update with the current name generation schema.



There is no standard for how jsp generates names - and jasper

changes from time to time :-)



PR:

Obtained from:

Submitted by:

Reviewed by:

11 lines of code changed in:

  • src/testcases/org/apache/tools/ant/taskdefs/optional: JspcTest.java (+11 -8)
costin 2002-12-30 06:10

Finally fix the jspc test failure.



This is just the first round, it can be improved - not sure what's

the best way to deal with classpath specific issues in path.



The problem is that CLASSPATH ( as given in the system property,

and added in concatSystemPath ) may contain relative paths,

and they are relative to user.dir, not the project basedir.



Since gump is using relative paths, the launched java didn't find

the classes it needed, returning the strange -1 error.



Of course, the test suite could be more informative too :-)



PR:

Obtained from:

Submitted by:

Reviewed by:

25 lines of code changed in:

  • src/main/org/apache/tools/ant/types: Path.java (+25 -7)

(131 more)

Generated by StatSVN 0.3.2-SNAPSHOT