jfrancis%netscape.com
6479cea88e
Fixes for bug #66308 ([embed] XPIDL'ize transaction manager)
sr=sfraser@netscape.com,mscott@netscape.com r=jfrancis@netscape.com
* nsITransaction, nsITransactionListenter, nsITransactionManager have
been XPIDL'ized and moved into mozilla/editor/txmgr/idl. The versions
of these interfaces in mozilla/editor/txmgr/public are being CVS removed.
* Renamed Do(), Undo(), and Redo() to DoTransaction(), UndoTransaction(),
and RedoTransaction() to avoid reserved word problems in languages like
JS. I did a sweep through editor and mailnews to remove these methods.
* PeekUndoStack() and PeekRedoStack() now return an AddRef'd pointer.
* Removed GetUndoString(), GetRedoString() and Write() from the
nsITransaction interface. Neither editor or mailnews really made
use of these methods.
* Removed Write() from the nsITransactionManager.cpp interface.
* The Transaction Manager now supports weak references.
* Added support for nsITransactionList to the TransactionManager
to allow access to all transactions on the Undo and Redo stacks, as
well as auto-aggregated transactions.
* Removed all references to nsITransactionDescription from txmgr and editor.
* Added nsPIEditorTransaction and made all Editor internal transactions
inherit from it so we can distinguish between our transactions and
ones from 3rd parties.
New files checked in:
editor/txmgr/idl/nsITransaction.idl
editor/txmgr/idl/nsITransactionList.idl
editor/txmgr/idl/nsITransactionListener.idl
editor/txmgr/idl/nsITransactionManager.idl
editor/txmgr/src/nsITransactionList.cpp
editor/txmgr/src/nsITransactionList.h
editor/idl/nsPIEditorTransaction.idl
Files that were CVS removed:
editor/txmgr/public/nsITransaction.h
editor/txmgr/public/nsITransactionListener.h
editor/txmgr/public/nsITransactionManager.h
editor/txmgr/idl/nsITransactionDescription.h
editor/base/IMECommitTxn.cpp
editor/base/IMECommitTxn.h
Files modified:
editor/Makefile.in
editor/makefile.win
editor/base/ChangeAttributeTxn.cpp
editor/base/ChangeAttributeTxn.h
editor/base/CreateElementTxn.cpp
editor/base/CreateElementTxn.h
editor/base/DeleteElementTxn.cpp
editor/base/DeleteElementTxn.h
editor/base/DeleteRangeTxn.cpp
editor/base/DeleteRangeTxn.h
editor/base/DeleteTextTxn.cpp
editor/base/DeleteTextTxn.h
editor/base/EditAggregateTxn.cpp
editor/base/EditAggregateTxn.h
editor/base/EditTxn.cpp
editor/base/EditTxn.h
editor/base/IMECommitTxn.cpp
editor/base/IMECommitTxn.h
editor/base/IMETextTxn.cpp
editor/base/IMETextTxn.h
editor/base/InsertElementTxn.cpp
editor/base/InsertElementTxn.h
editor/base/InsertTextTxn.cpp
editor/base/InsertTextTxn.h
editor/base/JoinElementTxn.cpp
editor/base/JoinElementTxn.h
editor/base/nsEditor.cpp
editor/base/nsEditorShell.cpp
editor/base/nsEditorShell.h
editor/base/nsEditorTxnLog.cpp
editor/base/nsStyleSheetTxns.cpp
editor/base/nsStyleSheetTxns.h
editor/base/PlaceholderTxn.cpp
editor/base/PlaceholderTxn.h
editor/base/SetDocTitleTxn.cpp
editor/base/SetDocTitleTxn.h
editor/base/SplitElementTxn.cpp
editor/base/SplitElementTxn.h
editor/idl/Makefile.in
editor/idl/makefile.win
editor/idl/MANIFEST
editor/idl/nsIEditorShell.idl
editor/macbuild/editor.mcp
editor/macbuild/EditorIDL.mcp
editor/txmgr/idl/Makefile.in
editor/txmgr/idl/makefile.win
editor/txmgr/idl/MANIFEST
editor/txmgr/idl/nsITransactionManager.idl
editor/txmgr/macbuild/txmgr.mcp
editor/txmgr/macbuild/txmgrIDL.mcp
editor/txmgr/public/Makefile.in
editor/txmgr/public/makefile.win
editor/txmgr/public/MANIFEST
editor/txmgr/src/Makefile.in
editor/txmgr/src/makefile.win
editor/txmgr/src/nsTransactionItem.cpp
editor/txmgr/src/nsTransactionItem.h
editor/txmgr/src/nsTransactionList.cpp
editor/txmgr/src/nsTransactionList.h
editor/txmgr/src/nsTransactionManager.cpp
editor/txmgr/src/nsTransactionManager.h
editor/txmgr/src/nsTransactionManagerFactory.cpp
editor/txmgr/src/nsTransactionStack.cpp
editor/txmgr/src/nsTransactionStack.h
editor/txmgr/tests/TestTXMgr.cpp
editor/ui/composer/content/EditorCommandsDebug.js
editor/ui/composer/content/editorOverlay.xul
editor/ui/composer/locale/en-US/editorOverlay.dtd
mailnews/base/src/nsMessenger.cpp
mailnews/base/util/nsMsgTxn.cpp
mailnews/base/util/nsMsgTxn.h
mailnews/imap/src/nsImapMailFolder.cpp
mailnews/imap/src/nsImapUndoTxn.cpp
mailnews/imap/src/nsImapUndoTxn.h
mailnews/local/src/nsLocalMailFolder.cpp
mailnews/local/src/nsLocalUndoTxn.cpp
mailnews/local/src/nsLocalUndoTxn.h
Fixes for bug #66308 ([embed] XPIDL'ize transaction manager)
sr=sfraser@netscape.com,mscott@netscape.com r=jfrancis@netscape.com
* nsITransaction, nsITransactionListenter, nsITransactionManager have
been XPIDL'ized and moved into mozilla/editor/txmgr/idl. The versions
of these interfaces in mozilla/editor/txmgr/public are being CVS removed.
* Renamed Do(), Undo(), and Redo() to DoTransaction(), UndoTransaction(),
and RedoTransaction() to avoid reserved word problems in languages like
JS. I did a sweep through editor and mailnews to remove these methods.
* PeekUndoStack() and PeekRedoStack() now return an AddRef'd pointer.
* Removed GetUndoString(), GetRedoString() and Write() from the
nsITransaction interface. Neither editor or mailnews really made
use of these methods.
* Removed Write() from the nsITransactionManager.cpp interface.
* The Transaction Manager now supports weak references.
* Added support for nsITransactionList to the TransactionManager
to allow access to all transactions on the Undo and Redo stacks, as
well as auto-aggregated transactions.
* Removed all references to nsITransactionDescription from txmgr and editor.
* Added nsPIEditorTransaction and made all Editor internal transactions
inherit from it so we can distinguish between our transactions and
ones from 3rd parties.
New files checked in:
editor/txmgr/idl/nsITransaction.idl
editor/txmgr/idl/nsITransactionList.idl
editor/txmgr/idl/nsITransactionListener.idl
editor/txmgr/idl/nsITransactionManager.idl
editor/txmgr/src/nsITransactionList.cpp
editor/txmgr/src/nsITransactionList.h
editor/idl/nsPIEditorTransaction.idl
Files that were CVS removed:
editor/txmgr/public/nsITransaction.h
editor/txmgr/public/nsITransactionListener.h
editor/txmgr/public/nsITransactionManager.h
editor/txmgr/idl/nsITransactionDescription.h
editor/base/IMECommitTxn.cpp
editor/base/IMECommitTxn.h
Files modified:
editor/Makefile.in
editor/makefile.win
editor/base/ChangeAttributeTxn.cpp
editor/base/ChangeAttributeTxn.h
editor/base/CreateElementTxn.cpp
editor/base/CreateElementTxn.h
editor/base/DeleteElementTxn.cpp
editor/base/DeleteElementTxn.h
editor/base/DeleteRangeTxn.cpp
editor/base/DeleteRangeTxn.h
editor/base/DeleteTextTxn.cpp
editor/base/DeleteTextTxn.h
editor/base/EditAggregateTxn.cpp
editor/base/EditAggregateTxn.h
editor/base/EditTxn.cpp
editor/base/EditTxn.h
editor/base/IMECommitTxn.cpp
editor/base/IMECommitTxn.h
editor/base/IMETextTxn.cpp
editor/base/IMETextTxn.h
editor/base/InsertElementTxn.cpp
editor/base/InsertElementTxn.h
editor/base/InsertTextTxn.cpp
editor/base/InsertTextTxn.h
editor/base/JoinElementTxn.cpp
editor/base/JoinElementTxn.h
editor/base/nsEditor.cpp
editor/base/nsEditorShell.cpp
editor/base/nsEditorShell.h
editor/base/nsEditorTxnLog.cpp
editor/base/nsStyleSheetTxns.cpp
editor/base/nsStyleSheetTxns.h
editor/base/PlaceholderTxn.cpp
editor/base/PlaceholderTxn.h
editor/base/SetDocTitleTxn.cpp
editor/base/SetDocTitleTxn.h
editor/base/SplitElementTxn.cpp
editor/base/SplitElementTxn.h
editor/idl/Makefile.in
editor/idl/makefile.win
editor/idl/MANIFEST
editor/idl/nsIEditorShell.idl
editor/macbuild/editor.mcp
editor/macbuild/EditorIDL.mcp
editor/txmgr/idl/Makefile.in
editor/txmgr/idl/makefile.win
editor/txmgr/idl/MANIFEST
editor/txmgr/idl/nsITransactionManager.idl
editor/txmgr/macbuild/txmgr.mcp
editor/txmgr/macbuild/txmgrIDL.mcp
editor/txmgr/public/Makefile.in
editor/txmgr/public/makefile.win
editor/txmgr/public/MANIFEST
editor/txmgr/src/Makefile.in
editor/txmgr/src/makefile.win
editor/txmgr/src/nsTransactionItem.cpp
edito
2001-03-09 14:18:41 +00:00
kin%netscape.com
a204ffc70a
Initial checkin of file. NOT PART OF THE BUILD!
2001-03-09 13:58:05 +00:00
ftang%netscape.com
8e91e6fb89
fix 71324 . delete mList so we won't leak in IME code.
...
r=nhotta sr=jst
2001-03-09 13:47:17 +00:00
ftang%netscape.com
7d254d87f2
fix 70601. r=bstell sr=erik
...
thanks slava@maze.ambernet.kiev.ua help to find this bug and verify it.
2001-03-09 13:23:02 +00:00
rbs%maths.uq.edu.au
9f529be5b4
Cleanup DOS end-of-lines
2001-03-09 13:20:20 +00:00
darin%netscape.com
f4a312975e
Change to NS_IMPL_THREADSAFE_ISUPPORTS to fix spurious warnings.
2001-03-09 11:22:24 +00:00
axel%pike.org
b4443152e7
not part of build; adding logging by sicking, robustness by peterv, speed by me. (last patch before moving to outliner?)
2001-03-09 08:52:49 +00:00
cls%seawood.org
8dfb0c65f3
Add support for old NetBSD toolchains & use -Bsymbolic when linking components.
...
Thanks to Charles Hannum <mycroft@netbsd.org> for the patch.
Bug #61750 r=cls
2001-03-09 07:55:29 +00:00
leaf%mozilla.org
c58a9c5e68
Automated update
2001-03-09 07:45:09 +00:00
pavlov%netscape.com
f30ed40220
use NS_LITERAL_STRING instead of NS_LITERAL_CSTRING when creating an atom, and put dont_AddRef() around NS_NewAtom so we don't add an extra addref
2001-03-09 07:42:04 +00:00
darin%netscape.com
4de86fb39c
Fixes bug 71317. Leak increase on tinderbox. r=bryner sr=mscott,alecf
2001-03-09 07:41:58 +00:00
cls%seawood.org
cf5fc44784
Use CC instead of LD to link.
...
Thanks to martin@NetBSD.ORG (Martin Husemann) for the patch.
Bug #61745 r=cls
2001-03-09 07:41:26 +00:00
pschwartau%netscape.com
977b6fa463
Updated JS_GetImplementationVersion() to date of latest JS release (67111, r=rginda, sr=jband).
2001-03-09 07:36:48 +00:00
cls%seawood.org
356604f15b
Clean up netbsd section.
...
Thanks to martin@NetBSD.ORG (Martin Husemann) and taya@sm.sony.co.jp (Shin'ichiro TAYA) for the patch.
Bug #61745 r=cls
2001-03-09 07:34:36 +00:00
cls%seawood.org
181396975a
Remove unneeded variables.
...
Thanks to martin@NetBSD.ORG (Martin Husemann) for the patch.
Bug #61744 r=cls
2001-03-09 07:28:35 +00:00
stephend%netscape.com
13f3013c32
Re-implements tooltips from bug 60260 r=db48x@yahoo.com a=ben@netscape.com
2001-03-09 07:23:56 +00:00
waterson%netscape.com
97ccbd146f
Bug 70248. Remove extraneous |extern C| block. r=ducarroz, sr=mscott
2001-03-09 06:31:42 +00:00
dave%intrec.com
583d2a998b
Re-fix for bug 17464: oldemailtech prefs work again.
2001-03-09 06:28:59 +00:00
naving%netscape.com
dd092f60b5
63921. sr=bienvenu Don't kill the connection for the folder to be renamed. Do it
...
for its children.
2001-03-09 06:27:01 +00:00
cls%seawood.org
8e59f367a9
Add individual boehm include path for our module dep tracking builds.
...
Thanks to L. David Baron <dbaron@fas.harvard.edu> for the patch.
Bug #59454 r=cls
2001-03-09 06:03:24 +00:00
leaf%mozilla.org
d2501ac1c8
Automated update
2001-03-09 06:00:10 +00:00
cls%seawood.org
3a83e5b153
Remove xmlterm from MOZ_EXTENSIONS and issue a warning if we are not building with the gtk toolkit. Bug #67250
2001-03-09 05:55:28 +00:00
leaf%mozilla.org
2454d03a73
Automated update
2001-03-09 05:00:08 +00:00
cls%seawood.org
984dc05fd3
Actually use CPPFLAGS when it is passed to configure
2001-03-09 04:53:17 +00:00
cls%seawood.org
a943675a17
Actually use CPPFLAGS when passed to configure.
2001-03-09 04:51:09 +00:00
leaf%mozilla.org
3c0964b5f9
Automated update
2001-03-09 04:45:07 +00:00
cls%seawood.org
4f034c1f5c
Reverse list of checkins when printing them out so that the output can *properly* be used to back out the checkins. Bug #22346
2001-03-09 04:38:19 +00:00
cls%seawood.org
eb945be4f4
Pass PERL_VERSION to test script as an env variable so that the perl test works properly. Bug #66443
2001-03-09 04:30:27 +00:00
mkaply%us.ibm.com
5947032e5e
#70961
...
author=simon@softel.co.il ; r=waterson; sr=erik
New style constant for bidi - not part of build yet due to #ifdef IBMBIDI
2001-03-09 04:20:10 +00:00
mkaply%us.ibm.com
00632e1cf9
#70961
...
author=simon@softel.co.il ; r=waterson; sr=erik
New layout atoms for bidi - not part of build yet due to #ifdef IBMBIDI
2001-03-09 04:15:34 +00:00
erik%netscape.com
73bebb1f92
bugs 70028 and 70394; author=simon@softel.co.il; r=ftang; sr=erik; adding
...
nsIBidi.h and nsIUBidiUtils.h and related files to build, conditionally
(ifdef IBMBIDI)
2001-03-09 04:15:30 +00:00
mkaply%us.ibm.com
c2bd15c2b5
#59855
...
r=pchwartau, sr=brendan
Just add an _IS_LITTLE_ENDIAN for XP_OS2 for now. Eventually, we need to figure
out how to get jstypes.h included in here, since it already has a LITTLE_ENDIAN define.
2001-03-09 04:07:15 +00:00
mkaply%us.ibm.com
9ce67d1a9b
#59855
...
r=pchwartau, sr=brendan
Rework makefile.win and js.mak for the eventual ability to include jstypes.h in fdlibm.h
Not turned on yet because I can't get it working right on Linux
2001-03-09 04:05:44 +00:00
mkaply%us.ibm.com
f0d86135ff
#59855
...
r=pchwartau, sr=brendan
Get JS standalong building with Makefile.ref on Win32
2001-03-09 04:02:36 +00:00
erik%netscape.com
a7135c5aab
bug 71370; author=simon@softel.co.il; r=attinasi; sr=erik; implement bidi
...
(bidirectional text) for languages such as Arabic and Hebrew; from IBM bidi
project; not part of build yet (due to #ifdef IBMBIDI)
2001-03-09 03:29:00 +00:00
dmose%netscape.com
2204f8059a
Fixes various sr= issues turned up in preparation for turning on LDAP in the default builds (bug 70658). Removes obsolete and private interface methods; fixes spacing, and lots of misc cleanups. moa=me, sr=shaver@mozilla.org
2001-03-09 03:25:47 +00:00
rods%netscape.com
9f51057c61
change PRBool to PRPackedBool
...
Scroll to first item on DidReflow of Initial Reflow
Bug 54496 r=kmcclusk sr=attinasi
2001-03-09 03:21:51 +00:00
dbaron%fas.harvard.edu
10c78af3f4
Remove obsolete attempt to rename nsHTMLFrame.cpp that was never part of the build. sr=waterson@netscape.com b=64509
2001-03-09 03:14:07 +00:00
erik%netscape.com
ca75151209
bug 71370; author=simon@softel.co.il; r=attinasi; sr=erik; implement bidi
...
(bidirectional text) for languages such as Arabic and Hebrew; from IBM bidi
project; not part of build yet (due to #ifdef IBMBIDI)
2001-03-09 03:13:03 +00:00
dbaron%fas.harvard.edu
24822ec31e
Remove long-obsolete file that hasn't been part of the build since late 1998. sr=buster@netscape.com
2001-03-09 03:10:47 +00:00
pavlov%netscape.com
1a1fd2ccf4
don't #define MOZ_NEW_CACHE here
2001-03-09 03:00:02 +00:00
Peter.VanderBeken%pandora.be
4701be240c
Correct project files for document inspector. Not part of the default build.
2001-03-09 02:28:17 +00:00
dbragg%netscape.com
e072bc1c2e
dbaron fix for ports bustage of libreg/standalone
2001-03-09 02:25:22 +00:00
Peter.VanderBeken%pandora.be
d1598f5dfd
Add build support for Vixen and Document Inspector on Mac (turned off by default), keep Transformiix and CView building on Mac. Doesn't affect the default build. r/a=sfraser@netscape.com.
2001-03-09 02:21:08 +00:00
thayes%netscape.com
da7b95e532
Remove CR chars
2001-03-09 02:19:19 +00:00
danm%netscape.com
1e644509e0
it's another shot at being happy on multiple-monitor machines. man tweaks and various. bug 67523 r=hyatt,pinkerton
2001-03-09 02:17:37 +00:00
danm%netscape.com
6c20007681
allow negative coordinates placing new windows, and center alerts on the same screen as the parent window. bug 67523 r=hyatt,pinkerton
2001-03-09 02:15:55 +00:00
Peter.VanderBeken%pandora.be
5b49fcedfc
Keep MathML support compiling on the Mac - adding nsMathMLFrame.cpp. Not part of the default build.
2001-03-09 02:13:24 +00:00
danm%netscape.com
d53ef6bd5f
window positioning security check is now more conversant with multiple monitors. bug 67523 r=hyatt,pinkerton
2001-03-09 02:12:51 +00:00
waldemar%netscape.com
3b9974b135
Added support for more html elements
2001-03-09 02:12:21 +00:00