Bug=54129
Fix to runem_commercial.pl to use absolute Bindir path on Solaris
and also to point to blackwood.jar for CLASSPATH
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81755 18797224-902f-48f8-a5cc-f745e15eee43
r=a=edburns
Bug=52883
enables Webclient to work with PR3 on Solaris
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81624 18797224-902f-48f8-a5cc-f745e15eee43
Bug=54129
created a README.commercial for PR3
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81623 18797224-902f-48f8-a5cc-f745e15eee43
Bug Id: 57065
r=a=ed.burns@eng.sun.com
mozilla.csh: Environment setting (Unix)
mozilla.bat: Environment settings (Win32)
test.html : Add <EMBED> tag
autorun.sh : Startup script, changed test.html to testxml.html
Also changed Profile name
Changed DOCROOT to take in file://
Check for 'log' dir.
autorun.pl : Changed redirect.xml to testxml.html
Changed redirect.html to test.html
Check for 'log' dir.
BWTestClass.lst.html.ORIG: Test case list updated
BWTestClass.lst.xml.ORIG: Test case list updated
Makefile: Changed to reflect newsrc dir.
Makefile.solaris: Same as above
Makefile.win: Same as above.
README: updated
Added new file testxml.html
Added new dir 'newsrc'
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81338 18797224-902f-48f8-a5cc-f745e15eee43
Bug=54129
changed order of dirs in java/dom from
src jni classes
to
classes jni src
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81319 18797224-902f-48f8-a5cc-f745e15eee43
Bug=54129
On Shirley's request removing .so files from dist/bin and dist/lib
for commercial builds
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@81033 18797224-902f-48f8-a5cc-f745e15eee43
the dom classes into dist\classes before doing anything else.
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@80788 18797224-902f-48f8-a5cc-f745e15eee43
Bug=54129
Fix for blackwood.jar creation problem reported by Geetha
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@80750 18797224-902f-48f8-a5cc-f745e15eee43
Bug=54129
Removed spurious ^M characters from the Makefile.in appended by
XEmacs somehow. This didn't show up in vi or XEmacs, but did in
cvs diff
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@80276 18797224-902f-48f8-a5cc-f745e15eee43
linked in 2 more libs for working on Solaris with PR3 branch
_Ashu
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@80272 18797224-902f-48f8-a5cc-f745e15eee43
# PENDING(edburns): make it so it's possible to just build
# webclient and javadom
git-svn-id: svn://10.0.0.236/branches/JAVADEV_PR3_20001002@80249 18797224-902f-48f8-a5cc-f745e15eee43
Updated Pluglets to tip of the tree and latest jdk1.3 on solaris
Fixed 40615
git-svn-id: svn://10.0.0.236/trunk@79966 18797224-902f-48f8-a5cc-f745e15eee43
September 2000. It will run, but without bookmarks.
The changes consist of the following kinds of changes:
Changes to method signatures for methods implemented by webclient.
Changes to string functions.
Changes to account for the demise of PROGIDS in favor of ContractIDs
Modified files:
M classes_spec/org/mozilla/webclient/test/EMWindow.java
M src_moz/CBrowserContainer.cpp
M src_moz/CurrentPageImpl.cpp
M src_moz/Makefile.win
M src_moz/NativeEventThread.cpp
M src_moz/RDFEnumeration.cpp
M src_moz/RDFTreeNode.cpp
M src_moz/ns_util_export.cpp
M src_moz/rdf_util.cpp
git-svn-id: svn://10.0.0.236/trunk@79658 18797224-902f-48f8-a5cc-f745e15eee43
you can build JavaDOM with the tip as of 20 Sept 2000.
M dom/jni/javaDOMGlobals.h
changed nsString2 to nsString
M dom/jni/org_mozilla_dom_NodeImpl.cpp
nsIDOMNode::Supports is now nsIDOMNode::IsSupported().
git-svn-id: svn://10.0.0.236/trunk@79657 18797224-902f-48f8-a5cc-f745e15eee43
Fixed bug with [out] parametrs in java.
Improved component registration.
Added test for accessing ComponentManager from java
git-svn-id: svn://10.0.0.236/trunk@79594 18797224-902f-48f8-a5cc-f745e15eee43
* Jason Mawdsley <jason@macadamian.com>
* Louis-Philippe Gagnon <louisphilippe@macadamian.com>
It enables webclient to be built and run under JDK1.1.x. Note that JavaDOM
does not work under jdk1.1.x.
The fix consists of two elements:
On the Java side, replace all JDK1.2 specific calls with JDK1.1.x
equivalents. On the native side use pre-processer macro for
JNI_VERSION, like this:
#ifdef JNI_VERSION_1_2
#ifndef JNI_VERSION
#define JNI_VERSION JNI_VERSION_1_2
#endif
#else
#ifndef JNI_VERSION_1_1
#define JNI_VERSION_1_1 0x00010001
#endif
#ifndef JNI_VERSION
#define JNI_VERSION JNI_VERSION_1_1
#endif
#endif // END: JNI_VERSION_1_2
This fix has been tested on win32, solaris, and linux.
The following files are in this fix:
M webclient/classes_spec/org/mozilla/webclient/test/DOMTreeModel.java
M webclient/classes_spec/org/mozilla/webclient/test/DOMViewerFrame.java
M webclient/classes_spec/org/mozilla/webclient/test/EMWindow.java
M webclient/classes_spec/org/mozilla/webclient/wrapper_native/BookmarksImpl.java
M webclient/classes_spec/org/mozilla/webclient/wrapper_native/NativeEventThread.java
M webclient/src_moz/CBrowserContainer.cpp
M webclient/src_moz/nsActions.cpp
M webclient/src_share/jni_util.cpp
M webclient/src_share/jni_util.h
M webclient/src_share/jni_util_export.cpp
git-svn-id: svn://10.0.0.236/trunk@79490 18797224-902f-48f8-a5cc-f745e15eee43