Update of /cvsroot/graphl/graphl
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17343
Modified Files:
.cvsignore build.xml todo.txt .project changelog.txt
Added Files:
.tomcatplugin
Log Message:
a lot of changes done a long time ago... changelog has to be updated another time :(
Index: .cvsignore
===================================================================
RCS file: /cvsroot/graphl/graphl/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** .cvsignore 1 Jul 2004 18:18:42 -0000 1.4
--- .cvsignore 8 Jun 2006 13:14:58 -0000 1.5
***************
*** 3,4 ****
--- 3,5 ----
related
.cdtproject
+ work
Index: .project
===================================================================
RCS file: /cvsroot/graphl/graphl/.project,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** .project 17 Aug 2005 15:52:53 -0000 1.3
--- .project 8 Jun 2006 13:14:58 -0000 1.4
***************
*** 28,31 ****
--- 28,32 ----
<nature>net.sourceforge.metrics.nature</nature>
<nature>com.omondo.uml.std.Nature</nature>
+ <nature>com.sysdeo.eclipse.tomcat.tomcatnature</nature>
</natures>
</projectDescription>
Index: todo.txt
===================================================================
RCS file: /cvsroot/graphl/graphl/todo.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** todo.txt 5 Sep 2005 15:52:25 -0000 1.1
--- todo.txt 8 Jun 2006 13:14:58 -0000 1.2
***************
*** 4,8 ****
- performance optimization session
- refactor into NodeView, EdgeView, GraphView (= FilteredGraph + GraphlPane features ?)
- - label genaration has to be solved properly
- RDF stylesheets (property based layout)?
\ No newline at end of file
--- 4,7 ----
Index: build.xml
===================================================================
RCS file: /cvsroot/graphl/graphl/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** build.xml 18 Dec 2005 11:11:41 -0000 1.8
--- build.xml 8 Jun 2006 13:14:58 -0000 1.9
***************
*** 13,16 ****
--- 13,17 ----
<fileset file="lib/l2fprod-common-sheet.jar"/>
<fileset file="lib/l2fprod-common-fontchooser.jar"/>
+ <fileset file="lib/commons-jxpath-1.2.jar"/>
</copy>
<copy todir="web/WEB-INF/classes"><fileset dir="bin"/></copy>
***************
*** 60,64 ****
packagenames="*"
sourcepath="src"
! classpath="lib/servlet-api.jar;lib/rdfapi.jar;bin"
doctitle="graphl API Documentation"/>
</target>
--- 61,65 ----
packagenames="*"
sourcepath="src"
! classpath="lib/servlet-api.jar;lib/rdfapi.jar;commons-jxpath-1.2.jar;bin"
doctitle="graphl API Documentation"/>
</target>
Index: changelog.txt
===================================================================
RCS file: /cvsroot/graphl/graphl/changelog.txt,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** changelog.txt 18 Dec 2005 11:13:25 -0000 1.21
--- changelog.txt 8 Jun 2006 13:14:58 -0000 1.22
***************
*** 2,5 ****
--- 2,15 ----
==================
+ 2005-12-25, f/0:
+ - FEATURE: migrated a lot of stuff to applet, e.g. periodical reload
+ - FEATURE: find as you type selects node based on their label
+ - FEATURE: reloading a graph will now delete nodes and edges (with id) that have been present in the old file
+ - BUG: fixed selection management
+ - CODE: moved a lot of features/methods from GraphlApplication, GraphlPanel to GraphlPane
+ - CODE: refactored RDF loading into seperate class, giving us the ability to handle reloads better
+ - CODE: implemented clearing of JXPath caches in facets (hacky, should be done with XPath listeners)
+ - CODE: added tomcat plugin settings to project
+
2005-12-18, f/0:
- FEATURE: RXPath landed! you can assign properties of facets through XPath-like expressions based on the currently rendered node
***************
*** 25,29 ****
2005-09-05, f/0:
! - FEATURE: updated save machanism to new multi-souurce paradigm
- BUG: FilteredGraph: corrected update behavior upon changes
- CODE: added methods to access filtered and unfiltered versions of the graph in GraphlPane
--- 35,39 ----
2005-09-05, f/0:
! - FEATURE: updated save machanism to new multi-source paradigm
- BUG: FilteredGraph: corrected update behavior upon changes
- CODE: added methods to access filtered and unfiltered versions of the graph in GraphlPane
--- NEW FILE: .tomcatplugin ---
<?xml version="1.0" encoding="UTF-8"?>
<tomcatProjectProperties>
<rootDir>/web</rootDir>
<exportSource>false</exportSource>
<reloadable>true</reloadable>
<redirectLogger>false</redirectLogger>
<updateXml>true</updateXml>
<warLocation></warLocation>
<extraInfo></extraInfo>
<webPath>/graphl</webPath>
</tomcatProjectProperties>
|