Closed
Bug 43345
Opened 26 years ago
Closed 26 years ago
browser.cache.enable check
Categories
(Core :: Networking: Cache, defect, P3)
Tracking
()
VERIFIED
FIXED
M17
People
(Reporter: warrensomebody, Assigned: neeti)
Details
(Whiteboard: [nsbeta2+])
Subject:
Re: browser.cache.enable
Date:
Wed, 21 Jun 2000 14:01:27 -0400
From:
snizinsk@us.ibm.com
To:
gagan@netscape.com (Gagan Saksena)
CC:
Warren Harris <warren@netscape.com>, rpotts@netscape.com,
ruslan@netscape.com
Warren,
We haven't done much to check how functional caching is on OS/2. I removed
this code in my build and the change doesn't hurt us.
Skip
gagan@netscape.com (Gagan Saksena) on 06/21/2000 11:04:09 AM
To: Warren Harris <warren@netscape.com>
cc: rpotts@netscape.com, ruslan@netscape.com, Skip
Nizinski/Austin/IBM@IBMUS
Subject: Re: browser.cache.enable
Seems right to me. Skip could confirm if he needs this off for XP_OS2
-Gagan
Warren Harris wrote: I see some "temporary code" to check whether to enable
the cache in http channel, but it's ifdef'd for pc, mac and unix:
#if defined(XP_PC) || defined(XP_MAC) || defined(XP_UNIX)
// Temporary code to disable cache on platforms where it is not
// known to work
static NS_DEFINE_CID(kPrefServiceCID, NS_PREF_CID);
NS_WITH_SERVICE(nsIPref, prefs, kPrefServiceCID, &rv);
PRBool useCache = PR_FALSE;
if (NS_SUCCEEDED(rv))
prefs->GetBoolPref("browser.cache.enable", &useCache);
if (!useCache)
return NS_OK;
#endif
Should we eliminate this ifdef now?
Warren
Status: NEW → ASSIGNED
Component: Networking → Networking: Cache
Target Milestone: --- → M17
Comment 4•26 years ago
|
||
Let's get this done as soon as we can.
Checked in a fix
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•