Commit Graph

122123 Commits

Author SHA1 Message Date
varga%netscape.com
2d16ccbc4e Build changes for sql extension
- eliminated packager subdir
- separated sqltest app
Not part of build


git-svn-id: svn://10.0.0.236/trunk@144520 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 18:25:46 +00:00
bryner%netscape.com
90fc296e45 Search for either pbxbuild or pbbuild, to allow building with the xcode tools on Mac OS X. Also, use -no-cpp-precomp instead of -traditional-cpp, for gcc 3.3 compatibility. Bug 211895, r=sfraser.
git-svn-id: svn://10.0.0.236/trunk@144519 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 18:22:04 +00:00
blizzard%redhat.com
91c5e0e44b Bug #208762. Fix problems with Mozilla crashing or hanging on X servers with multiple visuals. Make sure to use the same visual when creating windows as when we are drawing in the gfx code.
git-svn-id: svn://10.0.0.236/trunk@144518 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 17:54:57 +00:00
mikep%oeone.com
622592fc32 Checking in patch from Eric B for bug 199278.
git-svn-id: svn://10.0.0.236/trunk@144517 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 12:57:53 +00:00
mikep%oeone.com
9da9f5d62b Fixing bug 167800, patch from Eric B.
git-svn-id: svn://10.0.0.236/trunk@144516 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 12:56:05 +00:00
neil%parkwaycc.co.uk
b6c2eaa2af Bug 211537 DOM Inspector not displaying full tree of nodes r=caillon sr=bz
Using correct line endings this time :-)


git-svn-id: svn://10.0.0.236/trunk@144514 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 08:28:34 +00:00
bryner%netscape.com
e0b5fffc24 We still want to ignore errors copying the embed_lite component when not building Minimo, or running make in this directory in a non-minimo static build will fail. Fixing Camino tinderbox bustage.
git-svn-id: svn://10.0.0.236/trunk@144513 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 08:02:25 +00:00
bzbarsky%mit.edu
8ceac615ed Make sure the for loop terminates. Also caught by bryner, r+sr=me
git-svn-id: svn://10.0.0.236/trunk@144512 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 05:15:41 +00:00
bzbarsky%mit.edu
f61d27d7cd Fixing orange (casting a nsTableColFrame* to nsTableColGroupFrame* doesn't
really work...).  Patch suggested by bryner, r=me.


git-svn-id: svn://10.0.0.236/trunk@144511 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 04:57:56 +00:00
roc+%cs.cmu.edu
b4657fef30 Ongoing deCOMtamination. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@144510 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 02:01:29 +00:00
bryner%netscape.com
fbe965498c fix typo
git-svn-id: svn://10.0.0.236/trunk@144509 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-07 00:17:16 +00:00
bryner%netscape.com
c40b3a844a Don't put the throbber in the menubar on mac since there shouldn't be a menubar.
git-svn-id: svn://10.0.0.236/trunk@144508 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 22:00:35 +00:00
caillon%returnzero.com
61f4e4cd91 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.
git-svn-id: svn://10.0.0.236/trunk@144507 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 21:09:22 +00:00
igor%mir2.org
1143cfe592 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.


git-svn-id: svn://10.0.0.236/trunk@144504 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 19:21:42 +00:00
blakeross%telocity.com
6041231686 Fixing 184801 - home button tooltip not updated when changing home page in prefs.
git-svn-id: svn://10.0.0.236/trunk@144503 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 19:21:31 +00:00
igor%mir2.org
c3dca37870 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().


git-svn-id: svn://10.0.0.236/trunk@144502 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 19:07:00 +00:00
igor%mir2.org
0a67419150 Cosmetics: use
import java.lang.reflect.*;
import java.io.*;

instead of explicit importing multiple classes.


git-svn-id: svn://10.0.0.236/trunk@144501 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 19:02:03 +00:00
igor%mir2.org
6a25d4e536 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.


git-svn-id: svn://10.0.0.236/trunk@144500 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 18:59:30 +00:00
igor%mir2.org
46eea78087 Pass staticType to wrapAsJavaObject to restore an option to use it for reflection instead of dynamicType if a security manager prevents the later
git-svn-id: svn://10.0.0.236/trunk@144499 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 18:51:54 +00:00
igor%mir2.org
4983e29d85 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.


git-svn-id: svn://10.0.0.236/trunk@144498 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 18:51:53 +00:00
neil%parkwaycc.co.uk
808e751928 Bug 211537 DOM Inspector not displaying full tree of nodes r=caillon sr=bz
git-svn-id: svn://10.0.0.236/trunk@144497 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 18:31:56 +00:00
blakeross%telocity.com
a440d119c2 Fix 178110 - Alt-d address bar shortcut doesn't work with caps lock on
git-svn-id: svn://10.0.0.236/trunk@144496 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 06:36:30 +00:00
scott%scott-macgregor.org
ed58e69e8d Land new mail compose icons from Arvid.
git-svn-id: svn://10.0.0.236/trunk@144495 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 06:19:48 +00:00
scott%scott-macgregor.org
78acf101da 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.


git-svn-id: svn://10.0.0.236/trunk@144494 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 05:32:22 +00:00
blakeross%telocity.com
08829111ce Only enable autoscroll on Windows.
git-svn-id: svn://10.0.0.236/trunk@144493 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 05:23:05 +00:00
blakeross%telocity.com
3dfd269094 Fix 184801 - home button tooltip not updated when changing home page in preferences
git-svn-id: svn://10.0.0.236/trunk@144492 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 04:33:16 +00:00
blakeross%telocity.com
f840fd0be7 Fix 195233 - calibrate display resolution is broken. Patch by noririty.
git-svn-id: svn://10.0.0.236/trunk@144491 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 03:29:58 +00:00
blakeross%telocity.com
05670d4b3b Fixing 205008 - Bookmark a link in history results in a bookmark without location
git-svn-id: svn://10.0.0.236/trunk@144490 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 03:06:43 +00:00
blakeross%telocity.com
9391c66c2e Fix 201476 - change all.js to not advertise unsupported "compress".
git-svn-id: svn://10.0.0.236/trunk@144489 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 02:53:51 +00:00
blakeross%telocity.com
8af1fc9a42 Fix 197702 - switch shift+scroll and alt+scroll for compatibility with IE/Opera.
git-svn-id: svn://10.0.0.236/trunk@144488 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 02:40:23 +00:00
blakeross%telocity.com
cbeaa2a30a Fix 205161 - remove "www" from history entries.
git-svn-id: svn://10.0.0.236/trunk@144487 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 02:18:27 +00:00
blakeross%telocity.com
b9a3bbb6e0 Fix 184472 - Make F5 refresh on linux too.
git-svn-id: svn://10.0.0.236/trunk@144486 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 01:26:04 +00:00
blakeross%telocity.com
1e06884bfb Fix a small full screen bug - we no longer have to hide the menubar since it's part of a toolbar now.
git-svn-id: svn://10.0.0.236/trunk@144485 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 01:21:30 +00:00
blakeross%telocity.com
275de467b6 Move autoscroll images to content so it's not theme-dependent.
git-svn-id: svn://10.0.0.236/trunk@144484 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 01:08:18 +00:00
blakeross%telocity.com
0e3f7ec2d9 Minor autoscroll fixes.
git-svn-id: svn://10.0.0.236/trunk@144483 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-06 01:02:48 +00:00
igor%mir2.org
3827a12fe1 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.


git-svn-id: svn://10.0.0.236/trunk@144482 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 22:13:33 +00:00
igor%mir2.org
7a57a93cb3 Added reportRuntimeError4 and getMessage4 to build 4-argument messages
git-svn-id: svn://10.0.0.236/trunk@144481 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 22:05:55 +00:00
dougt%meer.net
d700ee8757 adding minimo-unix config file. not part of build.
git-svn-id: svn://10.0.0.236/trunk@144480 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 19:35:04 +00:00
dougt%meer.net
d8766dc42c Adding support for static builds of minimo. r=pavlov. b=211645
git-svn-id: svn://10.0.0.236/trunk@144479 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 19:34:19 +00:00
dean_tessman%hotmail.com
6db607aa4e add cut/copy/paste buttons to the toolbar palette
git-svn-id: svn://10.0.0.236/trunk@144478 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 19:16:15 +00:00
roc+%cs.cmu.edu
5d6a476ee2 Ongoing deCOMtamination. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@144477 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 15:30:50 +00:00
roc+%cs.cmu.edu
ffca092722 Ongoing deCOMtamination. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@144476 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 15:04:34 +00:00
roc+%cs.cmu.edu
44ae5a148e Ongoing deCOMtamination. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@144475 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 14:36:03 +00:00
blakeross%telocity.com
899e70148b Fix 209940 - update internet keywords to support unicode. patch by noririty@jcom.home.ne.jp.
git-svn-id: svn://10.0.0.236/trunk@144474 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 07:33:09 +00:00
blakeross%telocity.com
c5dcf883ad Fixing 209323 - Status bar check in View menu sometimes incorrect.
git-svn-id: svn://10.0.0.236/trunk@144473 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 07:08:01 +00:00
blakeross%telocity.com
3d1a0bf265 Tweaking autoscroll a bit.
git-svn-id: svn://10.0.0.236/trunk@144472 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 06:53:47 +00:00
blakeross%telocity.com
784848bc9d Fixing bug 179666 - double the depth of the drop down location bar
git-svn-id: svn://10.0.0.236/trunk@144471 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 06:26:58 +00:00
blakeross%telocity.com
b36018e4a3 Fixing 174174 - fullscreen defaults to icon.
git-svn-id: svn://10.0.0.236/trunk@144470 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 03:36:24 +00:00
blakeross%telocity.com
f1149fd949 Fixing bug 174175 - "fullscreen: min, max, and close disappear when in text only mode"
git-svn-id: svn://10.0.0.236/trunk@144469 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 03:20:34 +00:00
bryner%netscape.com
8d62833593 Follow-up to bug 211476 - detabbing GetRects() to make indentation consistent.
git-svn-id: svn://10.0.0.236/trunk@144468 18797224-902f-48f8-a5cc-f745e15eee43
2003-07-05 00:10:05 +00:00