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

1024 Коммитов

Автор SHA1 Сообщение Дата
disttsc%bart.nl 2e982313fa Removing prefutilities.js, moving the code in it to where it belongs. bug=73355, r=mao, sr=ben 2001-04-01 05:02:07 +00:00
cmanske%netscape.com bc45e0b73b Part of fix for bug 73674. r=brade, sr=kin 2001-03-28 21:22:14 +00:00
cmanske%netscape.com c17eccd4e0 String changes needed to fix plaintext editor bugs 69536, 69540, 69544, 69547, 73674, 71702. r=brade, sr=kin 2001-03-28 21:18:02 +00:00
cmanske%netscape.com 4dbae36796 Fixed plaintext editor bugs 69536, 69540, 69544, 69547, 73674, 71702. r=brade, sr=kin 2001-03-28 21:16:44 +00:00
disttsc%bart.nl 255a4dd9f7 bug 73237: "we should not call window.focus() on all windows right before closing them on shutdown", author=Boris Zbarsky <bzbarsky@mit.edu>, r=jag, sr=alecf 2001-03-28 07:09:16 +00:00
cmanske%netscape.com 076de0b864 Fixed image align reversal for 'left' / 'right', b=73326, r=blake, sr=kin 2001-03-27 01:09:37 +00:00
cmanske%netscape.com cd9973e31c Replaced 'value' with 'label' for Table dialog checkboxes, b=73479, r=blake, sr=sfraser 2001-03-27 01:06:55 +00:00
cmanske%netscape.com 4b22e99754 Fixed Image dialog. b=73043, r=kin, sr=sfraser 2001-03-24 01:17:27 +00:00
cmanske%netscape.com 6c0609eb2a Fixed Join Cells enabling. b=71985, r=hyatt, sr=sfraser 2001-03-24 01:11:33 +00:00
cmanske%netscape.com 3997e8311e Added quick access to last-picked color. b=72090, r=glazman, sr=sfraser 2001-03-24 00:58:52 +00:00
cmanske%netscape.com 0e4c205781 Fixed Named Anchor dialog ok enabling, b=72194, r=brade, sr=kin 2001-03-23 23:57:23 +00:00
andreww%netscape.com 66c7de9200 bugzilla 72223 r=timeless, sr=hewitt fixing clipped buttons in spell check window. 2001-03-23 02:57:15 +00:00
blakeross%telocity.com 8245834b42 73072, spellchecker fix. sr=sfraser, sspitzer 2001-03-22 21:37:41 +00:00
blakeross%telocity.com a277c0c4b0 Undoing accidental change. 2001-03-22 21:11:00 +00:00
blakeross%telocity.com 0b07ef260d Blocker bug 73043. 2001-03-22 20:45:12 +00:00
blakeross%telocity.com 0b2dd2b2d2 Fixing 70746: major xul syntax changes. If you use xul, this WILL affect you! Read n.p.m.xpfe for details on the changes and how you can fix your code. r=hewitt sr=hyatt, ben 2001-03-22 00:59:29 +00:00
maolson%earthlink.net 1e7ee6f0f9 fix bug 70747 [XUL Syntax] Replace <textfield> with <textbox>
r=blake, a=ben
2001-03-22 00:15:47 +00:00
brade%netscape.com 5c2171c78f handle cancellation of filepicker; bug #71856, r=cmanske, sr=kin 2001-03-20 15:29:53 +00:00
glazman%netscape.com abdfe41621 Tables without border attribute were invisible in editor. Highly depends on 71647. b=57686, r=brade, sr=kin 2001-03-20 12:25:15 +00:00
hewitt%netscape.com 3d5e92aa75 65745 - themes cleanup, r=dveditz/cmanske/chuang/blake/andreww, sr=hyatt, a=leaf 2001-03-16 02:56:38 +00:00
syd%netscape.com bcbf97737e Fix for:
http://bugzilla.mozilla.org/show_bug.cgi?id=68229

r=andreww, sr=sfraser. checking in for anatoliya
2001-03-14 07:33:46 +00:00
timeless%mac.com 6cf0d97f11 Bug 65428 language="javascript" should be type="application/x-javascript"
r=ksosez@softhome.net a=ben
2001-03-13 15:35:07 +00:00
cmanske%netscape.com 84eeec7b55 Fixed editor table submenu enabling in context menus, b=62158, r=akkana, sr=kin 2001-03-13 14:35:24 +00:00
cmanske%netscape.com 581d75c43f Part of fix to spell checker bug 70413, r=timeless, sr=kin 2001-03-12 23:29:16 +00:00
cmanske%netscape.com c4731c2e9a Fixed access to Dictionary dialog - always launch Spell Checker dialog. b=70413, r=timeless, sr=kin 2001-03-12 23:29:07 +00:00
kin%netscape.com 11f8ac97cd 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
2001-03-09 14:23:59 +00:00
cmanske%netscape.com 9a0d485c74 Missed file checkin as part of bug 67993, sr=sfraser 2001-03-09 01:47:18 +00:00
hewitt%netscape.com eeb97b1e15 68480 - cleanup msgcompose toolbar menubuttons, r=cmanske/ducarroz, sr=hyatt 2001-03-09 00:01:55 +00:00
hewitt%netscape.com 13099302cb 66354 - editor image props dialog cleanup, r=cmanske, sr=hyatt 2001-03-08 23:39:49 +00:00
cmanske%netscape.com 286885f612 Fixed problems in Advanced Edit dialog, b=67918, r=brade, sr=kin 2001-03-08 15:07:14 +00:00
cmanske%netscape.com f96d7e2a61 Removed registering of commands not used in plain text editor, b=67993, r=brade, sr=sfraser 2001-03-08 15:03:51 +00:00
timeless%mac.com 0113c0683d fix bug 64562 Some chrome dtd bugs [duplicate entities in dtds]
fixes from cjh@kr.freebsd.org r=jag, sr=jst
2001-03-07 11:28:42 +00:00
cmanske%netscape.com a77f7a0332 Fixed editor bugs 68064 and 70263. r=brade, sr=kin 2001-03-06 21:12:28 +00:00
cmanske%netscape.com 86d61ea927 Checkin to fix bug 69851 for pedimont@us.ibm.com, r=cmanske, sr=kin 2001-03-05 15:41:39 +00:00
cmanske%netscape.com 8b4f4514f0 Better error message, b=69560, r=robinf, sr=kin 2001-03-04 00:25:30 +00:00
blakeross%telocity.com 38794d139f 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
cmanske%netscape.com 745e66a5ab UI changes for export to text file (51798) and adding read-only DOCTYPE display in HTML Source (58650), and new command to update Recent Files menu (part of 60129). r=brade, sr=sfraser 2001-02-26 22:02:07 +00:00
cmanske%netscape.com dd590e5fdc Make setting <title> and <meta> contents undoable transactions. Part of bug 60129, r=brade, sr=sfraser 2001-02-26 21:51:44 +00:00
cmanske%netscape.com 26111655fb Fixed Table dialog bugs 57206 and 69795. Cleanup up warinings in Insert Chars dialog. r=brade, sr=sfraser 2001-02-26 20:00:17 +00:00
tao%netscape.com 90bfcacfe5 62171: "Separate content from UI". Split langenus.xpi into regus.xpi.
browser: (r=pchen,sr=alecf), mailnews: (r=yamamoto,sr=sspitzer),
editor: (r=cmonske,sr=sfraser), xpinstall (r=ssu,sr=dveditz).
2001-02-23 08:34:10 +00:00
blakeross%telocity.com 26aff3aa5d Forced reload, stop button, ability to use bookmark keywords in Open Web Location dialog, persist window choice, .8 -> .9, moving things to more appropriate places (60498, 62078, 49773, others). r=timeless/jag sr=alecf 2001-02-23 03:31:46 +00:00
brade%netscape.com a2aa7af6c8 comment out HideImage() which was moved (to fix blocker #69669) r=granrose 2001-02-21 19:13:14 +00:00
syd%netscape.com 37a36077e6 Fix for bug 67981. checking in for anatoliya@netscape.com r=cmanske, sr=kin 2001-02-21 00:34:04 +00:00
akkana%netscape.com 36974551e5 67337: Initial implementation of Tableize. r=aaronl sr=sfraser 2001-02-17 01:33:07 +00:00
cmanske%netscape.com 036d844aa9 No real code change: added comment to explain fix to bug 57206, r=brade, sr=kin 2001-02-16 21:10:01 +00:00
cmanske%netscape.com 4b89987d97 Fixed Cell Properties navigation in dialog bug 68836. r=brade, sr=sfraser 2001-02-16 03:37:26 +00:00
cmanske%netscape.com eef80efee2 Fixed link properties bug 68064. r=brade, sr=sfraser 2001-02-16 03:36:03 +00:00
cmanske%netscape.com 4d561d085b Fixed Spell Check dialog layout bug 57398. r=brade, sr=sfraser 2001-02-16 03:35:02 +00:00
cmanske%netscape.com dfda7eae38 Fixed Spell Check dialog default button bug 56531. r=brade, sr=sfraser 2001-02-16 03:34:29 +00:00
cmanske%netscape.com 6d77cd1bdf Fixed initializing widgets in prefs dialog, b=53275, r=brade, sr=sfraser 2001-02-16 03:33:27 +00:00