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

82128 Коммитов

Автор SHA1 Сообщение Дата
darin%netscape.com d5a36788ef fixes mac bustage 2001-05-11 23:36:14 +00:00
edburns%acm.org c5b6985848 Changes to remove jpav and mozilla extension directories. 2001-05-11 23:31:37 +00:00
edburns%acm.org ba7c813ed8 Removing at Nikolay's request 2001-05-11 23:16:59 +00:00
sonmi%netscape.com eec0d6bf02 added Redhat 7.1 2001-05-11 23:15:28 +00:00
sonmi%netscape.com 78b6284542 fixed several bugs on output format (date and time now displayed
correctly, hyperlinks on incomplete builds were missing before,
wrong machine name on missing builds removed)
2001-05-11 23:12:52 +00:00
edburns%acm.org c38455e8e5 Removed at Nikolay's request. 2001-05-11 23:11:56 +00:00
sonmi%netscape.com af5da5056e export testlevel, so the scripts know when running backwardcompatibility
tests (need to run some tests differently, because of new options, or known
misbehavior)
2001-05-11 23:10:54 +00:00
sonmi%netscape.com 75609b3478 added symlinks for Redhat 7.2 Linux 2001-05-11 23:09:07 +00:00
sonmi%netscape.com 61008f3251 added a BC_RELEASE variable (=3.2) for backward compatibility test releases,
because when testing against 3.2 we need
to specifically disable  some tests, this will not be so when we are
testing against future releases (or in other places)
2001-05-11 23:08:16 +00:00
sonmi%netscape.com 4fcffdb12c yesterday's fix broke the backwardcompatibility tests because it used a new
option - put check for backwardcompatibility tests before
2001-05-11 23:05:32 +00:00
mkaply%us.ibm.com b2bfa97798 OS/2 TB breakage 2001-05-11 22:52:41 +00:00
edburns%acm.org 5299aae766 UnimplementedException 2001-05-11 22:38:16 +00:00
darin%netscape.com 6e856c46d1 fixes linux bustage r=evaughan 2001-05-11 22:30:02 +00:00
darin%netscape.com 5fd7c54be3 fixes mac bustage r=evaughan 2001-05-11 22:29:34 +00:00
darin%netscape.com d4982cec88 fixed typo in makefile .... arrrggghh!! 2001-05-11 21:45:26 +00:00
hyatt%netscape.com 9dfe6f6b65 Backing out fix for 79720 to fix smooketest blockers with selects and menus. r=pink, sr=brendan 2001-05-11 21:36:27 +00:00
darin%netscape.com 5cce6840f5 part of http branch landing... forgot to add this file. 2001-05-11 21:17:17 +00:00
evaughan%netscape.com 94198ed5d8 Landing accessibility
-r aarol, jgaunt

-sr brendan
2001-05-11 21:11:38 +00:00
darin%netscape.com b26d5adb54 Http branch landing: changes to other files (bug 76866) r=gagan,sr=dougt,a=chofmann 2001-05-11 21:05:08 +00:00
darin%netscape.com 199c44a737 Http branch landing: changes to netwerk/ (bug 76866) r=gagan,sr=dougt,a=chofmann 2001-05-11 21:04:09 +00:00
darin%netscape.com 467aa65cb7 Http branch landing: removing old files (bug 76866) r=gagan,sr=dougt,a=chofmann 2001-05-11 21:01:07 +00:00
idk%eng.sun.com c85f0bd518 *not part of the build*
follow up on 79289
added some makefiles for wintel build
2001-05-11 20:41:45 +00:00
pschwartau%netscape.com dc3fe1cb8e Updated JS_GetImplementationVersion() to date of latest JS release (67111). 2001-05-11 20:05:34 +00:00
ashuk%eng.sun.com ea2739771e Bug=78610
author=ashuk
ra=edburns

File modifed: java/webclient/src_moz/CBrowserContainer.cpp

This patch enables focus in a form field inside Webclient.

Index: CBrowserContainer.cpp
===================================================================
RCS file: /cvsroot/mozilla/java/webclient/src_moz/CBrowserContainer.cpp,v
retrieving revision 1.19
diff -u -r1.19 CBrowserContainer.cpp
--- CBrowserContainer.cpp       2001/05/10 20:47:06     1.19
+++ CBrowserContainer.cpp       2001/05/11 19:04:09
@@ -28,6 +28,7 @@
 #include "CBrowserContainer.h"
 #include "nsCWebBrowser.h"
 #include "nsIWebBrowser.h"
+#include "nsIWebBrowserFocus.h"
 #include "nsIRequest.h"
 #include "nsIDOMNamedNodeMap.h"
 #include "nsIDOMWindow.h"
@@ -619,6 +620,10 @@
 nsresult JNICALL
 CBrowserContainer::doEndDocumentLoad(nsIWebProgress *aWebProgress)
 {
+
+    nsCOMPtr<nsIWebBrowserFocus> focus(do_GetInterface(mInitContext->webBrowser));
+    focus->Activate();
+
     nsCOMPtr<nsIDOMWindow> domWin;

     if (nsnull != aWebProgress) {
2001-05-11 19:06:54 +00:00
mjudge%netscape.com 9cb20c1f7d reverting method for getting selection controller. this WAS to stop selection from snapping from outer document to inside the text field. unfortunately this caused a regression with copying. r= kin a= leaf 2001-05-11 18:51:43 +00:00
mkaply%us.ibm.com 6939408334 senna REQUIRES bustage - a lot of these components in this REQUIRES can probably be removed 2001-05-11 18:10:07 +00:00
justdave%syndicomm.com 66952b81d2 Fix for bug 38859: escape invalid email addresses for HTML before displaying to the user.
Patch by Myk Melez <myk@mozilla.org>
r= jake@acutex.net, justdave@syndicomm.com
2001-05-11 18:02:38 +00:00
nboyd%atg.com 8961afa95f Hi, Norris!
The attached patch allows subclasses of IdScriptable to override
hasIdValur/deleteIdValue and uses lazy initialization for idMapData
array to avoid its creation when an IdScriptable descendant does not
have any functions. The patch also touches NativeMath.java to replace in
its scopeInit method
        super.scopeInit(cx, scope, sealed);
by
        activateIdMap(cx, sealed);
This is the only reason NativeMath needs to call
IdScriptable.scopeInit() which is intended for creation
constructor/prototype pair.

Regards, Igor
2001-05-11 17:41:00 +00:00
mkaply%us.ibm.com 431fa5a72b senna requires bustage 2001-05-11 16:43:24 +00:00
kin%netscape.com ab0e977a52 Fix non-debug build bustage. 2001-05-11 15:19:28 +00:00
cls%seawood.org dbbfa197bf Fix |make clean| for Mac OSX
Bug #75895
2001-05-11 14:48:36 +00:00
ftang%netscape.com 6131e86653 fix bug 73251. r=ftang sr=blizzard
author = simon@softel.co.il
chagne bidi property table
2001-05-11 14:42:29 +00:00
ftang%netscape.com 81953be03a fix 76689. r=harishd sr=blizzard
fix non-ASCII xml element name display in the end tag at xml view source
2001-05-11 14:39:17 +00:00
attinasi%netscape.com b696e7f9a5 Fixes crash deleting legend frame. r=rods sr=waterson b=70648 2001-05-11 14:26:04 +00:00
valeski%netscape.com f9a681041f r=saari, sr=blizzard 64349. adding GetFocusedElement to nsWebBrowser.cpp. patch submitted by DebugWeyers@yahoo.com. 2001-05-11 14:19:39 +00:00
kin%netscape.com 0eba0b4b07 Fix for bug #79177: nsIEditorShell editor property should not be [noscript]
Removed the [noscript] notation on the editor attribute.

    editor/idl/nsIEditorShell.idl

r/sr=sfraser@netscape.com
2001-05-11 13:59:45 +00:00
kin%netscape.com 729a670d51 Fix for bug #75305: Doing Undo and Redo crashes browser
Added nsAutoUpdateViewBatch class, and use it in
nsPlaintexteditor::Undo()/Redo().

    editor/base/nsEditorUtils.h
    editor/base/nsPlaintextEditor.cpp

r=jfrancis@netscape.com   sr=sfraser@netscape.com
2001-05-11 13:59:11 +00:00
kin%netscape.com 91d049b213 Fix for bug #79157: Resurrect plain text editor
Moved Citer/Wrap files into core editor list. Ifdef'd out HTML
specific transactions with ifndef MOZILLA_PLAINTEXT_EDITOR_ONLY.

   editor/base/Makefile.in
   editor/base/TransactionFactory.cpp
   editor/base/makefile.win

r=akkana@netscape.com  sr=sfraser@netscape.com
2001-05-11 13:58:31 +00:00
ftang%netscape.com 2c3595cab7 fix bug 79276
r=bstell sr=blizzard
add additional charset naem for gb18030
should not impact the build
2001-05-11 13:54:56 +00:00
kmcclusk%netscape.com 2f0ac23db7 Fix nsIDrawingSurface::GetPixelFormat() on WIN32 by removing aPixFormat argument passed to CreateBitmapObject and use mPixFormat instead. bug 77895 patch from alex.fritze@crocodile-clips.com; r=dcone@netscape.com sr=attinasi@netscape.com 2001-05-11 13:54:42 +00:00
peterv%netscape.com 9c2c0d19e0 Partial fix for bug 72142 - only for windows and mac (Add XSLT component to installers). r=sgehani, sr=jst. 2001-05-11 13:50:37 +00:00
ftang%netscape.com 1640678728 fix bug 79680
r/sr = kin
add bidi additional string
should not impact the build
2001-05-11 13:49:54 +00:00
glazman%netscape.com 431b63f164 Advanced Dialog for CSS properties should rely on ElementCSSInlineStyle; b=80000, r=cmanske, sr=kin 2001-05-11 13:49:34 +00:00
ftang%netscape.com 0d019dae21 fid bug 79677. add bidi option to the dtd
r/sr = kin
should not impact the tree
2001-05-11 13:47:48 +00:00
ftang%netscape.com f1b9dddcba fix bug 79675 add new dtd files. r/sr=kin
not part of the build yet
should not impact the build
2001-05-11 13:46:03 +00:00
ftang%netscape.com f3d18aef4d fix bug 79387. r=nhotta sr=blizzard
regroup the charset name for new charsaets
properties file chane. Should not impact the build
2001-05-11 13:44:35 +00:00
ftang%netscape.com 96e90c7b30 add additional charset name
fix bug 79387
r=bstll sr=blizzard
properties file additional. Should not impact the build
2001-05-11 13:41:20 +00:00
ftang%netscape.com 7b3e061946 update cp936map.h
fix bug 79276.
r=bstell sr=blizzard
2001-05-11 13:38:01 +00:00
ftang%netscape.com d1b1d11d6b fix bug 79276. Additional uf and ut file for GB18030
not part of the build yet. Should not hurt build
r=bstell sr=blizzard
2001-05-11 13:37:05 +00:00
jfrancis%netscape.com af56a727cb fixing worms bustage 2001-05-11 13:32:32 +00:00