Commit Graph

356 Commits

Author SHA1 Message Date
arik%netscape.com
e93a72a5c9 moved the spacebar handling code from js to c++ so that spacebar works for embedding apps. fixed bug 71760, r=brendan, sr=hyatt, a=blizzard. 2001-04-28 02:32:14 +00:00
brade%netscape.com
32304af1c0 remove selectAll (moved to the global file); r=akkana, sr=kin (bug#74643) 2001-04-26 19:41:12 +00:00
brade%netscape.com
074db000cf put selectAll back in the global file; r=akkana, sr=kin (bug#74643) 2001-04-26 19:40:14 +00:00
heikki%netscape.com
4095a51dde Bugs 65848 and 75031, support for application/xml and application/xhtml+xml mime types. This also fixes almost all of content to use NS_LITERAL_STRING instead of NS_ConvertASCIItoUCS2. r=harishd, valeski (mime types), sr=vidur. 2001-04-26 19:33:12 +00:00
hyatt%netscape.com
5ebeb25160 Fix for 76367. r=saari, sr=waterson, a=asa 2001-04-20 01:45:07 +00:00
hyatt%netscape.com
c210ea2241 Fix for 75189. r=jag, sr=attinasi 2001-04-11 03:55:19 +00:00
darin%netscape.com
00a7e27ee6 Necko API changes, bug 74221. r=valeski, sr=rpotts. 2001-04-10 06:01:08 +00:00
hyatt%netscape.com
c9707ad906 Fix for 75189. r=jag. 2001-04-09 01:40:19 +00:00
sfraser%netscape.com
ae21d8429d Fix for 74143, change nsIController to use DOMStrings. sr=hyatt, r=kin 2001-04-04 23:48:03 +00:00
waterson%netscape.com
d95d2ab2a0 Fix more gcc-2.7.2.3 bustage. Whee\! 2001-04-04 08:26:32 +00:00
waterson%netscape.com
8e6365a96f Bug 68213. Require users of nsFixedSizeAllocator to specify object size at Free() time to avoid 8 byte overhead per allocation. r=harishd, brendan, shaver, hyatt; sr=scc 2001-04-04 05:00:08 +00:00
scc%mozilla.org
70de2e4a46 landing string branch; see bug #73786 2001-04-02 19:40:52 +00:00
brade%netscape.com
65da8e0216 remove platform specific bindings; remove ids 2001-03-30 16:02:39 +00:00
brade%netscape.com
e081ebabc2 move certain keys to platform files; windows fixes 2001-03-30 16:00:31 +00:00
brade%netscape.com
84f74a651d remove ids 2001-03-30 15:59:44 +00:00
brade%netscape.com
9678ff1f44 os2 keybinding changes 2001-03-30 15:58:55 +00:00
brade%netscape.com
7c4201519a mac keybinding cleanup 2001-03-30 15:56:20 +00:00
disttsc%bart.nl
dacbb4faa9 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
hyatt%netscape.com
a60ae23d7c Checkin for 36665. r=pink, sr=waterson 2001-03-30 02:30:17 +00:00
hyatt%netscape.com
88ce9916be Fix for 73695. r=danm, sr=waterson 2001-03-29 01:30:03 +00:00
disttsc%bart.nl
f595ed19f3 Clean up REQUIRES lines. r=cls 2001-03-25 22:59:27 +00:00
hyatt%netscape.com
ec10da30bd Fix arrow key bustage. 2001-03-23 01:16:08 +00:00
hyatt%netscape.com
5d796d9f42 Fix cut/copy/paste, still trying to figure out arrow key bustage. r=akkana, sr=brendan 2001-03-23 00:59:29 +00:00
hyatt%netscape.com
6470447a3f Backing out preventDefault checkin, since it's already there. 2001-03-21 21:27:04 +00:00
akkana%netscape.com
f685b8c2ce 57078: Eliminate bogus xul bindings which were conflicting with XBL bindings.
Clean up XBL bindings and eliminate redundancies and errors.
       Fix a bug in which XBL bindings didn't check for event cancellation.
       r=brade sr=hyatt
2001-03-21 20:32:59 +00:00
hyatt%netscape.com
6fe6375fc9 Fix for 71740. r=jag, sr=shaver. 2001-03-21 08:15:12 +00:00
pavlov%netscape.com
913938c7f0 (not part of the build) changing nsHTMLAtoms::image to nsXULAtoms::image r=hyatt 2001-03-19 22:59:20 +00:00
hyatt%netscape.com
7126e1923b Fixes for my 3 0.8.1 bugs... all approved etc. etc. 2001-03-17 00:27:13 +00:00
joki%netscape.com
8e53706e23 Fix 49120 (Force event handler compilation when properties accessed from JS) and 53640 (Fix event capture to work starting from text nodes) r:peterv, sr:jst 2001-03-13 11:37:16 +00:00
hyatt%netscape.com
a540a46a90 Fix for 70704 and 71261. r=pierre, sr=attinasi 2001-03-13 02:34:02 +00:00
valeski%netscape.com
68017cb9e2 sr=rpotts, r=gagan. 70743. switching over to new extensible URI::SchemeIs() api 2001-03-13 02:02:05 +00:00
Peter.VanderBeken%pandora.be
47d931e2cd Renaming NS_PARSER_IID to NS_PARSER_CID, because it *is* a CID. r=jag, sr=jst. 2001-03-10 21:02:12 +00:00
hyatt%netscape.com
d741df52e2 Fix for 71262 and 71485, r=jag, srs=shaver on 71262 and hewitt on 71485 2001-03-10 01:43:09 +00:00
disttsc%bart.nl
de797f152e This could leave you with a dangling pointer:
nsCStringKey key(nsPromiseFlatCString(aRef).get());

because the nsPromiseFlatCString object will go out of scope,
so do this instead:

  nsPromiseFlatCString flat(aRef);
  nsCStringKey key(flat.get());

sr=scc
2001-03-08 13:13:42 +00:00
disttsc%bart.nl
8b43034cef Change implicit conversion from
|NS_ConvertUTF8toUCS2|
|NS_ConvertASCIItoUCS2|
|NS_ConvertUCS2toUTF8|
|ns[C]LiteralString|
|ns[C]PromiseFlatString|

to explicit |get()|.

Add |get()| to |nsString|, remove implicit conversion operators where possible, add NS_WARNING where not (yet!).

Bug=53057, r=alecf, sr=scc
2001-03-08 08:05:05 +00:00
hyatt%netscape.com
4409f43798 Fix for 62783. r=danm, sr=waterson 2001-03-07 01:46:13 +00:00
hyatt%netscape.com
76b276358c Fix for 68138. r=danm, sr=waterson 2001-03-05 22:29:52 +00:00
hyatt%netscape.com
7a319c9908 Disable attachto capability in XBL. Fix for bug#55265. r=danm, sr=alecf 2001-03-05 21:45:13 +00:00
hyatt%netscape.com
31849092e2 Fix for 67351. sr=waterson, r=danm 2001-03-03 22:01:01 +00:00
brade%netscape.com
3ff0c56304 add keybindings to input, textarea, editor for alt-backspace (undo); r=akkana; sr=kin 2001-03-02 14:23:04 +00:00
brade%netscape.com
5af1328ebd add missing keybindings (to input, textareas, editors) for ctrl-home/end (with and without shift); r=akkana; sr=kin 2001-03-02 14:11:24 +00:00
disttsc%bart.nl
277181c660 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
hewitt%netscape.com
212d80d3be 70541 - xbl content attribute setting, r=blake, sr=hyatt 2001-03-02 03:35:04 +00:00
dr%netscape.com
17ae0a3cc2 fix for 58477 (null check), r=jag, sr=hyatt 2001-03-01 01:35:12 +00:00
pavlov%netscape.com
0401eae41a added a parameter to a function that is part of the new imagelib.. passing nsnull to it in the image preloading code (ifdef'd out (not part of build)) sr=jst :-) 2001-02-24 23:56:07 +00:00
cls%seawood.org
3580b1cac0 Adding and updating necessary .cvsignore files. Bug #61550 2001-02-24 06:22:49 +00:00
hyatt%netscape.com
57c3ed6078 Changing the name of my #ifdef. 2001-02-23 01:56:46 +00:00
hyatt%netscape.com
a4f1f9d564 Adding image-loading code #ifdefed to XBL. Also eliminating a warning in WIndowDragHandler while I'm here. sr=alecf, r=danm 2001-02-22 23:47:30 +00:00
disttsc%bart.nl
a6f2f5861a 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
waterson%netscape.com
9fe59f23f0 Bug 43121. Move XUL content model code from RDF DLL to content DLL. r=jst,hyatt; sr=brendan. 2001-02-22 03:01:34 +00:00
dougt%netscape.com
128f95aa9b 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
hyatt%netscape.com
97573598b3 Fix a frame creation slowdown caused by XBL. 2-3% speedup. r=danm, sr=waterson 2001-02-21 03:18:45 +00:00
waterson%netscape.com
00a1e8d96e Bug 39054, redux. Hack around problem (?) with XBL child nodes: we'll just query for the list of real kids up front. Also, need to break 'AddSubtreeToDocument()' into pre- and post-order steps. r=hyatt, sr=brendan 2001-02-20 01:05:34 +00:00
Peter.VanderBeken%pandora.be
64757cba91 Corrected CAPS. r=jst@netscape.com, sr=waterson@netscape.com. 2001-02-19 14:29:10 +00:00
Peter.VanderBeken%pandora.be
399dfde5bd Removing to correct CAPS. r=jst@netscape.com, sr=waterson@netscape.com. 2001-02-19 14:27:36 +00:00
heikki%netscape.com
915749084a Checking in changes needed for splitting layout into two separate libraries. r=jst@netscape.com, sr=waterson@netscape.com. Not part of the default build yet. 2001-02-19 12:55:42 +00:00
akkana%netscape.com
20001beffe 25779: alternate win cut/copy/paste keys. r=brade, sr=sfraser 2001-02-15 21:53:13 +00:00
aaronl%chorus.net
ab4d0dcaee Pref accessibility.browsewithcaret implemented, bug=49508, r=sfraser, sr=waterson 2001-02-15 05:07:46 +00:00
akkana%netscape.com
f83153ce0d 18508: Allow for user-specified XBL bindings. sr=hyatt 2001-02-14 01:24:45 +00:00
waterson%netscape.com
5cc33330bf Backing out changes for 39054, which caused several template regressions. 2001-02-13 19:22:56 +00:00
waterson%netscape.com
ce93635aec Bug 39054. Make XUL templates work properly inside XBL. r=hyatt,alecf; sr=ben 2001-02-13 07:04:55 +00:00
disttsc%bart.nl
901482d14c From Small Gods, by Terry Pratchett:
The light was brilliant, crystalline, in a black sky filled with stars.
'Ah. There really is a desert. Does everyone get this?' said Brutha.
WHO KNOWS?
'And what is at the end of the desert?'
JUDGEMENT.
Brutha considered this.
'Which end?'
Death grinned and stepped aside.
What Brutha had thought was a rock in the sand was a hunched figure, sitting clutching its knees. It looked paralysed with fear.
He stared.
'Vorbis?' he said.
He looked at Death.
'But Vobis died a hundred years ago!'
YES. HE HAD TO WALK IT ALL ALONE. ALL ALONE WITH HIMSELF. IF HE DARED.
'He's been here fore a hundred years?'
POSSIBLY NOT. TIME IS DIFFERENT HERE. IT IS . . . MORE PERSONAL.
'Ah. You mean a hundred years can pass like a few seconds?'
A HUNDRED YEARS CAN PASS LIKE INFINITY.
The black-on-black eyes stared imploringly at Brutha, who reached out automatically, without thinking . . . and then hesitated.
HE WAS A MURDERER, said Death. AND A CREATOR OF MURDERERS. A TORTURER. WITHOUT PASSION. CRUEL. CALLOUS. COMPASSIONLESS.
'Yes. I know. He's Vorbis,' said Brutha. Vorbis changed people. Sometimes he changed them into dead people. But he always changed them. That was his triumph.
He sighed.
'But I'm me,' he said.
Vobis stood up, uncertainly, and followed Brutha across the desert.
Death watched them walk away.

The End.
2001-02-12 03:12:57 +00:00
dougt%netscape.com
1b9ca82439 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.

The full details of the change on written up in the netlib newsgroup.

r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-10 00:16:26 +00:00
hyatt%netscape.com
c6ab0beeea XBL insertion point fixes: 67990, 67574, and the dependent bug 55292 all get fixed. 2001-02-08 23:24:55 +00:00
hyatt%netscape.com
295c45ae29 Fix for 67435. sr=ben 2001-02-07 07:45:36 +00:00
hyatt%netscape.com
c87fc4c388 Fix linux bustage. 2001-02-02 02:05:57 +00:00
hyatt%netscape.com
7ebda9aa1c Checking in new files (r=ben, sr=brendan). 2001-02-02 01:14:07 +00:00
hyatt%netscape.com
45c08e6635 Fix for 55292, r=ben, sr=brendan 2001-02-02 00:54:47 +00:00
sfraser%netscape.com
66ee4f9b30 Fix the modifier for the cmd_cut binding, bug 67113. r=jag, akkana, sr=hyatt 2001-01-31 20:08:13 +00:00
gagan%netscape.com
79713bc4c2 Optimization for scheme comparison of URIs. See bug 66577 for details. r=darin, sr=brendan@mozilla.org 2001-01-31 01:33:03 +00:00
dbaron%fas.harvard.edu
6269a933a7 Add lwbrk to REQUIRES to fix MOZ_TRACK_MODULE_DEPS bustage. 2001-01-30 01:52:15 +00:00
blakeross%telocity.com
a3fe5e9a95 Fix 66135: use option, not command, for moving to and selecting previous/next word on mac. r=timeless sr=sfraser 2001-01-22 20:34:04 +00:00
anthonyd%netscape.com
101cc14924 fix for bug #59003 fix for keybindings
sr=kin@netscape.com
r=akkana@netscape.com
2001-01-09 23:22:56 +00:00
akkana%netscape.com
37986bc27c 56072: fix ctrl-left/right bindings on Unix. r=timeless,jag.anthonyd; a=kin 2001-01-04 00:01:34 +00:00
dbaron%fas.harvard.edu
caa9658024 Clean up easily fixed unnecessary includes and exports of implementation header files in layout. b=63766 r=jst@netscape.com sr=buster@netscape.com 2000-12-30 19:22:22 +00:00
hyatt%netscape.com
176da11932 fix 61471, a=ben 2000-12-20 07:25:19 +00:00
sfraser%netscape.com
e0b33dce98 More useful error message when an XML bindings file fails to load. r=waterson, sr=hyatt 2000-12-14 02:32:26 +00:00
vidur%netscape.com
0a4eedc07d Implementation of ReadSegments to support less copying in the parser. r=rpotts, sr=jst 2000-12-12 21:57:47 +00:00
hyatt%netscape.com
957686ba6a Speeding up retrieval of anonymous nodes by removing a redundant copy. Patched bug in
insertion point retrieval. a=ben@netscape.com
2000-12-10 09:23:43 +00:00
hyatt%netscape.com
b776af02af Added support for fieldset and legend. Not used by default.
a=ben@netscape.com
2000-12-10 09:23:11 +00:00
hyatt%netscape.com
a809cb4755 Big XBL landing. Fixes numerous XBL bugs. a=ben 2000-12-07 10:11:21 +00:00
hyatt%netscape.com
021da9b1d3 More fun with XBL. Not used in build. a=ben 2000-12-07 09:52:13 +00:00
hyatt%netscape.com
6147067db4 XBL forms experiments. Testing the water to see what XBL can do right now. Not used as part of build. a=ben 2000-12-06 22:50:53 +00:00
hyatt%netscape.com
330117b36e Making sure resource URIs are also globally cached by XBL (in addition to chrome URIs). a=ben 2000-12-02 10:34:52 +00:00
hyatt%netscape.com
f7b4d6af7e Mac and Win XBL buttons. Not part of build. 2000-12-02 10:29:29 +00:00
hyatt%netscape.com
0b3b0dff71 XBL forms stuff. Not part of build. 2000-12-02 10:27:05 +00:00
hyatt%netscape.com
89a3b213f3 adding new XBL form widget stylesheets. a=ben@netscape.com 2000-12-01 08:47:19 +00:00
blizzard%redhat.com
414428ea2f Fix bug #61519 crash in nsXBLPrototypeHandler::ExecuteHandler. Check for the existance of a focused window and if a QueryInterace returns null. r=pinkerton sr=hyatt 2000-11-30 23:48:09 +00:00
sfraser%netscape.com
417a2a01ce Fix crasher bug when typing in the URL bar, bug 61452. Need to null out a global when we delete it. r=pinkerton 2000-11-29 22:26:22 +00:00
pinkerton%netscape.com
4658f006a9 pulling out the dnd code (and my useless dumps) until we can differentiate between chrome and content. fixes regression. 2000-11-29 21:56:40 +00:00
mkaply%us.ibm.com
1c2becf99b htmlbindings changes for OS/2 2000-11-29 21:45:46 +00:00
dbaron%fas.harvard.edu
8670959926 Add newline to end of file to make HP compiler happy. r=timeless 2000-11-29 15:18:32 +00:00
pinkerton%netscape.com
72d1444212 Fix win32-only bustage. 2000-11-29 06:34:14 +00:00
pinkerton%netscape.com
a3d4c053ef Refactor some of the window key handler and add drag and drop handlers to the window root. Also move the html bindings (and platform bindings) to res, removing the chome dependency. a=hyatt. 2000-11-29 06:01:33 +00:00
pinkerton%netscape.com
bb2d3d39a7 more small build things. r=bryner 2000-11-29 05:55:02 +00:00
pinkerton%netscape.com
c6d663c0ea forgot the adjust depth. r=bryner 2000-11-29 05:36:18 +00:00
pinkerton%netscape.com
c4703eaa79 start building xbl/builtin (a=hyatt). 2000-11-29 05:12:40 +00:00
pinkerton%netscape.com
c531ce2be5 moving bindings into res to eliminate chrome dependency. 2000-11-29 02:54:24 +00:00
pinkerton%netscape.com
83e2a61ae6 breaking apart root key handler into base class 2000-11-29 02:51:26 +00:00
hyatt%netscape.com
d9f3df81f0 Patch for 55595. r=joki, a=brendan 2000-11-27 07:55:20 +00:00