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

116236 Коммитов

Автор SHA1 Сообщение Дата
wtc%netscape.com 87ac81bc93 Renamed MOD_REVISION_VERSION to MOD_PATCH_VERSION.
Modified Files: configure configure.in autoconf.mk.in nspr-config.in
2003-02-28 01:48:15 +00:00
cavin%netscape.com df3d84e27a Fix for 135993. Clear temporary return receipt filter when sent folder is changed and recreate this temporary filter when updating folders. r/sr=sspiter. 2003-02-28 01:41:36 +00:00
bryner%netscape.com 2866ee7fbe Remove nsIXBLPrototypeHandler (part of bug 194834). r=jkeiser, sr=sfraser. 2003-02-28 01:04:45 +00:00
chak%netscape.com bcce21cbc8 Fix for #193479 - Implement InsertLink functionality in MfcEmbed editor
r=mjudge, sr=kin
2003-02-28 01:01:31 +00:00
shliang%netscape.com 4766e7a451 73962 - sidebar overlaps icons in statusbar. r=varga, sr=jag. 2003-02-28 00:37:35 +00:00
pschwartau%netscape.com a953b34fcf Adding an early return to this test, due to problems on Linux RedHat8. See bug 174341 comment 24 and following. 2003-02-28 00:33:44 +00:00
shliang%netscape.com 19c7ed8c4d 129510 - left align menulist labels in filter/search dialogs. r=cavin, sr=sspiter. 2003-02-28 00:32:55 +00:00
bryner%netscape.com e2232fad30 update configure to match rev 1.1170 of configure.in (checking in for jshin@mailaps.org) 2003-02-28 00:27:32 +00:00
shliang%netscape.com 635166216d 134273 - ui issues with focused buttons in select addresses dialog. r=cavin, sr=sspiter 2003-02-28 00:23:46 +00:00
shliang%netscape.com b8ad6646cc 183994 - filter/search dialog ui nits, 169938 - clean up filter list statusbar, 186217 - filter not saved after action error, 195313 - menulists in filter/search dialogs dynamically change width. r/sr=sspitzer 2003-02-28 00:21:31 +00:00
rogerl%netscape.com 138b35a15b Fixed New default constructor. stringToDouble semantics. 2003-02-27 23:51:42 +00:00
jshin%mailaps.org ed1163f000 bug 180851 (configure.in was not committed in the prev. check-in)
: remove several unnecessary converters(used only for X11
font encodings) for non-gtk builds (Windows,MacOS, Xft without X11CORE,etc)
r=seawood, sr=alecf
2003-02-27 23:43:48 +00:00
cavin%netscape.com e406e0f4cf Fix for 138054. When appending msg to a folder set the msg with "MDNSent" flag if we support the flag. r/sr=sspitzer. 2003-02-27 23:43:01 +00:00
sfraser%netscape.com be6b707705 Fix bug 155013 -- the native scrollbar frame failed to enforce cur <= max, which caused the contents to remain in the wrong position sometimes. r/sr=bryner 2003-02-27 23:42:41 +00:00
sfraser%netscape.com 6642237016 Bug 191821: fix up nsObjectFrame to use nsIPluginWidget on Mac, for platform-specific plugin placement issues. Also fix a bug with scrolling Java applets, that caused them to render in the wrong places after scroll. r=peterl, sr=bryner 2003-02-27 23:35:47 +00:00
cavin%netscape.com 1ce88fa9c4 Fix for 144296. Initialize return receipt flag and type in nsMsgCompose::Initialize(). r/sr=sspitzer. 2003-02-27 23:34:29 +00:00
cltbld%netscape.com ccd102dc21 removed CFBundleGetInfoString = "Mozilla 1.3a, �� 1998-2003 The Mozilla Organization"; per jj's instructions r=loan sr=jj 2003-02-27 23:33:45 +00:00
sfraser%netscape.com c5d5b4717d Bug 191821: fix the plugin viewer (full-screen plugins) to use nsIPluginWidget on Mac. r=peterl, sr=bryner 2003-02-27 23:33:41 +00:00
sfraser%netscape.com 1263b6d208 Bug 191821: implement nsIPluginWidget in the mac carbon widget code, to handle mac-specific plugin placement issues. r=peterl, sr=bryner 2003-02-27 23:31:54 +00:00
jshin%mailaps.org 2475a8eab8 bug 180851 : remove several unnecessary converters(used only for X11
font encodings)  for non-gtk builds (Windows,MacOS, Xft without X11CORE,etc)
r=seawood, sr=alecf
2003-02-27 23:27:57 +00:00
sfraser%netscape.com e1fbf0bdbe Fix for bug 74404 -- show caret drag feedback. r=brade, sr=kin 2003-02-27 23:20:15 +00:00
sfraser%netscape.com 511b311820 Fix bug 74404: show caret drag feedback. r=brade, sr=kin 2003-02-27 23:09:51 +00:00
oeschger%netscape.com 2ede3a0c51 removing extraneous im_help from mozilla, replacing space-bloated mail help file, dispensation per 162559, r=robinf 2003-02-27 23:08:56 +00:00
brendan%mozilla.org 4f5a98cd5c - Move left-associative binary tree flattening from the post-order position
in js_FoldConstants where it was added (suboptimally: it worked, but it ran
  so late that js_FoldConstants recursion was not reduced, only js_EmitTree
  recursion), to NewBinary, where it avoids JSParseNode allocations up front
  and reduces recursion in all parse-tree walking.
- This change enables js_FoldConstants to see a very long concatenation of
  string literals as a PN_LIST node, so it can quickly concatenate without
  running afoul of O(n^2) problems inherent in js_ConcatStrings applied to
  two atomized strings (the old way of folding string concatenations, still
  used for any pairwise string literal concatenation).
- Further optimize the first change for the second by having NewBinary set a
  new pn_strcat flag (overlaying the pn_extra field) of the PN_LIST arm of
  the JSParseNode.pn_u union, whenever it sees at least one string literal in
  a concatenation that might be folded (whose operands might all be constants
  of string or number type).
- Notes:
  - only string and number constants are folded (not boolean or null
  constants);
  - only all-constant left-associated binary expression chains are folded,
    so 2 * foo * 3 is not folded using commutativity of * over numbers, nor
    is "hi" + " there" + foo folded to "hi there" + foo.
  - gcc3.2 -O and objdump -x say I added 708 bytes of instructions with this
    change.  I tried to keep it down to what was necessary for common script;
    I don't think JS needs an optimizing-compiler-strength constant folder,
    and I don't think this 1K bloat is too high a price to pay for this fix.
    But I'll certainly work on reducing footprint elsewhere, if I can.
- Bug 174341, r=shaver.
2003-02-27 23:04:46 +00:00
jkeiser%netscape.com 1732a11043 Make click+hold right-click menu work again on Mac (bug 193799), r=bryner/saari, sr=jst 2003-02-27 22:59:08 +00:00
cavin%netscape.com 32e275f48d Fix for 183111. Added nsIExternalProtocolHandler interface and method handlerExists in netwerk/bae/public to be used by mozTXTToHTMLConv. Also treated 0xA0 as space in mozTXTToHTMLConv. r=darin, sr=sspitzer. 2003-02-27 22:46:42 +00:00
burnus%gmx.de 2e4e7a7b47 180692 - enter_bug shows keywords option even if keywords are disabled
Fix broken tree.
r,a=justdave
2003-02-27 22:45:02 +00:00
harishd%netscape.com 457256436b Make sure to resolve place-holder-array-type. b=192141, r=rayw@netscape.com, sr=vidur@netscape.com.
The target namespace on <schema> should be applied to <element> if and only if <element> is qualified. b=192972. r=rayw@netscape.com, sr=jst@netscape.com.
Fixed a few warnings.
*** NOT PART OF THE BUILD ***
2003-02-27 22:36:42 +00:00
bryner%netscape.com 6e09733f45 For limiting exported symbols on OS X, use -exported_symbols_list instead of nmedit, if it's available. Also, don't run nmedit for debug builds. Bug 195186, r=cls. 2003-02-27 22:32:05 +00:00
lpham%netscape.com b568307a27 update to Mozilla 1.4a bugzilla #194078 r=ycalonje, sr=granrose, a=blanket 2003-02-27 22:27:31 +00:00
harishd%netscape.com 52d6a3bcf1 Do not open head context if <script> is in the body context. b=194329, r=heikki, sr=jst 2003-02-27 22:26:00 +00:00
sspitzer%netscape.com 89560482e7 moving the palm readme, for robinf. r=ssu 2003-02-27 22:19:56 +00:00
rogerl%netscape.com 7a6b6bd387 Linux build clean-up. 2003-02-27 22:03:13 +00:00
pschwartau%netscape.com 2f97a8c92b Get JS standalone building with Makefile.ref on Mac OSX (195134, r=cls). Not part of browser build. 2003-02-27 21:52:13 +00:00
burnus%gmx.de debdd19d9d Bug 180692 - enter_bug shows keywords option even if keywords are disabled
r=bbaetz, a=justdave
2003-02-27 21:13:30 +00:00
chanial%noos.fr 9918b9a2e9 Bug 192447: correctly disable the Advanced button when js is disabled.
original patch by norority.
2003-02-27 18:53:51 +00:00
rogerl%netscape.com b389d2cebe Multiple ECMA fixes. 2003-02-27 18:37:07 +00:00
chanial%noos.fr 9d30803fca making extension creator's life easier by reusing Mozilla's id for the browser <hbox> and by adding a <vbox id="appcontent"> enclosing the content. 2003-02-27 17:17:00 +00:00
sspitzer%netscape.com 2d0fcc87ca fix for bug #195085.
"stale" account manager prefs can lead to problems with the compose window
and view navigation.  thanks to smaug@jippii.fi for find the bug, and doing the fix.
r/sr=sspitzer
2003-02-27 15:58:15 +00:00
sspitzer%netscape.com 0e0ad6cde7 fix for bug #191891. hang when typing in the in the junk log (or filter log) window.
don't allow type ahead find in these "browser" windows.
r=aaronl, sr=bienvenu
2003-02-27 15:22:22 +00:00
cbiesinger%web.de 6f54b64051 urg, fix typo 2003-02-27 15:09:39 +00:00
pkw%us.ibm.com bccf03f3bd Bug 193376 - Account Manager uses random value for ISP's domain if not set.
r/sr=sspitzer@netscape.com
2003-02-27 15:01:03 +00:00
kin%netscape.com 3833230211 Fix for bug 191762 (dragged image doesn't land where it's dropped)
editor/libeditor/base/nsSelectionState.cpp

  - Reworked the logic in SelAdjJoinNodes() to avoid adding aOldLeftNodeLength twice to the calculated offset when the start/end node is the parent.

editor/libeditor/html/nsHTMLDataTransfer.cpp
editor/libeditor/text/nsPlaintextDataTransfer.cpp

  - Modified the InsertFromDrop() to use an nsAutoTrackDOMPoint, instead of relying on range gravity, to calculate the correct insert position after deleting the current selection.

r=jfrancis@netscape.com  sr=sfraser@netscape.com
2003-02-27 14:53:03 +00:00
wtc%netscape.com 888f478faf Bug 195196: fixed a typo. 2003-02-27 14:49:30 +00:00
brade%netscape.com c1ca12e17f allow editors to edit documents which contain iframes (bug 193902, r=cmanske, sr=smfr) 2003-02-27 14:06:29 +00:00
cbiesinger%web.de 8e44a6e02d 97324 r=peterl/jst sr=jst/bz nsContentDLF.cpp should not use a static list of image types; also: 192023 Make DocLoaderFactories a service 2003-02-27 13:51:55 +00:00
andreas.otte%debitel.net 0f9fa9ad78 fix bug 193477 [URL: colon ":" in URI is escaped in request (not scheme or port delimiter)] no longer escape the colon when it is part of the filename in urls, but force it's escape in links when building dir/index listings, r=bbaetz@acm.org, sr=darin@netscape.com 2003-02-27 13:15:19 +00:00
bbaetz%acm.org ffafc19ad7 Bug 195137 - Keywords are not sent in new bug mail
r,a=justdave
2003-02-27 12:51:58 +00:00
andreas.otte%debitel.net 6f076f634b fix bug 191638 [index/html: files|dirs with "%" need to be properly encoded] force escape of % as part of filenames to %25 to not be damaged by unescape, r=bbaetz@acm.org, sr=darin@netscape.com 2003-02-27 10:55:01 +00:00
kyle.yuan%sun.com 3d2b7c43a1 Bug 166319 support getCharacterExtents for nsIAccessibleText
r=kyle.yuan, sr=henry.jia
Patch by simford.dong@sun.com
2003-02-27 10:07:58 +00:00