ben%bengoodger.com
392c860a58
259708 - trying to save a file from data: protocol deletes every file in destination directory not marked read-only. r=shaver.
2004-09-29 22:02:15 +00:00
edburns%acm.org
48adbf1a5f
This change-bundle enables webclient to build and run with mozilla 1.7.
...
The Preferences unit test currently fails, but the test browser runs.
Next step is to make all the unit tests run, then produce the source and
binary distribution for 2.0 alpha 2.
M dom/jni/javaDOMEventsGlobals.cpp
- use nsString.get() instead of nsString.GetBufferHandle()
M webclient/src_moz/NavigationActionEvents.cpp
- don't use ctor initializer for nsString
M webclient/src_moz/ns_util.cpp
- nsString2.h is gone.
2004-09-29 22:01:26 +00:00
igor%mir2.org
9f63611ce1
1. Reference cleanup:
...
Signatures in Reference are changed to include Context and reference-related methods in ScriptRuntime accept/return explicit Reference type instead of generic Object as code generation ensure proper type.
2. x..y use explicit reference instead of special descendants mark XMLName:
In this way less code is necessary to support x..y operations and support for .. in non-xml objects is possible.
2004-09-29 20:58:16 +00:00
igor%mir2.org
fa2d593b85
Transform name access to var access only if function does not require activation: previously the tests missed the check for .() that caused activation to be created.
2004-09-29 20:49:05 +00:00
darin%meer.net
cff105e06c
fixing win32 bustage (hopefully)
2004-09-29 20:24:53 +00:00
edburns%acm.org
ea9a8655e8
This change-bundle adds build.xml rules that produce a binary
...
distribution of webclient.
Next step is to get mozilla 1.7 building on my machine, then get
webclient to compile with it, then do a 2.0a2 release.
M build.xml
- incorporate re-added dist directory
A dist/build.xml
- create a binary distribution
A dist/webclient-dist.xml
- build.xml file for the test browser in the distribution
2004-09-29 19:53:55 +00:00
ben%bengoodger.com
a6703a8945
249302 - firefox offers to migrate a non-existent Phoenix Firebird Firefox profile, round 2: also, make sure the wizard's first page's onpageshow handler is not called before onload, guard against showing phoenix item in list in non-automigrate cases too.
2004-09-29 19:08:20 +00:00
igor%mir2.org
5421cfce46
Define var and arguments as PERMANENT properties as required by ECMA.
2004-09-29 19:04:47 +00:00
bryner%brianryner.com
0e838f274d
Fix various crashes by not trying to set the parent before we've initialized the frame. Bug 262054, r+sr=roc.
2004-09-29 18:43:28 +00:00
darin%meer.net
2966e5b957
landing followup patch for bug 251969 "crash [@ nsHttpChannel::OnStopRequest ]" r+sr=dveditz
2004-09-29 16:51:46 +00:00
darin%meer.net
bf911ed5ea
Adding testcase from bug 207846
2004-09-29 16:48:10 +00:00
darin%meer.net
c0d4ded502
fixes bug 207846 "M17 FF09x [@ msvcrt.dll - nsStorageInputStream::Read] Miscellaneous non-repeatable browsing crashes" r=dbradley sr=bzbarsky
2004-09-29 16:45:22 +00:00
Stefan.Borggraefe%gmx.de
b534038da0
Bug 227275: Items in pop-up/context menu of date/time are right-aligned
...
r+sr=mscott
2004-09-29 16:44:56 +00:00
bienvenu%nventure.com
a0e938b6ff
ifdef printf when resetting thread root key, 232080
2004-09-29 14:23:25 +00:00
cbiesinger%web.de
7df1888da1
Bug 250786 [Xlib] scaled images render as garbage
...
r=roland.mainz
2004-09-29 13:51:36 +00:00
Stefan.Borggraefe%gmx.de
b0279b8f86
Fix for Bug 209383: Middle-click on bookmark folder in sidebar also pastes into first tab
...
p=Wladimir Palant, r=neil, sr=jst
2004-09-29 13:13:31 +00:00
bsmedberg%covad.net
5d869e9768
Bug 260955 - add an #includesubst instruction r=Hixie
2004-09-29 13:10:50 +00:00
jshin%mailaps.org
5a32fa70d9
bug 258856 : with 'always use the default char. encoding when replying' on, the recipient's name gets mangled (r=bienvenu, sr=mscott)
2004-09-29 09:02:29 +00:00
smontagu%smontagu.org
1e07d9e674
Bug 260725: quoting a message for a reply must maintain user's display encoding selection. Patch by Eyal Rozenberg <eyalroz@technion.ac.il>, r=smontagu, sr=bienvenu
2004-09-29 08:18:40 +00:00
ben%bengoodger.com
35b07989a4
245722 - ff10pr1 crash in nsIEProfileMigrator::GetSignonsListFromPStore - lots of addtl error checking
2004-09-29 08:15:51 +00:00
ben%bengoodger.com
becd6077dd
261840 - download manager should stay open after dl completes...
2004-09-29 08:12:52 +00:00
ben%bengoodger.com
105f8bdb7b
258673 - save page as (complete) mangles ampersand escaped sequences... add addtl encoding flags for rich text saves
2004-09-29 07:56:16 +00:00
smontagu%smontagu.org
79faf43c7b
Bug 260924: MessengerSetDefaultCharacterSet should be named MessengerSetForcedCharacterSet. Patch by Eyal Rozenberg <eyalroz@technion.ac.il>, r=smontagu, sr=bienvenu
2004-09-29 07:56:14 +00:00
ben%bengoodger.com
1e7d0eb036
249302 - firefox offers to migrate a non-existant phoenix firefox firebird profile... add "fromfile" to the exlcusion list
2004-09-29 07:45:07 +00:00
ben%bengoodger.com
1e4ffcd10f
245088 - various problems with customize toolbar "sheet":
...
Remove slide-out, make the window not reposition badly near the bottom of the
screen, add mconnor's close keybindings. r=mscott, ben, a=me
2004-09-29 07:08:24 +00:00
darin%meer.net
7c4f3d015a
documentation cleanup in preparation for freezing these interfaces, b=99639
2004-09-29 06:33:54 +00:00
igor%mir2.org
dfa85f90dd
1. I fixed a recent regression that caused "arguments" array to be constructed before initialization of standard objects: Global.init() should be called in procesFiles as well.
...
2. I replaced a couple of anonymous classes implementing ContextAction by Use single IProxy class to shrink compiled code size.
2004-09-29 05:41:00 +00:00
jst%mozilla.jstenback.com
c1f737ffb0
Fixing bug 261998. Don't fire the beforeunload event when loading a link to an anchor in the current document. r+sr=bzbarsky@mit.edu
2004-09-29 05:29:48 +00:00
ben%bengoodger.com
5d597d1b3f
234416 - can spoof filename in "what should firefox do with this file" dialog -
...
trims 1+ spaces to 1 space, used for display purposes only
keeps track of a separate value to use for downloading the file so the file
name is preserved for the on-disk file. r=mscott a=me
2004-09-29 05:08:43 +00:00
roc+%cs.cmu.edu
9cb0174df1
Bug 261040. Make sure that scrollframe borders are not included in GetActualScrollbarSizes. r+sr=dbaron
2004-09-29 02:19:06 +00:00
roc+%cs.cmu.edu
b2c88b56ed
Bug 260896. When a floating first-letter frame reports FRAME_IS_NOT_COMPLETE after reflow, (then unlike blocks) that does NOT mean that it needs to continue on the next page! It just means it has an inline continuation. So correct its reflow status early in ReflowFloat so that we don't confuse the heck out of block reflow. r+sr=dbaron
2004-09-29 02:18:25 +00:00
roc+%cs.cmu.edu
b8a58f6aeb
Bug 261040. Make sure that scrollframe borders are not included in GetActualScrollbarSizes. r+sr=dbaron
2004-09-29 02:08:51 +00:00
roc+%cs.cmu.edu
28838b0654
Bug 261128. Protect scrollframes from dying if the prescontext's container goes away (it's a weak ref). r+sr=dbaron
2004-09-29 01:46:55 +00:00
roc+%cs.cmu.edu
a349f887cd
Bug 62384. Invalidate cached height when it's not equal to the current height. r+sr=roc, patch by Hideo Saito.
2004-09-29 01:44:29 +00:00
roc+%cs.cmu.edu
5dee51751d
Bug 160095. Don't crash trying to print documents using -moz-opacity. r+sr=bzbarsky.
2004-09-29 01:36:46 +00:00
timeless%mozdev.org
bf57384387
Bug 261567 print XPI stub opening error in UI instead of console
...
patch by ajschult@verizon.net r=bsmedberg sr=dveditz
2004-09-29 01:06:25 +00:00
bienvenu%nventure.com
bb90509990
fix 256221 crash running an imap filter after the fact that marks messages read, sr=mscott
2004-09-29 00:58:48 +00:00
ben%bengoodger.com
98088e0f0a
215929 - window title incorrectly shows [Object HTMLImageElement] when switching tabs, bringing across some of caillon's code from xpfe/, r=mscott a=me
2004-09-29 00:36:32 +00:00
ben%bengoodger.com
687f021c54
123006 - strange characters not escaped in bookmark keyword substitutions... r=mscott, a=me
2004-09-29 00:33:36 +00:00
bryner%brianryner.com
dc62f4d4e5
Attempt to fix perf regression from bug 258513 by fixing users of obsolete nsIBoxToBlockAdaptor interface. Also, removing this interface like I intended to do. r=dbaron.
2004-09-29 00:28:13 +00:00
scott%scott-macgregor.org
293a8dae80
Bug #240970 --> Context menu text is right aligned in date area for the collapsed
...
message header view.
2004-09-28 23:05:13 +00:00
jst%mozilla.jstenback.com
4a04e43fee
Fixing nsAppleSingleDecoder leak in nsInstall. r+sr=peterv@propagandism.org
2004-09-28 22:31:36 +00:00
bugzilla%arlen.demon.co.uk
1d80f6f904
Bug 257507 Small glitches in various inline help files (Fix for the reported missing entry)
...
p=giacomo.magnini@portalis.it r=neil.parkwaycc.co.uk
2004-09-28 22:23:06 +00:00
jst%mozilla.jstenback.com
a1f092a35b
Include the original name in the AppleSingle encoded file. Not part of the build.
2004-09-28 22:21:34 +00:00
bugzilla%arlen.demon.co.uk
ace33c2bf4
Bug 257507 Small glitches in various inline help files (More fixes...)
...
p=giacomo.magnini@portalis.it r=neil.parkwaycc.co.uk
2004-09-28 22:15:30 +00:00
scott%scott-macgregor.org
bcc854a129
Bug #230392 --> minor thunderbird specific fix.
...
Create new window (if none exists) when clicking the thunderbird dock icon on Mac OS X
instead of trying to create an instance of navigator.xul.
2004-09-28 22:03:34 +00:00
igor%mir2.org
31962091d1
Store optimization level and language version in ShellContextFactory
...
so all Context instances created on other threads or from JavaAdapter
calls would have proper setup.
2004-09-28 21:58:01 +00:00
igor%mir2.org
1f3b183f24
1. Pass Context argument to XMLReference creation method to use it later
...
to check for strict mode.
2. Fix name lokup bug in XMLReference that caused in cases like
foo.(@bar == 'something') to throw runtime exception if bar attribute
does not exist in foo.
2004-09-28 21:56:33 +00:00
scott%scott-macgregor.org
67cb6f0b96
Bug #249955 --> port the extension mgr install button for thunderbird
...
to the trunk
2004-09-28 21:55:29 +00:00
igor%mir2.org
835fe30439
I added methods to check for valid version and optimization levels that
...
Rhino embeddings can use to check the validity of data.
2004-09-28 21:52:19 +00:00