58693 Commits

Author SHA1 Message Date
rogerl%netscape.com
d2674e90be Added ASSERT cases to FixNext child handling. 2000-04-20 23:00:37 +00:00
pinkerton%netscape.com
afa523d479 oops, forgot to weak link in the optimized target! 2000-04-20 23:00:07 +00:00
ftang%netscape.com
39ef48a6bf add nsLocalFileCommon.cpp 2000-04-20 23:00:00 +00:00
dbragg%netscape.com
19a96b0ebe Oops, forgot nsFileSpec.h 2000-04-20 22:59:30 +00:00
pinkerton%netscape.com
51b0d387c1 whoops, forgot to weaklink in the optimized target. 2000-04-20 22:59:29 +00:00
locka%iol.ie
cf4ebb316e Added declaration of NS_PREF_CID 2000-04-20 22:59:20 +00:00
beard%netscape.com
d40f4c7499 Simple dependencies list. Rebuilt with make depend target. 2000-04-20 22:58:23 +00:00
sfraser%netscape.com
831140ee06 Remove the gShellCounter printf cruft. 2000-04-20 22:57:40 +00:00
bienvenu%netscape.com
d8fd10dad7 turn back on imap search code now that it's part of the mac build 2000-04-20 22:54:17 +00:00
ftang%netscape.com
c1c131590f 1. small fix on nsLocalFileCommon.cpp to fix unix warrning
2. add unicode methods to nsIFile/nsILocalFile idl
3. add nsLocalFileCommon.cpp to the unix and window makefile
2000-04-20 22:53:29 +00:00
dbragg%netscape.com
28c8f393d4 Fully implemented the DirectoryService and fixed the Mac nsFileSpecToIFile 2000-04-20 22:49:18 +00:00
granrose%netscape.com
4f53903ddc changed Milestone from static M14 to dynamically generated value of whatever's between the last ; and ) in the user agent string. r=leaf. bug 36027. 2000-04-20 22:49:09 +00:00
akkana%netscape.com
acebbf28b7 36188: fix double-spaced quotations in mail, plus lots of code cleanup 2000-04-20 22:47:04 +00:00
akkana%netscape.com
c2c750f37e 6276: Add wrapping support for mail. 2000-04-20 22:45:54 +00:00
akkana%netscape.com
9c05e1cd7f Don't return an error code just because there was no nsXPLookAndFeel override (thanks to Pierre for noticing) 2000-04-20 22:43:25 +00:00
granrose%netscape.com
00c9507821 change default user agent string milestone from m14 to m16. 2000-04-20 22:42:23 +00:00
akkana%netscape.com
549ddb821d Add nsWrapUtils to build. 2000-04-20 22:41:02 +00:00
granrose%netscape.com
c9ad1ba5ae added -vf9 to gzip for packaging mozilla tarball. tell strip not to strip various text files (js/xul/html/etc). r=leaf 2000-04-20 22:40:39 +00:00
norris%netscape.com
07735d8e89 Fix build error. 2000-04-20 22:36:46 +00:00
pnunn%netscape.com
41ccf33623 bug#3013: turning on 8 bit mask generation. pnunn. tested nt, mac, linux. 2000-04-20 22:36:06 +00:00
pnunn%netscape.com
bc3e85db29 bug#3013; bug#16742; and maybe bug#28616: fixed scaling on 8 bit masks. pnunn. tested on nt, linux, mac 2000-04-20 22:34:05 +00:00
akkana%netscape.com
fc94fffa54 Wrapping code, useful for citers and perhaps other code 2000-04-20 22:32:56 +00:00
akkana%netscape.com
e3b5588b8f 19137: <u> wasn't in the list of inline tags. 2000-04-20 22:31:14 +00:00
Peter.VanderBeken%pandora.be
2d24390e38 More conversions from String to DOMString. Not part of build yet. a=leaf 2000-04-20 22:10:16 +00:00
dveditz%netscape.com
6418ee7baf keep check-in information from appearing inside little tbox iframe 2000-04-20 20:03:10 +00:00
norris%netscape.com
721391dfa7 Subject:
contextClassloader problem in ScriptRuntime.java
   Date:
        Tue, 11 Apr 2000 09:45:36 -0400
   From:
        "Howard Lin" <howard@softcom.com>
     To:
        "Norris Boyd" <norris@netscape.com>
    CC:
        "Andrew Wason" <aw@softcom.com>




Hi, Norris, we are trying to create a Java class in JavaScript. When security manager is on, everything works fine. But when security
manager is off, we got an error saying the "... is not defined". The problem is that in ScriptRuntime.java, when security is on,
getContextClassLoader is null due to SecurityException and Class.forName is used to find the class, which works fine. When security
is off, ContextClassLoaderMethod is invoked to find the class. Since we use a separate thread to load third party jar files,
ContextClassLoaderMethod will throw a ClassNotFound exception.

To illustrate this problem, I wrote a simple applet, evaluating a simple js file in its paint method, which is running on a separate thread.
When security is off, I got the following:

ReferenceError: "Global" is not defined.
        at org.mozilla.javascript.NativeGlobal.constructError(NativeGlobal.java:
494)
        at org.mozilla.javascript.ScriptRuntime.name(ScriptRuntime.java, Compile
d Code)
        at org.mozilla.javascript.Interpreter.interpret(Interpreter.java, Compil
ed Code)
        at org.mozilla.javascript.InterpretedScript.call(InterpretedScript.java:
67)
        at org.mozilla.javascript.InterpretedScript.exec(InterpretedScript.java:
54)
        at org.mozilla.javascript.Context.evaluateReader(Context.java:739)
        at test.evaluate(test.java:26)
        at test.paint(test.java:16)
        at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:117)
        at java.awt.Component.dispatchEventImpl(Component.java:2447)
        at java.awt.Container.dispatchEventImpl(Container.java:1035)
        at java.awt.Component.dispatchEvent(Component.java:2307)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:287)
        at java.awt.EventDispatchThread.pumpOneEvent(EventDispatchThread.java:10
1)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:92)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:83)

When security is on, it runs fine. Or if the code moved to init method, it works fine regardless of security. We are using JDK 1.2.2.

Howard
2000-04-20 19:53:16 +00:00
tor%cs.brown.edu
af87d81cdf Build bustage fix: add two casts (unsigned char* -> char* and the
reverse) for more pedantic compilers, such as SUNWspro4.2. a=leaf
2000-04-20 19:52:26 +00:00
slamm%netscape.com
e89b960ce0 Continue past cvsblame parse errors. 2000-04-20 19:05:56 +00:00
dveditz%netscape.com
3ad6a9bd64 resurrecting VC 5 build (and other pedantic compilers) 2000-04-20 18:52:06 +00:00
edburns%acm.org
2cc92f89bd bug 33099
r=shaver
a=edburns

Native code changes: This fix eradicates all
occurrences of the following symbols
 nsComponentManager nsServiceManeger
And replaces them with their nsI counterparts.
The following ns* classes still are used in
webclient, and no plans exist to replace them
with nsI counterparts: nsresult nsCOMPtr
nsCRT nsnull * nsServiceManager occurrences
were replaced with do_GetService(), using a
PROGID. * nsComponentManager occurrences were replaced with a call on the global class gComponentManager, declared in the new file ns_globals.h, and defined in WrapperFactoryImpl.cpp. ns_globals.h is included in jni_util.h. See the attachment to bug 33099 for ns_globals.h * Added deallocation code to WindowControlImpl.cpp nativeTerminate. I know it doesn't do much, but it's correct. Java code changes: * Added static method BrowserControlFactory.appTerminate(). This method simply calls the existing BrowserControlImpl.appTerminate(), which calls WrapperFactoryImpl.cpp nativeTerminate(). BrowserControlFactory.appTerminate() is called from EmbeddedMozilla's WindowListener, which gets fired when the user signals she wants the app to terminate.
2000-04-20 18:16:05 +00:00
terry%mozilla.org
f1f99dddc2 Was reporting the wrong version number. 2000-04-20 17:36:55 +00:00
jst%netscape.com
75c2e94a05 Backing out dcones last changes since they made linux tinderbox go orange, and the toolbar wasn't properly drawn with the changes. 2000-04-20 16:22:10 +00:00
brade%netscape.com
ee58896b25 changes submitted by Brian King (briank@clubi.ie); handle the case where an image hasn't been inserted but will be. 2000-04-20 14:12:33 +00:00
dcone%netscape.com
630efa09d1 Turned on the Fast Background Rendering. 2000-04-20 14:00:22 +00:00
brade%netscape.com
a857aa0d4c add a function to handle dragging all types of data in the content area (not used yet; not complete yet) 2000-04-20 14:00:15 +00:00
jst%netscape.com
65686de7fb Updating the DOM interface CSSStyleDeclaration to DOM Level 2. 2000-04-20 13:50:56 +00:00
brade%netscape.com
a906eff95b add nsJSCSSValue.cpp for jst 2000-04-20 13:48:39 +00:00
jst%netscape.com
8515630b3f Adding GetIID() to nsICSSDeclaration. 2000-04-20 13:00:08 +00:00
jst%netscape.com
5dd95df31c Fix build warnings. 2000-04-20 12:40:35 +00:00
jst%netscape.com
e09c50e601 Fixing bug #32376. Mozilla now populates a select list with new empty options if it's length is set to a bigger number than it already is, this is against the DOM but we need this to be compatible with older browsers. 2000-04-20 12:34:35 +00:00
jband%netscape.com
dc13704f3f Had the wrong clazz for the root! So it was better when the caching was broken. Now it works on MI objects with caching fixed. My bad copy/paste error from long ago. 2000-04-20 12:16:45 +00:00
jst%netscape.com
65013f77f6 Adding CSSValue interface, not part of the build yet. 2000-04-20 11:07:16 +00:00
jband%netscape.com
41e5c7514e backing out little fix from earlier today because it causes crashes in some MI cases. I'll investigate and do the right fix 2000-04-20 11:06:48 +00:00
kvisco%ziplink.net
e62f324a76 updated with latest info 2000-04-20 10:21:06 +00:00
kvisco%ziplink.net
7dc7e8b2e2 latest info 2000-04-20 10:16:44 +00:00
kvisco%ziplink.net
842c3e8384 Added a fix for relative URI with xsl:include (npride) 2000-04-20 10:14:05 +00:00
kvisco%ziplink.net
a2cfb62683 Added Nathan Pride's fix for document base when a stylesheet is specified on the command line 2000-04-20 10:13:22 +00:00
kvisco%ziplink.net
96cc7b4153 Added some changes from Marina (see changes.txt) 2000-04-20 10:12:06 +00:00
kvisco%ziplink.net
1cfa374ce4 changed a couple postfix increments to prefix, aesthetics really. 2000-04-20 10:11:28 +00:00
kvisco%ziplink.net
09ee36148b added Marina's changes (removed casts from XML_Char to DOM_CHAR) 2000-04-20 10:09:42 +00:00