From 6216cc70deaea2b25d1e1cc2138855e73597e149 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Fri, 13 Nov 1998 02:53:50 +0000 Subject: [PATCH] Hack to use rdf:bookmarks rather than NC:Bookmarks as to top of the bookmark tree. This is mostly for the Raptor demo until I can get Guha to look at it. --- rdf/src/bmk2rdf.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rdf/src/bmk2rdf.c b/rdf/src/bmk2rdf.c index affa8f39020..8c6462c81fd 100644 --- a/rdf/src/bmk2rdf.c +++ b/rdf/src/bmk2rdf.c @@ -546,7 +546,12 @@ void readInBookmarks() { /* RDF_Resource ptFolder; */ - RDF_Resource bmk = RDF_GetResource(NULL, "NC:Bookmarks", true); + + /* XXX use rdf:bookmarks to get the demo up and running. I have no + clue what the difference is. */ + + /* RDF_Resource bmk = RDF_GetResource(NULL, "NC:Bookmarks", true); */ + RDF_Resource bmk = RDF_GetResource(NULL, "rdf:bookmarks", true); RDFFile f = makeRDFFile(gBookmarkURL, bmk, true); PRFileDesc *fp; int32 len;