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

44115 Коммитов

Автор SHA1 Сообщение Дата
tbogard%aol.net 268c8d73c5 Fixed a couple of typos. 1999-10-15 07:52:50 +00:00
varada%netscape.com 5eb621aa56 inform function has been changed to take in two parameters to show the filename as well as the directory with absolute path 1999-10-15 07:45:20 +00:00
varada%netscape.com b047e40e55 changes from relative path to absolute path in interpret.cpp and validation of empty entry in ncidialog 1999-10-15 07:43:57 +00:00
jevering%netscape.com e6573be100 Adding boehm collector to windows.
(not part of the build yet)
1999-10-15 07:41:54 +00:00
jevering%netscape.com 553fa2f217 Adding boehm collector linkages to the windows build.
(not part of the build yet)
1999-10-15 07:40:13 +00:00
fur%netscape.com a4118ee0de file nsIStorageStream.idl was initially added on branch CacheIntegration_BRANCH. 1999-10-15 07:39:16 +00:00
fur%netscape.com 71bd313a7e file nsStorageStream.h was initially added on branch CacheIntegration_BRANCH. 1999-10-15 07:39:15 +00:00
fur%netscape.com ca6da3e313 file nsStorageStream.cpp was initially added on branch CacheIntegration_BRANCH. 1999-10-15 07:39:14 +00:00
tbogard%aol.net 187eb2ba35 Changed the nativeWindowParent's to be a nativeWindow instead of a long. nativeWindow is a typedef'd voidStar. 1999-10-15 07:31:28 +00:00
tbogard%aol.net 575e116287 First landing. 1999-10-15 07:23:53 +00:00
dp%netscape.com 1a126bedcd bug# 5085 Eliminating some checks at autoreg time to improve startup
performance. r=sfraser
1999-10-15 07:12:08 +00:00
waterson%netscape.com 2fd7083138 Add xpcnativecallcontext.cpp for jband. 1999-10-15 07:08:15 +00:00
varada%netscape.com 816fd88e17 removing relative paths and evaluating absolute ones 1999-10-15 06:51:03 +00:00
dveditz%netscape.com b56193b56d expose libreg ability to delete named values in nsIRegistry. Patch from
Jonas Utterstr�m <jonas.utterstrom@vittran.norrnod.se>, r=dveditz
1999-10-15 06:47:58 +00:00
rjc%netscape.com ae28cd2568 Fix leak in nsXULSortService (found by Boehm GC). Also, remove CTOR_COUNT stuff. Review: waterson@netscape.com 1999-10-15 06:27:02 +00:00
brendan%mozilla.org 8371c29ee7 1. Fixed missing JS_LOCK_GC in JS_YieldRequest, commented other badness there.
2.  Cleaned up ugly JS_GC_Flag typedef name and put XXXbe comment in there for
    next time: someone seems to have patched around a deadlock that has since
    bit chouck@geocast.com.
3.  Fixed gcDisabled by moving it from cx to rt and updating it atomically.
4.  Fixed ECMA violation where for (var i, j in o) ... was permitted; only one
    variable is allowed.
(Item 4 was a bug on rogerl's list, since closed?  r=shaver@mozilla.org.)
1999-10-15 05:46:42 +00:00
sspitzer%netscape.com 578b4f0915 fix possible solaris bustage by including the nsIFoo.h files when we have nsCOMPtr<nsIFoo> foo; 1999-10-15 05:10:28 +00:00
jband%netscape.com d4d440258b adding new empty placeholder file to the build. Will also add it to Mac project via camelot and put real stuff in it after all is stable. r=jband :) 1999-10-15 05:09:08 +00:00
sspitzer%netscape.com 3a87ab68a6 more fixes to get copies and sent folder prefs to work right.
now, mailbox:// urls work.
change the logic of LocateMessageFolder() to be:

if (the target folder is not "anyfolder://") then {
	find the folder and return it if your find it.
	if you can't find it, create it in the datasource and return the folder.  see bug #14591
}
else {
	look for the default folder in any server associated with the current identity.
	if you find it, return it.
}
1999-10-15 05:03:03 +00:00
waterson%netscape.com a3b121502f Unclutter stuff by using nsCOMPtr in the nsElementMap::ContentListItem. Add leakenmacros to ContentListItem. Fix a leak in the the internal enumerator routine. Comment the internal enumerator routine since it's kinda funky. Add 'tag name' to the log messages. 1999-10-15 04:45:43 +00:00
sspitzer%netscape.com 5344853105 remove unused variablable to fix a couple warnings. 1999-10-15 04:33:21 +00:00
shaver%netscape.com 34010403ff fix obj_getCount to property destroy state and propagate error (r=jband) 1999-10-15 04:32:46 +00:00
kin%netscape.com 6762dd27f5 Fix for bug #15360: Drag Selecting, Clicking, then Clicking leaves caret cruft.
r=troy@netscape.com,kipp@netscape.com,evaughan@netscape.com,beard@netscape.com

layout/html/base/src/nsGfxScrollFrame.cpp
    - Renamed all occurrences of ScrollPositionChanged() to
      to ScrollPositionDidChange() to match changes made
      to nsIScrollPositionListener.
    - Added ScrollPositionWillChange() stub method.

layout/html/base/src/nsPresShell.cpp
    - Added PresShellViewEventListener class that implements the
      nsIScrollPositionListener and nsICompositeListener view
      interfaces. This allows us to turn caret rendering on and off
      when scrolling and repainting to prevent leaving caret cruft
      on the screen.
    - PresShellViewEventListener is created in InitialReflow(), and
      released in ~PresShell().

view/public/Makefile.in
view/public/makefile.win
view/public/MANIFEST
    - Added nsICompositeListener to list of files to be exported.

view/public/nsICompositeListener.h
    - New file. Implementers of this interface can register themselves
      with the view manager to receive notification before and after
      a view is composited/refreshed.

view/public/nsIScrollPositionListener.h
    - Added a ScrollPositionWillChange() method.
    - Changed ScrollPositionChanged() to ScrollPositionDidChange().

view/public/nsIViewManager.h
    - Added AddCompositeListener() and RemoveCompositeListener methods.

view/src/nsScrollingView.cpp
view/src/nsScrollingView.h
    - Added NotifyScrollPositionWillChange() and
      NotifyScrollPositionDidChange() methods.
    - Modified HandleScrollEvent() to call NotifyScrollPositionWill/DidChange()
      methods. Added temporary offsetX and offsetY variables to allow us
      to calculate new offsets without changing mOffsetX and mOffsetY before
      notifications are sent out.

view/src/nsScrollPortView.cpp
    - Changed ScrollPositionChanged() to ScrollPositionDidChange().
    - Modified ScrollTo() to call the listener's ScrollPositionWillChange()
      method.

view/src/nsViewManager.cpp
view/src/nsViewManager.h
    - Added AddCompositeListener() and RemoveCompositeListener() methods.
    - Added support for CompositeListener notifications in the Refresh()
      methods for regions and rects.
    - Fix for bug #15901: [DOGFOOD] Selected text does not clear when you type
      Modified UpdateView() so that rects with zero width and height are
      no longer added to our damage region.
      r=beard@netscape.com
1999-10-15 04:29:30 +00:00
karnaze%netscape.com f42c7bef25 new regression test. 1999-10-15 04:29:09 +00:00
waterson%netscape.com 694117e18a Fix compiler warning; r=rjc. 1999-10-15 04:26:46 +00:00
neeti%netscape.com de25c33a67 updating status 1999-10-15 04:20:40 +00:00
karnaze%netscape.com bb627081c7 pass2 reflow doesn't request max element sizes to help with bug 14855. Reviewers didn't respond. 1999-10-15 04:09:22 +00:00
brendan%mozilla.org ff9dec8d40 Rename ToSource to uneval (r=shaver@mozilla.org,terry@geocast.com). 1999-10-15 04:07:59 +00:00
neeti%netscape.com a257a77a11 Converted to use nsIModule to prepare for memory leaks fixing. Bug# 14034. r=sspitzer 1999-10-15 04:06:43 +00:00
neeti%netscape.com e596121d7a Converted to use nsIModule to prepare for memory leaks fixing. Bug# 14034. r=alecf 1999-10-15 04:06:14 +00:00
neeti%netscape.com 04b27bf059 Converted to use nsIModule to prepare for memory leaks fixing. Bug# 14034. r=waterson 1999-10-15 04:05:22 +00:00
beard%netscape.com b4206fabd2 fixed 2 string memory leaks (bug #15380). r=saari 1999-10-15 03:57:45 +00:00
radha%netscape.com b3928cdd07 Send out OnStartDocumentLoad(0 notifications for visits to
anchors in a page. bug # 11631 15441. r=law. Got clearance from travis too
1999-10-15 03:50:47 +00:00
bienvenu%netscape.com 21386eed92 more of addrbook memory leak fixes r=mscott 1999-10-15 03:50:21 +00:00
radha%netscape.com 0cc268758c fixing session history for frames. I accidently broke the behavior in
my monday's checkin. No bug #. r=law
1999-10-15 03:49:29 +00:00
troy%netscape.com 98ee25447f Patch from jst@citec.fi r=troy@netscape.com
Part of a fix for crash when expanding/collapsing toolbars. Change to
DeletingFrameSubtree() to make sure it examines the additional child
list as well as the principal child list
1999-10-15 03:37:10 +00:00
waterson%netscape.com 111c4ee608 Bug 16402. Make sure that literals addref (and release) the RDF service. Make sure to deal with edge Unregister[Resource|Literal] conditions; e.g., being called to unregister a literal when none was ever registered. r=rjc 1999-10-15 03:36:04 +00:00
jband%netscape.com 959b9a190e r=shaver
- Fixed two similar cases where code was missing one level of
pointer dereference in terminating a copied string. Was trashing
data further up the stack.
- Use 'nsAllocator::Free' in two similar cases where 'delete' was
mistakenly used. Error pointed out by Purify.
1999-10-15 03:31:09 +00:00
rhp%netscape.com c296f009c0 Fix for email names with embedded &'s - Bug #16383 r=jefft 1999-10-15 03:27:33 +00:00
troy%netscape.com bf8c6d860d Space savings. r=kipp@netscape.com
Re-implemented DST code to use separate objects for leaf nodes and
internal nodes. This reduces the per node size from 16 bytes to (on
average) 13 bytes per node
1999-10-15 03:18:28 +00:00
troy%netscape.com f80550c400 Space savings. r=karnaze@netscape.com Cc'd hyatt@netscape.com
Eliminated member data mIsContentEmpty and now we use a frame state bit
instead. This saves 4 bytes of space per table cell frame
1999-10-15 03:14:59 +00:00
shaver%netscape.com c182ce4717 make xpcshell use jsrtsvc, and let jsrtsvc handle JS_Shutdown (r=jband) 1999-10-15 03:05:48 +00:00
bienvenu%netscape.com cca5e191f9 fix memory leak of nsIURI in Set and GetAttribute r=waterson 1999-10-15 02:59:37 +00:00
srinivas%netscape.com 66a52807fc Autoconf for NSPR. Checkin for cls@seawood.org. Bugzilla #11893. 1999-10-15 02:42:36 +00:00
srinivas%netscape.com e32cb91095 Autoconf for NSPR. Checkin for cls@seawood.org. Bugzilla #11893. 1999-10-15 02:36:40 +00:00
peterl%netscape.com 670703db1c moved toggle and tri-state from user-modify to user-select to stay in sync with CSS3
no bug #
r=pierre
1999-10-15 02:11:09 +00:00
cls%seawood.org abf38307a7 Fix for bug #13412. r=shaver
If configured using --with-extensions or --with-extension=all, enable all of the non-default extensions rather than extension "yes" or "all".
1999-10-15 02:04:09 +00:00
akhil.arora%sun.com e6c5833e3f 16426 r=akhil.arora@sun.com fixed by Denis Sharypov <sdv@sparc.spb.su>
The class java.lang.RuntimeException was not being pinned
1999-10-15 01:47:04 +00:00
akhil.arora%sun.com fb9ab8d4ae 16427 r=akhil.arora@sun.com fixed by Denis Sharypov <sdv@sparc.spb.su>
Check before dereferencing a NULL pointer.
1999-10-15 01:43:24 +00:00
varada%netscape.com d82e325499 change from relative to absolute path 1999-10-15 01:39:32 +00:00