peterv%netscape.com
06900ef9b1
Bustage fix.
2002-12-12 20:01:59 +00:00
kin%netscape.com
805d8eec7d
sfraser's fix for commercial blocker bugscape bug 21720 (Spell checker fails find misspelled words (crash on exit from spellchecker)), which is caused by bugzilla bug 184935 (Mac build picks up the wrong nsTextServicesDocument.cpp; spell checking busted)
...
This patch fixes the editor project to search mozilla/editor/txtsvc before
mozilla/libeditor/, adds nsFilteredContentIterator.cpp, and adds #error to the
unused files.
r=jfrancis@netscape.com sr=kin@netscape.com
2002-12-12 18:04:31 +00:00
caillon%returnzero.com
379703ef0a
Bug 179269 - New page opens which should display tabular data. Error message in new page instead of data.
...
Fix contributed by Harshal <keeda@hotpop.com>
r=caillon sr=jst
2002-12-12 15:48:30 +00:00
wtc%netscape.com
f8ddc84d33
Bug 176881: we should also look at the high 32 bits of the performance
...
counter frequency. Ignoring the high part of the frequency will cause
our interval timer code to malfunction if the high part is not zero.
Also took the opportunity to simplify the arithmetics.
2002-12-12 14:51:20 +00:00
timeless%mozdev.org
68c3f9904b
Bug 182171 "Javascript" should be "JavaScript " and more...
...
patch by bugzilla@gemal.dk r=caillon sr=alecf
2002-12-12 12:13:04 +00:00
bryner%netscape.com
9a0fac967c
Landing all changes from CHIMERA_M1_0_1_BRANCH onto the trunk, and adapting to trunk API changes. Not part of any normal build.
2002-12-12 11:55:38 +00:00
bryner%netscape.com
aa8cff95d3
Landing all changes from CHIMERA_M1_0_1_BRANCH onto the trunk, and adapting to trunk API changes. Not part of any normal build.
2002-12-12 11:34:25 +00:00
igor%mir2.org
f4cfc98e4d
I removed InterpretedFunction.itsClosure as it was effectively used only itsClosure != null test and the effect can be done via setting InterpretedFunction.useDynamicScope to false.
2002-12-12 10:46:52 +00:00
sspitzer%netscape.com
4b0f00697f
fix some minor whitespace changes that I had sitting in my tree.
...
r/sr=no one.
2002-12-12 06:25:17 +00:00
sspitzer%netscape.com
8e30e39bb5
real fix for #59638 . for the stand alone msg window, the way to get
...
"next unread" to work is to do the work after we get the "folder loaded"
event notification. r/sr=bienvenu
2002-12-12 06:16:20 +00:00
nelsonb%netscape.com
d442ab6107
Support SHA256, SHA384, and SHA512 hashes in NSS.
2002-12-12 06:05:45 +00:00
depstein%netscape.com
35b683c17e
Added post-AsyncOpen() tests to OnStartRequest() impl in BrowserImpl.cpp. not part of the build.
2002-12-12 02:38:49 +00:00
wtc%netscape.com
163a973243
Bug 180293: moved the OpenVMS build from the POSIX subsystem to native VMS
...
(GNV). The patch is contributed by Colin Blakes <colin@theblakes.com>.
Modified Files: configure configure.in rules.mk pr/include/md/Makefile
openvms.c
Added Files: plds_symvec.opt plc_symvec.opt nspr_symvec.opt
2002-12-12 01:41:31 +00:00
asasaki%netscape.com
b60ab98714
168580: unhardcode versions in embedding files. r=cls, build changes
...
with r=cls don't require sr=.
2002-12-12 01:18:52 +00:00
jfrancis%netscape.com
25ccf2ef3f
fix for 184308: cf_html bustage. fencepost error. r=brade; sr=bz; a=asa
2002-12-12 01:05:53 +00:00
timeless%mozdev.org
5e38259aae
Bug 180995 nsStatusBarBiffManager::~nsStatusBarBiffManager() unconditionally releases a null member
...
r=sspitzer sr=bz
2002-12-12 00:46:45 +00:00
wtc%netscape.com
fc21af26c1
Bug 180293: ported nsinstall.c to native VMS (GNV) environment. The patch
...
is contributed by Colin Blakes <colin@theblakes.com>. r=brendan.
2002-12-12 00:28:25 +00:00
leaf%mozilla.org
7d4366f053
Automated update
2002-12-12 00:15:11 +00:00
seawood%netscape.com
20bc93ff48
Add $(LDFLAGS) to the local nsinstall link command.
...
Bug #88283 r=wtc
2002-12-12 00:13:46 +00:00
timeless%mozdev.org
efdeb3b566
Bug 172633 [RFE]link plugindoc.mozdev.org in help about plugins
...
r=biesi sr=bz
2002-12-12 00:12:16 +00:00
colin%theblakes.com
8a6d411d14
OpenVMS build changes. b=180290. r=cls
2002-12-12 00:08:59 +00:00
kin%netscape.com
f71e222a68
Fix for commercial blocker bug (bugscape bug 21716 (Spell checker fails to open))
...
Added missing txtsvc.xpt to packgages-* files:
mozilla/xpinstall/packager/packages-mac
mozilla/xpinstall/packager/packages-os2
mozilla/xpinstall/packager/packages-static-unix
mozilla/xpinstall/packager/packages-static-win
mozilla/xpinstall/packager/packages-unix
mozilla/xpinstall/packager/packages-win
This was fallout from the checkin for bugzilla bug 173046.
2002-12-12 00:04:22 +00:00
wtc%netscape.com
763ea9c25e
Bug 166412: ported NSPR to AIX 5.1. AIX 5.1 is the same as AIX 4.3 as far
...
as NSPR is concerned. Invented a new macro AIX4_3_PLUS to indicate AIX 4.3
or higher.
Modified files: configure configure.in _pth.h prnetdb.c
2002-12-11 23:10:41 +00:00
wtc%netscape.com
3812d064b4
Bug 175423: fixed the problems pointed out by gcc's -pedantic-errors flag.
...
Modified files: prwin16.h unix.c
2002-12-11 23:03:31 +00:00
igor%mir2.org
d652c3179a
I moved itsUseDynamicScope from InterpreterData to InterpretedFunction as this flag affects only functions, not scripts and to initialize this flag not during script compilation but during function creation which happens at the start of script execution. It allows to alter the flag for already compiled scripts before their execution.
2002-12-11 22:28:00 +00:00
relyea%netscape.com
b96f690161
Don't break solaris or linux (add the ';')
2002-12-11 17:56:49 +00:00
relyea%netscape.com
3fbd2fdc4d
Export new command to pull for token change events.
2002-12-11 17:53:20 +00:00
relyea%netscape.com
0a024139f7
Program to test smartcard removal and insertion detection.
2002-12-11 17:44:53 +00:00
relyea%netscape.com
2c6c4ceeae
Add token removal blocking function.
2002-12-11 17:43:24 +00:00
dbaron%fas.harvard.edu
1a01999234
Fix uninitialized variable introduced last night. b=1777
2002-12-11 15:59:24 +00:00
peterv%netscape.com
7ade523ba0
Bustage fix.
2002-12-11 15:06:40 +00:00
timeless%mozdev.org
3b53418399
Bug 133714 Probably harmless typo.... (PresShell::SetCaretReadOnly Unreachable statement)
...
patch by riceman+bmo@mail.rit.edu r=timeless sr=bz
2002-12-11 15:04:26 +00:00
peterv%netscape.com
c8c3b38f06
Bustage fix.
2002-12-11 14:58:13 +00:00
seawood%netscape.com
2060f55e49
Use mkstemp instead of tempnam. Potential security issue.
...
Bug #173178 r=syd sr=dveditz
2002-12-11 14:50:15 +00:00
peterv%netscape.com
eef263b19e
Fix for bug 183999 (Modernize content). r=caillon, sr=bz.
2002-12-11 14:24:49 +00:00
timeless%mozdev.org
2ab6106129
Bug 130600 Search includes MailWindowOverlay which includes viewZoomOverlay which throws an exception.
...
patch by neil@parkwaycc.co.uk r=jag sr=bienvenu
2002-12-11 14:10:13 +00:00
timeless%mozdev.org
09b8020f5e
Bug 108271 Support RLE compression and bitfields for the BMP Decoder
...
patch by neil@parkwaycc.co.uk initial work by jdunn@netscape.com
r=biesi sr=tor
2002-12-11 14:06:51 +00:00
caillon%returnzero.com
c3e3447b52
Re-landing these because I don't believe this are responsible for the Txul spike.
...
Bug 181975 - Convert layout to use nsIPrefService, nsIPrefBranch, and friends.
r/sr=roc+moz
2002-12-11 14:05:41 +00:00
timeless%mozdev.org
4c19bba298
Bug 99328 can't copy entries in javascript console to X primary selection (copy to clipboard works)
...
patch by neil@parkwaycc.co.uk r=akkana sr=bz
2002-12-11 14:02:19 +00:00
timeless%mozdev.org
42755c35cf
Bug 33732 [MW]Mousewheel scrolling scrolls listbox, not page
...
patch by frank.schoenheit@gmx.de r=rods sr=dbaron
2002-12-11 13:47:44 +00:00
timeless%mozdev.org
f6d3c2865e
Bug 183639 Crash |delete datasource| in NS_NewRDFInMemoryDataSource
...
r=rjc sr=dbaron
2002-12-11 12:54:00 +00:00
bzbarsky%mit.edu
5940c8be4e
And backing bug 182124 yet again... why is comet the _only_ tinderbox showing
...
the problem?
2002-12-11 12:42:50 +00:00
axel%pike.org
c25c1270ec
backout 74786, gcc 2.96 sucks
2002-12-11 11:09:06 +00:00
axel%pike.org
2b5d05c498
bug 74786, prepare for string cleanup, r=sicking, sr=peterv
2002-12-11 09:51:17 +00:00
seawood%netscape.com
82a9a7f684
Don't always link XIE in static builds.
...
Thanks to Kai Engert <kaie@netscape.com> for the patch.
Bug #184527 r=cls
2002-12-11 07:17:11 +00:00
seawood%netscape.com
3cabbd055a
When pulling standalone modules, pull the individual toplevel files first to avoid having the files disappear with cvs giving the ' warning: new-born <file> has disappeared' message.
...
Bug #122149 r=bryner
2002-12-11 07:06:43 +00:00
bratell%lysator.liu.se
6f7aed87ab
Bug 184230 - don't modify a constant string. This caused crashes when Mozilla was built with constant strings in read only memory. (/GF) r=timeless, sr=bzbarsky
2002-12-11 06:40:46 +00:00
bstell%ix.netcom.com
c03c9cfe21
bug 144669 add FreeType2 function to convert Truetype to subsetted Postscript
...
r=Louie.Zhao, sr=jst
2002-12-11 06:26:25 +00:00
bstell%ix.netcom.com
cff90da0cf
bug 144669 code to convert Truetype to subsetted Postscript
...
r=Louie.Zhao, sr=jst
2002-12-11 06:24:48 +00:00
bzbarsky%mit.edu
175bfa18ac
relanding bug 182124 since it looks like comet was just noise and the other Ts
...
boxes that cycled with this show no problems...
2002-12-11 05:40:14 +00:00