Fix for bug # 69457 r=valeski, rpotts

This commit is contained in:
radha%netscape.com 2001-03-24 01:23:42 +00:00
parent 4b22e99754
commit b6e43c85cd
5 changed files with 59 additions and 12 deletions

View File

@ -128,6 +128,7 @@ nsDocShell::nsDocShell() :
mInitialPageLoad(PR_TRUE), mInitialPageLoad(PR_TRUE),
mAllowPlugins(PR_TRUE), mAllowPlugins(PR_TRUE),
mAllowJavascript(PR_TRUE), mAllowJavascript(PR_TRUE),
mAllowMetaRedirects(PR_TRUE),
mAppType(nsIDocShell::APP_TYPE_UNKNOWN), mAppType(nsIDocShell::APP_TYPE_UNKNOWN),
mViewMode(viewNormal), mViewMode(viewNormal),
mLastViewMode(viewNormal), mLastViewMode(viewNormal),
@ -714,6 +715,23 @@ NS_IMETHODIMP nsDocShell::SetAllowJavascript(PRBool aAllowJavascript)
return NS_OK; return NS_OK;
} }
NS_IMETHODIMP
nsDocShell::GetAllowMetaRedirects(PRBool * aReturn)
{
NS_ENSURE_ARG_POINTER(aReturn);
*aReturn = mAllowMetaRedirects;
return NS_OK;
}
NS_IMETHODIMP
nsDocShell::SetAllowMetaRedirects(PRBool aValue)
{
mAllowMetaRedirects = aValue;
return NS_OK;
}
NS_IMETHODIMP nsDocShell::GetAppType(PRUint32* aAppType) NS_IMETHODIMP nsDocShell::GetAppType(PRUint32* aAppType)
{ {
*aAppType = mAppType; *aAppType = mAppType;
@ -4478,23 +4496,36 @@ NS_IMETHODIMP_(void) nsRefreshTimer::Notify(nsITimer *aTimer)
} }
nsCOMPtr<nsIDocShellLoadInfo> loadInfo; nsCOMPtr<nsIDocShellLoadInfo> loadInfo;
mDocShell->CreateLoadInfo (getter_AddRefs (loadInfo)); mDocShell->CreateLoadInfo (getter_AddRefs (loadInfo));
/* Check if this refresh causes a redirection /* Check if this META refresh causes a redirection
* to another site within the threshold time we * to another site. If so, check if this is permitted. Some
* have in mind(15000 ms as defined by REFRESH_REDIRECT_TIMER). * embedded applications may not want to do this.
* If so, pass a REPLACE flag to LoadURI().
*/ */
PRBool equalUri = PR_FALSE; PRBool equalUri = PR_FALSE;
if (NS_SUCCEEDED(mURI->Equals(currURI, &equalUri)) && (delay <= REFRESH_REDIRECT_TIMER) && (!equalUri) && mMetaRefresh) { nsresult rv = mURI->Equals(currURI, &equalUri);
loadInfo->SetLoadType(nsIDocShellLoadInfo::loadNormalReplace); if (NS_SUCCEEDED(rv) && (!equalUri) && mMetaRefresh) {
PRBool allowRedirects=PR_TRUE;
mDocShell->GetAllowMetaRedirects(&allowRedirects);
if (!allowRedirects)
return;
/* It is a META refresh based redirection. Now check if it happened within
* the threshold time we have in mind(15000 ms as defined by REFRESH_REDIRECT_TIMER).
* If so, pass a REPLACE flag to LoadURI().
*/
if (delay <= REFRESH_REDIRECT_TIMER) {
loadInfo->SetLoadType(nsIDocShellLoadInfo::loadNormalReplace);
}
else
loadInfo->SetLoadType(nsIDocShellLoadInfo::loadRefresh);
/*
* LoadURL(...) will cancel all refresh timers... This causes the Timer and
* its refreshData instance to be released...
*/
mDocShell->LoadURI(mURI, loadInfo, nsIWebNavigation::LOAD_FLAGS_NONE);
} }
else else
loadInfo->SetLoadType(nsIDocShellLoadInfo::loadRefresh); loadInfo->SetLoadType(nsIDocShellLoadInfo::loadRefresh);
mDocShell->LoadURI(mURI, loadInfo, nsIWebNavigation::LOAD_FLAGS_NONE); mDocShell->LoadURI(mURI, loadInfo, nsIWebNavigation::LOAD_FLAGS_NONE);
} }
/*
* LoadURL(...) will cancel all refresh timers... This causes the Timer and
* its refreshData instance to be released...
*/
} }

View File

@ -289,6 +289,7 @@ protected:
PRBool mInitialPageLoad; PRBool mInitialPageLoad;
PRBool mAllowPlugins; PRBool mAllowPlugins;
PRBool mAllowJavascript; PRBool mAllowJavascript;
PRBool mAllowMetaRedirects;
PRUint32 mAppType; PRUint32 mAppType;
PRInt32 mViewMode; PRInt32 mViewMode;
PRInt32 mLastViewMode; PRInt32 mLastViewMode;

View File

@ -148,6 +148,12 @@ interface nsIDocShell : nsISupports
*/ */
attribute boolean allowJavascript; attribute boolean allowJavascript;
/**
* Attribute stating if refresh based redirects can be allowed
*/
attribute boolean allowMetaRedirects;
/* /*
The type of application that created this window The type of application that created this window
*/ */

View File

@ -34,6 +34,9 @@ interface nsIWebBrowserSetup : nsISupports
{ {
const unsigned long SETUP_ALLOW_PLUGINS = 1; const unsigned long SETUP_ALLOW_PLUGINS = 1;
const unsigned long SETUP_ALLOW_JAVASCRIPT = 2; const unsigned long SETUP_ALLOW_JAVASCRIPT = 2;
const unsigned long SETUP_ALLOW_META_REDIRECTS =3;
void setProperty(in unsigned long aId, in unsigned long aValue); void setProperty(in unsigned long aId, in unsigned long aValue);
}; };

View File

@ -604,7 +604,13 @@ NS_IMETHODIMP nsWebBrowser::SetProperty(PRUint32 aId, PRUint32 aValue)
mDocShell->SetAllowJavascript(aValue); mDocShell->SetAllowJavascript(aValue);
} }
break; break;
case nsIWebBrowserSetup::SETUP_ALLOW_META_REDIRECTS:
{
NS_ENSURE_STATE(mDocShell);
NS_ENSURE_TRUE((aValue == PR_TRUE || aValue == PR_FALSE), NS_ERROR_INVALID_ARG);
mDocShell->SetAllowMetaRedirects(aValue);
}
break;
default: default:
return NS_ERROR_INVALID_ARG; return NS_ERROR_INVALID_ARG;