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

36968 Коммитов

Автор SHA1 Сообщение Дата
mark.lin%eng.sun.com 30350191d7 Added solaris makefile. 1999-08-12 18:56:09 +00:00
hyatt%netscape.com 600a5249f7 Not a compiled checkin. Tweaking a style rule in xul.css to make the progress
meter blend in with the chrome (rather than being that ugly grey color).
Harmless and safe.
1999-08-12 18:37:21 +00:00
radha%netscape.com c088a8fa72 Fix bustage on unix 1999-08-12 17:58:28 +00:00
radha%netscape.com 945aef5947 Fix for bug 11657. Pass load type as LOAD_NORMAL when a page is reloaded.
For everything else, pass LOAD_HISTORY as reload type.
review=nisheeth, approved=chofmann
1999-08-12 17:25:55 +00:00
radha%netscape.com b339c3790d Fix for bug 8151. check whether url is a valid value before deciding that
something is already in the load and return. Code review=nisheeth
approved=chofmann
1999-08-12 17:24:11 +00:00
norris%netscape.com abc0613496 Fix the following problem:
Subject:
        ImporterTopLevel problem
   Date:
        Fri, 6 Aug 1999 15:42:50 -0400
   From:
        "\"Howard\" Xuhua Lin" <howard@softcom.com>
     To:
        "Norris Boyd" <norris@netscape.com>
    CC:
        "Andrew Wason" <aw@softcom.com>




Hi, The following script will cause an EvaluatorException: Ambiguous import: [JavaPackage java.awt.JButton] and [JavaPackage
java.awt.Packages.javax.swing.JButton] in the js shell:

js>importPackage(java.awt);
js>importPackage(Packages.javax.swing);
js>new JButton();.

The current JS shell will not print this exception message, even though the comment says "// Already printed message, so just fall
through". I add System.err.println(ee.getMessage()); for this exception.

The problem is that in NativeJavaPackage.get(String, Scriptable) method, if a ClassNotFoundException is caught, a
NativeJavaPackage object is created and passed back to ImporterTopLevel.get Method. So in ImporterTopLevel.get method, object v
is always not NOT_FOUND and the ambiguous exception will be thrown. Object v is supposed to be a Class object but it actually is
a Package object.

The fix can be either (1) in NativeJavaPackage.get(String, Scriptable) method, if a ClassNotFoundException is caught, return a
NOT_FOUND object (you may still create a Package object) or (2) in ImporterTopLevel.get method, make sure the returned object
from NativeJavaPackage.get method is of NativeJavaClass type.

Howard
1999-08-12 16:59:29 +00:00
bienvenu%netscape.com 81fb551a6d address collecter, not part of build 1999-08-12 14:37:26 +00:00
gagan%netscape.com ffe640aa32 Added the Param field for a URL. Fixes the bugs being seen by semicolons in URL. 1999-08-12 10:01:33 +00:00
gagan%netscape.com 67455042ca Fixed bunch of M9 bugs for Necko. 1999-08-12 09:59:24 +00:00
waterson%netscape.com 8b2cc3fbdc Bug 11667. Fix unsigned/signed mismatch. 1999-08-12 08:49:44 +00:00
waterson%netscape.com 792d49e4a1 Bug 11484. Be defensive if a null pointer is passed as the doc title in SetPageTitle(). 1999-08-12 08:46:35 +00:00
waterson%netscape.com 30bcdfef8e Bug 11539. Display 'title' as NC:Description instead of NC:Source. 1999-08-12 08:44:02 +00:00
waterson%netscape.com 4d1f7d0216 Bug 11539. Only display description field until column pushers & resizing work. 1999-08-12 08:43:27 +00:00
rjc%netscape.com 1625c2b74d Fix bug # 11626: get context menus in the bookmarks window working again. Approval: chofmann. Review: Hyatt 1999-08-12 08:30:02 +00:00
briano%netscape.com 9ede2b875c Automated update 1999-08-12 08:10:50 +00:00
briano%netscape.com 98501e1859 Finally found a 'fix' for the OSF/1 ld's problem with multiply defined
symbols when building a .so.  It creates the .so successfully, but returns
a non-zero exit status, so the build fails.  This change ignores the return
status.  This is OSF/1 (DU) specific.
1999-08-12 08:09:37 +00:00
sfraser%netscape.com 9e65931ac2 One final try to get the header output paths right. 1999-08-12 06:07:12 +00:00
beard%netscape.com 3882d9c9c2 fixed access paths to point to the one, true, dist.. 1999-08-12 04:29:35 +00:00
beard%netscape.com b88aff2a52 hoo boy, fixing breakage, adding new build rules, rah! 1999-08-12 03:57:56 +00:00
beard%netscape.com f89ed0dc3e First Checked In. 1999-08-12 03:57:06 +00:00
beard%netscape.com 540c0198b5 to fix build breakage, removed nsIJVMManager.h 1999-08-12 03:33:16 +00:00
talisman%anamorphic.com 9e9d6f98a9 Updates for JavaMail 1.1.x. 1999-08-12 03:28:00 +00:00
bienvenu%netscape.com 3b12f5f7fb fix build bustage 1999-08-12 03:10:30 +00:00
shawnp%earthling.net 7576c0bb6c Additional files needed to get viewer working with qt port. Only basic
functionality is present - enough to get it working.
1999-08-12 02:56:33 +00:00
talisman%anamorphic.com e47833d629 Fixed display bustage. 1999-08-12 02:43:29 +00:00
shawnp%earthling.net 3ec4a66404 Initial version of qt timer files. Did just enough work to get it to work. 1999-08-12 02:33:42 +00:00
shawnp%earthling.net 194efaf42c Initial version of qt widget files. I've put quite a lot of work into most
of the classes, but there are still some major gaping holes in
functionality.
1999-08-12 02:30:02 +00:00
briano%netscape.com ee06fac901 Unix native compilers don't like it when files don't end with a newline. 1999-08-12 01:58:19 +00:00
edburns%acm.org 1706f2c458 This fix is for http://bugzilla.mozilla.org/show_bug.cgi?id=5429.
This fix enables the Tasks->Java Console menu item to show the Java
Console provided by the JRE plugin if it is installed.

It also exposes nsIJVMManager as a full XPIDL citizen, with the progid
component://netscape/oji/jvm-mgr.  see modules/oji/public/nsIJVMManager.idl
for the methods that can be called.

Thanks to Trevor, John Bandauer, Brendan Eich and Robert Yang.
1999-08-12 01:56:18 +00:00
briano%netscape.com 20cb56f470 Fixed the missing newline bug that was upsetting HP. 1999-08-12 01:53:17 +00:00
shawnp%earthling.net 1379bc6603 Initial checkin of Qt gfx files. Still pretty raw in a lot of places. 1999-08-12 01:51:22 +00:00
waterson%netscape.com 7e90bacdd2 Bug 11575. Null check after pulling URI out of a resource. a=chofmann 1999-08-12 01:16:13 +00:00
valeski%netscape.com 05650f0971 added pipe2 stuff back in after patrick got the pipe2 stuff linking in w/ mac 1999-08-12 01:01:55 +00:00
rhp%netscape.com 449e5387a4 Fix for attachment display - approved by: chofmann@netscape.com 1999-08-12 00:50:59 +00:00
beard%netscape.com 0ceb9f4881 added nsPipe2.cpp, nsSegmentedBuffer.cpp. 1999-08-12 00:12:37 +00:00
beard%netscape.com 0d760e6c86 added NS_NewPipe* exports for nsPipe.cpp & nsPipe2.cpp 1999-08-12 00:11:54 +00:00
slamm%netscape.com 084d42a8cc Fix chrome urls as last part of fix for bug #10341. a=chofmann. Does not affect the build. 1999-08-12 00:10:32 +00:00
valeski%netscape.com 3da7cb9512 removed nsPipe2 api usage 1999-08-11 23:58:35 +00:00
danm%netscape.com 4b3daedbe5 fix WeakReference exporting for Windows. a:chofmann r:scc. 1999-08-11 23:48:08 +00:00
cyeh%netscape.com 1af9ed60fe adding manifest-win file in preparation for installers. not used or built
anywhere. reviewed cyeh, approved cyeh.
1999-08-11 23:34:26 +00:00
nisheeth%netscape.com 3e3e15a91c Fix for bug 11483. Scripts were not getting loaded on XML pages. 1999-08-11 23:24:59 +00:00
slamm%netscape.com 23bba2ad67 Add some gifs back that were not moved during the great DTD reshuffle. now #11679 was #10341. 1999-08-11 22:51:44 +00:00
slamm%netscape.com cdbcf64f0d Move bookmarks resources into their own directory (bug #10341) and use chrome urls to reference them. a=chofmann 1999-08-11 22:27:57 +00:00
valeski%netscape.com 55b7938dd5 added files: mozilla/netwerk/protocol/ftp/public/nsIFTPContext.idl 1999-08-11 22:27:12 +00:00
valeski%netscape.com facd45d5f8 adding next rev of ftp protocol 1999-08-11 22:26:32 +00:00
briano%netscape.com fddefb0943 Fixed the typos in 2 filenames. Hint: Upper and lower case matter on Unix.... 1999-08-11 22:06:10 +00:00
slamm%netscape.com d59ca48dba Move bookmarks resources into their own directory (bug #10341). a=chofmann 1999-08-11 22:02:49 +00:00
slamm%netscape.com 70c9201782 Replace 'resource:' urls with 'chrome:' urls (bug #10341). a=chofmann 1999-08-11 22:02:28 +00:00
slamm%netscape.com 0b3f90b334 Use chrome url for sitemap.gif (bug #11640). a=choffman 1999-08-11 22:01:10 +00:00
briano%netscape.com 9f5681407d Removed the references to the 6 files that no longer exist. 1999-08-11 21:59:48 +00:00