Граф коммитов

337 Коммитов

Автор SHA1 Сообщение Дата
morse%netscape.com 2e220886e1 remove lock from SI_LogNewURL to assure it won't deadlock 1998-08-20 02:31:57 +00:00
valeski%netscape.com 325635f76c fixed memory leak a little more safely :) 1998-08-19 23:33:46 +00:00
valeski%netscape.com 82dab1fc3a fixed memory leak 1998-08-19 23:32:43 +00:00
valeski%netscape.com bd04b0bff1 RAPTOR ONLY CHECKIN
network/module/nsIURL.h
Added Get/Set ReloadType methods so a user can query/set the reload type for the url. The default is normal reload.

network/module/nsURL.cpp
Added support for the new nsIURL interface methods (Get/Set ReloadType).

network/module/nsNetService.cpp
OpenStream and OpenBlockingStream now query the nsIURL for it's reload type before creating the url struct. This way we can control how the url is loaded.
1998-08-19 23:00:15 +00:00
scullin%netscape.com 4fe774fe81 Move resource hack to tip. 1998-08-19 21:38:57 +00:00
cls%seawood.org 90d0af1408 AUTOCONF_1_0 landing. 1998-08-19 20:42:14 +00:00
morse%netscape.com 649e87efc2 fixed incorrect return type on NET_CookiePermission 1998-08-19 02:30:25 +00:00
valeski%netscape.com 22f10c8539 network/module/nsIRefreshUrl.h
Extended the nsIRefreshUrl interface to include a cancel method.

network/module/nsNetService.cpp
1. Added code to hook the nsConnectionInfo object up to the nsISupports pointer in the url being loaded.
2. Removed the redirect logic in bam_exit_routine(). The backend dependency on the front end is gone.

network/module/nsNetStream.cpp
Added initialization/destruction of the nsISupports pointer in the nsConnectionInfo.

network/module/nsNetStream.h
Added the nsISupports member declaration to nsConnectionInfo, and remvoed the redirect member variable.

network/module/nsNetStubs.cpp
FE_SetRefreshURLTimer() routine has been modified so it no longer relies on the pConsumer (i.e. nsDocumentBindInfo) which was causing us to leak it. Now we use the nsISupports pointer in the nsConnectionInfo object to access the nsIRefreshURL interface so we can reload the url.

network/module/nsStubContext.cpp
Modified stub_complete() so we no longer pay attention to the redirect member of the nsConnectionInfo object.

network/module/nsIURL.h
1. Added GetContainer() method to nsIURL which returns the nsISupports pointer of the container for this url.
2. created a new NS_NewURL() routine which takes an nsISupports pointer as a parameter.

network/module/nsURL.cpp
1. Added a new nsURL constructor that takes a nsISupports pointer as a param.
2. Added GetContainer() method and nsISupports pointer initialization/destruction.
1998-08-18 23:24:28 +00:00
valeski%netscape.com 02099d72e5 fixed a memory leak 1998-08-18 22:38:03 +00:00
morse%netscape.com f7c322de3f changes for privacy-central pane 1998-08-18 20:00:37 +00:00
morse%netscape.com 762e203eac make it compile with rhapsody compiler 1998-08-18 19:40:55 +00:00
mcafee%netscape.com ddc23c5843 Break up some logic so the Rhapsody compiler can handle it. 1998-08-18 08:06:12 +00:00
hshaw%netscape.com 4f527027e4 Fix build bustage, moral of the story, be very careful with macros which implicitly take & of your arguments 1998-08-18 02:54:13 +00:00
hshaw%netscape.com 2a728a51c2 Fix buffering problem and memory leak for gzip compressed content. Generic problem was causing assert failure on Windows only 1998-08-18 00:14:32 +00:00
morse%netscape.com 605497f057 restore reference to MK_SIGNON_SELECTUSER, Linux bustage is a dependency-build problem 1998-08-16 22:57:02 +00:00
morse%netscape.com a34fe13651 removed MK_SIGNON_SELECTUSER until I determine why it broke Linux dep build on Gromit 1998-08-16 21:12:53 +00:00
morse%netscape.com e7fdcabdfd fixed problems when there are multiple usernames for the same form 1998-08-16 19:41:16 +00:00
morse%netscape.com 19cd8473fe fix bug in cookie viewer 1998-08-15 15:42:18 +00:00
morse%netscape.com f4523e0395 fixed bug in sigon viewer 1998-08-15 15:40:46 +00:00
troy%netscape.com a995892c08 Changed PR_FREEIF to delete[] (call to nsString::ToNewCString) 1998-08-15 01:53:38 +00:00
guha%netscape.com 77609883b0 output rfc822 (reviewed by rjc) 1998-08-15 01:33:39 +00:00
morse%netscape.com 6eb1d7c982 fix problems in signon viewer 1998-08-15 01:18:40 +00:00
morse%netscape.com 7444319825 fix problems in cookie viewer 1998-08-15 01:17:50 +00:00
gagan%netscape.com 33bce2cc76 First Checked In. 1998-08-14 23:48:05 +00:00
thom%netscape.com ce45547fa2 added nsIRefreshUrl.h to manifest 1998-08-14 21:35:42 +00:00
sdagley%netscape.com 049fa0d6c2 Add MacFE stubs for FE_CheckConfirm and FE_SelectDialog for morse's privacy code. danm acquired the appropriate permissions from the module owners for the XP spammage. 1998-08-13 22:17:51 +00:00
sdagley%netscape.com 02ff6820f9 Add MacFE stubs for FE_CheckConfirm and FE_SelectDialog for morse's privacy code. danm acquired the appropriate permissions from the module owners for the XP spammage. 1998-08-13 22:11:56 +00:00
valeski%netscape.com d791bc8379 network/module/Makefile -
1. 310133 - Added nsIRefreshUrl.h to the list of exports.

network/module/makefile.win -
1. 310133 - Added nsIRefreshUrl.h to the list of exports.

network/module/nsIHttpUrl.h -
1. 310133 - Extended the nsIHttpUrl interface to include the AddMimeHeader() method which adds an http header to the url.

network/module/nsHttpUrl.cpp -
310133 - 1. Added support for the AddMimeHeader() method so http urls can have headers added outside of the actual data retrieval in netlib. This method calls NET_ParseMimeHeader() directly.
2. Added a public member, a pointer to the netlib URL_Struct that was created for this nsHttpUrlImpl. This pointer is the link between netlib and the outside world; the adhesive agent between url structs and nsURLImpls.

network/module/nsNetStream.h -
1. 310133 - Added a public memeber variable to nsConnectionInfo. It's a bool that tells us whether or not a redirect has occurred.

network/module/nsNetStream.cpp -
1. 310133 - Added initialization (FALSE) of new redirect member.

network/module/nsNetStubs.cpp -
1. 310133 - Implemented FE_SetRefreshURLTimer(). This function is called from NET_GetURL() when we recognize that we have a url to refresh.

network/module/nsStubContext.cpp -
1. 310133 - Added check to see if we're redirecting in stub_complete() which gets called when a stream completes. If we are, we don't want to release/destroy the pConsumer, this will happen in nsNetService's bam_exit_routine().

network/module/nsNetService.cpp -
1. 310133 - added nsConnectionInfo->redirect check in bam_exit_routine() so we give the consumer a successful binding event if the consumer is still around. This is iffy.
1998-08-13 20:10:49 +00:00
valeski%netscape.com d276dc3f47 310133 - Added nsIRefreshUrl.h to the build. This file defines the nsIRefreshUrl interface which simply declares a method that allows a url to be refreshed/reloaded after a given interval. 1998-08-13 20:05:13 +00:00
vidur%netscape.com 87efb86929 Fixed problem with mSpec being allocated with something other than PR_Malloc 1998-08-13 19:05:36 +00:00
rpotts%netscape.com 6d987306b9 Fixed OnDataAvailable(...) to abort the stream if it returns a failure code... 1998-08-13 08:19:49 +00:00
vidur%netscape.com d183e5debb Added better handling of search component of URL. Added GetSearch() method to nsIURL. 1998-08-13 04:35:37 +00:00
michaelp%netscape.com f199e896c4 fixed build. 1998-08-13 00:07:09 +00:00
toshok%netscape.com 170148f272 Fix non windows build - FE_CheckConfirm needs to have the same number of arguments in both the XP_WIN/not XPWIN cases. 1998-08-12 22:59:36 +00:00
danm%netscape.com e7eccbbf13 XP_WIN versions of the privacy FE dialogs 1998-08-12 21:46:09 +00:00
saari%netscape.com 4f01f56a85 Mac only I/O buffer size increases Eliminating speed bottlenecks. 1998-08-12 21:30:26 +00:00
morse%netscape.com 85f71dc88f improved signon viewer 1998-08-12 04:03:33 +00:00
morse%netscape.com 52e7734fff improved cookie viewer, approved by valeski 1998-08-12 03:59:45 +00:00
jgellman%netscape.com 7493d1b4fd added ifdef's needed 1998-08-11 21:27:14 +00:00
jgellman%netscape.com f1d319ce75 got jwz's libmime changes building on windows 1998-08-11 21:24:29 +00:00
valeski%netscape.com 7e6f750228 added the transfer_encoding reset code to all builds (no longer #ifdef'd) and placed it everywhere we were doing content_encoding clearing. Also did some reformatting. Ran the transfer_encoding stuff by gagan. 1998-08-11 19:07:55 +00:00
valeski%netscape.com a1d79335a3 nglayout - clear the transfer encoding field in the url_s before doing a redirect so it doesn't interfer with the redirecting url stream selection 1998-08-11 05:19:03 +00:00
valeski%netscape.com c07f086539 another memory leak and formatting changes 1998-08-11 04:52:12 +00:00
valeski%netscape.com a587fbf475 someone forgot to add parenthesis which could cause memory leaks on redirects. Not anymore! Parenthesis added. 1998-08-11 02:59:31 +00:00
donm%netscape.com ba8400e0d7 Fixes Unix build problem with MOZ_COOKIEMANAGE and MOZ_SINGLESIGNON
flags turned on.  Approved by: Steve Morse
1998-08-10 20:38:26 +00:00
morse%netscape.com c09154ac62 fixed bug involving freeing of memory that was never allocated, reviewed by Pinkerton 1998-08-10 20:36:41 +00:00
waterson%netscape.com 7d6d0c2535 Added some info to the begin-session timing trace. 1998-08-09 20:32:48 +00:00
waterson%netscape.com e4563540c7 Modified timing macros to include MWContext parameter. 1998-08-09 20:32:30 +00:00
jwz%mozilla.org b0b51df865 oops, typo'ed an extra ";" that gcc doesn't like. 1998-08-09 06:02:27 +00:00
jwz%mozilla.org 6ce77c912a build and link against libmime (on Unix only, until I find some victims to
test things out on the other platforms.)
1998-08-09 03:53:14 +00:00