mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
- bug 172113: rewrite the way we handle the bookmarks toolbar folder. Now, there is no more 2 ways to characterize the BTF: by an arc to the resource "...#BookmarksToolbarFolder" that points to the literal "true". As a consequence, the resource NC:PersonalToolbarFolder and "...#folderType" are dead.
- remove unused functions. Note that RDF commands were already broken, so deleteBookmarkItem and insertBookmarkItem (that were not used) may come back, but in another form. - remove the "New Bookmark Folder" and "New Search Folder" - refactor the "html" serializer to avoid some duplicated code. - remove the use of the profile name for the bookmarks root. - enforce synthax "aArgument" in some random places.
This commit is contained in:
parent
7cbbfcd12f
commit
a8253ec478
@ -7,7 +7,7 @@ Do Not Edit! -->
|
|||||||
<H1>Bookmarks</H1>
|
<H1>Bookmarks</H1>
|
||||||
|
|
||||||
<DL><p>
|
<DL><p>
|
||||||
<DT><H3 PERSONAL_TOOLBAR_FOLDER="true" ID="NC:PersonalToolbarFolder">Bookmarks Toolbar Folder</H3>
|
<DT><H3 PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar Folder</H3>
|
||||||
<DD>Add bookmarks to this folder to see them displayed on the Bookmarks Toolbar
|
<DD>Add bookmarks to this folder to see them displayed on the Bookmarks Toolbar
|
||||||
<DL><p>
|
<DL><p>
|
||||||
<DT><A HREF="http://texturizer.net/firebird/index.html">Mozilla Firebird Help</A>
|
<DT><A HREF="http://texturizer.net/firebird/index.html">Mozilla Firebird Help</A>
|
||||||
|
@ -409,12 +409,13 @@ function delayedStartup()
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// now load bookmarks after a delay
|
// now load bookmarks
|
||||||
var hasRead = BMSVC.readBookmarks();
|
BMSVC.readBookmarks();
|
||||||
var bt = document.getElementById("bookmarks-ptf");
|
var bt = document.getElementById("bookmarks-ptf");
|
||||||
if (bt) {
|
if (bt) {
|
||||||
if (hasRead)
|
var btf = BMSVC.getBookmarksToolbarFolder().Value
|
||||||
bt.builder.rebuild();
|
bt.ref = btf;
|
||||||
|
document.getElementById("bookmarks-chevron").ref = btf;
|
||||||
bt.database.AddObserver(BookmarksToolbarRDFObserver);
|
bt.database.AddObserver(BookmarksToolbarRDFObserver);
|
||||||
}
|
}
|
||||||
window.addEventListener("resize", BookmarksToolbar.resizeFunc, false);
|
window.addEventListener("resize", BookmarksToolbar.resizeFunc, false);
|
||||||
|
@ -424,8 +424,7 @@
|
|||||||
<hbox id="bookmarks-ptf" class="bookmarks-toolbar-items" contextmenu="bookmarks-context-menu"
|
<hbox id="bookmarks-ptf" class="bookmarks-toolbar-items" contextmenu="bookmarks-context-menu"
|
||||||
flex="1" style="min-width:0px; width:0px;margin-left: 3px;"
|
flex="1" style="min-width:0px; width:0px;margin-left: 3px;"
|
||||||
datasources="rdf:bookmarks rdf:files rdf:localsearch"
|
datasources="rdf:bookmarks rdf:files rdf:localsearch"
|
||||||
template="bookmarks-template"
|
template="bookmarks-template" flags="dont-test-empty"
|
||||||
ref="NC:PersonalToolbarFolder" flags="dont-test-empty"
|
|
||||||
rdf:type="http://home.netscape.com/NC-rdf#Folder"
|
rdf:type="http://home.netscape.com/NC-rdf#Folder"
|
||||||
onpopupshowing="BookmarksMenu.showOpenInTabsMenuItem(event.target)"
|
onpopupshowing="BookmarksMenu.showOpenInTabsMenuItem(event.target)"
|
||||||
onpopuphidden="BookmarksMenu.hideOpenInTabsMenuItem(event.target)"
|
onpopuphidden="BookmarksMenu.hideOpenInTabsMenuItem(event.target)"
|
||||||
@ -442,8 +441,7 @@
|
|||||||
<toolbarbutton id="bookmarks-chevron" type="menu" class="chevron"
|
<toolbarbutton id="bookmarks-chevron" type="menu" class="chevron"
|
||||||
mousethrough="never" collapsed="true"
|
mousethrough="never" collapsed="true"
|
||||||
datasources="rdf:bookmarks rdf:files rdf:localsearch"
|
datasources="rdf:bookmarks rdf:files rdf:localsearch"
|
||||||
template="bookmarks-template"
|
template="bookmarks-template" flags="dont-test-empty"
|
||||||
ref="NC:PersonalToolbarFolder" flags="dont-test-empty"
|
|
||||||
onpopupshowing="BookmarksMenu.showOpenInTabsMenuItem(event.target)"
|
onpopupshowing="BookmarksMenu.showOpenInTabsMenuItem(event.target)"
|
||||||
onpopuphidden="BookmarksMenu.hideOpenInTabsMenuItem(event.target)"
|
onpopuphidden="BookmarksMenu.hideOpenInTabsMenuItem(event.target)"
|
||||||
oncommand="BookmarksMenu.loadBookmark(event, event.target, this.database)"
|
oncommand="BookmarksMenu.loadBookmark(event, event.target, this.database)"
|
||||||
|
@ -879,21 +879,11 @@ var BookmarksController = {
|
|||||||
case "cmd_bm_properties":
|
case "cmd_bm_properties":
|
||||||
case "cmd_bm_rename":
|
case "cmd_bm_rename":
|
||||||
return length == 1;
|
return length == 1;
|
||||||
case "cmd_bm_setnewbookmarkfolder":
|
|
||||||
if (length != 1)
|
|
||||||
return false;
|
|
||||||
return item0 != "NC:NewBookmarkFolder" &&
|
|
||||||
(type0 == "Folder" || type0 == "PersonalToolbarFolder");
|
|
||||||
case "cmd_bm_setpersonaltoolbarfolder":
|
case "cmd_bm_setpersonaltoolbarfolder":
|
||||||
if (length != 1)
|
if (length != 1)
|
||||||
return false;
|
return false;
|
||||||
return item0 != "NC:PersonalToolbarFolder" &&
|
return item0 != "NC:PersonalToolbarFolder" &&
|
||||||
item0 != "NC:BookmarksRoot" && type0 == "Folder";
|
item0 != "NC:BookmarksRoot" && type0 == "Folder";
|
||||||
case "cmd_bm_setnewsearchfolder":
|
|
||||||
if (length != 1)
|
|
||||||
return false;
|
|
||||||
return item0 != "NC:NewSearchFolder" &&
|
|
||||||
(type0 == "Folder" || type0 == "PersonalToolbarFolder");
|
|
||||||
case "cmd_bm_movebookmark":
|
case "cmd_bm_movebookmark":
|
||||||
return length > 0 && !aSelection.containsImmutable;
|
return length > 0 && !aSelection.containsImmutable;
|
||||||
default:
|
default:
|
||||||
@ -1099,46 +1089,12 @@ var BookmarksUtils = {
|
|||||||
if (type != "")
|
if (type != "")
|
||||||
type = type.split("#")[1];
|
type = type.split("#")[1];
|
||||||
if (type == "Folder") {
|
if (type == "Folder") {
|
||||||
if (this.isPersonalToolbarFolder(aResource))
|
if (aResource == BMSVC.getBookmarksToolbarFolder())
|
||||||
type = "PersonalToolbarFolder";
|
type = "PersonalToolbarFolder";
|
||||||
}
|
}
|
||||||
return type;
|
return type;
|
||||||
},
|
},
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Returns true if aResource is the Personal Toolbar Folder
|
|
||||||
isPersonalToolbarFolder: function (aResource) {
|
|
||||||
return this.getProperty(aResource, NC_NS+"FolderType") == "NC:PersonalToolbarFolder";
|
|
||||||
},
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Returns the folder which 'FolderType' is aProperty
|
|
||||||
getSpecialFolder: function (aProperty)
|
|
||||||
{
|
|
||||||
var sources = BMDS.GetSources(RDF.GetResource(NC_NS+"FolderType"),
|
|
||||||
RDF.GetResource(aProperty), true);
|
|
||||||
var folder = null;
|
|
||||||
if (sources.hasMoreElements())
|
|
||||||
folder = sources.getNext();
|
|
||||||
else
|
|
||||||
folder = RDF.GetResource("NC:BookmarksRoot");
|
|
||||||
return folder;
|
|
||||||
},
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Returns the New Bookmark Folder
|
|
||||||
getNewBookmarkFolder: function()
|
|
||||||
{
|
|
||||||
return this.getSpecialFolder("NC:NewBookmarkFolder");
|
|
||||||
},
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Returns the New Search Folder
|
|
||||||
getNewSearchFolder: function()
|
|
||||||
{
|
|
||||||
return this.getSpecialFolder("NC:NewSearchFolder");
|
|
||||||
},
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Returns the container of a given container
|
// Returns the container of a given container
|
||||||
getParentOfContainer: function(aChild)
|
getParentOfContainer: function(aChild)
|
||||||
|
@ -151,7 +151,7 @@ var BookmarksMenu = {
|
|||||||
var item;
|
var item;
|
||||||
switch (aNode.id) {
|
switch (aNode.id) {
|
||||||
case "bookmarks-ptf":
|
case "bookmarks-ptf":
|
||||||
item = "NC:PersonalToolbarFolder";
|
item = BMSVC.getBookmarksToolbarFolder().Value;
|
||||||
break;
|
break;
|
||||||
case "bookmarks-menu":
|
case "bookmarks-menu":
|
||||||
item = "NC:BookmarksRoot";
|
item = "NC:BookmarksRoot";
|
||||||
@ -179,14 +179,14 @@ var BookmarksMenu = {
|
|||||||
var item, parent, index;
|
var item, parent, index;
|
||||||
switch (aNode.id) {
|
switch (aNode.id) {
|
||||||
case "bookmarks-ptf":
|
case "bookmarks-ptf":
|
||||||
parent = "NC:PersonalToolbarFolder";
|
parent = BMSVC.getBookmarksToolbarFolder().Value;
|
||||||
item = BookmarksToolbar.getLastVisibleBookmark();
|
item = BookmarksToolbar.getLastVisibleBookmark();
|
||||||
break;
|
break;
|
||||||
case "bookmarks-menu":
|
case "bookmarks-menu":
|
||||||
parent = "NC:BookmarksRoot";
|
parent = "NC:BookmarksRoot";
|
||||||
break;
|
break;
|
||||||
case "bookmarks-chevron":
|
case "bookmarks-chevron":
|
||||||
parent = "NC:PersonalToolbarFolder";
|
parent = BMSVC.getBookmarksToolbarFolder().Value;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (aOrientation == BookmarksUtils.DROP_ON)
|
if (aOrientation == BookmarksUtils.DROP_ON)
|
||||||
@ -226,7 +226,7 @@ var BookmarksMenu = {
|
|||||||
case "bookmarks-chevron":
|
case "bookmarks-chevron":
|
||||||
case "bookmarks-stack":
|
case "bookmarks-stack":
|
||||||
case "bookmarks-toolbar":
|
case "bookmarks-toolbar":
|
||||||
return "NC:PersonalToolbarFolder";
|
return BMSVC.getBookmarksToolbarFolder().Value;
|
||||||
case "bookmarks-menu":
|
case "bookmarks-menu":
|
||||||
return "NC:BookmarksRoot";
|
return "NC:BookmarksRoot";
|
||||||
default:
|
default:
|
||||||
@ -880,6 +880,13 @@ var BookmarksToolbarRDFObserver =
|
|||||||
{
|
{
|
||||||
onAssert: function (aDataSource, aSource, aProperty, aTarget)
|
onAssert: function (aDataSource, aSource, aProperty, aTarget)
|
||||||
{
|
{
|
||||||
|
if (aProperty.Value == NC_NS+"BookmarksToolbarFolder") {
|
||||||
|
var bt = document.getElementById("bookmarks-ptf");
|
||||||
|
if (bt) {
|
||||||
|
bt.ref = aSource.Value;
|
||||||
|
document.getElementById("bookmarks-chevron").ref = aSource.Value;
|
||||||
|
}
|
||||||
|
}
|
||||||
this.setOverflowTimeout(aSource, aProperty);
|
this.setOverflowTimeout(aSource, aProperty);
|
||||||
},
|
},
|
||||||
onUnassert: function (aDataSource, aSource, aProperty, aTarget)
|
onUnassert: function (aDataSource, aSource, aProperty, aTarget)
|
||||||
@ -896,7 +903,8 @@ var BookmarksToolbarRDFObserver =
|
|||||||
{
|
{
|
||||||
if (this._overflowTimerInEffect)
|
if (this._overflowTimerInEffect)
|
||||||
return;
|
return;
|
||||||
if (aSource.Value != "NC:PersonalToolbarFolder" || aProperty.Value == NC_NS+"LastModifiedDate")
|
if (aSource != BMSVC.getBookmarksToolbarFolder()
|
||||||
|
|| aProperty.Value == NC_NS+"LastModifiedDate")
|
||||||
return;
|
return;
|
||||||
this._overflowTimerInEffect = true;
|
this._overflowTimerInEffect = true;
|
||||||
setTimeout(BookmarksToolbar.resizeFunc, 0);
|
setTimeout(BookmarksToolbar.resizeFunc, 0);
|
||||||
|
@ -50,7 +50,7 @@ function showDescription()
|
|||||||
|
|
||||||
gResource = RDF.GetResource(window.arguments[0]);
|
gResource = RDF.GetResource(window.arguments[0]);
|
||||||
|
|
||||||
if (BookmarksUtils.isPersonalToolbarFolder(gResource)) {
|
if (gResource == BMSVC.getBookmarksToolbarFolder()) {
|
||||||
var description = BookmarksUtils.getLocaleString("description_PersonalToolbarFolder");
|
var description = BookmarksUtils.getLocaleString("description_PersonalToolbarFolder");
|
||||||
var box = document.getElementById("description-box");
|
var box = document.getElementById("description-box");
|
||||||
box.hidden = false;
|
box.hidden = false;
|
||||||
|
@ -528,7 +528,6 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var browserTarget = BookmarksUtils.getBrowserTargetFromEvent(aEvent);
|
var browserTarget = BookmarksUtils.getBrowserTargetFromEvent(aEvent);
|
||||||
BookmarksCommand.openBookmark(selection, browserTarget, this.db);
|
BookmarksCommand.openBookmark(selection, browserTarget, this.db);
|
||||||
]]></body>
|
]]></body>
|
||||||
@ -819,7 +818,7 @@
|
|||||||
onkeypress="event.preventBubble();"/>
|
onkeypress="event.preventBubble();"/>
|
||||||
<vbox flex="1">
|
<vbox flex="1">
|
||||||
<tree anonid="bookmarks-tree" flex="1" class="plain" enableColumnDrag="true"
|
<tree anonid="bookmarks-tree" flex="1" class="plain" enableColumnDrag="true"
|
||||||
datasources="rdf:bookmarks rdf:internetsearch rdf:localsearch" ref="NC:BookmarksTopRoot" flags="dont-build-content"
|
datasources="rdf:bookmarks rdf:files rdf:localsearch" ref="NC:BookmarksTopRoot" flags="dont-build-content"
|
||||||
onkeypress="if (event.keyCode == 13) this.parentNode.parentNode.openItemKey();"
|
onkeypress="if (event.keyCode == 13) this.parentNode.parentNode.openItemKey();"
|
||||||
onclick="this.parentNode.parentNode.openItemClick(event, 1);"
|
onclick="this.parentNode.parentNode.openItemClick(event, 1);"
|
||||||
ondblclick="this.parentNode.parentNode.openItemClick(event, 2);"
|
ondblclick="this.parentNode.parentNode.openItemClick(event, 2);"
|
||||||
@ -918,7 +917,7 @@
|
|||||||
onclick="event.preventBubble();"
|
onclick="event.preventBubble();"
|
||||||
onkeypress="event.preventBubble();"/>
|
onkeypress="event.preventBubble();"/>
|
||||||
<tree anonid="bookmarks-tree" flex="1" class="plain" hidecolumnpicker="true"
|
<tree anonid="bookmarks-tree" flex="1" class="plain" hidecolumnpicker="true"
|
||||||
datasources="rdf:bookmarks rdf:internetsearch rdf:localsearch" ref="NC:BookmarksRoot" flags="dont-build-content"
|
datasources="rdf:bookmarks rdf:files rdf:localsearch" ref="NC:BookmarksRoot" flags="dont-build-content"
|
||||||
onselect="this.parentNode.treeBoxObject.view.selectionChanged();" seltype="single">
|
onselect="this.parentNode.treeBoxObject.view.selectionChanged();" seltype="single">
|
||||||
<template xmlns:nc="http://home.netscape.com/NC-rdf#">
|
<template xmlns:nc="http://home.netscape.com/NC-rdf#">
|
||||||
<rule rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
|
<rule rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
|
||||||
@ -958,7 +957,7 @@
|
|||||||
<xbl:content xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:xbl="http://www.mozilla.org/xbl">
|
<xbl:content xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:xbl="http://www.mozilla.org/xbl">
|
||||||
<tree anonid="bookmarks-tree" flex="1" hidecolumnpicker="true"
|
<tree anonid="bookmarks-tree" flex="1" hidecolumnpicker="true"
|
||||||
xbl:inherits="rows,seltype"
|
xbl:inherits="rows,seltype"
|
||||||
datasources="rdf:bookmarks rdf:internetsearch rdf:localsearch" ref="NC:BookmarksTopRoot" flags="dont-build-content"
|
datasources="rdf:bookmarks rdf:files rdf:localsearch" ref="NC:BookmarksTopRoot" flags="dont-build-content"
|
||||||
onselect="this.parentNode.treeBoxObject.view.selectionChanged();">
|
onselect="this.parentNode.treeBoxObject.view.selectionChanged();">
|
||||||
<template>
|
<template>
|
||||||
<rule iscontainer="true">
|
<rule iscontainer="true">
|
||||||
|
@ -76,7 +76,8 @@ bookmarks_title = Bookmarks Manager
|
|||||||
|
|
||||||
file_in = File in "%S"
|
file_in = File in "%S"
|
||||||
|
|
||||||
bookmarks_root = Bookmarks for %S
|
BookmarksRoot = Bookmarks
|
||||||
|
BookmarksToolbarFolder = Bookmarks Toolbar Folder
|
||||||
status_foldercount = %S object(s)
|
status_foldercount = %S object(s)
|
||||||
|
|
||||||
WebPageUpdated = The following web page has been updated:
|
WebPageUpdated = The following web page has been updated:
|
||||||
@ -97,7 +98,6 @@ FindTitle = Find: %S %S '%S' in %S
|
|||||||
ImportedIEFavorites = Imported IE Favorites
|
ImportedIEFavorites = Imported IE Favorites
|
||||||
ImportedIEStaticFavorites = Imported IE Favorites
|
ImportedIEStaticFavorites = Imported IE Favorites
|
||||||
ImportedNetPositiveBookmarks = Imported NetPositive Bookmarks
|
ImportedNetPositiveBookmarks = Imported NetPositive Bookmarks
|
||||||
DefaultPersonalToolbarFolder = Personal Toolbar Folder
|
|
||||||
|
|
||||||
SelectImport = Import bookmark file:
|
SelectImport = Import bookmark file:
|
||||||
EnterExport = Export bookmark file:
|
EnterExport = Export bookmark file:
|
||||||
|
@ -77,6 +77,9 @@ interface nsIBookmarksService : nsISupports
|
|||||||
|
|
||||||
nsIRDFResource cloneResource(in nsIRDFResource aSource);
|
nsIRDFResource cloneResource(in nsIRDFResource aSource);
|
||||||
|
|
||||||
|
nsIRDFResource getBookmarksToolbarFolder();
|
||||||
|
void setBookmarksToolbarFolder(in nsIRDFResource aSource);
|
||||||
|
|
||||||
void updateBookmarkIcon(in string aURL, in wstring aIconURL);
|
void updateBookmarkIcon(in string aURL, in wstring aIconURL);
|
||||||
void removeBookmarkIcon(in string aURL, in wstring aIconURL);
|
void removeBookmarkIcon(in string aURL, in wstring aIconURL);
|
||||||
|
|
||||||
|
@ -38,7 +38,6 @@ REQUIRES = xpcom \
|
|||||||
nkcache \
|
nkcache \
|
||||||
uconv \
|
uconv \
|
||||||
pref \
|
pref \
|
||||||
profile \
|
|
||||||
dom \
|
dom \
|
||||||
intl \
|
intl \
|
||||||
webshell \
|
webshell \
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -88,7 +88,6 @@ protected:
|
|||||||
PRUint32 htmlSize;
|
PRUint32 htmlSize;
|
||||||
PRInt32 mUpdateBatchNest;
|
PRInt32 mUpdateBatchNest;
|
||||||
nsXPIDLString mPersonalToolbarName;
|
nsXPIDLString mPersonalToolbarName;
|
||||||
nsXPIDLString mBookmarksRootName;
|
|
||||||
PRBool mBookmarksAvailable;
|
PRBool mBookmarksAvailable;
|
||||||
PRBool mDirty;
|
PRBool mDirty;
|
||||||
PRBool mBrowserIcons;
|
PRBool mBrowserIcons;
|
||||||
@ -128,6 +127,17 @@ protected:
|
|||||||
PRInt32 level,
|
PRInt32 level,
|
||||||
nsCOMArray<nsIRDFResource>& parentArray);
|
nsCOMArray<nsIRDFResource>& parentArray);
|
||||||
|
|
||||||
|
nsresult WriteBookmarkIdAndName(nsIRDFDataSource *aDs,
|
||||||
|
nsIOutputStream* aStrm,
|
||||||
|
nsIRDFResource *aNode);
|
||||||
|
|
||||||
|
nsresult WriteBookmarkProperties(nsIRDFDataSource *aDs,
|
||||||
|
nsIOutputStream* aStrm,
|
||||||
|
nsIRDFResource *aNode,
|
||||||
|
nsIRDFResource *aProperty,
|
||||||
|
const char *aHtmlAttrib,
|
||||||
|
PRBool aIsFirst);
|
||||||
|
|
||||||
nsresult SerializeBookmarks(nsIURI* aURI);
|
nsresult SerializeBookmarks(nsIURI* aURI);
|
||||||
|
|
||||||
nsresult GetTextForNode(nsIRDFNode* aNode, nsString& aResult);
|
nsresult GetTextForNode(nsIRDFNode* aNode, nsString& aResult);
|
||||||
@ -136,26 +146,11 @@ protected:
|
|||||||
|
|
||||||
nsresult UpdateBookmarkLastModifiedDate(nsIRDFResource *aSource);
|
nsresult UpdateBookmarkLastModifiedDate(nsIRDFResource *aSource);
|
||||||
|
|
||||||
nsresult WriteBookmarkProperties(nsIRDFDataSource *ds,
|
|
||||||
nsIOutputStream* strm,
|
|
||||||
nsIRDFResource *node,
|
|
||||||
nsIRDFResource *property,
|
|
||||||
const char *htmlAttrib,
|
|
||||||
PRBool isFirst);
|
|
||||||
|
|
||||||
PRBool CanAccept(nsIRDFResource* aSource, nsIRDFResource* aProperty, nsIRDFNode* aTarget);
|
PRBool CanAccept(nsIRDFResource* aSource, nsIRDFResource* aProperty, nsIRDFNode* aTarget);
|
||||||
|
|
||||||
nsresult getArgumentN(nsISupportsArray *arguments, nsIRDFResource *res,
|
nsresult getArgumentN(nsISupportsArray *arguments, nsIRDFResource *res,
|
||||||
PRInt32 offset, nsIRDFNode **argValue);
|
PRInt32 offset, nsIRDFNode **argValue);
|
||||||
|
|
||||||
nsresult insertBookmarkItem(nsIRDFResource *src,
|
|
||||||
nsISupportsArray *aArguments,
|
|
||||||
nsIRDFResource *objType);
|
|
||||||
|
|
||||||
nsresult deleteBookmarkItem(nsIRDFResource *src,
|
|
||||||
nsISupportsArray *aArguments,
|
|
||||||
PRInt32 parentArgIndex);
|
|
||||||
|
|
||||||
nsresult setFolderHint(nsIRDFResource *src, nsIRDFResource *objType);
|
nsresult setFolderHint(nsIRDFResource *src, nsIRDFResource *objType);
|
||||||
|
|
||||||
nsresult getFolderViaHint(nsIRDFResource *src, PRBool fallbackFlag,
|
nsresult getFolderViaHint(nsIRDFResource *src, PRBool fallbackFlag,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user