My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Nov 20, 2009
    Servers (Local and Distributed Querying of JRDF) Wiki page edited by andrewfnewman   -   Revision r316 Edited wiki page through web user interface.
    Revision r316 Edited wiki page through web user interface.
  • Nov 20, 2009
    Servers (Local and Distributed Querying of JRDF) Wiki page edited by andrewfnewman   -   Revision r315 Edited wiki page through web user interface.
    Revision r315 Edited wiki page through web user interface.
  • Nov 20, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r314 Edited wiki page through web user interface.
    Revision r314 Edited wiki page through web user interface.

Earlier this year

  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r313 Edited wiki page through web user interface.
    Revision r313 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r312 Edited wiki page through web user interface.
    Revision r312 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r311 Edited wiki page through web user interface.
    Revision r311 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r310 Edited wiki page through web user interface.
    Revision r310 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r309 Edited wiki page through web user interface.
    Revision r309 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r308 Edited wiki page through web user interface.
    Revision r308 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r307 Edited wiki page through web user interface.
    Revision r307 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r306 Edited wiki page through web user interface.
    Revision r306 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r305 Edited wiki page through web user interface.
    Revision r305 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r304 Edited wiki page through web user interface.
    Revision r304 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r303 Edited wiki page through web user interface.
    Revision r303 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r302 Edited wiki page through web user interface.
    Revision r302 Edited wiki page through web user interface.
  • Aug 26, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r301 Edited wiki page through web user interface.
    Revision r301 Edited wiki page through web user interface.
  • Aug 25, 2009
    JRDFWiring (Ways to wire up JRDF and entry points) Wiki page edited by andrewfnewman   -   Revision r300 Edited wiki page through web user interface.
    Revision r300 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r299 Edited wiki page through web user interface.
    Revision r299 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r298 Edited wiki page through web user interface.
    Revision r298 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r297 Edited wiki page through web user interface.
    Revision r297 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by andrewfnewman   -   natalia.macheda - you will be getting this problem because you are using Java 1.4 - which is not supported.
    natalia.macheda - you will be getting this problem because you are using Java 1.4 - which is not supported.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by andrewfnewman   -   Thanks for the hint Stephen - I've updated the page.
    Thanks for the hint Stephen - I've updated the page.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r296 Edited wiki page through web user interface.
    Revision r296 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r295 Edited wiki page through web user interface.
    Revision r295 Edited wiki page through web user interface.
  • Aug 25, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman   -   Revision r294 Edited wiki page through web user interface.
    Revision r294 Edited wiki page through web user interface.
  • Aug 18, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by hsriat   -   Thanks for the update Stephen!
    Thanks for the update Stephen!
  • Aug 16, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by stephen....@gmail.com   -   Updated code under your heading of "This can be simplified a little using Java 5's for loop:" would be: ClosableIterable<Triple> triples = graph.find(AnySubjectNode.ANY_SUBJECT_NODE, AnyPredicateNode.ANY_PREDICATE_NODE, AnyObjectNode.ANY_OBJECT_NODE); try { for (Triple triple : triples) { System.out.println("Graph: " + triple); } System.out.println("Total number of statements: " + graph.getNumberOfTriples()); } finally { triples.iterator().close(); }
    Updated code under your heading of "This can be simplified a little using Java 5's for loop:" would be: ClosableIterable<Triple> triples = graph.find(AnySubjectNode.ANY_SUBJECT_NODE, AnyPredicateNode.ANY_PREDICATE_NODE, AnyObjectNode.ANY_OBJECT_NODE); try { for (Triple triple : triples) { System.out.println("Graph: " + triple); } System.out.println("Total number of statements: " + graph.getNumberOfTriples()); } finally { triples.iterator().close(); }
  • Aug 11, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by natalia.macheda   -   java -jar jrdf-gui-0.5.5.5.jar Exception in thread "main" java.lang.UnsupportedClassVersionError: org/jrdf/gui/UrqlGui (Unsupported major.minor version 49.0) at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at com.simontuffs.onejar.JarClassLoader.defineClass(JarClassLoader.java:693) at com.simontuffs.onejar.JarClassLoader.findClass(JarClassLoader.java:599) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at com.simontuffs.onejar.Boot.run(Boot.java:300) at com.simontuffs.onejar.Boot.main(Boot.java:159)
    java -jar jrdf-gui-0.5.5.5.jar Exception in thread "main" java.lang.UnsupportedClassVersionError: org/jrdf/gui/UrqlGui (Unsupported major.minor version 49.0) at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at com.simontuffs.onejar.JarClassLoader.defineClass(JarClassLoader.java:693) at com.simontuffs.onejar.JarClassLoader.findClass(JarClassLoader.java:599) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at com.simontuffs.onejar.Boot.run(Boot.java:300) at com.simontuffs.onejar.Boot.main(Boot.java:159)
  • Jul 23, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 22, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by sam...@gmail.com   -   For some reason, the download link in sf.net does not seem to work for the current version. Am I the only one having this issue?
    For some reason, the download link in sf.net does not seem to work for the current version. Am I the only one having this issue?
  • Jul 16, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 16, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 14, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 13, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 13, 2009
    GettingStarted (Getting Started with JRDF) Wiki page edited by andrewfnewman
  • Jul 05, 2009
    GettingStarted (Getting Started with JRDF) Wiki page commented on by pmurray.bigpond.com   -   I would like, on this page, a section on "how to read an existing rdf file into a graph".
    I would like, on this page, a section on "how to read an existing rdf file into a graph".
  • Apr 05, 2009
    Servers (Local and Distributed Querying of JRDF) Wiki page edited by andrewfnewman
 
Hosted by Google Code