svn%xmlterm.org
4e293587bf
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Fixed xmlterm bustage due to build and nsIContentHandler changes (bug 91815).
Also modified xmlterm to handle terminal: protocol rather than telnet:,
to avoid conflict with telnet implementations (such as protozilla).
2001-08-02 20:08:15 +00:00
jaggernaut%netscape.com
c14d9c09a1
Bug 86734: Remove NS_WITH_SERVICE. r=dbaron, rs=scc, a=asa
2001-07-25 07:54:28 +00:00
jaggernaut%netscape.com
4d73a251ab
Bug 73353: clean up the REQUIRES lines in Makefiles.
2001-07-23 22:36:12 +00:00
dbaron%fas.harvard.edu
bf82abfd11
Header include dependency cleanup. b=64023 r=jag rs=brendan
2001-07-16 02:40:48 +00:00
jaggernaut%netscape.com
03ab87e4a1
Bug 88413: Remove |GetUnicode()| from nsString (and replace it with |get()|). r=dbaron, rs=scc.
...
This removes all call-sites I can currently fix. Tomorrow I'll try to get someone to checkin my changes to security/ and I'll get some help with the Netscape side of things.
nsString::GetUnicode()'s final death-blow will be dealt soon. Please keep this in mind as you add new code :-)
2001-06-30 11:02:25 +00:00
cls%seawood.org
80f526179f
Replaced NO_SHARED_LIB & NO_STATIC_LIB with BUILD_SHARED_LIBS, BUILD_STATIC_LIBS, FORCE_STATIC_LIB & FORCE_SHARED_LIB. Added FORCE_USE_PIC.
...
Changes allow us to have a finer control over which parts of the tree are built with PIC. Part of the static build branch landing.
Bug #46775 r=mcafee a=leaf
2001-06-18 22:10:38 +00:00
dr%netscape.com
da269460c0
fix for 80067 (assignment vs. equality typos). r=mkaply, mjudge, sr=jst
2001-05-11 05:36:00 +00:00
cls%seawood.org
fcf4ac01ee
Pass -Bsymbolic to linker when building shared libs.
...
Bug #76710
2001-05-10 09:12:29 +00:00
dbaron%fas.harvard.edu
496c1799d3
Fix bustage from XPCDOM landing by including nsIScriptContext.h.
2001-05-08 21:40:24 +00:00
jst%netscape.com
621060c4fd
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
valeski%netscape.com
58072871cc
sr=rpotts. cookie/wallet r=morse, xmlTerm r=saravn@mozdev.org, mailnews r=mscott, activeX r=adamlock, everything else covered by the sr from rpotts. 15345. These changes remove nsIDocumentLoaderObserver.idl from the build, and all of it's implementations and registrations have been moved over to nsIWebProgressListener.idl and nsIWebProgress.idl respectively. there are two (78762, 78760) mailnews printing bugs that I overturned *before* landing this. I've run this code through the mail-news and browser smoketests among other tests outlined in the patch description attatched to the bug.
2001-05-04 20:15:38 +00:00
cls%seawood.org
25c6dc1c7e
Set EXPORT_LIBRARY=1 in all pertinent Makefile.ins. Allows us to build the final link list as we traverse the tree. Bug #46775
2001-04-28 19:48:12 +00:00
darin%netscape.com
f310bb045a
Fixes xmlterm bustage
2001-04-10 07:21:22 +00:00
jdunn%netscape.com
79d6975e08
adding changes to make xmlterm build on hpux11
...
r= svn@xmlterm.org
# 54160
2001-04-05 11:03:15 +00:00
disttsc%bart.nl
96f5f6cf31
Add "gfx2" and "imglib2" to REQUIRES lines in Makefile.in for MOZ_TRACK_MODULE_DEPS builds (e.g. senna)
2001-03-30 10:39:06 +00:00
disttsc%bart.nl
6e48266508
Clean up REQUIRES lines. r=cls
2001-03-25 22:59:27 +00:00
disttsc%bart.nl
0e4902e5c9
Fix build bustage in XMLTerm extension. We were depending on an indirect inclusion of nsReadableUtils.h, which apparantly has gone, so explicitly including it now, like we should have. r=mcafee.
2001-03-08 05:53:07 +00:00
disttsc%bart.nl
043186b34e
Preparation of removing nsCString::GetBuffer. Landing everything but the actual commenting out of nsCString::GetBuffer. bug=64016, r=timeless, sr=scc
2001-03-02 09:26:57 +00:00
blakeross%telocity.com
686e5a8010
UIEvent button property is incorrect according to the DOM2 spec. Changing values to 0, 1, 2 (left, middle, right mouse buttons respectively) from 1, 2, 3. |event.which| continues to use the old values for backwards compatibility. This affects future xbl, js, and c++ event button checks so please see the newsgroups for more info (60703). r=timeless sr=jst
2001-03-02 03:07:53 +00:00
disttsc%bart.nl
744785129a
Mass REQUIRES update to synch up with string lib and xul changes in an attempt to fix senna bustage. r=jst, sr=cls
2001-02-22 09:35:51 +00:00
dougt%netscape.com
eab041f43f
Relanding Necko Changes.
...
Revising nsIChannel to allow for overlapped i/o. This consists of three parts:
1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.
This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols). The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.
r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-21 20:38:08 +00:00
disttsc%bart.nl
76fbedadc5
Back out dougt's channel changes
2001-02-12 03:14:23 +00:00
dbaron%fas.harvard.edu
28bc6579ce
Updating to new necko interfaces to fix build bustage.
2001-02-10 03:02:13 +00:00
jst%netscape.com
6af210070c
Removing the last (unnecessary) call to nsIHTMLContent::ToHTMLString that I missed in my first checkin. r=jag
2000-12-23 13:44:22 +00:00
svn%xmlterm.org
1adb5acf8b
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Minor changes to get xmlterm to load with MathML/SVG enabled
(but xmlterm still fails to flush reflows)
2000-11-27 22:15:50 +00:00
svn%xmlterm.org
db027ccb36
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Code cleanup: disabled diagnostic output.
2000-11-27 21:38:14 +00:00
cls%seawood.org
8bd122b3d5
Resurrect REQUIRES so that we have some sort of means to track intermodule dependencies. Bug #59454 r=blizzard@mozilla.org
2000-11-20 07:16:06 +00:00
disttsc%bart.nl
97a1cb2070
Hrm... One weird hidden dependancy fixed.
2000-11-09 23:12:07 +00:00
svn%xmlterm.org
14cc97b073
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Changed non-owning references in mozXMLTerminal to weak references to avoid
crash in mozXMLTerminal::Finalize when exiting xmlterm.
2000-11-08 22:20:18 +00:00
svn%xmlterm.org
91f816e482
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Fixed error/warning message output to eliminate beeping problem.
2000-11-08 22:11:00 +00:00
warren%netscape.com
4189314fdb
Bug 47207. Backing out logging/PRINTF changes until we can fix stopwatch.h, introduce double parens, etc.
2000-10-28 22:17:53 +00:00
warren%netscape.com
f8d11fc3fd
Fixing printf bustage
2000-10-28 05:36:44 +00:00
svn%xmlterm.org
ff9a598383
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Some code cleanup for Finalize methods.
2000-10-10 04:51:11 +00:00
svn%xmlterm.org
3e579f3b56
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Fix for XMLterm user level/icons mode selection (workaround for bug 53448).
2000-09-25 14:57:27 +00:00
svn%xmlterm.org
d593167ca2
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Fix to handle click events in inserted HTML fragments properly.
2000-09-24 14:13:21 +00:00
cls%seawood.org
3153cb138c
Added include so that LOAD_FLAGS_NONE is actually found. Now, maybe the ports will go green...err, orange again.
2000-09-20 19:26:44 +00:00
mkaply%us.ibm.com
cd75bd06bd
Tinderbox bustage - Ports SUNOS, Ports LinuxPPC
...
locka missed a LoadURI in xmlterm
a=leaf
2000-09-20 16:22:06 +00:00
svn%xmlterm.org
58caeb6d6f
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
Fixed missing caret problem. Updated jar.mn for locale stuff.
2000-09-19 23:01:42 +00:00
warren%netscape.com
5fa0c45160
Fixed comment
2000-09-18 00:28:41 +00:00
mjudge%netscape.com
a2fa9edcb5
small but pervasive change to make nsIDOMSelection an xpidl interface. also broke it into 2 interfaces, nsISelection and nsISelectionPrivate. moved nsIDOMSelectionListener also to xpidl. these new idl files live in layout/base/public. r=sfraser, r=anthonyd bug 48575
2000-09-14 11:45:01 +00:00
rayw%netscape.com
6cc70ebd6c
Bug 37275, Changing value of all progids, and changing everywhere a progid
...
is mentioned to mention a contractid, including in identifiers.
r=warren
2000-09-13 23:57:52 +00:00
scc%mozilla.org
1ff3cc8a63
fixing code that relied on implicit string construction
2000-09-02 21:26:17 +00:00
cls%seawood.org
bc8730384d
Need to explicitly cast pointer to public DOM window interface
2000-09-01 07:41:46 +00:00
vidur%netscape.com
4a41eee18d
Fix for bug 46861. nsIDOMWindow is now split into two interfaces: a public interface (still called nsIDOMWindow) for embedders and an internal interface (nsIDOMWindowInternal) for internal use. The union of the two interfaces is still visible from JavaScript. r=jst@netscape.com
2000-09-01 01:54:35 +00:00
dbaron%fas.harvard.edu
22b79598d6
Get xmlterm building again (not part of default build).
2000-08-22 13:54:09 +00:00
jband%netscape.com
d10f6f48a9
fix bustage after nsIBaseStream removal
2000-08-22 09:21:32 +00:00
svn%xmlterm.org
4f03ca2ab5
--NOT PART OF DEFAULT BUILD--
...
XMLterm changes only.
"make xpi" in xmlterm/scripts directory now creates an XPI file for XMLterm.
Removed last vestiges of WebShell!
Deleted outdated GeckoTerm files.
2000-07-17 04:11:24 +00:00
cls%seawood.org
e1e6c5760f
Removed obsolete REQUIRES variable from every Makefile.in/makefile.win
2000-06-30 08:08:04 +00:00
warren%netscape.com
958ed96edd
Renaming nsIAllocator to nsIMemory (and nsAllocator to nsMemory). API cleanup/freeze. Bug #18433
2000-06-03 09:46:12 +00:00
cls%seawood.org
dca353df6f
According to mjudge's caret api checkin comments, I think this is the proper fix for the xmlterm bustage. a=leaf
2000-06-01 06:58:16 +00:00