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

85102 Коммитов

Автор SHA1 Сообщение Дата
dougt%netscape.com f765826fdf Fixes 85529. r=valeski@netscape.com, sr=rpotts@netscape.com 2001-07-05 17:35:20 +00:00
andreww%netscape.com 660d6d281f 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 1163402894 Add SECMOD_AddNewModule() to export list. 2001-07-05 17:16:29 +00:00
radha%netscape.com 81605a5a00 Fix for bugs 84556 and 82803 r=valeski sr=rpotts 2001-07-05 14:40:02 +00:00
dcone%netscape.com fcb8514b6f bug=86875 took out some dead code. r=dcone sr=attinasi 2001-07-05 14:25:55 +00:00
rginda%netscape.com 67588ab2bd - not built -
remove spaces from non debug definitions of DEBUG_*, bug 89240
2001-07-05 09:06:24 +00:00
ben%netscape.com 838ad1b7aa 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 a00254162a 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 5e9bc346cb 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 91dbb48b91 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 d8c954e551 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 61f7461179 NOT PART OF BUILD (Photon only)
- bring the photon embedding component upto date.
2001-07-04 19:42:06 +00:00
heikki%netscape.com 84d06bd271 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 e3d9c89065 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 255759ce27 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 1758134ebc Add CallCreateInstance and CallGetService. b=87735 r=jaggernaut sr=scc 2001-07-04 18:55:14 +00:00
dbaron%fas.harvard.edu 17bc9725da 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 fbda807803 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 bfdf148c6f 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 b383ee444c 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 3650041248 fixing ports bustage 2001-07-04 17:52:39 +00:00
dougt%netscape.com 089f8f1338 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 941d5b835c bug 89017, PredicateList::evaluatePredicates redone, + code cleanup. r=peterv,sicking,sr=jst 2001-07-04 11:15:54 +00:00
jst%netscape.com 030da7b1b9 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 2009a34b03 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 babcf8d29e 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 26d40ef59f 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 123a705ccd 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 1ab59fad3a bug #76846: r=cls, build bustage fix for 64-bit platforms 2001-07-04 06:06:22 +00:00
waterson%netscape.com 5709f7405c 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 0b8d9eef36 bug #50721: sr=brendan, r=dbaron. Add |do_QueryElementAt|. 2001-07-04 05:42:46 +00:00
justdave%syndicomm.com eefbb08052 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 a8d4f31ac9 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 e60d8707f2 #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 a713e052fd 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 fc7df0b223 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 0f75cf6ead 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 fd26f4e87c Bug #88429 --> insert a missing return
r=sspitzer
sr=blake
2001-07-04 03:53:38 +00:00
mkaply%us.ibm.com 777a7b4ada #88209
[s]r=tor
xlib only - crash on ZDNet web benchmark
2001-07-04 03:37:30 +00:00
mkaply%us.ibm.com 751a09adce #58512
r=pocemit, sr=tor
xlib only - fix submenu placement
2001-07-04 03:34:24 +00:00
mkaply%us.ibm.com 1dbd07d9d1 No bug - OS/2 only - font tweaks 2001-07-04 03:31:11 +00:00
bienvenu%netscape.com ed5ced0bd4 fix copying news messages while offline r=naving, sr=mscott 88984 2001-07-04 02:53:18 +00:00
syd%netscape.com 9093060daa 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 bd7f167f6e 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 5c00ae3d05 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 2b5922e9c7 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 077fc4d427 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 db6a4ca585 61960. backing out the fix. causes more trouble than good. 2001-07-04 01:54:01 +00:00
pschwartau%netscape.com 586ff89371 Initial add. 2001-07-04 00:17:36 +00:00
nicolson%netscape.com 2b3b3ddbeb add plaintext symmetric key unwrapping JNI function. 2001-07-03 23:39:57 +00:00