Thread: [graphl-cvs] graphl build.xml .classpath changelog.txt
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2004-10-04 10:21:17
|
Update of /cvsroot/graphl/graphl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18139 Modified Files: build.xml .classpath changelog.txt Log Message: * added width and height properties to the Node interface, to allow layouters to define a bounding box for nodes. * AbsoluteNodeLayouter will also use bounding box information for maps etc. This is currently only used in imageNodePainter * added DirectedEdgeLayouter for laying out hierarchical and directed graphs like trees. this works nice for rdf schemas et al. * Added ShapeNodePainter to draw labels as java2d shapes (currently predefined: circle, square, cross and X). No label yet. * using JavaBeans/property pages for facet configuration. added a dependency to com.l2fprod package, implementing paroperty sheets - i want to get rid of this again in the future, but i don't have time currently to implement such bullshit that should be in the jdk anyhow * Added a StrokeChooser for defining strokes for node and edgepainters * added a ParseUtils class for parsing colors and strokes from literals * greatly extended default configuration for facets * some documentation updates (javadoc runs without warnings now) Index: changelog.txt =================================================================== RCS file: /cvsroot/graphl/graphl/changelog.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** changelog.txt 23 Aug 2004 16:53:04 -0000 1.11 --- changelog.txt 4 Oct 2004 10:21:05 -0000 1.12 *************** *** 2,6 **** ================== ! 2004-08-23 ### RELEASE 0.0.2 --- 2,6 ---- ================== ! 2004-08-23, f/0: ### RELEASE 0.0.2 Index: build.xml =================================================================== RCS file: /cvsroot/graphl/graphl/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** build.xml 23 Aug 2004 16:53:04 -0000 1.5 --- build.xml 4 Oct 2004 10:21:05 -0000 1.6 *************** *** 43,45 **** --- 43,63 ---- </target> + <target name="javadoc"> + <javadoc + destdir="doc" + access="public" + use="true" + notree="false" + nonavbar="false" + noindex="false" + splitindex="true" + author="true" + version="true" + nodeprecatedlist="false" + nodeprecated="false" + packagenames="org.mediavirus.graphl,org.mediavirus.graphl.interaction,org.mediavirus.graphl.painter,org.mediavirus.graphl.graph,org.mediavirus.graphl.server,org.mediavirus.util,org.mediavirus.graphl.gui,org.mediavirus.graphl.view,org.mediavirus.graphl.layout,org.mediavirus.graphl.selection,org.mediavirus.graphl.vocabulary,org.mediavirus.graphl.graph.rdf" + sourcepath="src" + classpath="lib/servlet-api.jar;lib/rdfapi.jar;bin" + doctitle="graphl API Documentation"/> + </target> </project> \ No newline at end of file Index: .classpath =================================================================== RCS file: /cvsroot/graphl/graphl/.classpath,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** .classpath 23 Jul 2004 08:57:29 -0000 1.5 --- .classpath 4 Oct 2004 10:21:05 -0000 1.6 *************** *** 2,8 **** <classpath> <classpathentry kind="src" path="src"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry sourcepath="/rdfapi/src" kind="lib" path="lib/rdfapi.jar"/> <classpathentry kind="lib" path="lib/servlet-api.jar"/> <classpathentry kind="output" path="bin"/> </classpath> --- 2,10 ---- <classpath> <classpathentry kind="src" path="src"/> <classpathentry sourcepath="/rdfapi/src" kind="lib" path="lib/rdfapi.jar"/> <classpathentry kind="lib" path="lib/servlet-api.jar"/> + <classpathentry sourcepath="C:/Programme/java/l2fprod-common-0.1-dev/src" kind="lib" path="lib/l2fprod-common-sheet.jar"/> + <classpathentry sourcepath="C:/Programme/java/l2fprod-common-0.1-dev/src" kind="lib" path="lib/l2fprod-common-fontchooser.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> </classpath> |
From: Flo L. <fl...@us...> - 2005-12-18 11:11:52
|
Update of /cvsroot/graphl/graphl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2618 Modified Files: build.xml .classpath changelog.txt Log Message: - FEATURE: RXPath landed! you can assign properties of facets through XPath-like expressions based on the currently rendered node - CODE: Remove LabelGenerator classes - this can now done with RXPath - CODE: migrated to JDK 1.5, added class specifiers for all collections (generics) - CODE: added a singleton GraphlRegistry, currently only holding the vocabularyRegistry instance Index: changelog.txt =================================================================== RCS file: /cvsroot/graphl/graphl/changelog.txt,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** changelog.txt 14 Dec 2005 12:45:08 -0000 1.19 --- changelog.txt 18 Dec 2005 11:11:41 -0000 1.20 *************** *** 2,5 **** --- 2,9 ---- ================== + 2005-12-18, f/0: + - FEATURE: RXPath landed! you can assign properties of facets through XPath-like expressions based on the currently rendered node + - CODE: migrated to JDK 1.5, added class specifiers for all collections (generics) + 2005-12-14, f/0: - FEATURE: new command line flag to start "navigator" thread to zoom & pan in the graph Index: build.xml =================================================================== RCS file: /cvsroot/graphl/graphl/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** build.xml 29 Dec 2004 14:31:26 -0000 1.7 --- build.xml 18 Dec 2005 11:11:41 -0000 1.8 *************** *** 58,62 **** nodeprecatedlist="false" nodeprecated="false" ! packagenames="org.mediavirus.graphl,org.mediavirus.graphl.interaction,org.mediavirus.graphl.painter,org.mediavirus.graphl.graph,org.mediavirus.graphl.server,org.mediavirus.util,org.mediavirus.graphl.gui,org.mediavirus.graphl.view,org.mediavirus.graphl.layout,org.mediavirus.graphl.selection,org.mediavirus.graphl.vocabulary,org.mediavirus.graphl.graph.rdf" sourcepath="src" classpath="lib/servlet-api.jar;lib/rdfapi.jar;bin" --- 58,62 ---- nodeprecatedlist="false" nodeprecated="false" ! packagenames="*" sourcepath="src" classpath="lib/servlet-api.jar;lib/rdfapi.jar;bin" Index: .classpath =================================================================== RCS file: /cvsroot/graphl/graphl/.classpath,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** .classpath 4 Oct 2004 10:21:05 -0000 1.6 --- .classpath 18 Dec 2005 11:11:41 -0000 1.7 *************** *** 7,10 **** --- 7,11 ---- <classpathentry sourcepath="C:/Programme/java/l2fprod-common-0.1-dev/src" kind="lib" path="lib/l2fprod-common-fontchooser.jar"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/JXPath"/> <classpathentry kind="output" path="bin"/> </classpath> |