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

6946 Коммитов

Автор SHA1 Сообщение Дата
dcone%netscape.com 17baed6234 mac fixes 1998-09-02 22:01:18 +00:00
buster%netscape.com 89e198237d expanded nsIFrame::List to include nsIListFilter *aFilter param, by default nsnull.
aFilter is useful for determining if a frame should output itself during
a List().  In any event, the children of the frame are always processed.
added nsIListFilter, an interface for any object that wants to act like a filter for frame dumps
added   static NS_LAYOUT nsIListFilter * GetFilter(nsString *aFilterName);
currently, only TableListFilter implements nsIListFilter.
in response to List(...TableListFilter), the frame model is dumped in a way that is useful
for table layout regression testing.  Currently this is controlled by command line switches on the viewer app.
1998-09-02 21:59:54 +00:00
dcone%netscape.com bcf3e4fe8f add the macradiobutton 1998-09-02 21:54:14 +00:00
dcone%netscape.com fcdbd9cc23 made it a mac version 1998-09-02 21:53:49 +00:00
buster%netscape.com 5b39e492d0 fixed a space leak caused by incorrect ~nsCellMap iteration through
the new data structures.
1998-09-02 21:51:01 +00:00
dcone%netscape.com 934bf0c4ce enabled the nsRadiobutton factory 1998-09-02 21:48:05 +00:00
dcone%netscape.com 3d8ccceae8 Mac implementation, first pass 1998-09-02 21:47:47 +00:00
dcone%netscape.com b425706007 used my own mousemoved tracking for better speed 1998-09-02 21:47:25 +00:00
dcone%netscape.com 97616613d0 added better tracking 1998-09-02 21:46:53 +00:00
spider%netscape.com dd54dd6174 Fix for modifier key state on keyboard messages 1998-09-02 21:14:45 +00:00
rods%netscape.com 15aefa3d60 Removed nsDeviceCOntextUnix header file and replaced it with nsIDeviceContext 1998-09-02 20:01:41 +00:00
mccabe%netscape.com 30521bb1b0 Further exception work - added 'message' to the js_ErrorToException
call, and experimented with copying the original JSErrorReport into
private data.  Much of this to support a toString method for exception
objects.

It's not polished, but I wanted to get toString available quickly.
1998-09-02 20:01:34 +00:00
rods%netscape.com 7a0083eb26 Fixed a bug in ConvertPixel 1998-09-02 19:51:32 +00:00
rods%netscape.com cb6aa13f10 Implemented ConvertPixel 1998-09-02 19:33:01 +00:00
rods%netscape.com 242186fc6a Implemented ConvertPixel 1998-09-02 19:26:43 +00:00
rods%netscape.com 31602cb8a5 Added ConvertPixel to nsIDeviceContext 1998-09-02 19:24:05 +00:00
sar%netscape.com 4780c5206f Smartupdate landing. Added autoinstl to project. 1998-09-02 19:19:51 +00:00
raman%netscape.com 6ae7d8c37e Build Smartupdate when MOZ_SMARTUPDATE is defined 1998-09-02 19:16:07 +00:00
cyeh%netscape.com 7cf109266f change version number to reflect reality 1998-09-02 19:12:26 +00:00
raman%netscape.com 0b469efbf5 Added CPPSRCS 1998-09-02 19:11:06 +00:00
raman%netscape.com 5f24c79522 Added getSigners API for SmartUpate 1998-09-02 19:10:57 +00:00
cyeh%netscape.com 51b564df36 change version number to reflect alpha reality 1998-09-02 19:10:53 +00:00
raman%netscape.com 12a50d30c6 Merging 4.5 softupdate changes and converting Java code into C++ code and making smartupdate build when MOZ_SMARTUPDATE is defined 1998-09-02 19:09:53 +00:00
raman%netscape.com 2f45d24ca2 Merging 4.5 Libreg changes 1998-09-02 19:09:30 +00:00
raman%netscape.com d1bf42dd6b removing smartupdate related code, because it is not dependent on Java 1998-09-02 19:09:03 +00:00
raman%netscape.com c2f26441cf Added a background/autoupdate pulling of URLs 1998-09-02 19:08:32 +00:00
raman%netscape.com 94c71eea30 Added a background, autoupdate pulling of URLs 1998-09-02 19:08:00 +00:00
raman%netscape.com a85ab322c2 Added SmartUpdate related strings 1998-09-02 19:05:49 +00:00
raman%netscape.com 1fa956c3e5 Added SmartUpdate related strings 1998-09-02 19:05:48 +00:00
raman%netscape.com 06c4d898e1 Merging 4.5 SmartUpdate changes 1998-09-02 19:05:33 +00:00
raman%netscape.com 2a8a818d58 Build SmartUpdate when MOZ_SMARTUPDATE is defined 1998-09-02 19:05:13 +00:00
cyeh%netscape.com 7166e00ae5 disable setting the agent for right now 1998-09-02 19:04:13 +00:00
terry%netscape.com 6f8faf658a Patch by Sam Ziegler <ziegler@mediaguaranty.com> -- allow querying for
empty resolution.
1998-09-02 19:02:30 +00:00
terry%netscape.com 3ca3e981e0 Changelog of important Bugzilla changes. 1998-09-02 18:56:48 +00:00
cls%seawood.org a58cd3bcff Sync'd with Makefile. 1998-09-02 18:56:17 +00:00
terry%netscape.com 1644915b59 Changed the way password validation works. We now keep a
crypt'd version of the password in the database, and check against
that.  (This is silly, because we're also keeping the plaintext
version there, but I have plans...)  Stop passing the plaintext
password around as a cookie; instead, we have a cookie that references
a record in a new database table, logincookies.

IMPORTANT: if updating from an older version of Bugzilla, you must run
the following commands to keep things working:

 ./makelogincookiestable.sh
 echo "alter table profiles add column cryptpassword varchar(64);" | mysql bugs
 echo "update profiles set cryptpassword = encrypt(password,substring(rand(),3, 4));" | mysql bugs
1998-09-02 18:54:54 +00:00
cls%seawood.org 32653b6fde Removed OJI ifdef from LO_GetBuiltInAttribute() as the LO_BuiltinStruct is the same for both cases. 1998-09-02 18:54:53 +00:00
cls%seawood.org cea397e3a6 Added check for HAVE_SYSERRLIST to get rid of redefinition warning when using autoconf. 1998-09-02 18:52:56 +00:00
kipp%netscape.com 9f8482d6ff Added new atoms 1998-09-02 18:40:08 +00:00
terry%netscape.com 196ef2e670 Mention the "comments" file. 1998-09-02 18:34:04 +00:00
kostello%netscape.com a42e7e8bb4 Add nsILookAndFeel.h MANIFEST 1998-09-02 17:58:37 +00:00
pinkerton%netscape.com 4e8d6b8d4e fix build bustage on mac (rev mjudge). 1998-09-02 16:15:43 +00:00
cmanske%netscape.com ed4be6ae13 Fixed build bustage for Mac 1998-09-02 16:08:46 +00:00
ramiro%netscape.com cb251ba871 Add support for -config-dir command line flag. That means mozilla can now
use a configdir other that ~/.netscape without having to do HOME environment
hacks.
Thanks to Aleksey Nogin (ayn2@cornell.edu) for doing all the work and being
patient for me to actually check the stuff in.
1998-09-02 14:29:42 +00:00
cmanske%netscape.com 962c1716b5 Composer work: Check for valid charset in metatag, paste character style, split table cell, optimization for table cell layout (not turned on), remove P_MENU, P_DIRECTORY support for UIs 1998-09-02 14:21:41 +00:00
cmanske%netscape.com 86fee05e21 Fixed comflicts with mjudge changes for Ender toolbar 1998-09-02 13:22:13 +00:00
cmanske%netscape.com e35c302a63 Composer work: Menus, paste style, paragraph properties dialog improvements, remove P_MENU, P_DIRECTORY 1998-09-02 13:12:58 +00:00
cmanske%netscape.com 7df1a9a13b Added strings for new I18N features in Composer: correct bad charset param in tag 1998-09-02 13:12:40 +00:00
cmanske%netscape.com 89ebe1bf57 Added strings for new I18N features in Composer: correct bad charset param in tag 1998-09-02 13:12:39 +00:00
ramiro%netscape.com fc3ae571e9 Add support for OpenBSD. Thanks to Marco S Hyman <marc@snafu.org>. 1998-09-02 12:36:18 +00:00