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.

This commit is contained in:
waterson%netscape.com 1998-11-13 02:53:50 +00:00
Родитель 0c66d39047
Коммит 4615e34fa9
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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;