akkana%netscape.com
b97513f55b
22163: temporarily disabling anthonyd's change from yesterday, with his permission, awaiting a better fix
2000-09-14 23:58:30 +00:00
av%netscape.com
c77cb66e71
Part of 33105 fix, added option not to show Bad Plugin warning again, r=serge
2000-09-14 23:58:17 +00:00
dprice%netscape.com
b80f4a8fd5
Disabling jar packaging for the time being.
2000-09-14 23:57:12 +00:00
dprice%netscape.com
91d2cfe423
turning this off again
2000-09-14 23:56:09 +00:00
cyeh%bluemartini.com
4c5d1ab34c
fix for 47561:Incorrect group bit used for new group.
...
patch by dave@intrec.com
2000-09-14 23:53:24 +00:00
pinkerton%netscape.com
a163e487b1
Fix major DC suckage on win2k and 98. Instead of calling GetDC all the time,
...
only call it when we need it and then be sure to release it. r=mjudge, bug#49285
2000-09-14 23:53:19 +00:00
mscott%netscape.com
6c1873e996
part of the fix for Bug #43556 --> make sure the ask me dialog is disabled since it isn't implememented. Properly preselect the save to disk or open app radio button based on the mime info settting.
r=sspitzer
2000-09-14 23:51:58 +00:00
dimator%netscape.com
15282f8e01
fix for 40357. r=alecf
2000-09-14 23:46:51 +00:00
sfraser%netscape.com
bccc8a28aa
Fix build bustage; add new param to FlushCach. r=pnunn
2000-09-14 23:44:51 +00:00
mozilla.BenB%bucksch.org
4f6275f81c
Readd errously removed file mailheader.css. r=Ben Goodger
2000-09-14 23:32:21 +00:00
mozilla.BenB%bucksch.org
95d1413793
Readd errously removed file. r=Ben Goodger
2000-09-14 23:31:44 +00:00
rickg%netscape.com
3654b6cf5e
fixed bug 40487 and 26347; r=attinasi/harishd
2000-09-14 23:31:07 +00:00
mozilla.BenB%bucksch.org
e7ded667ce
Move back to platform-independant. r=Ben Goodger
2000-09-14 23:29:35 +00:00
rayw%netscape.com
3cd14f5878
Bug fix for 52648 -- remaining stash of progids which I missed on
...
the mega-change yesterday. This will fix a few more issues.
r=warren
2000-09-14 23:20:49 +00:00
mkaply%us.ibm.com
8ca9d0bdbe
#52455
...
r=mkaply, a=brendan
FontEnumerator implementation for OS/2
2000-09-14 23:17:20 +00:00
pinkerton%netscape.com
3740b50638
flush chrome cache as well, from pnunn. bug#51249.
2000-09-14 23:13:54 +00:00
waterson%netscape.com
aa07e7a254
Tune arena sizes, per news://news.mozilla.org/39BEC105.5090206%40netscape.com.
2000-09-14 23:11:40 +00:00
mkaply%us.ibm.com
1713f15b07
#45185
...
r=cls, a=brendan
Change from pedemonte and jblanco for compiling RC on OS/2
2000-09-14 23:11:24 +00:00
waterson%netscape.com
ef371ea288
Fix 'const' bustage.
2000-09-14 23:10:37 +00:00
pnunn%netscape.com
9979eb5cde
bug#51249: add chrome to FlushCache. pnunn r:syd.
2000-09-14 23:10:30 +00:00
ftang%netscape.com
5e13bf880f
fix bug 50864. remove umr r=nhotta
2000-09-14 23:10:06 +00:00
pnunn%netscape.com
288d5211f1
bug#51249: add chrome to FlushCache. pnunn, r:syd.
2000-09-14 23:09:18 +00:00
waterson%netscape.com
ec2a45d34d
Bug 51813. The change in r1.194 made it so that we respect a XUL element's lazy state. Because of this, we no longer need to check for 'new' matches in InstantiationNode::Propogate() -- *all* matches should be returned. Re-constify methods that should be const, and add NS_CONST_CAST() to call out where we're doing naughty things. r=rjc
2000-09-14 23:07:29 +00:00
pnunn%netscape.com
ccda7ec14f
bug#51249: add chrome to FlushCache. pnunn r:syd
2000-09-14 23:06:53 +00:00
ssu%netscape.com
3b88620c17
fixing bugsgape #2279 - shrimp uninstall fails. r=sgehani. affects windows platforms only
2000-09-14 23:05:57 +00:00
hyatt%netscape.com
3a0e695fc3
Fix for textarea regression. r=cmanske
2000-09-14 23:03:33 +00:00
evaughan%netscape.com
bb9a09703e
Fix for bug #52124
2000-09-14 23:02:26 +00:00
pnunn%netscape.com
279ba5b1e5
bug#51249: add ability to flush chrome. pnunn r: syd.
2000-09-14 23:00:59 +00:00
pinkerton%netscape.com
b83cf2e3cd
use control key for access key on mac (that's what IE5 does). r=saari/joki. bug# 40071.
2000-09-14 22:58:47 +00:00
varada%netscape.com
165bfb6297
fix for bug #51870;enter key in threadpane should launch new message window;r=putterman
2000-09-14 22:58:41 +00:00
edburns%acm.org
dee7ed58dd
r=vidur, av
...
a=brendan
bug=49525
This simple fix just adds parameters to an existing method in an XPCOM
safe way, by defining a new method at the end of the interface
definition with the additional parameters.
Original method:
NS_IMETHOD
GetURL(nsISupports* pluginInst,
const char* url,
const char* target = NULL,
nsIPluginStreamListener* streamListener = NULL,
const char* altHost = NULL,
const char* referrer = NULL,
PRBool forceJSEnabled = PR_FALSE) = 0;
New method:
NS_IMETHOD
GetURLWithHeaders(nsISupports* pluginInst,
const char* url,
const char* target = NULL,
nsIPluginStreamListener* streamListener = NULL,
const char* altHost = NULL,
const char* referrer = NULL,
PRBool forceJSEnabled = PR_FALSE,
PRUint32 getHeadersLength = 0,
const char* getHeaders = NULL) = 0;
I have modified nsPluginHostImpl.h to include this new method, and
modified nsPluginHostImpl.cpp so that its GetURL calls GetURLWithHeaders
with null values for the last two params.
M modules/plugin/public/nsIPluginManager.h
M modules/plugin/nglsrc/nsPluginHostImpl.cpp
M modules/plugin/nglsrc/nsPluginHostImpl.h
2000-09-14 22:57:56 +00:00
dougt%netscape.com
c2923c8476
+ Added OnSecurityChange() to nsIWebProgressListener interface.
...
+ Added dummy function to all users of nsIWebProgressListener
+ Added new security event sink.
+ Hooked up new event sink to docloader and friends.
+ Fixed memory leaks and crashes in nsSecureBrowserImpl.
+ Added AlertPrompt to nsIPrompt Interface.
+ Enabling xpcom test on unix.
Fixes bug 46872. r=valeski/rpotts
2000-09-14 22:56:56 +00:00
mkaply%us.ibm.com
8c858f7e7e
#45263
...
r=mkaply, a=brendan
Code from samake - report locale to current and to use OS, not c runtime
2000-09-14 22:56:05 +00:00
pinkerton%netscape.com
66ed76f9db
Check if preventDefault is set before handling key events. Fix for conflicts
...
between menus and accesskeys. r=joki/saari. bug#40071
2000-09-14 22:55:19 +00:00
mkaply%us.ibm.com
4ac5f72fc2
#45263
...
r=nhotta, a=brendan
Code from samake - report locale to current and to use OS, not c runtime
2000-09-14 22:52:17 +00:00
mscott%netscape.com
b8c14822af
Bug #51631 --> set correct password dialog text
...
r=sspitzer
2000-09-14 22:50:07 +00:00
ccarlen%netscape.com
4ff41c7f9e
checkin for dougt
2000-09-14 22:49:59 +00:00
mkaply%us.ibm.com
da4f261d09
#47874
...
r=rmkaply, a=brendan
Code from jkobal - step one of bring nsWindow current
2000-09-14 22:49:36 +00:00
mozilla.BenB%bucksch.org
51939d0bad
Readding errously removed file, and updating to sync with Modern. r=BenGoodger
2000-09-14 22:46:37 +00:00
sspitzer%netscape.com
b7e43f6543
fix for #51267 . failure to load menu.css bug. we were
...
packaging up a zero length menu.css file and referencing it.
r=nbhatla,mscott
2000-09-14 22:44:58 +00:00
hyatt%netscape.com
40712df2d8
Fix tree to select first item on arrow down. r=ben
2000-09-14 22:44:38 +00:00
sfraser%netscape.com
8088d5d19b
More work on 20743; better low memory handling on Mac. Better control of whether we allocate GWorlds in temp mem, make nsImageManager implement nsIMemoryPressureObserver (not turned on yet), and fix a double delete of GWorlds. r= pinkerton
2000-09-14 22:42:36 +00:00
sfraser%netscape.com
e4e6c37213
Fix for 48887 -- truncating last char of URL. r=pinkerton
2000-09-14 22:39:34 +00:00
rogerl%netscape.com
b9fca9000b
Bug #46429 . r=rginda. Fixed bug in nested quantifiers.
2000-09-14 22:39:21 +00:00
kin%netscape.com
9cbca6caf4
Fix for bug #46396 : select after input confuses session history
...
- Remove temporary call to SetInitialValue() in CreateAnonymousContent().
- Move all calls to SetInitialValue() out from under the 'if' statement
they were under. This will make sure that it gets called at least
once since there are times when GetPrefSize() and Reflow() are not
called during the initial reflow.
r=mjudge@netscape.com
2000-09-14 22:39:19 +00:00
kin%netscape.com
8993ad98a0
Fix for bug #33938 : Pref/reply below quoted text does not move to bottom
...
mozilla/mailnews/compose/nsMsgCompose.cpp
- Scroll the selection into view after all the reply text
is inserted and the caret is positioned.
mozilla/editor/base/nsHTMLEditor.cpp
- Added nsAutoEditBatch variable to InsertBreak() to make
sure that we reflow before returning. Without this fix,
apps like MsgCompose will not be able to scroll the
selection properly.
r=jfrancis@netscape.com
2000-09-14 22:39:04 +00:00
nhotta%netscape.com
deac8d7850
Fixing solaris bustage.
2000-09-14 22:28:32 +00:00
edburns%acm.org
dd8cbedbee
Added
...
import org.mozilla.webclient.UnimplementedException;
Fix build bustage.
2000-09-14 22:00:20 +00:00
relyea%netscape.com
f0e4984d36
Fix authentication tests so they work for both unix and NT.
2000-09-14 21:59:04 +00:00
alecf%netscape.com
bedcc5c5f6
export colorpicker.css so win32 build will start without JAR packaging
2000-09-14 21:49:37 +00:00