Date | Author | File/Message |
---|---|---|
30/10/02 22:36 | rinkrank |
Fixed XJD-4. Unicode is now supported in XJavadoc (phew!). Building xjavadoc or xdoclet with -Dxjavadoc.unicode=true will now generate xjavadoc.unicode.jar (which is a bit slower than the normal xjavadoc.jar). Without this option, everything works as before. For the release, remember to build xjavadoc both with and without this option, so both jars go into the distro. People who want unicode support will just have to remove xjavadoc.jar (or make sure xjavadoc-unicode.jar comes earlier in the classpath). Warning messages from javacc are also gone now (except the unicode warning when generating the regular xjavadoc).
Aslak
(8 Files changed,
114 Lines changed)
test/Unicode.java 1.1
added 3
build.xml 1.44
(+57
-22)
build.properties 1.2
(+1
-6)
src/xjavadoc/XJavaDoc.java 1.62
(+20
-0)
javacc/Java1.2-b.jjt 1.35
(+0
-10)
src/xjavadoc/XJavaDocTest.java 1.40
(+26
-0)
etc/xjavadoctest.j 1.11
(+1
-1)
readme.txt 1.5
(+6
-1)
|
30/10/02 17:25 | rinkrank |
Forgot to add this yesterday.
(1 Files changed,
262 Lines changed)
|
30/10/02 02:06 | rinkrank |
moved to xdoclet2
(1 Files changed,
0 Lines changed)
README_XDOCLET_2_0.txt 1.3
removed
|
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
(38 Files changed,
1067 Lines changed)
src/xjavadoc/Filter.java 1.4
removed
src/xjavadoc/XTagTest.java 1.9
(+4
-9)
src/xjavadoc/XClass.java 1.33
(+8
-7)
test/codeunit/CodeUnit1.java 1.2
added 22
src/xjavadoc/Named.java 1.2
added 21
src/xjavadoc/XJavaDoc.java 1.61
(+209
-170)
src/xjavadoc/XJavaDocTest.java 1.39
(+27
-38)
javacc/Java1.2-b.jjt 1.34
(+87
-24)
src/xjavadoc/XTag.java 1.16
(+6
-0)
src/xjavadoc/Util.java 1.12
(+35
-0)
src/xjavadoc/SourceClass.java 1.49
(+116
-64)
src/xjavadoc/JavaParser.java 1.4
(+5
-7)
src/xjavadoc/NodePrinter.java 1.4
(+10
-16)
src/xjavadoc/MethodImpl.java 1.20
(+19
-3)
src/xjavadoc/XField.java 1.7
(+1
-27)
test/codeunit/CodeUnit2.java 1.2
added 39
src/xjavadoc/XTagFactory.java 1.5
(+35
-65)
src/xjavadoc/XParameter.java 1.12
(+1
-38)
src/xjavadoc/AbstractClass.java 1.53
(+170
-298)
build.xml 1.43
(+1
-1)
src/xjavadoc/XDoc.java 1.51
(+15
-58)
etc/xjavadoctest.j 1.10
(+3
-11)
src/xjavadoc/SimpleNode.java 1.10
(+39
-54)
src/xjavadoc/XMethod.java 1.11
(+5
-11)
src/xjavadoc/DefaultXTag.java 1.22
(+37
-48)
|
23/10/02 23:38 | rinkrank |
Fix for XJD-6
(1 Files changed,
3 Lines changed)
javacc/Java1.2-b.jjt 1.33
(+3
-0)
|
21/10/02 03:39 | d_jencks |
Enable field tag processing to expand class names to fully qualified class names. Use this feature in jdo tags.
(1 Files changed,
2 Lines changed)
src/xjavadoc/XClass.java 1.32
(+2
-1)
|
03/10/02 21:47 | ara_e_w |
*** empty log message ***
(1 Files changed,
93 Lines changed)
javacc/Java1.2-b.jjt 1.32
(+93
-98)
|
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.
(9 Files changed,
506 Lines changed)
src/xjavadoc/SourceSet.java 1.16
(+16
-249)
etc/xjavadoctest.j 1.9
(+2
-1)
src/xjavadoc/XJavaDoc.java 1.60
(+60
-18)
src/xjavadoc/SourceClass.java 1.48
(+26
-12)
|
30/09/02 11:39 | pathoss |
Updated to Commons Logging 1.0.2.
(1 Files changed,
0 Lines changed)
lib/commons-logging.jar 1.2
(+0
-0)
|
27/09/02 23:47 | stevensa |
Build proper distribution files instead of just xjavadoc.jar.
Move properties into a separate file.
Eliminate about 1000 javadoc warnings during build of javadocs target.
(2 Files changed,
50 Lines changed)
build.xml 1.42
(+43
-40)
build.properties 1.1
added
|
27/09/02 23:44 | stevensa |
Eliminate a bunch of javadoc warnings during build
(9 Files changed,
32 Lines changed)
src/xjavadoc/XClass.java 1.31
(+2
-1)
src/xjavadoc/XDoc.java 1.50
(+8
-15)
src/xjavadoc/SourceSet.java 1.15
(+7
-6)
src/xjavadoc/Primitive.java 1.14
(+3
-3)
|
26/09/02 22:21 | stevensa |
Update version number.
(1 Files changed,
1 Lines changed)
build.xml 1.41
(+1
-1)
|
23/09/02 03:24 | pazu |
Modified XDoc.getFirstSentence() to comply with
the JLS section 18.3, where the following is said
about the first sentence:
"This sentence ends at the first period that is followed by a blank, tab, or line terminator, or at the first tagline."
Also, aded an unit test to pick this up.
(3 Files changed,
45 Lines changed)
src/xjavadoc/XDoc.java 1.49
(+28
-4)
test/Hello.java 1.20
(+8
-0)
|
11/09/02 23:12 | rinkrank |
renamed test method
(1 Files changed,
1 Lines changed)
|
11/09/02 23:03 | rinkrank |
Trying to pinpoint Curt Johnson's problem
(3 Files changed,
4 Lines changed)
build.xml 1.40
(+1
-1)
test/Hello.java 1.19
(+1
-1)
|
11/09/02 00:57 | rinkrank |
-New getSourceClasses(boolean,boolean) method that will return inner classes too. Needed for XDoclet's task doc generation
-Fixed package and naming of inner classes
-Removed Pool. Not used anymore
(4 Files changed,
80 Lines changed)
src/xjavadoc/AbstractClass.java 1.52
(+15
-10)
src/xjavadoc/XJavaDoc.java 1.59
(+63
-18)
|
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 :)
(5 Files changed,
165 Lines changed)
test/Hello.java 1.18
(+3
-0)
src/xjavadoc/XJavaDoc.java 1.58
(+139
-0)
src/xjavadoc/XJavaDocTest.java 1.34
(+18
-0)
|
07/09/02 22:17 | ara_e_w |
- refactored the ejb-ref stuff and made it a separate xdt file (which is merged in web.xml subtask)
- web.xml subtask now merges ejb-ref.xdt file which means you can *also* use ejb:ejb-ref and ejb:external-ref tags to setup ejb refrences
- some cleanup, mostly getting rid of orphan references to logoing class (xjavadoc doesn't depend on commons-logging anymore)
- checked in Ed Ward's websphere web bnd/ext templates+subtask, plus some changes to it and the way the old ejb-bnd handles ejb-refs. It uses ejb-ref/ejb-external-ref's jndi-name parameter which we discussed recently and will be the consolidated format of the jndi mapping for ejb-ref/resource-ref tags. docs will be updated :-)
(4 Files changed,
13 Lines changed)
src/xjavadoc/XJavaDoc.java 1.57
(+13
-20)
|
03/09/02 18:50 | ko5tik |
added safeguard to not to write unwritable classes - needed by GUI
to avoid trashing classes which had parse errors
(1 Files changed,
4 Lines changed)
|
02/09/02 18:45 | ko5tik |
fixed tag parameter removal problem in GUI - DefaultXTag
removed wrong key from attributeNames hash
Also corrected xtags.xml for ejb tags
(1 Files changed,
1 Lines changed)
|