124458 Commits

Author SHA1 Message Date
brendan%mozilla.org
ce7e98de2c Follow the modeline, please.
git-svn-id: svn://10.0.0.236/trunk@147439 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 18:15:52 +00:00
sicking%bigfoot.com
75942a18ce Bug 220418: Don't get the initial template until the txExecutionState is fully initialized.
r=Pike sr=peterv


git-svn-id: svn://10.0.0.236/trunk@147434 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 17:54:01 +00:00
pschwartau%netscape.com
70df8e84a4 Initial add. Regression test for bug 220584.
git-svn-id: svn://10.0.0.236/trunk@147433 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 17:45:15 +00:00
neil%parkwaycc.co.uk
15959cb8c9 Bug 220215 use XPCNativeWrapper instead of directly calling Components.lookupMethod r=caillon sr=bz
git-svn-id: svn://10.0.0.236/trunk@147427 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 16:50:36 +00:00
mostafah%oeone.com
84d08e2ea0 Removing duplicate ( midnight and noon ) entry
git-svn-id: svn://10.0.0.236/trunk@147423 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 14:35:02 +00:00
bryner%brianryner.com
4995514c49 Updating my email address
git-svn-id: svn://10.0.0.236/trunk@147418 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 06:04:02 +00:00
bryner%brianryner.com
8af6bcdb92 updating my email address
git-svn-id: svn://10.0.0.236/trunk@147417 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 05:35:34 +00:00
bryner%brianryner.com
77c7eed3d0 Fix unnecessary rebuilds in embedding/browser/activex caused by mkdepend creating a bogus dependency on dist/include/string when #include <string> is used. This change makes mkdepend never match on a directory when searching the include path for a file. Bug 220595, r=dbaron.
git-svn-id: svn://10.0.0.236/trunk@147416 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 03:25:12 +00:00
bienvenu%nventure.com
18d3d25b12 make biff not fire when junk mail arrives, r/sr=mscott 189289 part of patch from emmet@cogs.sussex.ac.uk
git-svn-id: svn://10.0.0.236/trunk@147415 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 01:16:31 +00:00
bienvenu%nventure.com
0a57a94292 fix problem deleting phantom msgs, 209501, r/sr=mscott
git-svn-id: svn://10.0.0.236/trunk@147414 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-29 00:33:07 +00:00
dbaron%dbaron.org
1253348a57 Remove LL_TEXTSTARTSWITHNBSP, since it's a partial and broken solution to the problem, and it's in the wrong place. b=187899 r+sr=roc
git-svn-id: svn://10.0.0.236/trunk@147413 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 22:56:08 +00:00
igor%mir2.org
04685f84cb Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=220584 :
Script() result has no prototype and scope chains

Fix: initialize scope and prototype for Script instances in
NativeScript.jsConstructor

If Script is called as a constructor, it will get the proper parent and
prototype from the generic code to initialize newly constructed objects but if
it is called as a function, then it is the responsibility of the call
implementation to do the job.


git-svn-id: svn://10.0.0.236/trunk@147412 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 22:52:57 +00:00
locka%iol.ie
cc18751688 NO CODE CHANGES. Update DevStudio projects (used for editing convenience only) to reflect recent reorg of some files to a common dir.
git-svn-id: svn://10.0.0.236/trunk@147411 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 21:19:45 +00:00
locka%iol.ie
c09496a2c7 NO CODE CHANGES. Update all adamlock addresses to eircom.net.
git-svn-id: svn://10.0.0.236/trunk@147410 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 21:18:29 +00:00
locka%iol.ie
241a418373 Fix (long broken) editor mode to provide barebones functionality. Update all adamlock addresses to eircom.net. Fix some arcane comments referring to webshell / NGLayout. b=220092 r=blizzard@mozilla.org sr=bzbarsky@mit.edu
git-svn-id: svn://10.0.0.236/trunk@147409 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 21:17:24 +00:00
justdave%syndicomm.com
b5a1862b5a Bug 219086: use method="post" on the "My Votes" page to submit changes to votes
r=kiko, a=justdave


git-svn-id: svn://10.0.0.236/trunk@147408 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 20:42:33 +00:00
igor%mir2.org
eaaf1c0f55 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=220362 :
Local functions lose scope when called from outside (compiled with dynamic scopes, optlevel >= 0)

Fix: ignore dynamic scope for nested functions and functions declared within
the with statement.

The patch makes optimizer to behave in the same way as the interpreter does
with regard to dynamic scope: it ignores it for nested functions and functions
declared under with statements. Now parser checks for such functions and set
new flag itsIgnoreDynamicScope in FunctionNode. The flag then checked both by
interpreter and optimizer during byte code generation.

The patch also changes slightly interaction between changing dynamic scope flag
and interpreted Script instances. Currently the dynamic flag is read during
script execution but patch changes interpreter to behave exactly as the
optimizer does: the dynamic flag only affect script compilation, changes in its
value does not affect already compiled scripts.


git-svn-id: svn://10.0.0.236/trunk@147407 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 20:01:27 +00:00
igor%mir2.org
b0787480a4 Self-documenting example
git-svn-id: svn://10.0.0.236/trunk@147406 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 19:49:07 +00:00
ben%bengoodger.com
f3857a9845 d'oh!
git-svn-id: svn://10.0.0.236/trunk@147404 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 18:53:09 +00:00
igor%mir2.org
99abacac2c Added msg.adapter.zero.args
git-svn-id: svn://10.0.0.236/trunk@147403 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 18:14:16 +00:00
igor%mir2.org
39e79a055a JavaAdapter.createAdapterCode now takes the function name to function arity instead of Scriptable object. It allows to remove a hack from optimizer/Codegen where it created a temporary Scriptable just to populate it with FunctionNode as a source of arity values thus violating requirement on types of JS values.
The rest of JavaAdapter code is updated to use the ned form of the method as well.


git-svn-id: svn://10.0.0.236/trunk@147402 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 18:13:51 +00:00
igor%mir2.org
4efdb1d241 In ScriptRuntime.toInt32 check for Integer, not Byte when doing short-circuit optimization since Integer is always used to wrap int values.
git-svn-id: svn://10.0.0.236/trunk@147401 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 16:03:10 +00:00
lordpixel%mac.com
303f035215 Workaround for bug 211462 Crash turning on JA IME on Mac 10.1 [@ Kotoeri]
r=brade, sr=sfraser


git-svn-id: svn://10.0.0.236/trunk@147400 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 13:39:09 +00:00
jshin%mailaps.org
7a1a61eb6b bug 205387: exclude truly invisible characters from DrawString. The first in a series, fix for GFX:Win (r=smontagu, sr=rbs)
git-svn-id: svn://10.0.0.236/trunk@147397 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 10:12:42 +00:00
hpradhan%hotpop.com
a10501a530 Bug 217972 : fix warning
git-svn-id: svn://10.0.0.236/trunk@147396 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 08:54:51 +00:00
hpradhan%hotpop.com
178edea0eb Bug 170985 follow up : get rid of some unused code r=peterv sr=jst
git-svn-id: svn://10.0.0.236/trunk@147395 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 08:52:31 +00:00
edburns%acm.org
4917d7f3cb readd
git-svn-id: svn://10.0.0.236/trunk@147394 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 06:51:37 +00:00
edburns%acm.org
cfc2315e49 This is a checkpoint milestone for webclient 2.0. Webclient currently
doesn't run, but several unit tests for webclient do.

I'll be proceeding through the rest of the webclient interfaces,
building junit tests as I go, in the coming months.  I hope to flesh out
the basic framework, then publish build instructions, and hopefully I
can get some contributions from the community.

M util/classes/org/mozilla/util/Utilities.java

new method: getImplFromServices:

+     *
+     * <p>This method tries to load the resource
+     * <code>META-INF/services/&gt;interfaceClassName&gt;</code>, where
+     * <code>&gt;interfaceClassName&lt;</code> is the argument to this
+     * method.  If the resource is found, interpret it as a
+     * <code>Properties</code> file and read out its first line.
+     * Interpret the first line as the fully qualified class name of a
+     * class that implements <code></code>.  The named class must have a
+     * public no-arg constructor.</p>

M webclient/build-tests.xml

- junit testcases for Webclient APIs, developed using test-first.

M webclient/build.xml

- changes for new package name structure:

  packages org.mozilla.webclient.{wrapper_native, wrapper_non_native} have gone away.  Replaced with org.mozilla.webclient.impl.{wrapper_native, wrapper_non_native}

- changes to accomodate "Services" based approach for pluggable
  webclient implementation.

- don't bother re-naming the javah generated files, just let javah pick
  the names.

- pass debugging args from build.properties

- changed name of junit test target to "test".

M webclient/classes_spec/org/mozilla/webclient/BrowserControl.java

- got rid of BROWSER_TYPE.  No longer necessary due to the new
  pluggability mechanism.

M webclient/classes_spec/org/mozilla/webclient/BrowserControlFactory.java

- Leverage the org.mozilla.util.Utilities.getImplFromServices()
  mechanism to allow a vendor-pluggable webclient implementation of the
  new "WebclientFactory" interface, which is method for method
  compatible with BrowserControlFactory.  Make all BrowserControlFactory
  methods call through to methods on the vendor provided
  WebclientFactory implementation.

R webclient/classes_spec/org/mozilla/webclient/BrowserControlFactoryInterface.java
A webclient/classes_spec/org/mozilla/webclient/BrowserControlICE.java
R webclient/classes_spec/org/mozilla/webclient/BrowserControlImpl.java
R webclient/classes_spec/org/mozilla/webclient/BrowserType.java

- move all implementation specific classe to the impl package.

M webclient/classes_spec/org/mozilla/webclient/ImplObject.java

- ImplObject shouldn't depend on vendor private classes.

M webclient/classes_spec/org/mozilla/webclient/Preferences.java

- new method

+  public void unregisterPrefChangedCallback(PrefChangedCallback cb,
+                                            String prefName, Object closure);

M webclient/classes_spec/org/mozilla/webclient/ProfileManager.java

- properly specify this interface.

A webclient/classes_spec/org/mozilla/webclient/WebclientFactory.java

 * <p>This interface allows a pluggable webclient API implementation.
 * The static methods in {@link BrowserControlFactory} call through to
 * methods on this interface.  Please see {@link BrowserControlFactory}
 * for information on how to hook up your <code>WebclientFactory</code>
 * implementation to the <code>BrowserControlFactory</code></p>

R webclient/classes_spec/org/mozilla/webclient/WrapperFactory.java
R webclient/classes_spec/org/mozilla/webclient/impl/BrowserControlFactoryImpl.java

- moved these to the impl class

A webclient/classes_spec/org/mozilla/webclient/impl/BrowserControlImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/Service.java
A webclient/classes_spec/org/mozilla/webclient/impl/WebclientFactoryImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/WrapperFactory.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/BookmarkEntryImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/BookmarksImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/CurrentPageImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/EventRegistrationImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/HistoryImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/ISupportsPeer.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/ImplObjectNative.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/NativeEventThread.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/NavigationImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/PreferencesImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/ProfileManagerImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/RDFEnumeration.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/RDFTreeNode.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/SelectionImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WCEventListenerWrapper.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WCMouseListenerImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WindowControlImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/gtk/GtkBrowserControlCanvas.java
A webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/win32/Win32BrowserControlCanvas.java

- copied from old package naming scheme.

- lots and lots of cleanup.

R webclient/classes_spec/org/mozilla/webclient/wrapper_native/BookmarkEntryImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/BookmarksImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/CurrentPageImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/EventRegistrationImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/HistoryImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/ISupportsPeer.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/ImplObjectNative.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/NativeEventThread.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/NavigationImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/PreferencesImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/ProfileManagerImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/RDFEnumeration.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/RDFTreeNode.java
A webclient/classes_spec/org/mozilla/webclient/wrapper_native/README
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/SelectionImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/WCEventListenerWrapper.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/WCMouseListenerImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/WindowControlImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/WrapperFactoryImpl.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/gtk/GtkBrowserControlCanvas.java
R webclient/classes_spec/org/mozilla/webclient/wrapper_native/win32/Win32BrowserControlCanvas.java

- removed from old package naming scheme

M webclient/src_moz/BookmarksImpl.cpp

- remove dependency on RDFActionEvents by inlining all the code that
  formerly was in the events.

- package name change

- JNI include file name change

M webclient/src_moz/CurrentPageImpl.cpp
M webclient/src_moz/HistoryImpl.cpp
M webclient/src_moz/ISupportsPeer.cpp

- package name change

- JNI include file name change

M webclient/src_moz/Makefile.in

- get rid of PreferencesActionEvents.cpp and RDFActionEvents.cpp

- add ProfileManagerImpl.cpp

M webclient/src_moz/NativeEventThread.cpp

- this file is not done yet.  I've been pulling misplaced initialization
  stuff out of here and putting it into WrapperFactoryImpl.cpp.

- got rid of gComponentManager, since we can use do_CreateInstance
  instead.

- package name change

- JNI include file name change

M webclient/src_moz/NativeEventThreadActionEvents.h

- JNI include file name change

M webclient/src_moz/NavigationImpl.cpp

- package name change

- JNI include file name change

R webclient/src_moz/PreferencesActionEvents.cpp
R webclient/src_moz/PreferencesActionEvents.h

- don't need these anymore!  woohoo!

M webclient/src_moz/PreferencesImpl.cpp

- remove dependency on PreferencesActionEvents by inlining code into the
  methods that used to use the events.

A webclient/src_moz/ProfileManagerImpl.cpp

- new class, implementation of the ProfileManager interface.

M webclient/src_moz/PromptActionEvents.cpp

- change erroneous comment so my grep performed correctly.

R webclient/src_moz/RDFActionEvents.cpp
R webclient/src_moz/RDFActionEvents.h

- don't need these anymore!  woohoo!

M webclient/src_moz/RDFEnumeration.cpp
M webclient/src_moz/RDFTreeNode.cpp

- remove dependency on RDFActionEvents by inlining code into the
  methods that used to use the events.

M webclient/src_moz/WindowControlActionEvents.cpp

- deallocate shareInitiContext.

M webclient/src_moz/WindowControlImpl.cpp

- package name change

- JNI include file name change

- remove the "sleep so I can attach gdb" code.  Moved to
  WrapperFactoryImpl.cpp.

M webclient/src_moz/WrapperFactoryImpl.cpp

- lots of changes.  This is now where the app initialization and
  shutdown happens,

M webclient/src_moz/dom_util.cpp

- comment change

M webclient/src_moz/ns_globals.h

- get rid of inappropriate global usage.

M webclient/src_moz/ns_util.h

- new struct WebclientContext for singletons.

M webclient/src_moz/rdf_util.cpp

- new methods, rdf_startup and rdf_shutdown.

- replace calls to nsComponentManager::CreateInstance() with
  do_CreateInstance().

M webclient/src_moz/rdf_util.h

- new methods, rdf_startup and rdf_shutdown.

M webclient/src_moz/gtk/GtkBrowserControlCanvas.cpp

- package name change

- JNI include file name change

M webclient/src_moz/gtk/GtkBrowserControlCanvasStub.cpp

- package name change

- JNI include file name change

- this file isn't needed anymore, thankfully!  I'll remove it soon.

M webclient/src_moz/gtk/StubFunctions.h

- package name change

- JNI include file name change

- this file isn't needed anymore, thankfully!  I'll remove it soon.

M webclient/src_moz/motif/BrowserControlNativeShimStub.cpp
M webclient/src_moz/motif/MotifBrowserControlCanvas.cpp
M webclient/src_moz/motif/MotifBrowserControlCanvasStub.cpp
M webclient/src_moz/motif/NativeLoaderStub.cpp
M webclient/src_moz/win32/Win32BrowserControlCanvas.cpp

- package name change

- JNI include file name change

M webclient/src_share/jni_util.cpp
M webclient/src_share/jni_util.h

- util_InitializeShareInitContext() takes a JNIEnv *.

- new methods

+void util_DeleteGlobalRef(JNIEnv *env, jobject toDeleteRef);
+void util_DeleteLocalRef(JNIEnv *env, jobject toDeleteRef);
+void util_getSystemProperty(JNIEnv *env,
+                            const char *propName,
+                            char *propValue,
+                            jint propValueLen);


M webclient/src_share/jni_util_export.cpp
M webclient/src_share/jni_util_export.h

+JNIEXPORT jobjectArray util_GetJstringArrayFromJcharArray(JNIEnv *env,
+                                                          jint len,
+                                                          jchar **strings,
+                                                          jint *stringLengths)

A webclient/test/automated/src/classes/org/mozilla/webclient/BookmarksTest.java
R webclient/test/automated/src/classes/org/mozilla/webclient/BrowserControlFactoryTest.java
A webclient/test/automated/src/classes/org/mozilla/webclient/PreferencesTest.java
A webclient/test/automated/src/classes/org/mozilla/webclient/ProfileManagerTest.java
A webclient/test/automated/src/classes/org/mozilla/webclient/impl/WebclientFactoryImplTest.java
A webclient/test/automated/src/classes/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImplTest.java
A webclient/test/automated/src/classes/org/mozilla/webclient/impl/wrapper_native/gtk/TestGtkBrowserControlCanvas.java
R webclient/test/automated/src/classes/org/mozilla/webclient/wrapper_native/gtk/TestGtkBrowserControlCanvas.java
A webclient/test/automated/src/test/BrowserControlFactoryTest_correct

- junit tests!  TEST FIRST!


git-svn-id: svn://10.0.0.236/trunk@147393 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 06:29:22 +00:00
bzbarsky%mit.edu
6218fccfa7 Make imagemaps work again. Bug 220519, r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@147392 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 06:28:39 +00:00
stephend%netscape.com
a0d49a147a Trivial grammatical comment change (from 'is that when it recurs' to 'in that when it recurs'... r/sr=bz
git-svn-id: svn://10.0.0.236/trunk@147391 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 06:20:24 +00:00
bzbarsky%mit.edu
d3f59fd91c Fix crash in XUL sort service -- unsigned ints are never less than 0... Bug
220516, r+sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@147390 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 06:05:08 +00:00
jshin%mailaps.org
426a584ee4 bug 219060 : make freetype printing work for Xft build (r=louie.zhao, sr=bryner)
git-svn-id: svn://10.0.0.236/trunk@147389 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 05:59:39 +00:00
dbaron%dbaron.org
430fe54987 Spelling too. b=220464
git-svn-id: svn://10.0.0.236/trunk@147388 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 05:39:03 +00:00
dbaron%dbaron.org
bf3d007e09 Fix 80th column violations in code that I just reindented. b=220464
git-svn-id: svn://10.0.0.236/trunk@147387 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 05:35:25 +00:00
dbaron%dbaron.org
d62ef933ed Eliminate excess variables and their baroque (and broken, thanks to the previous checkin) reference counting. b=220464 r+sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@147386 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 05:30:09 +00:00
brendan%mozilla.org
da7fa465a7 Better version of last change, thanks to caillon for reminding me.
git-svn-id: svn://10.0.0.236/trunk@147384 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 04:55:50 +00:00
brendan%mozilla.org
4981e3ba49 Forgot to update calls to formerly-static SecurityCompareURI (r+sr=bz).
git-svn-id: svn://10.0.0.236/trunk@147383 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 04:44:33 +00:00
brendan%mozilla.org
53924f1a53 Expose nsIScriptSecurityManager::SecurityCompareURIs for use by nsGlobalWindow::SetNewDocument, to avoid spurious window.open same-origin violation errors (220421, r=caillon, sr=bzbarsky).
git-svn-id: svn://10.0.0.236/trunk@147382 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-28 04:22:01 +00:00
neil%parkwaycc.co.uk
f2aa380cdb Bug 219318 Display Search Tips on a failed Search in Help window p=rlk@trfenv.com r=me
git-svn-id: svn://10.0.0.236/trunk@147381 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 20:16:48 +00:00
bryner%brianryner.com
3d9ef65829 fixing firebird build bustage
git-svn-id: svn://10.0.0.236/trunk@147380 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 19:35:14 +00:00
neil%parkwaycc.co.uk
58c52da46c Bug 214693 Copyrights (and line endings) messed up in Help files p=rlk@trfenv.com r=me
git-svn-id: svn://10.0.0.236/trunk@147379 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 19:25:09 +00:00
bryner%brianryner.com
f290465ae7 fixing firebird/thunderbird build bustage (bug 26893)
git-svn-id: svn://10.0.0.236/trunk@147378 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 18:49:39 +00:00
bmlk%gmx.de
15441b0462 fieldset frames should report overflow area, bug 96506 r/sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@147364 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 14:53:17 +00:00
varga%utcru.sk
84058c65d6 Fix for bug 196575. Add comments to IDL interfaces
r/moa=varga, patch by Neil Deakin <enndeakin@sympatico.ca>


git-svn-id: svn://10.0.0.236/trunk@147362 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 14:42:26 +00:00
cbiesinger%web.de
8dd5a08649 Bug 220406 nsLocalFileWin::Launch should return more specific errors
convert the specific return values to nsresult-errorcodes.

r=dougt sr=darin


git-svn-id: svn://10.0.0.236/trunk@147361 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 14:37:16 +00:00
bmlk%gmx.de
205e630bce allow empty row groups in the border collapse access to the cellmap. bug 217769 r/sr=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@147360 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 12:00:56 +00:00
jst%mozilla.jstenback.com
5b77a28726 Fixing issue raised in bug 215981.
git-svn-id: svn://10.0.0.236/trunk@147359 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 06:24:54 +00:00
jst%mozilla.jstenback.com
ba7a1e91bd Fixing build bustage.
git-svn-id: svn://10.0.0.236/trunk@147358 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 06:16:09 +00:00
jst%mozilla.jstenback.com
8a4e4eacf2 Fixing build bustage.
git-svn-id: svn://10.0.0.236/trunk@147357 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 05:49:52 +00:00
jst%mozilla.jstenback.com
c6add4abe1 Silly MSVC 6.
git-svn-id: svn://10.0.0.236/trunk@147356 18797224-902f-48f8-a5cc-f745e15eee43
2003-09-27 05:09:14 +00:00