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

7808 Коммитов

Автор SHA1 Сообщение Дата
mcafee%netscape.com 80ad0e3bf8 Uninitialized variable compiler warnings on Linux 1998-09-16 08:13:29 +00:00
mcafee%netscape.com 18d145ec21 Uninitialized variable compiler warnings on Linux 1998-09-16 07:45:58 +00:00
mcafee%netscape.com dffdfde7d6 Uninitialized variable compiler warnings on Linux 1998-09-16 07:32:19 +00:00
mcafee%netscape.com ceea74b136 Uninitialized variable compiler warnings on Linux 1998-09-16 07:22:06 +00:00
valeski%netscape.com 235357382b General memory repairs (leakage, freeing mismatched mem, umrs) 1998-09-16 07:17:34 +00:00
mcafee%netscape.com 78027b8dcd Uninitialized variable compiler warnings on Linux 1998-09-16 07:14:42 +00:00
mcafee%netscape.com c07d17452c Unhandled cases in switch statement 1998-09-16 06:57:28 +00:00
mcafee%netscape.com e7203838d4 Uninitialized variable compiler warnings on Linux 1998-09-16 06:54:49 +00:00
mcafee%netscape.com 8c7b38617a Fixing Linux breakage. r=valeski 1998-09-16 05:48:26 +00:00
mcafee%netscape.com ac773fc082 Uninitialized variable compiler warnings on Linux 1998-09-16 05:16:58 +00:00
mcafee%netscape.com a5b934d83b Uninitialized variable compiler warnings on Linux 1998-09-16 04:59:00 +00:00
mcafee%netscape.com 38e18eba1e Compiler warning on Linux 1998-09-16 04:42:09 +00:00
valeski%netscape.com d25ce9aeb9 Fixing build bustage. c++ comments in c file 1998-09-16 02:39:16 +00:00
pierre%netscape.com e9bfaf4eda fixed raptor build: added nsLoadAttribs.cpp to the 'modular' targets 1998-09-16 02:09:08 +00:00
jband%netscape.com 74b712789c (not part of client build) initial checkin of mozilla/js/jsdj (migrated from ns/js/jsdj) 1998-09-16 02:07:50 +00:00
spider%netscape.com ddab882f04 Fix for clicking on links 1998-09-16 01:54:50 +00:00
pierre%netscape.com 702d73b95c XP_FileOpen() now supports aliases 1998-09-16 01:26:09 +00:00
pierre%netscape.com 55ae1c43c0 make alias of ua.css 1998-09-16 01:24:52 +00:00
spider%netscape.com 379df659f0 minor changes... 1998-09-16 01:21:14 +00:00
spider%netscape.com ad4a6caf3b Demo UI stuff and support for application/ui in DTD and parser 1998-09-16 01:14:48 +00:00
sman%netscape.com efd2fbadf5 New Images! 1998-09-16 01:10:02 +00:00
robinf%netscape.com a745ac5bd7 updating these files for Nova; text changes to fix links, remove Mac and Win16 references 1998-09-16 01:04:31 +00:00
jband%netscape.com 2a81c18a1a (not EVEN part of mozilla) fix conditional compile code to allow use of debugger without liveconnect 1998-09-16 00:56:47 +00:00
kmcclusk%netscape.com fcb0645758 Added nsObject.cpp and nsObject.h files, More mods to nsWindow to match
the nsIWidget interface
1998-09-16 00:53:19 +00:00
buster%netscape.com 360b73b48c better handling of non-cell frames in rowFrames
support for the case where a nested table is in a cell that has colspan>1
1998-09-16 00:48:14 +00:00
valeski%netscape.com de3f9dfd38 M webshell/public/nsIDocumentLoader.h
nsIDocumentLoader interface method change to LoadURL() we now accept a local ip address.


M webshell/public/nsIWebShell.h
1. Extended the nsIWebShell LoadURL() method to take an additional PRUint32 parameter which represents an ip address. If specified, this address will be bound to the socket prior to connection as the local/client ip address to be used. The caller is guarantees the validity of this address.
2. Extended the nsReloadType enumeration to allow both proxy and cache bypass.


M webshell/src/nsDocLoader.cpp
1. Extended nsDocumentBindInfo::Bind() to take an additional nsILoadAttribs pointer. (class definitaion change and implementation).

2. Extended nsDocLoaderImpl::LoadURL() to take an additional PRUint32 param which represents an optional local ip address to bind the connecting socket to, prior to connection. (class definitaion change and implementation) The docloader object maintains a pointer to an nsILoadAttribs interface.


M webshell/src/nsWebShell.cpp
Implemented new LoadURL() routine. Simple pass down to doc loader of PRUint32.


M webshell/tests/ComFactory/makefile.win
Added netlib to the list of prerequisites.
1998-09-16 00:40:20 +00:00
cyeh%netscape.com c9007f49bf *** empty log message *** 1998-09-16 00:37:28 +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
valeski%netscape.com 37adfa9bef M include/net.h
Adding two new url_struct attributes. uint32 localIP (can be set to specify a local ip address to bing the connecting socket to), boolean bypassProxy (can be set to skip over any proxies that would've been used.
1998-09-16 00:25:53 +00:00
kmcclusk%netscape.com dce87b2a1e Massive modifications to use the new nsIWidget interface. 1998-09-16 00:21:00 +00:00
pierre%netscape.com 5018a7e436 fix mac build: removed several files, added one 1998-09-16 00:13:41 +00:00
gagan%netscape.com a540b2abf7 Fix for bug # 323918. 1998-09-16 00:01:02 +00:00
robinf%netscape.com c1c87b0f0a fixing bug #322037 in aatab.htm; removed win16 note from nmtab.htm 1998-09-15 23:54:30 +00:00
pierre%netscape.com 19a8c40a7a fixing mac build (the class name was repeated in the method declaration) 1998-09-15 23:39:28 +00:00
slamm%netscape.com 7b89eac6f5 Fix build bustage. xp_ncent.c includes htrdf.h which include pa_parse.h. Adding 'parse' to the REQUIRES line. 1998-09-15 23:39:20 +00:00
mcafee%netscape.com b7c56f808b Sample build date. Build process overwrites this file with a current value. 98=year, 258=julian date, 16=4pm PST. a=donm 1998-09-15 22:51:11 +00:00
rjc%netscape.com 750325c27e When sending VPROP_CHANGED events, also pass along information on which property changed. 1998-09-15 22:15:46 +00:00
rjc%netscape.com 270d70b04a Need to reference libparse header file. 1998-09-15 22:14:59 +00:00
terry%netscape.com 3d430b3faf Whoops; a bad username was causing perl warning messages. 1998-09-15 22:12:52 +00:00
spider%netscape.com 78b646104b Add support for aggregation in QueryInterface 1998-09-15 22:09:57 +00:00
rjc%netscape.com a529b0e6d9 Additional changes for supporting HT_LayoutComplete(). 1998-09-15 22:07:34 +00:00
spider%netscape.com d7e99fe53e Final implementation and hookup of user, layer and calcanvas
interfaces
1998-09-15 22:05:48 +00:00
dcone%netscape.com 1f6031d9dd Added image test support, needed netlib in the link 1998-09-15 21:58:25 +00:00
kostello%netscape.com 0d8ca4a247 *** empty log message *** 1998-09-15 21:56:35 +00:00
kostello%netscape.com db9e0d3dad Added nsFileWidget.cpp 1998-09-15 21:56:07 +00:00
kostello%netscape.com 8923754bd0 Fix CreateInstance 1998-09-15 21:55:50 +00:00
terry%netscape.com 40dd001748 Add a few more clues. 1998-09-15 21:55:46 +00:00
kostello%netscape.com 5a23c62c1e Fix QueryInterface 1998-09-15 21:55:22 +00:00
kostello%netscape.com c6654eb882 Update to synch with pc version 1998-09-15 21:54:29 +00:00
terry%netscape.com c5465798e0 Everything has been ported to now run under Perl. 1998-09-15 21:49:26 +00:00