Author | Revisions | Lines of Code | Added Lines of Code | Lines of Code per Change |
---|---|---|---|---|
rinkrank | 34 (69.4%) | 232 (72.0%) | 986 (74.6%) | 6.82 |
vharcq | 4 (8.2%) | -10 (-3.1%) | 29 (2.2%) | -2.50 |
ara_e_w | 3 (6.1%) | 93 (28.9%) | 127 (9.6%) | 31.00 |
stevensa | 2 (4.1%) | -6 (-1.9%) | 11 (0.8%) | -3.00 |
pilhuhn | 2 (4.1%) | -3 (-0.9%) | 5 (0.4%) | -1.50 |
topping | 1 (2.0%) | 15 (4.7%) | 15 (1.1%) | 15.00 |
pazu | 1 (2.0%) | 1 (0.3%) | 1 (0.1%) | 1.00 |
ko5tik | 1 (2.0%) | 0 (0.0%) | 145 (11.0%) | 0.00 |
dimc | 1 (2.0%) | 0 (0.0%) | 3 (0.2%) | 0.00 |
Date | Author | File/Message |
---|---|---|
02/10/04 00:07 | stevensa |
Remove deprecated methods. We already have to roll the version number more
than a bugfix release, due to the removed (deprecated) collection classes, so we
may as well remove these too.
(1 Files changed,
10 Lines changed)
src/xjavadoc/ant/XJavadocTask.java 1.34
(+10
-16)
|
10/07/04 18:02 | pilhuhn |
Don't use deprecated methods / classes.
(1 Files changed,
4 Lines changed)
|
10/07/04 15:07 | pilhuhn |
Remove unused imports.
(1 Files changed,
1 Lines changed)
|
30/08/03 07:23 | topping |
Patch submitted by Takashi Okamoto for alternate source file encodings
(1 Files changed,
15 Lines changed)
|
10/06/03 14:25 | rinkrank |
Removed email address for Aslak
(1 Files changed,
1 Lines changed)
|
05/05/03 00:20 | rinkrank |
o Added tag discovery via BeanInfo
o Set version to 1.0.1-SNAPSHOT
(1 Files changed,
3 Lines changed)
|
29/04/03 20:12 | rinkrank |
o XJavaDoc is no longer a singleton
o Applied XJD-24
(2 Files changed,
20 Lines changed)
|
04/03/03 23:49 | rinkrank |
- Added logic to discover whether a method is a bean property accessor/mutator, as well as getting the property name.
- Removed dummy javadocs
(1 Files changed,
1 Lines changed)
|
24/02/03 13:31 | rinkrank |
- Fixed bug XDT-289
- Changed copyright years
(2 Files changed,
31 Lines changed)
|
10/02/03 00:19 | rinkrank |
o Added tag validation mechanism.
o Added line number logic so a tag knows its file and line number.
The tag validation mechanism has to be switched on explicitly, so for XDoclet 1.2, there is no tag validation. The tag validation will currently only be used by XDoclet 2.
The way it currently works is that if an unknown tag is encountered (except standard java tags), an UnknownTagException will be thrown. Tags can be registered to avoid this, and this is what the plugins should do.
(1 Files changed,
18 Lines changed)
|
04/11/02 23:16 | rinkrank |
Doc change for XJD-7.
(1 Files changed,
1 Lines changed)
|
04/11/02 22:51 | rinkrank |
Applied improvement XJD-7 from Ludovic Claude. Thanks!
(1 Files changed,
141 Lines changed)
src/xjavadoc/ant/XJavadocFilter.java 1.1
added 141
|
30/10/02 02:02 | rinkrank |
-Added CodeUnit
-Simplified XJavadoc API
-Updated XDoclet and XDoclet GUI to fit changes
-Fixed the home inheritance removal problems (I hope)
-XJavadoc is using commons predicate in stead of homegrown filters
-Removed obsolete classes
-Upgraded xdoclegui IDEA plugin to work with Ariadna 655
(1 Files changed,
11 Lines changed)
|
03/10/02 21:16 | dimc |
Renamed old SourceSet to FileSourceSet and extracted new interface to
replace the previous SourceSet class. Changed tests to use new
FileSourceSet.
(1 Files changed,
3 Lines changed)
|
09/09/02 05:23 | pazu |
Added dereferenceProperties() support directly to
the xjavadoc core. Now ant properties will
*always* be dereferenced.
All tests are green :)
(1 Files changed,
1 Lines changed)
|
04/08/02 21:48 | rinkrank |
-Refactored common code in xjavadoc grammar.
-Removed incorrect code blocks in LOOKAHEAD blocks
-All xjavadoc tests are green again
-Refactored getQualifiedName from XProgramElement down to XClass.
-Better (but still not good) task/subtask docs
-Switched back to standard Anakia task (to make GUMP happy)
-No longer throw X on duplicate classes. Just warn (to make GUMP happy)
-Misc other updates
(1 Files changed,
1 Lines changed)
|
29/07/02 00:54 | rinkrank |
-Refactored xjavadoc to use java.util.Collection instead of arrays
-Added typesafe iterators
-Added supermethod support to xjavadoc
-Various bugfixes
(1 Files changed,
2 Lines changed)
|
25/07/02 22:47 | ara_e_w |
- build goes to the end
- no memory leaks any more
- small optimizations
- small fix to an orphan property in TemplateSubTask
(1 Files changed,
2 Lines changed)
|
20/06/02 20:57 | rinkrank |
Started on smarter qualify() and optimised by excluding loading of classes in binary classes' fields and methods.
(1 Files changed,
2 Lines changed)
|
12/06/02 08:46 | vharcq |
Bug 548610 : remove 'sourcepath' possible usage from xjavadoc and report a message to use 'fileset' instead
(1 Files changed,
20 Lines changed)
src/xjavadoc/ant/XJavadocTask.java 1.19
(+20
-36)
|