Commit Graph

66 Commits

Author SHA1 Message Date
gagan%netscape.com
4e6f62a933 N2 landing... everybody run! duck! hide...! It really should be ok. 1999-03-25 00:22:56 +00:00
hshaw%netscape.com
8e87458b8a Backout M3 Bug #1542 changes (to go on branch) mkgeturl.h mkgeturl.c nsNetService.cpp 1999-03-17 20:21:31 +00:00
hshaw%netscape.com
c4be4c3fd9 Timebomb workaround for static initialization of netlib, M3 Bug #1542 1999-03-17 19:25:22 +00:00
mcafee%netscape.com
7aac6a61a6 Adding __SVR4 to check for SunOS 4.1.3, wrapping this check into MOZ_MAY_HAVE_DNS. a=spence 1999-02-26 06:20:48 +00:00
kipp%netscape.com
6556ccaecf Removed layers usage 1999-02-02 17:35:30 +00:00
alecf%netscape.com
94af0d03e7 rename old MOZ_MAIL_NEWS macro to OLD_MOZ_MAIL_NEWS so that we can turn on MOZ_MAIL_NEWS flag to build the whole client 1999-02-02 04:13:24 +00:00
mcmullen%netscape.com
df728321d8 Added all the nucache files to the memory module project (as a group) so that NU_CACHE can be turned on with a flick of the wrist, made the modular memory library build with the NU_CACHE flag turned on, fixed build warnings and errors. The NU_CACHE flag is still OFF, because the database code doesn't exist for Macintosh or Unix :-( 1999-01-14 23:21:06 +00:00
raman%netscape.com
2d987076de Bug fix for 928. Check for null address in the URL_s structure. 1998-12-08 17:55:03 +00:00
akkana%netscape.com
0777b3f26c Fix C++ comment for Irix build 1998-11-25 02:50:20 +00:00
gagan%netscape.com
4496605d3a We were unnecessarily checking cache entries for local resources. This should speed things up... 1998-11-20 23:03:39 +00:00
kipp%netscape.com
f7d689e177 Removed a bogus assert 1998-11-20 19:28:44 +00:00
morse%netscape.com
a02b658e50 separate trust labels from cookie management 1998-11-10 04:31:26 +00:00
scullin%netscape.com
fe75b83cbd Do pluggable about pages. 1998-10-23 18:51:54 +00:00
valeski%netscape.com
321216b540 NET_ProcessNET() tabs to spaces (4) and general cleanup. removed an un-nesessary local variable and an unused if statement. 1998-10-19 20:15:54 +00:00
valeski%netscape.com
370c7b13bf call me with questions 1998-10-13 21:15:04 +00:00
waterson%netscape.com
4b880ad382 Bug 328922. Added calls to PM_StartBinding() and PM_StopBinding() in NET_SetNewContext(). This ensures that a URL that gets moved is properly tracked by the progress managers. 1998-10-13 20:46:13 +00:00
morse%netscape.com
53b41c6348 recognize -1 value for privacy_policy_url 1998-10-10 02:53:50 +00:00
waterson%netscape.com
b3aad14340 Touch down progress bar changes from PROGRESS_19981006_BRANCH. 1998-10-08 21:42:19 +00:00
morse%netscape.com
618b648fb9 fix bugs with trust labels 1998-10-06 20:56:26 +00:00
gagan%netscape.com
cd0d547eb4 Prefs changed. NuCache prefs handled there. 1998-10-05 21:41:01 +00:00
cyeh%netscape.com
38486b6baf Remove old NSPR20 and MOCHA #ifdefs 1998-09-29 21:12:32 +00:00
rpotts%netscape.com
0959ec3d2d changed the call to net_CallExitRoutine to net_CallExitRoutineProxy() so that if netlib is running in its own thread, the call can be dispatched to the correct thread... IF netlib is running in the mozilla thread, net_CallExitRoutine(...) is called directly. 1998-09-25 22:21:50 +00:00
gagan%netscape.com
2b836dc799 Using NET_IsURLInCache instead of NET_IsURLInDiskCache and NET_IsURLInMemCache. 1998-09-23 06:06:18 +00:00
valeski%netscape.com
376dc6bfe3 mozilla - added mkprefs.h to the builds and replaced "*" pref strings with #defines.
nglayout - added get & set methods for http proxies to nsINetService.
1998-09-22 22:41:27 +00:00
rpotts%netscape.com
05b902c803 enabled thread-safe code which was previously only used when JAVA was defined. 1998-09-19 06:57:29 +00:00
valeski%netscape.com
d25ce9aeb9 Fixing build bustage. c++ comments in c file 1998-09-16 02:39:16 +00:00
valeski%netscape.com
8bc9f6b3e5 ? network/module/nsILoadAttribs.h
New nsIloadAttribs interface that defines the load attributes that are will be associated with a url.

? network/module/nsLoadAttribs.cpp
New nsIloadAttribs interface implementation.

M network/main/mkconect.c
Check for a new local ip address to use. If found PR_Bind() is called to bind the connecting socket to the new address.

M network/main/mkgeturl.c
Added logic to determine whether or not skip the proxy for the given url.
M network/main/mktcp.h
api change. Changed NET_BeginConnect() and NET_FinishConnect() function prototypes.

M network/module/MANIFEST
Added nsILoadAttribs.h to exports list

M network/module/Makefile
Added nsILoadAttribs.h to exports list and nsILoadAttribs.cpp to compile lists.

M network/module/makefile.win
Added nsILoadAttribs.h to exports list and nsILoadAttribs.cpp to compile lists.

M network/module/nsIURL.h
Added accessor methods to the url interface for nsILoadAttribs interface pointer.

M network/module/nsNetService.h
Added urlSetup method to class definition.

M network/module/nsNetService.cpp
Condensed url setup (from nsIURL properties to the actual url struct) into a helper routine. URL struct setup now transfers nsILoadAttributes over into the url struct.

M network/module/nsURL.cpp
Added nsILoadAttribs accessor method implementations to the url implementation.

M network/protocol/ftp/mkftp.c
api change. NET_*Connect().

M network/protocol/gopher/mkgopher.c
api change. NET_*Connect().

M network/protocol/http/mkhttp.c
api change. NET_*Connect().

M network/protocol/imap4/mkimap4.cpp
api change. NET_*Connect().

M network/protocol/nntp/mknews.c
api change. NET_*Connect().

M network/protocol/pop3/mkpop3.c
api change. NET_*Connect().

M network/protocol/smtp/mksmtp.c
api change. NET_*Connect().
1998-09-16 00:35:32 +00:00
gagan%netscape.com
a333974915 Removed the silly useless parameter in NET_CleanUpCache. 1998-09-10 20:55:22 +00:00
valeski%netscape.com
eb216ab0c2 The changes apply to MODULAR_NETLIB only
mozilla/module/nsINetFile.h
MODULAR_NETLIB only. Added the nsINetFile interface header.

mozilla/module/nsNetFile.cpp
MODULAR_NETLIB only. Added the nsINetFile interface implementation.

mozilla/module/nsNetFile.h
MODULAR_NETLIB only. Added the nsNetFile header.

mozilla/main/mkgeturl.c
MODULAR_NETLIB only. Added directory and file token initialization for new ns_net_file code.

mozilla/main/net_xp_file.h
MODULAR_NETLIB only. Added the new readline routine for ns_net_file.

mozilla/module/makefile.win
MODULAR_NETLIB only. Added the nsNetFile.cpp file to compilation list.

mozilla/module/nsNetService.cpp
MODULAR_NETLIB only. Added the static nsNetFile instance so it gets initailized.

mozilla/module/nsNetStubs.cpp
MODULAR_NETLIB only. Added NET_I_XP_FILE* versions of XP_FILE routines. These routines are compiled and used when NS_NET_FILE is defined.
1998-09-10 00:32:40 +00:00
pnunn%netscape.com
23327d8cb9 fix for #309770. Porting "RefreshURLTimer" fix from 4.06 to Moz. 1998-09-09 19:11:22 +00:00
gagan%netscape.com
1358f7ee83 Resetting cache_objects. 1998-09-09 02:19:30 +00:00
akkana%netscape.com
9368d69852 Mailto landing (ifdef MOZ_MAIL_COMPOSE). Approved by valeski. 1998-09-04 18:59:53 +00:00
raman%netscape.com
c2f26441cf Added a background/autoupdate pulling of URLs 1998-09-02 19:08:32 +00:00
valeski%netscape.com
6e76b6cca3 we're now respecting success/failure return values from PREF_Get* routines, for the most part. imap, pop, news weren't cleaned up (nor was nucache).
Default values are now used when PREFs are down.
1998-08-25 21:17:03 +00:00
vidur%netscape.com
1c697055ef Exported NET_StreamBuilder and NET_RegisterProtocolImplementation for modular netlib 1998-08-20 22:27:20 +00:00
waterson%netscape.com
17dec56a44 Modified timing macros to include MWContext parameter. 1998-08-09 20:32:30 +00:00
cmanske%netscape.com
6f585babe9 Fixed image loading problem in composer. Bug 312056. Reviewed and checkin permission by gagan 1998-08-08 01:23:26 +00:00
waterson%netscape.com
629191671b Added timing/tracking for cache hits. 1998-08-04 22:55:25 +00:00
waterson%netscape.com
1420a5b95e Changes to timing to support clocks. Layout changes approved by toshok, netlib changes approved by gagan. 1998-08-04 19:35:56 +00:00
gagan%netscape.com
0b7f45aabb Prefetching enabled and architechtural changes put in. Anchor tags for prefetching is deprecated. 1998-08-04 00:20:38 +00:00
dfm%netscape.com
fdb50afecb Removed ifdefs from netlib privacy-policy code. Approved: gagan 1998-08-03 23:29:48 +00:00
guha%netscape.com
7ad99699e4 Additions for Pop mail. Approved by Judson.
(ifdefed out)
1998-08-01 23:17:45 +00:00
waterson%netscape.com
f85b66269f Added runtime tracing calls. Approved by gagan. 1998-07-29 06:03:10 +00:00
scullin%netscape.com
ce1e323c8d Fix crash _and_ memory leak? Is it too much to hope? 1998-07-22 03:48:17 +00:00
scullin%netscape.com
a2f1447e8c Fix context leakage. 1998-07-22 00:16:00 +00:00
danm%netscape.com
5100bd4971 fix leak in NET_FreeURLStruct r:gagan 1998-07-21 02:20:45 +00:00
cmanske%netscape.com
bf693ca44a Removed clearing of is_new_document flag so images loaded into Composer do not kill the new doc state 1998-07-21 01:57:59 +00:00
dfm%netscape.com
0b7890852b Landed privacy features from PRIVACY_BRANCH_070898; Transaction Receipts
and Privacy Policies are still switched off, so mozilla/privacy doesn't
build by default.
1998-07-20 18:40:09 +00:00
radha
8f41d0a238 Fix for Gromit SF1 in bug # 123826. COde reviewed by Judson Valeski.
Type of change:
--------------
Set the timer to call NET_ProcessNet() after a request for network access
is made. See bug report for more details.
1998-07-14 23:40:16 +00:00
scullin
27800ebc5e Re-add mkstream to nglayout build, give a default value to memory
cache pref if defaults aren't loaded.
Approved, reviewed by ltabb.
1998-07-13 23:41:21 +00:00