darin%netscape.com
8f207684b7
fixes bug 95981 "Changes in background images on pages do not show on reload"
...
r/sr=rpotts,dougt a=roc+moz
2001-08-24 22:24:10 +00:00
darin%netscape.com
d4f82773f1
backing out my patch for bug 95981 to fix blocker bug 96480
2001-08-23 18:58:25 +00:00
darin%netscape.com
0f296a15be
fixes bug 95981 "Changes in background images on pages do not show on reload"
...
r=pavlov, sr=dougt
2001-08-22 00:46:08 +00:00
darin%netscape.com
15c5b12037
fixes bug 94811 "leaking sockets; nsISocketTransport::IsAlive not implemented reliably"
...
r=wtc, sr=dougt
2001-08-22 00:24:26 +00:00
stephend%netscape.com
91188a72aa
Attempt to fix rjesup's bustage. a=sheriff
2001-08-21 22:43:47 +00:00
rjesup%wgate.com
cc4f0a23ca
bug 96289: mURLParsers cache wasn't. r=gagan@netscape.com,
...
sr=dougt@netscape.com
2001-08-21 21:49:04 +00:00
brendan%mozilla.org
b365808864
Bit checkin for bug 68045, r/sr=waterson&shaver, second attempt. It all works
...
for me on optimized and debug gcc2.96, rh7.1.
- Better failure codes from nsXULPrototypeScript::Deserialize.
- Call nsXULDocument::AbortFastLoads after nsXULPrototypeScript::Serialize
failure, instead of just nulling the FastLoad service's output stream.
- Expose nsXULDocument::AbortFastLoads via nsIXULPrototypeCache, for use from
nsChromeProtocolHandler.cpp. AbortFastLoads flushes the XUL cache now, for
good measure.
- The needless "Current" adjective in nsIFastLoadService attribute and method
names is no more.
- Add a do_GetFastLoadService() helper, to use CID instead of contractid, and
to let the compiler consolidate the static inline CID.
- Add "nglayout.debug.checksum_xul_fastload_file" pref so people can do without
the checksum verification step when reading a FastLoad file.
- Verify the FastLoad file checksum, by default. Also, cache it in the FastLoad
service so we don't recompute it when re-opening the FastLoad file as mailnews
and other top-levels start up. Fill the checksum cache in EndFastLoad, when
the last pseudo-concurrent top-level finishes loading.
My hope to compute the checksum while writing the FastLoad file ran afoul of
misordered writes. The old code to checksum the in-memory nsFastLoadHeader
also was broken on little endian platforms. Now all checksumming is done via
a separate read pass over the complete file, save for the header's checksum
field, which is summed as if it contained zero.
- Track and check FastLoad file dependencies. This required groveling with a
bunch of Necko interfaces in nsChromeProtocolHandler::NewChannel -- read it
and weep. Dependency checking, as well as checksum access and computation,
use better-factored nsIFastLoad{File,Read,Write}Control interfaces.
- nsBufferedStream::Seek wasn't flushing the buffer when seeking backward
within the buffer, but it must, because mCursor bounds the amount to write
if the buffer contains the end of file.
- Add an unbufferedStream readonly attribute to nsIStreamBufferAccess, so we
don't have to screw around with the bufferying layer when checksumming. Also
implement nsIStreamBufferAccess in nsBufferedOutputStream.
- nsISeekableOutputStream was bogus, based on a bad state I had put the
nsBufferedOutputStream code in on its way from being completely broken when
you seek backwards outside of the buffer. Removing this interface required
using nsIFastLoadFileIO in nsFastLoadFileWriter, and it also required careful
ordering of Close calls (the Reader must close after the Writer or Updater,
so that the Reader's underlying, unbuffered input stream can be read by
nsFastLoadFileWriter::Close to compute the checksum.
- Miscellaneous tab/indentation, comment typo, bracing, if( => if ( style,
nsnull vs. 0, useless variable elimination, tortured control flow,
AutoString instead of String, and gratuitous ; after nsISupportsUtils.h
macro call cleanups.
2001-08-21 20:51:34 +00:00
andreas.otte%primus-online.de
5bb1bd5bd3
fix bug 84409 [Incorrect request for page components if main page URL contains ";" character] Implementing param support according to RFC 2396, r=dougt, sr=rpotts
2001-08-21 20:35:01 +00:00
dbaron%fas.harvard.edu
716f9f4695
Replace uses of deprecated NS_IMPL_ISUPPORTS and NS_IMPL_QUERYINTERFACE macros with NS_IMPL_{ISUPPORTS,QUERYINTERFACE}{1,0}. r=jag rs=brendan b=45797
2001-08-21 01:48:11 +00:00
blizzard%redhat.com
8449d6469f
Back out brendan's checkin to try and get linux starting up again.
2001-08-17 19:45:11 +00:00
brendan%mozilla.org
525a387cf2
- Better failure codes from nsXULPrototypeScript::Deserialize.
...
- Call nsXULDocument::AbortFastLoads after nsXULPrototypeScript::Serialize
failure, instead of just nulling the FastLoad service's output stream.
- Expose nsXULDocument::AbortFastLoads via nsIXULPrototypeCache, for use from
nsChromeProtocolHandler.cpp. AbortFastLoads flushes the XUL cache now, for
good measure.
- The needless "Current" adjective in nsIFastLoadService attribute and method
names is no more.
- Add a do_GetFastLoadService() helper, to use CID instead of contractid, and
to let the compiler consolidate the static inline CID.
- Add "nglayout.debug.checksum_xul_fastload_file" pref so people can do without
the checksum verification step when reading a FastLoad file.
- Verify the FastLoad file checksum, by default. Also, cache it in the FastLoad
service so we don't recompute it when re-opening the FastLoad file as mailnews
and other top-levels start up. Fill the checksum cache in EndFastLoad, when
the last pseudo-concurrent top-level finishes loading.
My hope to compute the checksum while writing the FastLoad file ran afoul of
misordered writes. The old code to checksum the in-memory nsFastLoadHeader
also was broken on little endian platforms. Now all checksumming is done via
a separate read pass over the complete file, save for the header's checksum
field, which is summed as if it contained zero.
- Track and check FastLoad file dependencies. This required groveling with a
bunch of Necko interfaces in nsChromeProtocolHandler::NewChannel -- read it
and weep. Dependency checking, as well as checksum access and computation,
use better-factored nsIFastLoad{File,Read,Write}Control interfaces.
- nsBufferedStream::Seek wasn't flushing the buffer when seeking backward
within the buffer, but it must, because mCursor bounds the amount to write
if the buffer contains the end of file.
- Add an unbufferedStream readonly attribute to nsIStreamBufferAccess, so we
don't have to screw around with the bufferying layer when checksumming. Also
implement nsIStreamBufferAccess in nsBufferedOutputStream.
- nsISeekableOutputStream was bogus, based on a bad state I had put the
nsBufferedOutputStream code in on its way from being completely broken when
you seek backwards outside of the buffer. Removing this interface required
using nsIFastLoadFileIO in nsFastLoadFileWriter, and it also required careful
ordering of Close calls (the Writer or Updater must close after the Reader,
so that the Reader's underlying, unbuffered input stream can be read by
nsFastLoadFileWriter::Close to compute the checksum.
- Miscellaneous tab/indentation, comment typo, bracing, if( => if ( style,
nsnull vs. 0, useless variable elimination, tortured control flow,
AutoString instead of String, and gratuitous ; after nsISupportsUtils.h
macro call cleanups.
2001-08-17 09:52:55 +00:00
rjesup%wgate.com
ccd22a09c7
Fix for evil win32 compiler to unhork build. sr=hyatt@netscape.com
2001-08-17 04:46:35 +00:00
rjesup%wgate.com
0c92edd31e
Checkin for buig 92641. Cuts 1000ish allocations from startup; doesn't dup schem as often. r=dougt@netscape.com sr=hyatt@netscape.com
2001-08-17 04:01:38 +00:00
cathleen%netscape.com
b6297898fd
enable MOZ_TIMELINE tool, bug 78793, r=rogc, sr=waterson
2001-08-17 02:03:34 +00:00
dougt%netscape.com
1bca30135b
optimization for nsDownloader. 92804. r=pavlov, sr=darin@netscape.com
2001-08-17 00:17:52 +00:00
dougt%netscape.com
4b690392d2
Fixes 95488. r=bbaetz@netscape.com, sr=darin@netscape.com
2001-08-16 04:53:16 +00:00
naving%netscape.com
2969c13f93
95521 r/sr=mscott, darin. Release the socketTransport object while releasing socket. darin,
...
thanks for the help.
2001-08-16 02:51:51 +00:00
andreas.otte%primus-online.de
cd0098b1b7
fix bug 90439 [relative queries from cgi broken] revert to pre 0.9.2 behaviour when handling relative query urls. r=bbaetz sr=darin
...
fix bug 94849 [Wrong handling of empty relative urls] implement RFC 2396 conforming handling of empty relative urls. r=bbaetz sr=dougt
fix bug 87298 [page context not displayed] remove tabs (\t) from inside absolute urls in case someone "formats" urls. r=dougt sr=darin
2001-08-15 22:29:10 +00:00
cls%seawood.org
8405a1984e
Use NS_PTR_TO_INT32 macros to do 64-bit safe pointer conversions.
...
Bug #20860 r=Roland.Mainz@informatik.med.uni-giessen.de sr=brendan@mozilla.org
2001-08-14 07:59:59 +00:00
cls%seawood.org
df22474323
On BeOS, attempt to recreate the PollableEvent if PR_Poll fails.
...
Bug #70808 r=darin sr=dougt
2001-08-14 00:40:16 +00:00
bbaetz%cs.mcgill.ca
6454c6f000
Bug 92006: Send connection: close to proxies when persistant conections are disabled.
...
Bug 94038: Wrong hostname in the status bar used when proxy-keepalive is enabled.
r=gagan, sr=darin on both patches
2001-08-10 22:04:51 +00:00
bbaetz%cs.mcgill.ca
f40aa5e803
This should be scriptable. r/sr=darin.
2001-08-10 01:11:04 +00:00
darin%netscape.com
7b717767bb
cleaned up some comments and indentation
2001-08-08 10:03:29 +00:00
andreas.otte%primus-online.de
c6853783af
bug 40670 [URL: resolution of protocol:/path] checking in the groundwork to have an easy fix if we ever decide to support these kind of deprecated relative urls. For that a new attribute URIType is added to nsIProtocolHandler and its implementations to store some protocol/scheme dependend information to have enough information to allow correct parsing. r=darin@netscape.com sr=rpotts@netscape.com
2001-08-07 20:42:57 +00:00
serge%netscape.com
00bfeebbb2
bug 79246 PAC: reload of PAC file fails; submitted by tingley@sundell.net, r=serge, sr=darin
2001-08-04 01:53:49 +00:00
ddrinan%netscape.com
0e9bae4719
Bug 85720 - domestic DES 56-bit cipher pref. r=ssaux,sr=blizzard
2001-08-02 23:46:30 +00:00
darin%netscape.com
766e5edb49
Fixes bug 92637 "Hang / crash when double clicking on jpg attachments in news"
...
r=sspitzer, sr=mscott
2001-08-02 19:29:58 +00:00
timeless%mac.com
56e67eb3ec
Bugzilla Bug 89539 Memory leak(s) when memory allocation fails.
...
r=dbaron sr=blizzard
2001-08-01 02:13:00 +00:00
brendan%mozilla.org
8c7c819206
FASTLOAD_20010703_BRANCH landing, r=dbaron, sr=shaver.
2001-07-31 19:05:34 +00:00
serge%netscape.com
91d151ef51
Fixes for 79057 submitted by tingley@sundell.net, r=bbaetz, sr=darin, a=asa@mozilla.org
2001-07-30 22:22:27 +00:00
bbaetz%cs.mcgill.ca
af1c35ac01
Bug 80363. Handle failure trying to get the machine's IP. This broke PAC on the mac because of bug 92516. r=pink, sr=darin, a=blizzard
2001-07-27 21:34:41 +00:00
jaggernaut%netscape.com
c14d9c09a1
Bug 86734: Remove NS_WITH_SERVICE. r=dbaron, rs=scc, a=asa
2001-07-25 07:54:28 +00:00
blakeross%telocity.com
d24cae149b
rv should be rv2 (91056). r/sr=dougt
2001-07-25 06:28:31 +00:00
mkaply%us.ibm.com
5dee02ab1f
OS/2 bustage
...
Didn't anyone notice the attachment I added to 86474 to prevent this?
2001-07-25 03:35:56 +00:00
gordon%netscape.com
f393fd89e8
Fix for bug 86474 and bug 79983. Truncate files used by nsFileTransport
...
and eliminate trailing garbage from updated cache files. r=gagan, sr=darin
2001-07-25 00:40:42 +00:00
bbaetz%cs.mcgill.ca
7bf006780f
Checking in for smeredith@netscape.com
...
Bugs 65583, 78119: implement SOCKS 4.
Bug 92002: SOCKS on the Mac broken.
Bug 48357: SOCKS intermittent 'connection refused' errors.
r=bbaetz, sr=darin
2001-07-25 00:28:28 +00:00
jaggernaut%netscape.com
4d73a251ab
Bug 73353: clean up the REQUIRES lines in Makefiles.
2001-07-23 22:36:12 +00:00
dougt%netscape.com
cfe7214c71
Adding check for null. Shooting in the dark for bug 84073. r=bbaetz, sr=me.
2001-07-19 02:33:17 +00:00
bbaetz%cs.mcgill.ca
2b4f335199
Bug 86109. Pass "gopher" into the port-safety function for consistency, and
...
remove the default parameter. r=jesse, sr=dougt
2001-07-18 23:48:21 +00:00
dougt%netscape.com
d6551878c1
Removing reduntant init to mObserver. suggested by brendan@mozilla.org
2001-07-17 21:22:48 +00:00
dougt%netscape.com
06b468b27a
Fix for bug 75633. preventing onStreamComplete firing prior to initialization. r=valeski, gagan. sr=vidur.
2001-07-17 18:57:42 +00:00
dbaron%fas.harvard.edu
bf82abfd11
Header include dependency cleanup. b=64023 r=jag rs=brendan
2001-07-16 02:40:48 +00:00
serge%netscape.com
d4d8f8a2cf
ecking in tingley@sundell.net patch to fix (79052) PAC: isPlainHostName not working; r=serge; sr=rpotts
2001-07-11 00:30:13 +00:00
jaggernaut%netscape.com
03ab87e4a1
Bug 88413: Remove |GetUnicode()| from nsString (and replace it with |get()|). r=dbaron, rs=scc.
...
This removes all call-sites I can currently fix. Tomorrow I'll try to get someone to checkin my changes to security/ and I'll get some help with the Netscape side of things.
nsString::GetUnicode()'s final death-blow will be dealt soon. Please keep this in mind as you add new code :-)
2001-06-30 11:02:25 +00:00
dougt%netscape.com
01b5b1c773
Fixes in-use file transport count going negative. patch by sfraser@netscape.com, r=me, sr=darin@netscape.com. (87861)
2001-06-29 04:51:11 +00:00
bzbarsky%mit.edu
83dce82df3
Add an nILineInputStream interface, a ReadLine() helper function, and an
...
implementation of this interface by nsFileInputStream. Bug 81165,
r=dougt, sr=darin
2001-06-28 03:19:51 +00:00
danm%netscape.com
bfbd650dc3
tracking nsRequestObserverProxy.h rev 1.4. bug 84842 r=darin,hyatt
2001-06-28 00:00:51 +00:00
danm%netscape.com
41d34ca3f4
making consistent a public interface which differed depending on whether you were building debug. how skanky was that? bug 84842 r=darin,hyatt
2001-06-28 00:00:20 +00:00
dougt%netscape.com
4317ce8a47
Fixes bug 87360. r=morse@netscape.com, sr=darin@Netscape.com. Fixes a bunch of url-protocol problems.
2001-06-27 02:29:19 +00:00
rpotts%netscape.com
ac6bfbd8f6
bug #82458 (r=jst, sr=darin, a=blizzard). THis patch causes STATE_TRANSFERRING notifications to fire when URLs are loaded out of the disk cache or memory cache...
2001-06-25 06:22:44 +00:00
dougt%netscape.com
c306e0513b
Landing url parsing branch. 73845. r=alecf@netscape.com, sr=darin@netscape.com, a=blizzard@rednat.com.
...
This fixes many crashes caused by illegal uses of the nsStdURL.
This also allows a plugable protocol to provide their own url parser.
2001-06-21 22:02:47 +00:00
cls%seawood.org
80f526179f
Replaced NO_SHARED_LIB & NO_STATIC_LIB with BUILD_SHARED_LIBS, BUILD_STATIC_LIBS, FORCE_STATIC_LIB & FORCE_SHARED_LIB. Added FORCE_USE_PIC.
...
Changes allow us to have a finer control over which parts of the tree are built with PIC. Part of the static build branch landing.
Bug #46775 r=mcafee a=leaf
2001-06-18 22:10:38 +00:00
gagan%netscape.com
8f9ddde441
Fix for bug 72805. r=darin, sr=dougt, a=asa. No longer displaying the "Resolving..." message for IP addresses (and additionally for cached/resolved cases). This should now reduce the number of "Resolving hostname" events (and hence flashing status messages) on page loads as well.
2001-06-18 21:26:16 +00:00
dougt%netscape.com
04c40ac7f7
Allows port 70 for all protocols. r=bbaetz@netscape.com, sr=me, a=blizzard@mozilla.org
2001-06-18 20:13:30 +00:00
scc%mozilla.org
2e8b3e9481
bug #85271 : sr=waterson, r={beard, jag, dbaron}, a=asa. Eliminate features of |nsXPIDLC?String| that keep it out of the string hierarchy (i.e., using assigment to rebind ownership, static |Copy| members, and |getter_Shares|), fixing some leaks in the process.
2001-06-17 05:23:38 +00:00
cmanske%netscape.com
7254c608f8
Fixed null mScheme in 'SchemeIs' method. b=85981, r/a=gagan, sr=kin, a=asa-drivers
2001-06-15 03:32:59 +00:00
darin%netscape.com
26fb5a8c48
Fixes bug 85822 "crash in [@ nsHttpTransaction::Cancel] [cancelation not thread-safe]"
...
r/sr=dougt,blizzard a=blizzard
2001-06-14 20:49:17 +00:00
timeless%mac.com
21eecdef6d
patch by andreas.otte@primus-online.de based on patch by sballard@netreach.net
...
r=bbaetz and sr=dougt a=asa@mozilla.org
2001-06-14 03:14:21 +00:00
darin%netscape.com
50796c1a85
Fixed bug 84572 "networking deadlock while posing security UI and closing win"
...
r=danm, sr=dougt, a=asa
2001-06-13 06:08:03 +00:00
blizzard%redhat.com
74d08db8f2
Fix bug #85290 . "proxy autoconfig module needs to shut the hell up" r=gerv,rs=tor,a=asa
2001-06-11 21:54:48 +00:00
darin%netscape.com
9267f76bf6
Fixes bug 73392 "ad blocking hosts file prevents page load"
...
r=gagan, sr=dougt, a=asa
2001-06-11 21:24:25 +00:00
darin%netscape.com
2ac7f5dbcb
Fixes bug 80419 (part 1) "http should reclaim connections immediately"
...
r=bbaetz, rs=dougt, a=blizzard
2001-06-11 21:19:37 +00:00
mkaply%us.ibm.com
decaf6bb2d
EMX build break - direct.h doesn't exist on EMX
2001-06-06 14:23:09 +00:00
danm%netscape.com
d5a1528ea4
simply adding some logging helpful for debugging event queue interactions. from bugscape bug 4890, bugzilla bug 84247 r=darin
2001-06-06 02:34:52 +00:00
dougt%netscape.com
9174af6517
Fixes bug 83401. r=gagan, darin, sr=vidur, a=blizzard. Add port blacklisting to necko
2001-06-06 00:10:09 +00:00
dougt%netscape.com
f98f885905
Fixes 81709. Allows for compares between different nsIURI impl. r=rpotts, sr=darin, a=asa
2001-06-05 19:01:44 +00:00
sgehani%netscape.com
0d975b7985
Remove extra whitespace after "nsIPasswordManager.idl \"
2001-06-05 12:37:01 +00:00
sgehani%netscape.com
12f46ec2dd
Fix unix bustage: remove whitespace after "nsIPasswordManager.idl \"
2001-06-05 12:34:54 +00:00
sgehani%netscape.com
5f6a281b23
Stop building nsIPasswordManager.idl in extensions/wallet and start building it in netwerk/base.
b = 76095
r = morse
sr = sfraser
a = drivers
2001-06-05 11:43:40 +00:00
ducarroz%netscape.com
91c5f2c00b
Fix for bug 81751. Add define for mime type multipart/x-mixed-replace and multipart/byteranges. Also export nsIFileStreams.idl on Mac. R=varada, SR=mscott, A=asa
2001-06-04 22:59:22 +00:00
serge%netscape.com
6ec2a09d4a
fix for #79371 ; crash or app failure when Proxy type = PAC, sr=darin; r=gagan; a=asa
2001-05-31 01:56:21 +00:00
rpotts%netscape.com
201746ea0c
bug #73234 (r/sr=darin, r=valeski, a=asa). Fix progress event sink messages to pass the nsIInputStreamChannel as the request - instead of the underlying transport request...
2001-05-30 02:55:51 +00:00
gagan%netscape.com
db0b8ae0f3
Fix for bug 81214. We were running the PAC routines even for non-relevant scheme URLs like chrome, file, etc. Added a check to only process proxy related ones. r=pavlov, sr=darin, a=asa
2001-05-24 07:12:06 +00:00
gagan%netscape.com
067e8317a0
Fixes for bug 72599. Checking in on dougt's behalf. r=dougt, sr=brendan, a=blizzard.
2001-05-24 00:57:57 +00:00
dougt%netscape.com
5e32338b16
Fix for 80101. minor optimization in GetName(). submitted by sfraser@netscape.com, sr=dougt@netscape.com
2001-05-18 06:17:00 +00:00
dougt%netscape.com
e7acdf64e3
Adding new interface to build for bug 81384. r=valeski@netscape.com, sr=darin@netscape.com.
2001-05-18 06:09:41 +00:00
jgmyers%netscape.com
3a1e9e0ff9
clean up nsITransportSecurityInfo: bug 78292 r=thayes sr=darin
2001-05-18 00:02:46 +00:00
mkaply%us.ibm.com
d4037e8c6e
IRIX bustage
2001-05-17 16:38:19 +00:00
dougt%netscape.com
b5cf0a61bf
Fixes 68335. r=gagan, sr=darin. This makes ensures that string getters return null instead of an empty string. Some code paths prior to this patch would return "" while others null.
2001-05-17 06:48:20 +00:00
ddrinan%netscape.com
899ba1ad1a
Enable support for OCSP. Bug#80178, r=mcgreer@netscape.com, sr=blizzard@mozilla.org
2001-05-15 17:59:10 +00:00
darin%netscape.com
776bb72371
fixes blocker bug 80424 "post regression" r=pavlov, sr=jst
2001-05-14 10:20:46 +00:00
rpotts%netscape.com
f3e719c2c1
bug #65777 (r=valeski, sr=mscott) - Window targeting fixes...
2001-05-14 02:16:27 +00:00
darin%netscape.com
b5c178a4a8
Http branch landing: changes to netwerk/ (bug 76866) r=gagan,sr=dougt,a=chofmann
2001-05-11 21:04:09 +00:00
neeti%netscape.com
db0af255c2
fix for bug 78654 - netwerk must not print to console in opt builds.r=dougt, sr==darin.
2001-05-10 13:14:03 +00:00
thayes%netscape.com
b6122bcfe2
Bug 79528 r=ddrinan/sr=ben Add edit window for SSL ciphers
2001-05-09 04:04:32 +00:00
jst%netscape.com
621060c4fd
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
bryner%uiuc.edu
9fe68ff491
Part of fix for 74387 -- return an error code from nsSocketTransport::Init if we don't have a socket provider for the given socket type, such as if PSM is not installed. r=bbaetz, sr=darin.
2001-05-08 02:06:46 +00:00
ccarlen%netscape.com
df1a6e78a8
Bug 78745 - nsIPromptService::ConfirmEx needs to be more flexible. r=valeski, sr=sfraser
2001-05-06 15:03:55 +00:00
neeti%netscape.com
ed79f9f4b8
fix for bug 78376 - ASSERTION: New URI failed: 'Error', file mozilla\netwerk\base\src\nsProtocolProxyService.cpp
...
r=gagan, sr=darin
2001-05-04 02:42:44 +00:00
mkaply%us.ibm.com
51c0be37d7
OS/2 TB breakage
...
Making _getdrive work on OS/2
2001-05-03 22:03:57 +00:00
mkaply%us.ibm.com
91a1eb6f95
More bad line endings
2001-05-03 21:15:07 +00:00
mkaply%us.ibm.com
e931a790bc
OS/2 TB break - bad lineendings
2001-05-03 21:11:36 +00:00
dougt%netscape.com
e70e59136f
Fixes 38643. No longer do we eagerly resolve UNC paths on windows. r=gagan@netscape.com, sr=darin@netscape.com
2001-05-03 19:30:43 +00:00
scc%mozilla.org
e40df0d961
bug #75504 ; sr=jband. simple fixes correcting where people inappropriately applied |getter_AddRefs|
2001-05-03 10:09:59 +00:00
ccarlen%netscape.com
9143ba9411
Bug 75993 - Make the checkvalue param on alertCheck,confirmCheck be in/out. r=valeski,sr=alecf
2001-05-02 14:47:09 +00:00
bienvenu%netscape.com
c65da247c9
add ability to reuse file transports r=dougt,sr=darin 74597
2001-04-29 14:57:31 +00:00
valeski%netscape.com
9e8d80d70f
mozilla diffs r=tao, sr=alecf, commercial diffs r=syd, sr=syd/shaver. lower-casing JS calls to createBundle. removing un-used nsILocale param from nsIStringBundle::CreateBundle(). 76332
2001-04-27 21:30:24 +00:00
rpotts%netscape.com
f56f8cf05b
fix for bugs #55867 , 63529, 26295, 63247 (r=darin, valeski)
2001-04-27 21:05:52 +00:00
bienvenu%netscape.com
d3d7c939d8
backout build bustage fix
2001-04-27 05:58:32 +00:00
bienvenu%netscape.com
9e6bd125bb
fix build bustage
2001-04-27 05:03:54 +00:00
attinasi%netscape.com
0951aed2ba
Fixed assertion due to invalid proxy configuration. Patch from Peter V. for bug 53080 r=dbaron@fas.harvard.edu sr=attinasi@netscape.com
2001-04-26 23:53:27 +00:00
dbaron%fas.harvard.edu
ab65e0c9a4
Make dnsDomainIs behave as it did in Netscape 4.x. b=76649 r=gagan@netscape.com sr=blizzard@mozilla.org
2001-04-26 14:06:22 +00:00
ccarlen%netscape.com
fad24de4ee
Bug 46859 - Remove UniversalDialog. r=valeski/sr=rpotts,sfraser/a=blizzard
2001-04-21 00:26:18 +00:00
ddrinan%netscape.com
130f9d3220
Fix for bug #75277 , enable tls. r=javi@netscape.com, sr=darin@netscape.com
2001-04-18 00:46:04 +00:00
dbaron%fas.harvard.edu
f368832434
Adding nsProxyAutoConfig.js to makefiles and installer manifests. b=53080 r=blizzard@mozilla.org
2001-04-17 14:33:19 +00:00
gordon%netscape.com
99a7277559
bug 72528, remove old cache from build. sr=darin.
2001-04-17 10:47:22 +00:00
drapeau%eng.sun.com
3fd96a407d
Bug fix for Bugzilla bug 53080. Includes a JavaScript XPCOM component that
...
does the automatic proxy config. Much thanks to Denis Antrushin
(adu@sparc.spb.su ), among others, for writing this fix.
2001-04-17 02:34:47 +00:00
dbaron%fas.harvard.edu
8fe95fc5ea
Remove carriage returns (^M) to fix cement (IRIX) bustage.
2001-04-17 00:32:17 +00:00
jgmyers%netscape.com
b087bf8e1e
rename tls sockets to starttls: bug 74387 r=javi r=darin sr=mscott
2001-04-16 21:01:29 +00:00
dougt%netscape.com
1049a51a5e
Fixes bug 64686. Simple impl of ReadSegments. r=gagan@netscape.com, sr=darin@netscape.com.
2001-04-16 19:59:36 +00:00
darin%netscape.com
83d8fc6238
Fixes bug 76064 "nsSocketBOS::Write does not initialize return value"
...
patch=rginda, sr=darin
2001-04-16 19:57:38 +00:00
darin%netscape.com
45b4c27450
Patch to finalize necko loadFlags and fix HTTP validation correctness w.r.t.
...
cache validation preferences and browsing via history. r=gagan,gordon.
Fixes several bugs that I would mention here if bugzilla weren't down ;-)
2001-04-14 02:02:19 +00:00
valeski%netscape.com
6dd19605b8
sr=darin. no bug. just dead wood static cid cleanup
2001-04-13 11:23:11 +00:00
darin%netscape.com
0109821a84
Fixes bug 74512 "file transport should support non-blocking streams" r=dougt, sr=rpotts.
2001-04-13 06:14:11 +00:00
mscott%netscape.com
a752442563
Fix some assertions by making sure nsStreamListenerTee's isupports definition includes nsIRequestObserver.
...
sr=darin
2001-04-13 02:50:31 +00:00
mkaply%us.ibm.com
4b8ffff027
#69613
...
r=dougt, sr=darin
OS/2 needs to follow part of a Windows codepath
2001-04-11 11:06:25 +00:00
ccarlen%netscape.com
7720f48f12
Bugs 70379, 70380 - Hide nsISingleSignon from embedding apps, split auth prompting methods out of nsIPrompt into a new interface. r=valeski, sr=rpotts.
2001-04-10 18:30:25 +00:00
ccarlen%netscape.com
8eb1495e0b
New files for bug 70380 - not yet part of build. r=valeski, sr=rpotts
2001-04-10 14:40:07 +00:00
darin%netscape.com
0ddcbf0b7d
fixes win32 startup crash. sr=sspitzer
2001-04-10 09:07:11 +00:00
darin%netscape.com
b51b668b1a
Removed erroneous NS_BREAK from nsSocketRequest::Cancel
2001-04-10 06:57:01 +00:00
darin%netscape.com
962a26ce88
Needed to fix mac bustage from necko api changes.
2001-04-10 06:21:54 +00:00
darin%netscape.com
8780a5c665
Fixes mac bustage
2001-04-10 06:19:33 +00:00
darin%netscape.com
41efbc6217
Necko API changes, bug 74221. r=valeski, sr=rpotts.
2001-04-10 06:01:08 +00:00
darin%netscape.com
cc34d99806
Necko API changes, bug 74221. r=valeski, sr=rpotts.
2001-04-10 05:43:26 +00:00
morse%netscape.com
be028d0a54
bug 70382, redo password manager idl for embedding requirements, r=ccarlen, sr=alecf
2001-04-05 06:29:48 +00:00
darin%netscape.com
fc5776cb4f
Fixes bug 74118 "can't launch with a new profile" r=bryner, sr=mscott
2001-04-04 07:28:51 +00:00
darin%netscape.com
b0e435e189
Fixes bug 72520 "support for cacheKeys must be implemented" r=gordon sr=dougt
2001-04-02 01:20:43 +00:00
jgmyers%netscape.com
3c357f35f1
distinguish weak crypto in PSM2: bug 31896 r=dmose ser=darin
2001-04-01 19:37:29 +00:00
darin%netscape.com
b7b2207299
Fixes bug 72320. abort on exit (sending "logout" to a closed IMAP socket?).
...
r=sspitzer,dougt,mscott.
2001-04-01 05:17:42 +00:00
darin%netscape.com
e267f38ace
Fixes bug 72348 "Page load performance slower in 0.8.1 than under 0.8"
...
r/sr=dougt,brendan
2001-03-29 02:34:19 +00:00
darin%netscape.com
9be95a251d
Fixes bug 73231. nsFileTransport should report progress even if content-length
...
is unknown. r=rpotts, sr=dougt
2001-03-28 20:56:59 +00:00
darin%netscape.com
1c87e8e194
Fixes bug 73234. nsInputStreamChannel needs to forward itself as the request
...
in progress events. r=rpotts, sr=dougt
2001-03-28 20:55:26 +00:00
bienvenu%netscape.com
46b4943963
send notification for going offline before we kill all the sockets r/sr darin,dougt 73374
2001-03-27 15:17:52 +00:00
cls%seawood.org
703015f4d7
Change netwerk/mime to use MODULE=mimetype to remove avoid confusion with mailnews/mime . Update necessary REQUIRES.
...
Bug #68381 r=jag
2001-03-26 23:40:28 +00:00
darin%netscape.com
72ed9a2969
Fixes bug 72973. HTTP needs to release its cache output stream before
...
releasing its cache entry descriptor. r=sean@beatnik.com , sr=dougt@netscape.com
2001-03-26 23:12:33 +00:00
disttsc%bart.nl
6e48266508
Clean up REQUIRES lines. r=cls
2001-03-25 22:59:27 +00:00
disttsc%bart.nl
5c4c414172
Bug 60952: nsMimeTypes.h has wrong type for APPLICATION_HTTP_INDEX, author=Bradley Baetz <bbaetz@cs.mcgill.ca>, r=blake, sr=darin
...
Bug 68651, nsFtpConnectionThread should use NS_LITERAL_STRING, author=Bradley Baetz <bbaetz@cs.mcgill.ca>, r=jag, sr=dougt
2001-03-24 22:57:35 +00:00
valeski%netscape.com
90085983e6
sr=dougt. adding missing lowercaseing of scheme. 72720.
2001-03-24 00:58:32 +00:00
valeski%netscape.com
c1098ac6ac
r=rpotts. comment changes only. 48726. adding status to idl files of api rev. ifaces.
2001-03-24 00:22:18 +00:00
darin%netscape.com
2b1bf7fa83
Completes transistion from ULONG_MAX to PRUint32(-1) which was intended to
...
fix frizilla redness. pinkerton checked in the necessary ones; this is
just for completeness. r=gagan,sdagley,sfraser,pinkerton
2001-03-23 03:32:26 +00:00
blizzard%redhat.com
090bb112c8
Fix bug #63162 . Make sure that nsSocketBOS::Write actually finishes the write with non-blocking sockets where there is a short write. This should fix problems with large corrupted mail attachments. r=darin,bryner sr=brendan
2001-03-23 03:14:56 +00:00
sfraser%netscape.com
3bd3fa0ea0
Fix the fizilla build a better way by #including <limits.h> only where needed. r=pinkerton,brade, a=akkana.
2001-03-22 22:56:11 +00:00
javi%netscape.com
abaa712847
Fix for bug 72843 r=dougt sr=sfraser
Update Mac build scripts for PSM 2.0
Make necko export the default prefs for security on the Mac.
2001-03-22 01:28:52 +00:00
dougt%netscape.com
f576fd5563
fix for 69143. This patch prevents non existant files from entering into
...
the file transport process loop for reading.
2001-03-21 19:44:23 +00:00
gordon%netscape.com
af685fb9d1
Landing MOZ_NEW_CACHE_20010314_BRANCH, incorporating feedback from recent test builds. New cache is still disabled by default.
2001-03-20 22:42:03 +00:00
dougt%netscape.com
cbcd171528
Fixes bug 71397. s/r=waterson@netscape.com
2001-03-16 21:33:23 +00:00
blakeross%telocity.com
d267ce5381
Fix 49934: gopher support, minor restructuring of directory viewer. necko: r=darin,dougt sr=rpotts other: r=waterson,mstoltz,jag sr=alecf
...
Fix 70404: assertionsf or datetime and finger. r=dougt, sr=rpotts
Both patches by Bradley Baetz (bbaetz@cs.mcgill.ca )
2001-03-14 02:41:18 +00:00
darin%netscape.com
579a4867b1
[not part of the build] Adding nsICachingChannel.idl for the new cache.
2001-03-13 11:15:06 +00:00
gordon%netscape.com
29a0f4877d
fix for bug 29338 "PR_Poll should not poll (spin) on Mac". Checking in for sfraser. r=dougt, gordon, sdagley sr=sfraser or vice versa.
2001-03-13 06:58:56 +00:00
darin%netscape.com
294c54750c
[not part of the build] Added a new interface to replace nsIStreamAsFile
...
for use with the new cache.
2001-03-13 02:24:12 +00:00