The nsIDOMOfflineResourceList interface provides access to the application cache that allows web content's resources to be cached locally for use while offline. It includes methods for adding resources to and removing resources from the cache, as well as for enumerating the dynamically managed resource list.
nsIDOMOfflineResourceList is defined in dom/interfaces/offline/nsIDOMOfflineResourceList.idl
. It is scriptable
and
unfrozen (hasn't changed since Mozilla 1.9.2)
.
Inherits from:
nsISupports
void mozAdd(in DOMString uri); |
boolean mozHasItem(in DOMString uri); Deprecated |
DOMString mozItem(in unsigned long index); Deprecated |
void mozRemove(in DOMString uri); |
void swapCache(); |
void update(); |
| Attribute | Type | Description |
mozItems |
nsIDOMOfflineResourceList | The list of dynamically-managed entries in the offline resource list. Read only. |
mozLength | unsigned long | The number of entries in the dynamically managed offline resource list. Read only. Deprecated |
onchecking | nsIDOMEventListener | An event listener to be called when fetching the application cache manifest and checking for updates. |
onerror | nsIDOMEventListener | An event listener to be called when an error occurs during the caching process. |
onnoupdate | nsIDOMEventListener | An event listener to be called when there is no update to download. |
ondownloading | nsIDOMEventListener | An event listener to be called when resources are being downloaded into the cache. |
onprogress | nsIDOMEventListener | An event listener to be called periodically throughout the download process. |
onupdateready | nsIDOMEventListener | An event listener to be called when a resource update is ready; this event is not currently used since versioned application caches aren't supported yet. |
oncached | nsIDOMEventListener | An event listener to be called when caching is complete. |
status | unsigned short | One of the Application cache state constants indicating the status of the application cache. |
| Constant | Value | Description |
UNCACHED | 0 | The object isn't associated with an application cache. |
IDLE | 1 | The application cache is not in the process of being updated. |
CHECKING | 2 | The application cache manifest is being fetched and checked for updates. |
DOWNLOADING | 3 | Resources are being downloaded to be added to the cache. |
UPDATEREADY | 4 | There is a new version of the application cache available. |
OBSOLETE | 5 | The application cache group is now obsolete. |
Adds an item to the dynamically managed entries. The resource will be fetched and added to the application cache.
void mozAdd( in DOMString uri );
uriDeprecated
mozHasItem()
Returns a Boolean value indicating whether or not the specified URI represents a resource that's in the application cache's list.
mozItems attribute instead.void mozHasItem( in DOMString uri );
uritrue if the resource is in the list, otherwise false.
Deprecated
mozItem()
Returns the URI of the item at the specific offset into the list of cached resources.
items attribute.DOMString mozItem( in unsigned long index );
indexAn DOMString containing the URI of the specified resource.
Removes an item from the list of dynamically managed entries. If this was the last reference to the given URI in the application cache, the cache entry is removed.
void mozRemove( in DOMString uri );
uriSwaps in the newest version of the application cache.
void swapCache();
None.
Begins the application cache update process.
void update();
None.
Page last modified 16:52, 22 Jan 2010 by Sheppy