mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 13:42:48 +00:00
Use nsIRDFService::GetDataSource(). For now we need to, because you can't Init() the same RDF/XML datasource twice. This kinda sucks because it's synchronous.
This commit is contained in:
parent
e42fc819d2
commit
99a4f19bce
@ -40,18 +40,11 @@ function Init()
|
|||||||
|
|
||||||
dump('adding "' + service.Value + '" to the tree\n');
|
dump('adding "' + service.Value + '" to the tree\n');
|
||||||
try {
|
try {
|
||||||
// create a new RDF/XML datasource
|
// create a new RDF/XML datasource. This will,
|
||||||
var flashservice =
|
// unfortunately, force it to be read synchronously the
|
||||||
Components.classes['component://netscape/rdf/datasource?name=xml-datasource'].createInstance();
|
// first time around.
|
||||||
|
var flashservice = RDF.GetDataSource(service.Value);
|
||||||
flashservice = flashservice.QueryInterface(Components.interfaces.nsIRDFXMLDataSource);
|
flashservice = flashservice.QueryInterface(Components.interfaces.nsIRDFXMLDataSource);
|
||||||
|
|
||||||
// Initialize it.
|
|
||||||
flashservice.Init(service.Value);
|
|
||||||
|
|
||||||
// Read it in asynchronously.
|
|
||||||
flashservice.Open(false);
|
|
||||||
|
|
||||||
// Add it to the tree control's composite datasource.
|
// Add it to the tree control's composite datasource.
|
||||||
tree.database.AddDataSource(flashservice);
|
tree.database.AddDataSource(flashservice);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user