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

160 Коммитов

Автор SHA1 Сообщение Дата
waterson%netscape.com 4a0d5c8e46 Bug 81763. Fix inefficient use of strlen(). Patch provided by Ulrich Drepper (drepper@cygnus.com), sr=waterson. 2001-05-19 20:14:42 +00:00
jst%netscape.com 77aeecc056 scc checking in from jst's account. bug #75220: sr=jst, rs=brendan. renaming |nsPromiseC?Concatenation| to |nsDependentC?Concatenation|; |nsPromiseC?Substring| to |nsDependentC?Substring|; |nsLiteralC?String| and |nsLocalC?String| to |nsDependentC?String|, as these new names better reflect clients obligations to instances. 2001-05-19 11:27:30 +00:00
dougt%netscape.com ff1073cc0b removing ^M 2001-05-02 00:40:56 +00:00
dougt%netscape.com c2cf446820 Fixes bug 78193. adds pause/resume button on the download dialog for ftp protocol. r=darin@netscape.com, sr=ben@netscape.com, a=asa@mozilla.org 2001-05-02 00:36:32 +00:00
bbaetz%cs.mcgill.ca beb757c9b8 bug 77095 - fix casing typo in directory.js
patch by anedah-9@sm.luth.se
r=bbaetz, sr=shaver, a=asa
2001-04-22 19:11:54 +00:00
dougt%netscape.com d8d7ba873e This fixes the double channel load caused by the directory viewer. b = 45066 r = bbaetz@cs.mcgill.ca sr = waterson@netscape.com a = chofmann@netscape.com 2001-04-18 22:01:12 +00:00
bbaetz%cs.mcgill.ca fbd2e44f06 Bug 76069 - fix rdf:httpindex (such as ftp bookmarks)
r=dougt, sr=waterson
2001-04-16 20:45:26 +00:00
dbaron%fas.harvard.edu 33b7e5e884 Fix MOZ_TRACK_MODULE_DEPS (senna tinderbox) bustage by adding windowwatcher to REQUIRES. 2001-04-14 23:04:15 +00:00
bbaetz%cs.mcgill.ca 13f9f0b68f bug 70529 - tidy up protocol-specific code in the dirviewer
r=jag, sr=waterson
2001-04-14 22:08:35 +00:00
dougt%netscape.com 3031f5413b fixing bustage 2001-04-14 21:15:25 +00:00
dougt%netscape.com 6eaef4a960 Removing ^M. 2001-04-14 21:10:14 +00:00
dougt%netscape.com 30d4274197 Fix for bug 75836.
Adds an optional log window to the ftp directory viewer.
Adds a nsIPrompt and nsIAuthPrompt to the directory viewer's interface requestor.
Attempts to serialize network requests.

(thanks to chris waterson who helped me figure out the refcounting)

r=mailto:bbaetz@cs.mcgill.ca
sr=waterson@netscape.com
2001-04-14 20:30:47 +00:00
dougt%netscape.com 84b724d0f7 This file is not part of build. 2001-04-13 00:43:32 +00:00
darin%netscape.com 00a7e27ee6 Necko API changes, bug 74221. r=valeski, sr=rpotts. 2001-04-10 06:01:08 +00:00
disttsc%bart.nl dacbb4faa9 Add "gfx2" and "imglib2" to REQUIRES lines in Makefile.in for MOZ_TRACK_MODULE_DEPS builds (e.g. senna) 2001-03-30 10:39:06 +00:00
blakeross%telocity.com 85f54f99db Removing non-compliant text/xul mimetype, replacing with application/vnd.mozilla.xul+xml (28237, patch by gerv@gerv.net). r=blake sr=hyatt 2001-03-25 16:49:38 +00:00
blakeross%telocity.com 0b2dd2b2d2 Fixing 70746: major xul syntax changes. If you use xul, this WILL affect you! Read n.p.m.xpfe for details on the changes and how you can fix your code. r=hewitt sr=hyatt, ben 2001-03-22 00:59:29 +00:00
blakeross%telocity.com 650b9d4dd1 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
timeless%mac.com 0d00eb70d8 fix Bug 65428 language="javascript" should be type="application/x-javascript"
r=kerz a=ben
2001-03-11 12:17:34 +00:00
blakeross%telocity.com 38794d139f UIEvent button property is incorrect according to the DOM2 spec. Changing values to 0, 1, 2 (left, middle, right mouse buttons respectively) from 1, 2, 3. |event.which| continues to use the old values for backwards compatibility. This affects future xbl, js, and c++ event button checks so please see the newsgroups for more info (60703). r=timeless sr=jst 2001-03-02 03:07:53 +00:00
disttsc%bart.nl a6f2f5861a Mass REQUIRES update to synch up with string lib and xul changes in an attempt to fix senna bustage. r=jst, sr=cls 2001-02-22 09:35:51 +00:00
waterson%netscape.com 9fe59f23f0 Bug 43121. Move XUL content model code from RDF DLL to content DLL. r=jst,hyatt; sr=brendan. 2001-02-22 03:01:34 +00:00
dougt%netscape.com 128f95aa9b Relanding Necko Changes.
Revising nsIChannel to allow for overlapped i/o. This consists of three parts:

1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.

This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols). The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.

r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-21 20:38:08 +00:00
disttsc%bart.nl 3d2d80d536 Back out dougt's channel changes 2001-02-12 03:14:23 +00:00
dougt%netscape.com 1b9ca82439 Revising nsIChannel to allow for overlapped i/o. This consists of three parts:
1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.

This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols).  The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.

The full details of the change on written up in the netlib newsgroup.

r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-10 00:16:26 +00:00
disttsc%bart.nl 8aee906aa2 Remove dead |#include "iostream.h"|. 2001-02-03 07:15:47 +00:00
bryner%uiuc.edu cc136ead8f Bug 55778 -- Don't descend into resources directories that don't have a jar.mn file. This is the Unix portion of the cleanup. r=dprice, sr=cls. 2000-12-15 07:32:25 +00:00
disttsc%bart.nl 70803e3a6d More appCore killing, bug=46200, r=ben, a=alecf 2000-12-13 01:28:08 +00:00
cls%seawood.org 66a18fcbbf Resurrect REQUIRES so that we have some sort of means to track intermodule dependencies. Bug #59454 r=blizzard@mozilla.org 2000-11-20 07:16:06 +00:00
rjc%netscape.com d35da0b4fa Fix bug # 58736: nsDirectoryViewer leak. r=dbaron sr=waterson 2000-11-02 07:34:46 +00:00
rjc%netscape.com cdaed5d1e5 Fix RTM++ bug # 51446: FTP issue with date/time strings containing dots. r=gagan sr=ftang 2000-10-12 08:08:39 +00:00
evaughan%netscape.com 0cd2072315 Part 2 fix for bug #55899 2000-10-10 00:39:13 +00:00
disttsc%bart.nl f51344add2 Remove incorrect 'rdf:' from 'rdf:resource', 'rdf:resource2' and 'rdf:containment'. Part of bug=53297, more to follow. r=rjc, a=waterson. This particular checkin should fix bug=52789 (column sorting in bookmarks and history) and bug=52547 (sidebar bookmarks panel not showing sort triangle). 2000-09-20 10:16:53 +00:00
rayw%netscape.com 0257791053 Bug 37275, Changing value of all progids, and changing everywhere a progid
is mentioned to mention a contractid, including in identifiers.

r=warren
2000-09-13 23:57:52 +00:00
cls%seawood.org f568e23ee4 Yet another attempt at fixing OS/2 bustage. OS/2 requires static libraries that will subsequently be used in EXTRA_DSO_LIBS to end with _s 2000-09-08 06:11:59 +00:00
valeski%netscape.com 3e2d752ae3 51490. r=rjc. regression. httplistener was using a global when it should have been using it's static member 2000-09-06 22:33:58 +00:00
valeski%netscape.com c41fae5a69 46775. consolodating xpfe components into a root module to reduce system overhead bloat. built on win, linux, mac. precheckin tests on windows. general testing on mac and linux. 2000-09-06 00:58:06 +00:00
rjc%netscape.com 210fd3f261 Fix bug # 50642: Win32 timer issue affecting FTP. r=me 2000-08-30 05:26:56 +00:00
rjc%netscape.com 6e346e28be Use .get() for Unix. 2000-08-28 09:51:42 +00:00
rjc%netscape.com 5e317c2f9e FTP bug # 46750: don't starve UI during FTP operations by slowly pushing FTP URLs into content model on a timer. r=me 2000-08-28 09:50:20 +00:00
rjc%netscape.com 66819b4a49 FTP bug # 46750: speed optimizations, as well as set busy cursor while FTP data is streaming in. r=me 2000-08-28 04:24:49 +00:00
dbaron%fas.harvard.edu 0fd110338c Add newline to end of file to fix valeski's SunOS (and probably HP) bustage. 2000-08-26 14:11:45 +00:00
valeski%netscape.com ba69299fdd 46775. preparing for linkage changes. these changes move class definitions into their own .h files so they can be used in other directories (not exported) for building purposes. I also utilized module/factory macros when possible 2000-08-26 07:37:59 +00:00
rjc%netscape.com fa18e923e4 Add secondary secorting info for file/ftp listings. r=me 2000-08-22 01:39:48 +00:00
rjc%netscape.com ff4cf79e0a Fix bug # 48320: Directories displayed twice in file:/// URLs. r=me 2000-08-22 01:26:42 +00:00
rjc%netscape.com 7da8bad962 Fix bug # 47927: crash loading 2nd ftp URL. r=waterson 2000-08-15 01:43:42 +00:00
waterson%netscape.com 859b6c98af Bug 47927. Check in the wrong fix to get the tree open. a=granrose. 2000-08-09 19:30:14 +00:00
saari%netscape.com 4c09a29ac5 massive landing of joki changes.
Relevant nsbeta3+ bugs 43309, 44503, 2634, 2504,5981, 24698, 25758, 33577,
36062, 36217, 41191, 41491, 42356, 42829, 43016
r=saari (joki code). also been tested by heikki and bryner
2000-08-08 21:31:05 +00:00
rjc%netscape.com 8b7f8e6614 Various small fixes for nsbeta3+ bug # 41357: enable column resigning for various trees. r=me 2000-08-02 10:31:37 +00:00
rjc%netscape.com 38608685e3 Fix bug # 46710: can only start a drag on <treeitem> nodes. r=me 2000-08-01 08:24:07 +00:00