2000-07-18 00:35:55 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-07-18 00:35:55 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIURI.idl"
|
2000-11-01 08:03:22 +00:00
|
|
|
interface nsIChannel;
|
2012-07-18 22:27:02 +00:00
|
|
|
interface nsIPrincipal;
|
2000-07-18 00:35:55 +00:00
|
|
|
|
2012-07-18 22:27:02 +00:00
|
|
|
[scriptable, uuid(a5e61a3c-51bd-45be-ac0c-e87b71860656)]
|
2000-07-18 00:35:55 +00:00
|
|
|
interface nsIRefreshURI : nsISupports {
|
|
|
|
/**
|
2002-02-08 22:46:09 +00:00
|
|
|
* Load a uri after waiting for aMillis milliseconds. If the docshell
|
|
|
|
* is busy loading a page currently, the refresh request will be
|
|
|
|
* queued and executed when the current load finishes.
|
2000-07-18 00:35:55 +00:00
|
|
|
*
|
2002-02-08 22:46:09 +00:00
|
|
|
* @param aUri The uri to refresh.
|
|
|
|
* @param aMillis The number of milliseconds to wait.
|
|
|
|
* @param aRepeat Flag to indicate if the uri is to be
|
|
|
|
* repeatedly refreshed every aMillis milliseconds.
|
2007-02-08 13:15:50 +00:00
|
|
|
* @param aMetaRefresh Flag to indicate if this is a Meta refresh.
|
2000-07-18 00:35:55 +00:00
|
|
|
*/
|
2007-02-08 13:15:50 +00:00
|
|
|
void refreshURI(in nsIURI aURI, in long aMillis, in boolean aRepeat,
|
|
|
|
in boolean aMetaRefresh);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a URI immediately as if it were a refresh.
|
|
|
|
*
|
|
|
|
* @param aURI The URI to refresh.
|
|
|
|
* @param aMillis The number of milliseconds by which this refresh would
|
|
|
|
* be delayed if it were not being forced.
|
|
|
|
* @param aMetaRefresh Flag to indicate if this is a meta refresh.
|
|
|
|
*/
|
|
|
|
void forceRefreshURI(in nsIURI aURI, in long aMillis, in boolean aMetaRefresh);
|
2000-07-18 00:35:55 +00:00
|
|
|
|
2000-11-01 08:03:22 +00:00
|
|
|
/**
|
2002-02-08 22:46:09 +00:00
|
|
|
* Checks the passed in channel to see if there is a refresh header,
|
|
|
|
* if there is, will setup a timer to refresh the uri found
|
|
|
|
* in the header. If docshell is busy loading a page currently, the
|
|
|
|
* request will be queued and executed when the current page
|
|
|
|
* finishes loading.
|
|
|
|
*
|
2006-07-04 20:48:33 +00:00
|
|
|
* Returns the NS_REFRESHURI_HEADER_FOUND success code if a refresh
|
|
|
|
* header was found and successfully setup.
|
|
|
|
*
|
2002-02-08 22:46:09 +00:00
|
|
|
* @param aChannel The channel to be parsed.
|
2001-04-20 08:11:12 +00:00
|
|
|
*/
|
|
|
|
void setupRefreshURI(in nsIChannel aChannel);
|
2000-11-01 08:03:22 +00:00
|
|
|
|
2001-04-20 08:11:12 +00:00
|
|
|
/**
|
2002-02-08 22:46:09 +00:00
|
|
|
* Parses the passed in header string and sets up a refreshURI if
|
|
|
|
* a "refresh" header is found. If docshell is busy loading a page
|
|
|
|
* currently, the request will be queued and executed when
|
|
|
|
* the current page finishes loading.
|
2001-04-20 08:11:12 +00:00
|
|
|
*
|
2002-02-08 22:46:09 +00:00
|
|
|
* @param aBaseURI base URI to resolve refresh uri with.
|
2012-07-18 22:27:02 +00:00
|
|
|
* @param principal the associated principal
|
2002-02-08 22:46:09 +00:00
|
|
|
* @param aHeader The meta refresh header string.
|
2001-04-20 08:11:12 +00:00
|
|
|
*/
|
2012-07-18 22:27:02 +00:00
|
|
|
void setupRefreshURIFromHeader(in nsIURI aBaseURI, in nsIPrincipal principal, in ACString aHeader);
|
|
|
|
|
2000-07-18 00:35:55 +00:00
|
|
|
/**
|
|
|
|
* Cancels all timer loads.
|
|
|
|
*/
|
2001-04-20 08:11:12 +00:00
|
|
|
void cancelRefreshURITimers();
|
2007-02-22 22:11:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* True when there are pending refreshes, false otherwise.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean refreshPending;
|
2000-07-18 00:35:55 +00:00
|
|
|
};
|