bzbarsky%mit.edu
3af3a33052
Make sure the for loop terminates. Also caught by bryner, r+sr=me
2003-07-07 05:15:41 +00:00
bzbarsky%mit.edu
862a100ea0
Fixing orange (casting a nsTableColFrame* to nsTableColGroupFrame* doesn't
...
really work...). Patch suggested by bryner, r=me.
2003-07-07 04:57:56 +00:00
roc+%cs.cmu.edu
08a4a0dd2a
Ongoing deCOMtamination. r+sr=dbaron
2003-07-07 02:01:29 +00:00
bryner%netscape.com
9b8a2f0368
fix typo
2003-07-07 00:17:16 +00:00
bryner%netscape.com
c73cdfc1ee
Don't put the throbber in the menubar on mac since there shouldn't be a menubar.
2003-07-06 22:00:35 +00:00
caillon%returnzero.com
79b253758f
Backout of Neil's patch for bug 211537. This was only supposed to touch 10 or so lines, not every line in each of two files.
2003-07-06 21:09:22 +00:00
igor%mir2.org
5188320068
1. To evaluate script represented by String, use Context.evaluateString to avoid the need to create StringReader instances.
...
2. Catch VirtualMachineError so on out-of-memory/stack-overflow the shell will exit with System.exit(EXITCODE_RUNTIME_ERROR), not with 1. It will allow to distinguish cases when script tried to consume all available stack/memory with bugs in Rhino itself leading to NullPointerException etc.
3. Remove code to rethrow ThreadDeath from JavaScriptExcception since ThreadDeath is re-thrown by the engine itself.
2003-07-06 19:21:42 +00:00
blakeross%telocity.com
d6f9578b98
Fixing 184801 - home button tooltip not updated when changing home page in prefs.
2003-07-06 19:21:31 +00:00
igor%mir2.org
dd893acd8d
Caching of Method/Constructor.getParameterType()
...
To avoid constant calling of Method/Constructor.getParameterType() which creates a new Class array on each call, NativeJavaMethod stores the parameter types for its methods in methodTypes array and similarly JavaMembers holds all constructor types in ctorTypes array. The cached Class arrays are passed explicitly to methods that previously called getParameterType().
2003-07-06 19:07:00 +00:00
igor%mir2.org
c1add24197
Cosmetics: use
...
import java.lang.reflect.*;
import java.io.*;
instead of explicit importing multiple classes.
2003-07-06 19:02:03 +00:00
igor%mir2.org
32619aac8e
NativeJavaMethod.add is removed. It allows to assume that after NativeJavaMethod constructor methods array will remain the same, which I will use in the following patch to add caching of Method.getParameterTypes.
...
Instead of calling NativeJavaMethod.add, JavaMembers assemble the method list directly and then pass it to NativeJavaMethod when done.
2003-07-06 18:59:30 +00:00
igor%mir2.org
2dd779b626
Pass staticType to wrapAsJavaObject to restore an option to use it for reflection instead of dynamicType if a security manager prevents the later
2003-07-06 18:51:54 +00:00
igor%mir2.org
4b42da1dbb
More JavaMembers cosmetics:
...
1. All its methods package private methods that are not accesible outside the class itself are made private.
2. Various package-private getters are removed in favor of direct field access.
2003-07-06 18:51:53 +00:00
neil%parkwaycc.co.uk
bb921d3bfc
Bug 211537 DOM Inspector not displaying full tree of nodes r=caillon sr=bz
2003-07-06 18:31:56 +00:00
blakeross%telocity.com
4f466c81a2
Fix 178110 - Alt-d address bar shortcut doesn't work with caps lock on
2003-07-06 06:36:30 +00:00
scott%scott-macgregor.org
7b8d2b8534
Land new mail compose icons from Arvid.
2003-07-06 06:19:48 +00:00
scott%scott-macgregor.org
4c58e28c88
Yet another re-write of preferences. Re-factor several 'advanced' options into new homes away from advanced.
...
Changes include: Moving all language settings to the Fonts/Languages panel.
Moving auto completion settings from advanced to Composition.
Restore HTML color prefs to the display panel.
Move Labels from advanced to the display panel.
Thanks to Mike Connor for some of these suggestions.
2003-07-06 05:32:22 +00:00
blakeross%telocity.com
db99ae0397
Only enable autoscroll on Windows.
2003-07-06 05:23:05 +00:00
blakeross%telocity.com
9de1c55632
Fix 184801 - home button tooltip not updated when changing home page in preferences
2003-07-06 04:33:16 +00:00
blakeross%telocity.com
938ccf7f9b
Fix 195233 - calibrate display resolution is broken. Patch by noririty.
2003-07-06 03:29:58 +00:00
blakeross%telocity.com
d954868b24
Fixing 205008 - Bookmark a link in history results in a bookmark without location
2003-07-06 03:06:43 +00:00
blakeross%telocity.com
a10adf355e
Fix 201476 - change all.js to not advertise unsupported "compress".
2003-07-06 02:53:51 +00:00
blakeross%telocity.com
260a4a7d99
Fix 197702 - switch shift+scroll and alt+scroll for compatibility with IE/Opera.
2003-07-06 02:40:23 +00:00
blakeross%telocity.com
3acfbdcd18
Fix 205161 - remove "www" from history entries.
2003-07-06 02:18:27 +00:00
blakeross%telocity.com
2f70def121
Fix 184472 - Make F5 refresh on linux too.
2003-07-06 01:26:04 +00:00
blakeross%telocity.com
4a343136f3
Fix a small full screen bug - we no longer have to hide the menubar since it's part of a toolbar now.
2003-07-06 01:21:30 +00:00
blakeross%telocity.com
5d1f8ce092
Move autoscroll images to content so it's not theme-dependent.
2003-07-06 01:08:18 +00:00
blakeross%telocity.com
75d9577000
Minor autoscroll fixes.
2003-07-06 01:02:48 +00:00
igor%mir2.org
1c181334c2
1. Changing NativeJavaMethod.findFunction to return index of found method instead of the method itself to make smaller the following optimizations of findFunction.
...
2. Removal of NativeJavaMethod.getMethod that simply returned package-private field NativeJavaMethod.methods since the filed itself was accessed directly by other files.
2003-07-05 22:13:33 +00:00
igor%mir2.org
4fdc22f62d
Added reportRuntimeError4 and getMessage4 to build 4-argument messages
2003-07-05 22:05:55 +00:00
dougt%meer.net
c0b63b4340
adding minimo-unix config file. not part of build.
2003-07-05 19:35:04 +00:00
dougt%meer.net
2481164ffb
Adding support for static builds of minimo. r=pavlov. b=211645
2003-07-05 19:34:19 +00:00
dean_tessman%hotmail.com
7685cd98ce
add cut/copy/paste buttons to the toolbar palette
2003-07-05 19:16:15 +00:00
roc+%cs.cmu.edu
a197a69820
Ongoing deCOMtamination. r+sr=dbaron
2003-07-05 15:30:50 +00:00
roc+%cs.cmu.edu
c98e21aba3
Ongoing deCOMtamination. r+sr=dbaron
2003-07-05 15:04:34 +00:00
roc+%cs.cmu.edu
fce6448474
Ongoing deCOMtamination. r+sr=dbaron
2003-07-05 14:36:03 +00:00
blakeross%telocity.com
503c121539
Fix 209940 - update internet keywords to support unicode. patch by noririty@jcom.home.ne.jp.
2003-07-05 07:33:09 +00:00
blakeross%telocity.com
504e05a942
Fixing 209323 - Status bar check in View menu sometimes incorrect.
2003-07-05 07:08:01 +00:00
blakeross%telocity.com
1ac4bfc823
Tweaking autoscroll a bit.
2003-07-05 06:53:47 +00:00
blakeross%telocity.com
4056e69c2f
Fixing bug 179666 - double the depth of the drop down location bar
2003-07-05 06:26:58 +00:00
blakeross%telocity.com
f508149cb8
Fixing 174174 - fullscreen defaults to icon.
2003-07-05 03:36:24 +00:00
blakeross%telocity.com
c538a8b4f7
Fixing bug 174175 - "fullscreen: min, max, and close disappear when in text only mode"
2003-07-05 03:20:34 +00:00
bryner%netscape.com
9b94d558f8
Follow-up to bug 211476 - detabbing GetRects() to make indentation consistent.
2003-07-05 00:10:05 +00:00
smontagu%netscape.com
64a9f8cf10
Comment-only checkin arising from bug 14871 and bug 211343, not part of the build.
2003-07-04 18:34:25 +00:00
roc+%cs.cmu.edu
9bd83767f7
Fixing build bustage
2003-07-04 13:36:03 +00:00
roc+%cs.cmu.edu
0b15c3893e
Ongoing deCOMtamination. r+sr=dbaron
2003-07-04 12:50:32 +00:00
blakeross%telocity.com
ed0078430d
Fixing bug 21134, print range in print dialog should prefill to print first page of the web page. r=ben@netscape.com sr=hewitt@netscape.com
2003-07-04 08:31:44 +00:00
blakeross%telocity.com
8b86ee3b29
Fixing arrow flashing on middle click of link.
2003-07-04 08:23:45 +00:00
scott%scott-macgregor.org
629b369480
remove defaults\wallet which are not required for thunderbird. Thanks to Stephen Walker for the fix.
2003-07-04 06:52:17 +00:00
scott%scott-macgregor.org
fda3669917
rename Action to Handling. Thanks to rgmnetid for the suggestion.
2003-07-04 06:47:27 +00:00