Commit Graph

492 Commits

Author SHA1 Message Date
edburns%acm.org
e88efacaa6 Workaround for multiple profiles bug.
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@88413 18797224-902f-48f8-a5cc-f745e15eee43
2001-03-02 23:15:40 +00:00
edburns%acm.org
d186cf20f9 comments
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@88410 18797224-902f-48f8-a5cc-f745e15eee43
2001-03-02 23:05:01 +00:00
edburns%acm.org
dc27d735e6 This checkin fixes both bugs 66430 and 48348.
author=ashuk, edburns
r=edburns

Files relating to 66430

M dom/jni/makefile.win
M dom/src/makefile.win
M webclient/classes_spec/Makefile.win
A webclient/src_moz/install_win32.js
M webclient/src_moz/Makefile.win

Files relating to 48348

M webclient/classes_spec/org/mozilla/webclient/CurrentPage.java
M webclient/classes_spec/org/mozilla/webclient/test/EMWindow.java
M webclient/classes_spec/org/mozilla/webclient/test/EmbeddedMozilla.java
M webclient/classes_spec/org/mozilla/webclient/wrapper_native/CurrentPageImpl.java
M webclient/src_moz/CurrentPageActionEvents.cpp
M webclient/src_moz/CurrentPageActionEvents.h
M webclient/src_moz/CurrentPageImpl.cpp

68430:

This fix enables the user to produce a .xpi file containing all the
necessary binary elements to run webclient.

48348

This fix provides a pure java implementation of View Source.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87685 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-22 21:43:06 +00:00
ashuk%eng.sun.com
45b3a63725 Bug=48348
author=ashuk
ra=edburns

This Fix comments the Native code for implementing GetSourceBytes. The
new implementation of these functions is in Java.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87175 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-16 03:07:29 +00:00
ashuk%eng.sun.com
14ee066c52 Bug=48348
author=ashuk
ra=edburns

Implements GetSource and GetSourceBytes in Java


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87174 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-16 03:05:22 +00:00
edburns%acm.org
69c14a16d3 Some methods for bookmarks were not present
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87159 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-16 00:47:14 +00:00
edburns%acm.org
fb87456485 NativeEventThread.cpp:
Install our own X error handler.  GDK's error handler
can exit in some cases, and this isn't the right behavior
for Java caused X errors.

WindowControlImpl.cpp:

Put in comments on how to debug on unix

runem.pl:

-classic doesn't work on Unix


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87150 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-15 23:56:09 +00:00
ashuk%eng.sun.com
19af21ef93 Bug=68729
author=ashuk
ra=edburns

This fix tries to remove any deadlock conditions that could exist
because of code in Synchronized java blocks calling other functions
in synchronized blocks that are synchronized on the same object.

Changes are in the Interfaces Navigation, History and WindowControl

In the JNI code ::util_PostSynchronousEvent calls were replaced by
::util_PostEvent calls.


_Ashu


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@87047 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-14 23:57:50 +00:00
edburns%acm.org
25061f6ced bug=68729
r=ashuk

This bug fix avoids some thread safety assertions by moving the bulk of
the activity into the action events.

The following files are in this iteration of this bugfix.

M CurrentPageActionEvents.cpp
M CurrentPageActionEvents.h
M CurrentPageImpl.cpp

CurrentPageActionEvents.cpp  CurrentPageActionEvents.h  CurrentPageImpl.cpp


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86999 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-14 18:27:16 +00:00
edburns%acm.org
fb9eb2800c bug=49797
r=ashuk

The following files are in the fix for this bug:

M CBrowserContainer.cpp
M CurrentPageImpl.cpp
M HistoryImpl.cpp
M NavigationImpl.cpp

Here is the reason for the bug:

User presses "Refresh" button.  This causes the following code to be executed:

public void refresh(long loadFlags)
{
    ParameterCheck.noLessThan(loadFlags, 0);
    myFactory.throwExceptionIfNotInitialized();
    Assert.assert(-1 != nativeWebShell);

    synchronized(myBrowserControl) {
        nativeRefresh(nativeWebShell, loadFlags);
    }
}

In the process of refresh, on another thread, the user's
eventDispatched() method is called, which calls history.canBack():

public boolean canBack()
{
    myFactory.throwExceptionIfNotInitialized();
    Assert.assert(-1 != nativeWebShell);
    boolean result = false;

    synchronized(myBrowserControl) {
        result = nativeCanBack(nativeWebShell);
    }
    return result;
}

This call blocks on trying to acquire the lock for myBrowserControl, and
the load can't proceed until canBack() returns.  DEADLOCK.

-------------

The fix is to use PostEvent instead of PostSynchronous event.  This
causes the call to nativeRefresh to return immediately.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86938 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-13 22:19:12 +00:00
edburns%acm.org
063fc9c66f Included NativeEventThreadActionEvents.cpp
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86643 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-09 00:58:25 +00:00
ashuk%eng.sun.com
f1536ae287 Bug=44327
author=ashuk
r=a=edburns

This Fix enables multiple windows in Webclient on Win32. The fix modifies
the following files:

M mozilla/java/webclient/classes_spec/org/mozilla/webclient/wrapper_native/NativeEventThread.java
M mozilla/java/webclient/classes_spec/org/mozilla/webclient/test/EmbeddedMozilla.java
M mozilla/java/webclient/src_moz/Makefile.win
M mozilla/java/webclient/src_moz/NativeEventThread.cpp
M mozilla/java/webclient/src_moz/NavigationActionEvents.cpp
M mozilla/java/webclient/src_moz/WindowControlActionEvents.cpp
M mozilla/java/webclient/src_moz/WindowControlImpl.cpp
M mozilla/java/webclient/src_moz/ns_util.cpp
M mozilla/java/webclient/src_moz/ns_util.h
? mozilla/java/webclient/src_moz/NativeEventThreadActionEvents.h
? mozilla/java/webclient/src_moz/NativeEventThreadActionEvents.cpp

Pls refer http://bugzilla.mozilla.org/show_bug.cgi?id=44327 for more
info on this Bug and this Fix


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86638 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-08 23:55:05 +00:00
edburns%acm.org
6278163343 In the zeal for converting to action events,
this GetSessionHistory call was missed.
bug=67872
r=ashuk
author=edburns


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86387 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-07 00:08:44 +00:00
edburns%acm.org
6f3edb2ec2 Removed erroneous trailing \.
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86264 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-06 00:40:37 +00:00
edburns%acm.org
1a0eda9d5f // PENDING(edburns): HACK workaround for bug 59530. This
// workaround forces the nsBookmarksService to leak so that it
        // never gets destructed, thus the timer never gets canceled and
        // thus the fact that the static nsCOMPtr instance has gone away
        // doesn't matter.

The following files are in this fix:

M src_moz/CBrowserContainer.cpp
M src_moz/CBrowserContainer.h
M src_moz/WindowControlActionEvents.cpp
M src_moz/rdf_util.cpp
M src_moz/wcIBrowserContainer.h
author=edburns
r=ashuk


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86242 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-05 19:04:05 +00:00
edburns%acm.org
cb23e73389 This fix is a necessary pre-condition to the fix for 64332. In addition, this fix
contains a workaround to this bug: disable hotspot and disable JIT.

This fix removes the JNIEnv * parameter from util_InitStringConstants().


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@86126 18797224-902f-48f8-a5cc-f745e15eee43
2001-02-02 23:57:24 +00:00
edburns%acm.org
5f0e435699 bug=64988
r=ashuk
a=edburns
author=edburns

Files in this fix:

NativeEventThread.java

This fix makes it so much less than 100% of the CPU is used
when webclient is in idle state.

It does this by inserting Thread.sleep(1) in the
NativeEventThread.run() method's main event loop.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84773 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-11 02:42:36 +00:00
rpallath%eng.sun.com
24415ca940 test.xml ==> ( changed to XHTML)
autorun.sh                ==>  (reflected test.xml file)
BWTestClass.lst.html.ORIG ==>  (removed namespaces related  test case entires)
BWTestClass.lst.xml.ORIG  ==>  (added Namespace related test case entries)


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84653 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-09 16:23:51 +00:00
rpallath%eng.sun.com
e0cf8ef4e9 Modified all XML namespaces related test cases, to refelct correct URI and qualified and local names
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84652 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-09 16:21:04 +00:00
edburns%acm.org
0e64ca3709 bug 64445
author edburns
r=ashuk
a=edburns

This checkin corrects an earlier omission of the proper policy of having
all maor actions take place using nsActionEvents.  This is necessary to
avoid thread safety assertions.

The following files are in this fix:

M classes_spec/org/mozilla/webclient/wrapper_native/PreferencesImpl.java
M src_moz/Makefile.in
M src_moz/Makefile.win
A src_moz/PreferencesActionEvents.cpp
A src_moz/PreferencesActionEvents.h
M src_moz/PreferencesImpl.cpp
M src_moz/motif/NativeLoaderStub.cpp


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84623 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-09 00:59:58 +00:00
(no author)
28e7132c6d This commit was manufactured by cvs2svn to create branch
'JAVADEV_RTM_20001102'.

git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84613 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-08 23:24:12 +00:00
edburns%acm.org
bf24f1b3d6 Test cases
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@84587 18797224-902f-48f8-a5cc-f745e15eee43
2001-01-08 20:51:57 +00:00
edburns%acm.org
05ddc0641c bug=62853
r=ashuk

This fix implements getPrefs() and adds a new method,

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

to preferences.

The following files are in this fix:

A classes_spec/org/mozilla/webclient/PrefChangedCallback.java
M classes_spec/org/mozilla/webclient/Preferences.java
M classes_spec/org/mozilla/webclient/test/EMWindow.java
M classes_spec/org/mozilla/webclient/wrapper_native/PreferencesImpl.java
M src_moz/CBrowserContainer.cpp
M src_moz/PreferencesImpl.cpp
M src_moz/ns_util.h
M src_moz/motif/NativeLoaderStub.cpp


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83664 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-14 22:47:43 +00:00
ashuk%eng.sun.com
51d3895531 author=ashuk
Bug=62436
changes in NativeLoaderStub.cpp for Prefs to work on Solaris


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83558 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-12 22:59:59 +00:00
edburns%acm.org
57633551c5 r=ashuk
a=edburns
bug=62436

Add the ability to set string, int, and bool prefs.  Needs more
functionality.

The following files are in this bug:

A classes_spec/org/mozilla/webclient/Preferences.java
A classes_spec/org/mozilla/webclient/wrapper_native/PreferencesImpl.java
A src_moz/PreferencesImpl.cpp
M classes_spec/org/mozilla/webclient/BrowserControlImpl.java
M classes_spec/org/mozilla/webclient/test/EMWindow.java
M classes_spec/org/mozilla/webclient/wrapper_native/WrapperFactoryImpl.java
M src_moz/Makefile.in
M src_moz/Makefile.win
M src_moz/WrapperFactoryImpl.cpp
M src_moz/motif/NativeLoaderStub.cpp
M src_share/Makefile.in
M src_share/Makefile.win


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83546 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-12 20:50:05 +00:00
edburns%acm.org
23de81565f Forgot to check these in for 62436.
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83517 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-12 02:31:35 +00:00
edburns%acm.org
179a3a4d78 Part 2
How to test this bug.

1. Remove your .mozilla directory, or equivalent

1.5 Set up the proxy preferences so you can get to bugzilla.mozilla.org.

2. Start mozilla and go to Edit-Preferences->Advanced->Cookies.

3. Remove all Cookies

4. Accept all cookies, and warn me before accepting cookes

5. Stop mozilla.

Start webclient and visit
<http://bugzilla.mozilla.org/enter_bug.cgi?product=Browser>, then enter
your bugzilla userid and password.  A Confirm dialog should come up.
Make sure that the dialog does the right thing, that is, if you accept
the cookie, exit webclient, start up mozilla, and use the cookie viewer
to see that the cookie is there.  Please note that you see the Enter a
bug page whether you accept the cookie or not.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83508 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-12 01:11:22 +00:00
edburns%acm.org
b0bb9b0ac7 This fix enables the adding of bookmarks and bookmark folders.
* Due to the vagaries of the mozilla RDF implementation, folders and
 * bookmark entries are handled differently.  For Folders, we don't
 * create a nativeRDFNode at the outset.  Rather, we just create the
 * properties table and stock it with the known keys, then wait for the
 * nativeRDFNode to be created en addBookmark.

 * The adding of bookmark folders is done through the RDF DoCommand
 * interface.  The DoCommand interface creates the nsIRDFResource on
 * your behalf.  We use an nsIRDFObserver to obtain the created resource
 * as the DoCommand executes.

The following files are in this fix.

A src_moz/wsRDFObserver.cpp
A src_moz/wsRDFObserver.h
M classes_spec/org/mozilla/webclient/BookmarkEntry.java
M classes_spec/org/mozilla/webclient/test/EMWindow.java
M classes_spec/org/mozilla/webclient/wrapper_native/BookmarkEntryImpl.java
M classes_spec/org/mozilla/webclient/wrapper_native/BookmarksImpl.java
M classes_spec/org/mozilla/webclient/wrapper_native/RDFTreeNode.java
M src_moz/Makefile.win
M src_moz/Makefile.in
M src_moz/RDFActionEvents.cpp
M src_moz/RDFActionEvents.h
M src_moz/RDFTreeNode.cpp
M src_moz/rdf_util.cpp
M src_moz/rdf_util.h
M src_moz/motif/NativeLoaderStub.cpp
M src_share/jni_util.cpp
M src_share/jni_util.h


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83504 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-12 00:00:15 +00:00
ashuk%eng.sun.com
514083cc5e author=ashuk
Bug=54129

ashuk@versailles[43]>mozcvs diff -u Makefile.in
Index: Makefile.in
===================================================================
RCS file: /cvsroot/mozilla/java/Makefile.in,v
retrieving revision 1.6.2.2
diff -u -r1.6.2.2 Makefile.in
--- Makefile.in 2000/11/28 19:38:24     1.6.2.2
+++ Makefile.in 2000/12/10 20:37:26
@@ -27,13 +27,14 @@

 DIRS=   util           \
        external        \
-       dom             \
-       webclient
+       dom

 ifeq ($(BUILD_WEBCLIENT_ONLY),)
 DIRS += xpcom \
         plugins
 endif
+
+DIRS += webclient

 include $(topsrcdir)/config/rules.mk


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83477 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-10 20:40:10 +00:00
edburns%acm.org
a014aefe38 This fix adds basic authentication capability to webclient.
public interface Prompt

 * The custom app must implement this interface in order to supply the
 * underlying browser with basic authentication behavior.  The custom
 * app must tell webclient about its Prompt implementation by calling
 * Navigation.setPrompt().  This must be done FOR EACH BrowserControl
 * instance!

public void setPrompt(Prompt yourPrompt);

 * Gives this Navigation instance the ability to call back the custom
 * app when a site with basic authentication is encountered.  The custom
 * app can choose to put up appropriate modal UI.

Please note that due to bug
http://bugzilla.mozilla.org/show_bug.cgi?id=61669 you must disable the
cache to have this work.  Put these lines in your prefs file:

user_pref("browser.cache.disk_cache_size", 0);
user_pref("browser.cache.enabled", false);

The following files are in this fix:

M classes_spec/org/mozilla/webclient/Navigation.java
M classes_spec/org/mozilla/webclient/test/EMWindow.java
A classes_spec/org/mozilla/webclient/test/PasswordDialog.java
M classes_spec/org/mozilla/webclient/wrapper_native/NavigationImpl.java
M src_moz/CBrowserContainer.cpp
M src_moz/CBrowserContainer.h
M src_moz/NavigationImpl.cpp
M src_moz/wcIBrowserContainer.h
M src_moz/motif/NativeLoaderStub.cpp
M src_share/jni_util.cpp
M src_share/jni_util.h
M src_share/jni_util_export.cpp
M src_share/jni_util_export.h
A classes_spec/org/mozilla/webclient/Prompt.java


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83172 18797224-902f-48f8-a5cc-f745e15eee43
2000-12-01 01:33:52 +00:00
idk%eng.sun.com
3901e08768 *Not part of tbox builds*
fix for 61442


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@83100 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-30 00:56:18 +00:00
edburns%acm.org
226fedca23 If the env var BUILD_WEBCLIENT_ONLY is defined, only webclient and supporting
modules are built.  Otherwise, all of Blackwood is built.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82975 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-28 19:38:24 +00:00
ashuk%eng.sun.com
d2f3803d84 author=ashuk
Bug=58971


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82953 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-28 02:01:47 +00:00
ashuk%eng.sun.com
cbfdf17b04 author=ashuk
Bug=58971


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82948 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-28 01:36:59 +00:00
ashuk%eng.sun.com
6c09a59e62 author=ashuk
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82947 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-28 01:35:55 +00:00
edburns%acm.org
6001c37dc8 bug=60016
r=idk
a=idk
This checkin makes it possible to compile blackwood on linux.  You must have
Lesstif installed in /usr/X11R6 for pluglets to successfully compile.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82927 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-27 23:18:05 +00:00
ashuk%eng.sun.com
a29f24e90a author=ashuk
removed NativeEventThreadActionEvent.cpp from Makefile.in
Feature not yet checked in.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82907 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-27 17:08:53 +00:00
margaret.chan%sun.com
8cdab069f8 *not part of tbox builds*
fixed typo.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82871 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-23 00:09:08 +00:00
idk%eng.sun.com
d63c44ca18 * not part of tbox build *
removed ^M from Makefile.in


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82858 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-22 18:17:28 +00:00
idk%eng.sun.com
27686eb422 *not part of tbox builds*
58971 .  Added clobber_all to pluglets makefiles


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82835 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-21 22:09:08 +00:00
ashuk%eng.sun.com
ce3f3336c3 author=ashuk
Bug=54129
r=idk

Integrating Blackconnect


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82829 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-21 17:44:04 +00:00
ashuk%eng.sun.com
803200a166 author=ashuk
Bug=58971
r=edburns


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82828 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-21 17:35:07 +00:00
edburns%acm.org
589e84b4c6 Didn't compile on win32. Needed jobject cast.
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82783 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-20 03:44:23 +00:00
idk%eng.sun.com
a15ca2cfc5 *not part of tbix build*
included mozilla/java/xpcom/java/xpidl to build


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82780 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-18 19:50:09 +00:00
idk%eng.sun.com
730d1ad82a Merged trunk to JAVADEV_RTM_20001102 (blackConnect)
git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82726 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-17 04:39:18 +00:00
ashuk%eng.sun.com
fabac9731e author=ashuk
Bug=59521
r=a=edburns


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82682 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-16 18:29:11 +00:00
edburns%acm.org
7efb8ae377 Purely cosmetic change. Move the LoadFromStream exercising
functionality to the menubar.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82556 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-11 19:43:22 +00:00
edburns%acm.org
0f963ee782 bug 59851
a=edburns
This change is mostly cosmetic.  It adds a history menu that exercises the History
API.

The non-cosmetic change is in wsGoToEvent().  This was commented out since
M15, now it works.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82555 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-11 19:32:31 +00:00
edburns%acm.org
d00a452f0d Cosmetic change. Use a blank label instead of a button below
the text field.


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82514 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-10 00:02:13 +00:00
edburns%acm.org
acc72ac9a6 bug 47464
a=edburns
r=ashuk

This fix removes gHistory, and makes it so History.getURLForIndex()
works, thanks to sva@sparc.spb.su (Vladimir Strigun).

M HistoryImpl.cpp
M NativeEventThread.cpp
M WindowControlActionEvents.cpp
M WindowControlImpl.cpp
M WrapperFactoryImpl.cpp
M ns_util.h


git-svn-id: svn://10.0.0.236/branches/JAVADEV_RTM_20001102@82466 18797224-902f-48f8-a5cc-f745e15eee43
2000-11-09 18:32:17 +00:00