Commit Graph

37570 Commits

Author SHA1 Message Date
gordon%netscape.com
a116a12a03 This is just a NECKO test app. Updating to work on Mac.
git-svn-id: svn://10.0.0.236/trunk@43309 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 22:18:34 +00:00
bienvenu%netscape.com
2d3b49cb9a part of fix for 11651 fix memory leak of status msg a=chofmann
git-svn-id: svn://10.0.0.236/trunk@43306 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 21:43:08 +00:00
bienvenu%netscape.com
381c583751 part of fix for 11651 print out status msgs with args a=chofmann
git-svn-id: svn://10.0.0.236/trunk@43305 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 21:41:57 +00:00
bienvenu%netscape.com
84afbe0517 part of fix for 11651 turn off cylon mode in progress when have non zero percentage a=chofmann
git-svn-id: svn://10.0.0.236/trunk@43304 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 21:39:40 +00:00
pinkerton%netscape.com
f4ecdaa51d correctly check result codes of OS calls and null terminate the exported mappings for placing on the clipboard. Fixes bug #11569 (appr chofmann).
git-svn-id: svn://10.0.0.236/trunk@43301 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 21:05:49 +00:00
davidm%netscape.com
a9437e3020 4279 Error with JS: window.confirm() method not defined
4279   [FEATURE] JavaScript Alert dialogs 
a= choffman


git-svn-id: svn://10.0.0.236/trunk@43300 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 21:04:48 +00:00
ramiro%netscape.com
b58d6e0ddb Fix for bug 2595. Thats the evil bug that causes widgets to be "messed up"
whenever a reflow happens.  The offset were being computed from the wrong
origin.  See comments in nsWidget::Move() if you want to be confused.


git-svn-id: svn://10.0.0.236/trunk@43299 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 20:56:40 +00:00
norris%netscape.com
251a24c31b Fix more importerTopLevel problems.
git-svn-id: svn://10.0.0.236/trunk@43298 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 20:44:46 +00:00
pavlov%netscape.com
db455303dc ifdef out some printfs to make akkana happy a=chofmann
git-svn-id: svn://10.0.0.236/trunk@43297 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 20:39:34 +00:00
morse%netscape.com
b0f1986087 fix bug 10406, approved chofmann
git-svn-id: svn://10.0.0.236/trunk@43296 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 20:22:35 +00:00
dp%netscape.com
2f61f25ba2 Adding nsGIFModule as a result of xpcom review of gif.
git-svn-id: svn://10.0.0.236/trunk@43295 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 20:21:16 +00:00
dp%netscape.com
4d630e99fa - using ComponentManager instead of service manager in nsIModule
- Adding UnregisterComponentSpec()
All the above are required for xpcom review.


git-svn-id: svn://10.0.0.236/trunk@43292 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 19:30:13 +00:00
dp%netscape.com
ef4782e088 Dll unloading support. These are not used yet.
git-svn-id: svn://10.0.0.236/trunk@43291 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 19:27:58 +00:00
slamm%netscape.com
a62eda2122 Use correct chrome url for history window (bug #11834). a=chofmann.
git-svn-id: svn://10.0.0.236/trunk@43290 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 19:25:37 +00:00
mark.lin%eng.sun.com
8d66acb131 Merged in Kirk's changes.
git-svn-id: svn://10.0.0.236/trunk@43289 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 17:53:43 +00:00
norris%netscape.com
ad51604c84 Fix problem:
The fix sort of works. But there are some new problems. I enclosed two JavaScript files, button.js and image.js.

If I load button.js first and then image.js, I got the following:

js> load("button.js");
js> load("image.js");
Ambiguous import: [JavaClass javax.swing.ImageIcon] and [JavaClass javax.swing.ImageIcon]
js> load("image.js");
Ambiguous import: [JavaClass java.net.URL] and [JavaClass java.net.URL]
js> load("image.js");
Ambiguous import: [JavaClass java.lang.System] and [JavaClass java.lang.System]
js> load("image.js");
loadImage for 0
Ambiguous import: [JavaClass java.awt.Toolkit] and [JavaClass java.awt.Toolkit]
js> load("image.js");
loadImage for 0
js>

If I load imag.js first and then button.js, I got the following:

js> load("image.js");
loadImage for 0
js: [JavaPackage java.lang.URL] is not a function.
[JavaPackage java.lang.URL] is not a function.
js> load("image.js");
js: [JavaPackage java.lang.ImageIcon] is not a function.
[JavaPackage java.lang.ImageIcon] is not a function.
js> load("image.js");
js: [JavaPackage java.lang.ImageIcon] is not a function.
[JavaPackage java.lang.ImageIcon] is not a function.
js> load("image.js");
js: [JavaPackage java.lang.ImageIcon] is not a function.
[JavaPackage java.lang.ImageIcon] is not a function.
js> load("button.js");
js: [JavaPackage java.lang.JButton] is not a function.
[JavaPackage java.lang.JButton] is not a function.
js> load("button.js");
js: [JavaPackage java.lang.JButton] is not a function.
[JavaPackage java.lang.JButton] is not a function.
js> load("image.js");
js: [JavaPackage java.lang.ImageIcon] is not a function.
[JavaPackage java.lang.ImageIcon] is not a function.
js>

It looks like something wrong in the image.js file but this should not interfere with button.js. It looks like some arbitary package objects are created, like java.lang.URL. This happened in NativeJavaPackage.get method. If a class of java.lang.URL is not found, a package object is then created. So next time the interpreter encounters URL, it somehow uses the object java.lang.URL instead of the correct class object java.net.URL.. This is one problem. The interference between button.js and jmage.js is another problem.

Howard
  ----- Original Message -----
  From: Norris Boyd
  To: \ Howard\\ Xuhua Lin
  Sent: Thursday, August 12, 1999 12:58 PM
  Subject: Re: ImporterTopLevel problem


  Sorry I've been slow. I finished up the fix this morning and have posted it on the ftp site and checked into cvs.
  Let me know if it works for you.

  --Norris

  \"Howard\" Xuhua Lin wrote:

    Hi, Norris, what's the status of the ImporterTopeLevel problem (i.e if you use importPackage twice, you will get an "Ambiguous import" exception)? Are you still working on it? Howard


git-svn-id: svn://10.0.0.236/trunk@43287 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 17:25:14 +00:00
terry%mozilla.org
7fdeb6c5e6 Wasn't using the 'emailsuffix' param.
git-svn-id: svn://10.0.0.236/trunk@43286 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 17:10:01 +00:00
slamm%netscape.com
461146e454 Add navigation links. Make no script case more obvious to user.
git-svn-id: svn://10.0.0.236/trunk@43285 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 15:57:50 +00:00
slamm%netscape.com
750c4a39ef Text tweaks.
git-svn-id: svn://10.0.0.236/trunk@43284 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 15:27:56 +00:00
dp%netscape.com
35b8c690cb Adding GetIID() accessors
git-svn-id: svn://10.0.0.236/trunk@43283 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 08:35:58 +00:00
dveditz%netscape.com
e978e25f70 bug 9602: we now have a modal confirmation dialog before downloading and
installing software. Big thanks to danm and davidm for implementing
the modal dialog support required. Approved chofmann


git-svn-id: svn://10.0.0.236/trunk@43282 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 07:27:04 +00:00
toshok%hungry.com
f966d0d966 we need the nspr private directory, even if building from the mozilla source tree, on unix.
git-svn-id: svn://10.0.0.236/trunk@43281 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 06:05:16 +00:00
gagan%netscape.com
52aa69ea46 backslashes in ..\.. cases fixed. Thanks bratell@lysator.liu.se
git-svn-id: svn://10.0.0.236/trunk@43279 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 05:20:45 +00:00
warren%netscape.com
7f9c4b0c7c Reduced max page count.
git-svn-id: svn://10.0.0.236/trunk@43278 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 03:31:56 +00:00
davidm%netscape.com
54104fe196 add : so that the mac will run
approved by don


git-svn-id: svn://10.0.0.236/trunk@43277 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 03:20:27 +00:00
neeti%netscape.com
9b31535312 fix for bug# 11796. r morse, a chofmann
git-svn-id: svn://10.0.0.236/trunk@43276 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 01:42:43 +00:00
briano%netscape.com
ab76f82d8b Automated update
git-svn-id: svn://10.0.0.236/trunk@43275 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 01:00:29 +00:00
slamm%netscape.com
2b93edc64c Take out -Wbad-function-cast and -Wconversion for gcc. These gave more noise than helpful warnings. We can add them back in later if we run out of warnings to fix. a=don
git-svn-id: svn://10.0.0.236/trunk@43273 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 00:52:27 +00:00
bienvenu%netscape.com
bc38c717bf more work on ab history, not part of build
git-svn-id: svn://10.0.0.236/trunk@43272 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 00:52:04 +00:00
warren%netscape.com
7a040bf33f Fix for bug 10797: Messenger hang. 2 problems: mac shouldn't be using page manager -- doesn't do vm, and trying to flush when the buffer is empty ends up spinning.
git-svn-id: svn://10.0.0.236/trunk@43271 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 00:46:16 +00:00
warren%netscape.com
894be4eb22 Fix for bug 7682: StringBundle can't load URLs from imap thread.
git-svn-id: svn://10.0.0.236/trunk@43270 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 00:43:48 +00:00
terry%mozilla.org
aa2e2fb298 Add in babelfish code (stolen from infobot).
git-svn-id: svn://10.0.0.236/trunk@43269 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-13 00:21:01 +00:00
pavlov%netscape.com
fc1225789e fix for bug 9446. only seen in viewer, doesn't effect apprunner a=gramps
git-svn-id: svn://10.0.0.236/trunk@43268 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 23:54:23 +00:00
robinf%netscape.com
ab60bdc1ef updating text on this screen
git-svn-id: svn://10.0.0.236/trunk@43267 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 23:48:42 +00:00
matt%netscape.com
ca6cc59280 Adding for bug fix 11706
git-svn-id: svn://10.0.0.236/trunk@43266 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:46:26 +00:00
matt%netscape.com
662a2519a6 updating to add locale/en-US
git-svn-id: svn://10.0.0.236/trunk@43265 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:44:25 +00:00
matt%netscape.com
ce4f9482ce Adding makefile locale/en-US
git-svn-id: svn://10.0.0.236/trunk@43264 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:41:25 +00:00
matt%netscape.com
bdba3509bd Adding makefiles
git-svn-id: svn://10.0.0.236/trunk@43263 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:37:18 +00:00
matt%netscape.com
971b413e59 adding makefiles
git-svn-id: svn://10.0.0.236/trunk@43262 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:34:23 +00:00
matt%netscape.com
ff8e0a6051 Adding dtd support to files. Appoved by hoffmann bugs 10343 7309 10252
git-svn-id: svn://10.0.0.236/trunk@43261 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:31:10 +00:00
danm%netscape.com
caf895916f Landing modal dialogs from JS. More like a feature than stabilization. Apologies. approved: chofmann,don
git-svn-id: svn://10.0.0.236/trunk@43260 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:08:17 +00:00
jefft%netscape.com
ab909dcc23 fix bug 6216 -- SMPT send removes CRLF lines; a=cyeh, r=rhp; tested on Windows & Mac
git-svn-id: svn://10.0.0.236/trunk@43259 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:07:51 +00:00
kmcclusk%netscape.com
be14e9d88a Fix for bug #11717. Check in Ok'ed by cyeh@netscape.com
Don't do the super class'es IsSuccessful because it always returns PR_FALSE
because the (this) pointer is not equal to the submitter.


git-svn-id: svn://10.0.0.236/trunk@43258 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 22:06:09 +00:00
pavlov%netscape.com
e5a5e29811 fix for bug 11564. a=gramps
git-svn-id: svn://10.0.0.236/trunk@43257 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 21:48:43 +00:00
dbragg%netscape.com
6fd3ca9e03 Added pref-migrator project (Approved by chofmann) to fix bug #11220
git-svn-id: svn://10.0.0.236/trunk@43256 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 21:31:08 +00:00
mark.lin%eng.sun.com
d2a2d9fea5 Should not be setting className to null if we get an exception.
git-svn-id: svn://10.0.0.236/trunk@43255 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 21:29:15 +00:00
hyatt%netscape.com
a0f5caf3e8 A minor addendum to the bug fix I checked in a few minutes ago.
git-svn-id: svn://10.0.0.236/trunk@43254 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 21:20:04 +00:00
slamm%netscape.com
f673b6646b Remove double inclusion of rules.mk and autoconf.mk. Gave a bunch of warnings. a=don.
git-svn-id: svn://10.0.0.236/trunk@43253 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 20:53:25 +00:00
pinkerton%netscape.com
cd7ba6e57c temp tweak to turn off toolbar d&d for M9 because it's too sensitive. bug 11397. appr don.
git-svn-id: svn://10.0.0.236/trunk@43252 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 20:52:47 +00:00
hyatt%netscape.com
060d781c2c Fix for bug #11418 and #11506 (which are actually the
same bug).  Approved by chofmann.


git-svn-id: svn://10.0.0.236/trunk@43251 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-12 20:45:47 +00:00