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

85036 Коммитов

Автор SHA1 Сообщение Дата
bnesse%netscape.com ccbe76ac33 Fix for bug 88500. GetChildList should return prefs relative to the root branch. r=mscott, sr=alecf. 2001-07-05 17:51:27 +00:00
dougt%netscape.com ee5d06c50c Fixes 85529. r=valeski@netscape.com, sr=rpotts@netscape.com 2001-07-05 17:35:20 +00:00
andreww%netscape.com a5fa1d39cf bugzilla 84077 r=blake, sr=hewitt - adds image precaching elements to windows classic skin. 2001-07-05 17:27:47 +00:00
relyea%netscape.com e94c1b897d Add SECMOD_AddNewModule() to export list. 2001-07-05 17:16:29 +00:00
radha%netscape.com 04c2b2028c Fix for bugs 84556 and 82803 r=valeski sr=rpotts 2001-07-05 14:40:02 +00:00
dcone%netscape.com 2376a5f282 bug=86875 took out some dead code. r=dcone sr=attinasi 2001-07-05 14:25:55 +00:00
rginda%netscape.com 43dfbfdf6d - not built -
remove spaces from non debug definitions of DEBUG_*, bug 89240
2001-07-05 09:06:24 +00:00
ben%netscape.com 79af2b488d more 65251, add content pack jar file to installer registration scripts.
r=danm, sr=blake
2001-07-05 07:22:43 +00:00
cls%seawood.org 74dc7b67b0 Cleaning up mess caused by missed file from bug 53226
Thanks to Simon Fraser <sfraser@netscape.com> for the patch.
Bug #89134 r=peterv@netscape.com
2001-07-05 06:06:48 +00:00
nboyd%atg.com 902d9d6552 Date:
Mon, 02 Jul 2001 12:58:44 +0200
       From:
             Igor Bukanov <igor@icesoft.no>
 Organization:
             Wind River
         To:
             Norris Boyd <nboyd@atg.com>




Hi, Norris!

It turned out that in our browser implementation we need to be able to
abort too-long-running scripts. I implemented that for interpreter mode
via instruction counter callback. This callback is called at branch
points after instruction counter reach certain threshold as you
suggested once in mozilla-jseng mail list. The attached patch adds to
Context.java:
        public int getInstructionObserverThreshold() {
                return instructionThreshold;
        }

        public void setInstructionObserverThreshold(int threshold) {
                instructionThreshold = threshold;
        }

        protected void observeInstructionCount(int instructionCount) {}
...
        int instructionCount;
        int instructionThreshold;


where observeInstructionCount is a callback that should be overwritten
in a custom Context to observe execution.

Then as long as instructionThreshold is not 0 modifications to
Interpreter.java increase instructionCount at branches/function
calls/catch blocks and call cx.observeInstructionCount when it reaches
instructionThreshold. I also replaces 3 catch statements in
Interpreter.interpret for EcmaError, JavaScriptException and
RuntimeException by single one to reduce code duplication.

The patch lacks documentation in Context.java but I would add that later
if the patch is ok.

Regards, Igor

==========================


Subject:
        Re: Working for Rhino
   Date:
        Tue, 3 Jul 2001 10:41:42 +0200
   From:
        felix.meschberger@day.com
     To:
        Norris Boyd <nboyd@atg.com>




Hi Norris,

Well, I couldn't wait ;-) Here are my diffs :

   LazilyLoadedCtor: Make class and constructor public for use on my host
   objects
   NodeTransformer : Replace checks for "arguments" by call to
   checkActivationNeeded() in Context
   Context: Add the name list proposed as a hashtable with
   adder/checker/remover methods

Hope this helps. Regards
Felix
2001-07-05 02:08:14 +00:00
alecf%netscape.com f15136022d fix for bug 73141 r=jag, sr=mscott
correctly handle page when mail asks us to open a link in a new window
2001-07-04 23:23:05 +00:00
dbaron%fas.harvard.edu 70bbb76124 Some compilers don't support default parameters on templates, so split CallGetService and use what would have been a better solution in the first place. sr=scc b=87735 2001-07-04 20:26:31 +00:00
dinglis%qnx.com 933f8149b1 NOT PART OF BUILD (Photon only)
- bring the photon embedding component upto date.
2001-07-04 19:42:06 +00:00
heikki%netscape.com 833d877630 Bug 88354, XML processing instruction without type pseudo-attribute stopped XML layout. r=peterv,harishd, sr=jst. 2001-07-04 19:35:23 +00:00
heikki%netscape.com 34fbea2066 Bug 88327, XMLHttpRequest.responseText did not support HTTP charset header. r=harishd, sr=jst. 2001-07-04 19:31:14 +00:00
dbaron%fas.harvard.edu 7cbc07dc03 Add tests for CallQueryInterface, CallQueryReferent, CallCreateInstance, and CallGetService to make sure they compile on all platforms. b=87735 r=jaggernaut sr=scc 2001-07-04 18:55:15 +00:00
dbaron%fas.harvard.edu bd91b0893f Add CallCreateInstance and CallGetService. b=87735 r=jaggernaut sr=scc 2001-07-04 18:55:14 +00:00
dbaron%fas.harvard.edu 0e270245a3 Make CallQueryInterface work when nsISupports is an ambiguous base class and make CallQueryReferent work when nsIWeakReference is an ambiguous base class. b=87735 r=jaggernaut sr=scc 2001-07-04 18:55:13 +00:00
ddrinan%netscape.com c8f47eb887 Check in for Javi. Bug 83695 - delete cert from smartcard. r=drinan,sr=blizzard 2001-07-04 18:33:53 +00:00
dinglis%qnx.com 5aa453446f NOT PART OF BUILD (Photon Only)
- many fixes (rendering speedup, focus problems, fixed up colors)
2001-07-04 18:02:00 +00:00
dinglis%qnx.com 4cb3bc9f9d NOT PART OF BUILD (Photon Only)
- many fixes (fonts, rendering, printing, crashes, image drawing)
2001-07-04 17:56:17 +00:00
scc%mozilla.org 073bbd5813 fixing ports bustage 2001-07-04 17:52:39 +00:00
dougt%netscape.com a98ffd3e62 Fix for some servers that send "Range" instead of "Content-Range". r=peterl, sr=rpotts bug 85547. 2001-07-04 15:59:47 +00:00
axel%pike.org 5e6a847e8e bug 89017, PredicateList::evaluatePredicates redone, + code cleanup. r=peterv,sicking,sr=jst 2001-07-04 11:15:54 +00:00
jst%netscape.com 1b353f633a Fixing bug 86147. Adding code that does security checks on access to getter and setter functions for properties of DOM objects in JS. Also fixing a JS engine bug that caused problems with the real fix for this bug, the JS engine bug was that a jsid was passed as a jsval to the checkAccess() class hook. r=mstolts@netscape.com, sr=brendan@mozilla.org 2001-07-04 09:44:57 +00:00
timeless%mac.com e685840fe7 Bugzilla Bug 88769 'nsDiskCacheEntry' : type name first seen using 'class' now seen using 'struct'
r=jtaylor sr=shaver
2001-07-04 07:06:34 +00:00
justdave%syndicomm.com 69d9e7ef30 Fix for bug 87701: Invalid username in bug changes echoed back without escaping HTML data
Patch by Gervase Markham <gervase.markham@univ.ox.ac.uk>
r= justdave@syndicomm.com
2001-07-04 07:06:00 +00:00
scc%mozilla.org 6f91164cb0 fixing build bustage (typo), thanks gcc 2.7.2.3 for instantiating my unused template member functions :-( 2001-07-04 07:04:17 +00:00
waterson%netscape.com 1635d165f0 Bug 87543. Don't try to do arithmetic when psd->mRightEdge == NS_UNCONSTRAINEDSIZE. r=rbs, sr=attinasi 2001-07-04 06:07:14 +00:00
scc%mozilla.org 8de83eaec2 bug #76846: r=cls, build bustage fix for 64-bit platforms 2001-07-04 06:06:22 +00:00
waterson%netscape.com 9ca563d1bc Bug 85422. Since nsIContent::GetDocument() may now sometimes return a null document back-pointer due to paint suppression, be extra paraniod with a sprinkle of null-check fairy dust. r=brendan, sr=attinasi 2001-07-04 05:54:09 +00:00
scc%mozilla.org 88720ed1d1 bug #50721: sr=brendan, r=dbaron. Add |do_QueryElementAt|. 2001-07-04 05:42:46 +00:00
justdave%syndicomm.com 221a000a29 Killing the "used only once" error that suddenly popped up out of nowhere on tinderbox. 2001-07-04 05:33:37 +00:00
justdave%syndicomm.com 54e70bd943 removing "Use Carp" and "sub die_with_dignity" that I was supposed to remove from the previous patch before checking it in. 2001-07-04 05:28:39 +00:00
mkaply%us.ibm.com b662cd8afc #85873
r=mkaply, sr=blizzard
OS/2 only - code from jblanco to fix codepage mapping issues in migrating bookmarks
2001-07-04 04:42:51 +00:00
justdave%syndicomm.com 15cf3536a8 Fix for bug 59349: Processmail now runs in taint (perl -T and $db->{Taint}=1) mode. Hooks also added to globals.pl to make converting other files in Bugzilla to run in Taint mode easier.
Patch by Jake Steenhagen <jake@acutex.net>
r= justdave@syndicomm.com
2001-07-04 04:41:27 +00:00
mscott%netscape.com 86ba15f553 Bug 84410 --> properly show unknown time and put the progress bar in undetermined mode
when we don't know how large the download is.
r=sspitzer
sr=blake
2001-07-04 04:14:56 +00:00
naving%netscape.com 0c7e1bb3cc 85632 r/sr=bienvenu prevent .msf corruption if parsing of inbox and biff goes on
simultaneously.
2001-07-04 04:02:02 +00:00
mscott%netscape.com bd048a5a64 Bug #88429 --> insert a missing return
r=sspitzer
sr=blake
2001-07-04 03:53:38 +00:00
mkaply%us.ibm.com dc72aeb2d8 #88209
[s]r=tor
xlib only - crash on ZDNet web benchmark
2001-07-04 03:37:30 +00:00
mkaply%us.ibm.com ef13ca58ff #58512
r=pocemit, sr=tor
xlib only - fix submenu placement
2001-07-04 03:34:24 +00:00
mkaply%us.ibm.com 36919f751c No bug - OS/2 only - font tweaks 2001-07-04 03:31:11 +00:00
bienvenu%netscape.com 188154e5ab fix copying news messages while offline r=naving, sr=mscott 88984 2001-07-04 02:53:18 +00:00
syd%netscape.com 992254c262 Fix for 87053, r=ssu, sr=mscott. Supports removal of Quick Launch at uninstall time. 2001-07-04 02:52:55 +00:00
dbaron%fas.harvard.edu f7be311f28 Let GTK handle .gtkrc loading rather than try to do it ourselves (incorrectly). This allows GTK_RC_FILES to just work. Patch from martin.storsjo@pp.qnet.fi. r=pavlov sr=blizzard 2001-07-04 02:12:53 +00:00
dbaron%fas.harvard.edu 5874aa4a5e Add two Korean list styles (-moz-hangul and -moz-hangul-consonant) and rename existing list-style-type values that are our extensions to use -moz- prefix. Patch from Jungshik Shin <jshin@pantheon.yale.edu>. r=dbaron sr=attinasi b=63574 2001-07-04 02:05:59 +00:00
pinkerton%netscape.com ad026e6765 removing xml comment as we think that makes the finder crash on OSX. r=sdagley/sr=sfraser. bug# 89152. 2001-07-04 02:04:13 +00:00
dbaron%fas.harvard.edu e16f82790d Add some comments to code about issues that we should look at, remove some unused code, rename some unnecessarily-overloaded functions, fix some typos, and make a few minor style changes. b=88735 r=waterson sr=attinasi 2001-07-04 02:00:05 +00:00
naving%netscape.com 0cdecb3d36 61960. backing out the fix. causes more trouble than good. 2001-07-04 01:54:01 +00:00
pschwartau%netscape.com 0b88d70521 Initial add. 2001-07-04 00:17:36 +00:00