Commit Graph

3347 Commits

Author SHA1 Message Date
cmanske%netscape.com
6dfe019d1f Use text cursor over most of Composer's content window. b=128534, r=brade, sr=sfraser, a=asa 2002-03-13 01:35:15 +00:00
brade%netscape.com
8dc0720421 display save error on !success (rather than only for exceptions); bug 128367, r=adamlock, sr=kin; a=asa 2002-03-12 14:13:39 +00:00
jfrancis%netscape.com
d147b2a0e7 one word fix for smoketest blocker 130103 2002-03-12 04:05:46 +00:00
ducarroz%netscape.com
14204ed73f Fix for bug 127077. If the body tag contains a background image, it must be considered as an embedded element. R=jfrancis, SR=bienvenu, A=asa 2002-03-11 14:54:59 +00:00
jfrancis%netscape.com
e1284b0683 fixes 92124: RightArrow then Backspace causes Caret to go to previous line. r=jfrancis; sr=kin; a=roc+moz; submitted by Shotaro Kamio, skamio@netscape.net 2002-03-11 14:28:37 +00:00
glazman%netscape.com
ba2410c1c7 Styles were not preserved in Composer when creating a new list item, hitting twice the Return Key
The inline styles (B I U ..) hierarchy of elements had to be recreated in the new list item.

b=46474; r=jfrancis; sr=kin; a=asa
2002-03-11 13:11:48 +00:00
jfrancis%netscape.com
0f7cfff93f fixes bugs 127869, 127939, and 128793: various bug with list pasting; sr=kin; r=glazman; a=asa [trunk] 2002-03-11 09:30:51 +00:00
cmanske%netscape.com
ccbdd541ca Update to Composer Publishing UI, b=88208, r=brade, sr=kin, a=asa 2002-03-08 01:24:40 +00:00
cmanske%netscape.com
b00844b752 Update to Composer Publishing UI, b=88208, r=brade, sr=kin, a=asa 2002-03-08 00:37:47 +00:00
ftang%netscape.com
17c4bdc982 fix bug 90583. r=mjudge/jfrancis sr=kin a=asa
fix chinese ime candidate window position problem.
 we need the nsAutoPlaceHolderBatch destroctor called before hitting
 GetCaretCoordinates so the states in Frame system sync with content
 therefore, we put the nsAutoPlaceHolderBatch into a inner block
  {
2002-03-07 14:34:35 +00:00
cmanske%netscape.com
dd1248cd49 Set Save/Publish buttons after loading url in Composer, b=127698, r=brade, sr=sfraser, a=asa 2002-03-07 00:05:09 +00:00
cmanske%netscape.com
968a245fa4 Simplify wording of composer pref string, b=125135, r=andreww, sr=kin, a=asa 2002-03-06 23:56:49 +00:00
cmanske%netscape.com
7eea1b35fc Launch list properties dialog on list element, b=114832, r=andreww, sr=kin, a=asa 2002-03-06 23:53:10 +00:00
cmanske%netscape.com
9902a2d35c Changed keybinding for remove styles command, b=80384, r=brade, sr=sfraser, a=asa 2002-03-06 23:46:50 +00:00
cmanske%netscape.com
b3f48bc599 Fixed Browser preview in Composer, b=59497, r=brade, sr=kin, a=asa 2002-03-06 23:31:15 +00:00
darin%netscape.com
f1a6738b6c fixes bug 124042 "support internationalized URIs" r=dougt, sr=alecf, a=asa 2002-03-06 07:48:55 +00:00
brade%netscape.com
e957add476 use persist constants, set persist flags for no base tag mods, set linebreaks to crlf if we aren't saving (file scheme), set replace flag; bugs 125070 and 126672; r=adamlock, sr=sfraser, a=asa 2002-03-05 14:06:56 +00:00
law%netscape.com
ef546d9f26 Smoketest blocker 128538; backing out fix for bug 125070 which caused that regression 2002-03-02 06:30:56 +00:00
cmanske%netscape.com
b738a39faa Fixed setting Save/Publish UI when loading file in Composer, b=127698, r=brade, sr=sfraser, a=asa 2002-03-02 00:09:00 +00:00
cmanske%netscape.com
7630443c41 Fixed toolbar in Classic theme for Composer, b=127425, r=neil@parkwaycc.co.uk, sr=sfraser, a=roc+moz 2002-03-01 23:46:23 +00:00
brade%netscape.com
dabf059cbc use persist constants, set persist flags for no base tag mods, set linebreaks to crlf if we aren't saving (file scheme); bug 125070 and ?; r=adamlock; sr=sfraser; a=roc 2002-03-01 14:11:36 +00:00
bryner%netscape.com
5b25aa8efe Adding missing .cvsignore files. a=leaf. 2002-02-27 23:53:14 +00:00
oeschger%netscape.com
2c095a7a0e restore context-sensitive help to ui: new help file to include and updated syntax, bug=124902, a=asa/drivers, sr=alecf, r=andreww 2002-02-26 01:13:17 +00:00
cmanske%netscape.com
14652088d5 Fixed dataloss after changing default publish site, b=126835, r=andreww, sr=kin, a=roc+moz 2002-02-22 15:40:25 +00:00
jfrancis%netscape.com
63333b5253 fixes blocker 126558; r=brade,jrancis, sr=alecf, a=rods;
thanks to kin for cleaning up my "replace all" accident
2002-02-21 20:50:35 +00:00
kin%netscape.com
13c2c64b3c Fix for blocker bug 126770 (Undo/Redo doesn't work in Text widgets, Composer, and Mail)
mozilla/editor/txmgr/src/nsTransactionManager.cpp
  mozilla/editor/txmgr/src/nsTransactionStack.cpp

    - nsTransactionStack::Peek() was intended to return NULL for
      an empty stack so I changed timeless' change for bug 114166
      to return NS_OK and init the return value to zero.

    - timeless also changed the behavior of nsDeque::End(), it no
      longer returns an interator that is one past the end. So
      nsTransactionStack::Peek() had to call CurrentItem() instead
      of operator--.

    - I also backed out the changes made to nsTransactionManager.cpp
      cause they are unnecessary with the changes made to
      nsTransactionStack::Peek() above.

r=timeless@bemail.org  sr=hyatt@netscape.com  a=leaf@mozilla.org
2002-02-20 23:22:31 +00:00
rods%netscape.com
785aacab83 1) Makes sure that when a PrintSettings is created it is initialized from the
default printer.
2) Mail now uses the nsIWebBrowserPrint interface to create the PrintSettings
object it caches and uses
3) Editor now creates and caches a PrintSettings object.
Bug 123554 r=dcone sr=attinasi
2002-02-20 03:18:33 +00:00
dbragg%netscape.com
c7478fbb13 Updating the localeVersion to 0.9.9. Fixes bug 126240. r=tao, sr=dveditz 2002-02-20 03:18:10 +00:00
timeless%mac.com
abdca2b41a Bug 114166 rewrite nsDeque
r=akkana sr=alecf
rs=alecf for TestDeque.cpp
2002-02-20 03:08:32 +00:00
cmanske%netscape.com
80d3321447 Update to Composer Publishing UI, b=88208, r=brade, sr=kin 2002-02-20 02:17:46 +00:00
alecf%netscape.com
66e767c7b8 one part of fix for bug 107575 - clean up consumers of nsString::EqualsIgnoreCase and nsString::EqualsWithConversion, to be explicit about case-insensitive compares
r=timeless sr=jag
2002-02-19 22:49:12 +00:00
brade%netscape.com
5150806885 fix to use NS_LITERAL_STRING; bug 26384 r=cmanske sr=kin 2002-02-19 22:14:57 +00:00
cmanske%netscape.com
b3d4a89ff5 Fix another dialog focus racing bug - table properties, b=126049, r=rcassin@supernova.org, sr=dveditz 2002-02-19 15:09:41 +00:00
jfrancis%netscape.com
c56239e860 fixes:
117418: warnings in nsWSRunObject.cpp
98286: splitting paragraphs broken
101041: block transformations could grab too much beyon selection
82813: whitespace handling code needs to do right thing with preformatted text
99545 &
103677: new blocks not always pre-populated with br
41336: better handling of mailcites when splitting or deleting them or portions of them

partial fix for:
46474: creating new blocks kills style settings

r=fm, sr=kin
2002-02-19 12:02:09 +00:00
jfrancis%netscape.com
f9413bd619 fixes:
117418: warnings in nsWSRunObject.cpp
98286: splitting paragraphs broken
101041: block transformations could grab too much beyon selection
82813: whitespace handling code needs to do right thing with preformatted text
99545 &
103677: new blocks not always pre-populated with br
41336: better handling of mailcites when splitting or deleting them or portions of them

partial fix for:
46474: creating new blocks kills style settings

r=fm, sr=kin
2002-02-19 11:52:50 +00:00
cmanske%netscape.com
58dd9abb3a Fixed focus problems and ability to remove background image, b=115858, r=neil@parkwaycc.co.uk, sr=hewitt 2002-02-19 05:29:57 +00:00
akkana%netscape.com
e9d7efb2bb 80805: new find (pref'ed out by default), r=cmanske 2002-02-19 02:24:14 +00:00
akkana%netscape.com
65b47636d6 80805: new editor find dialog (not used by default), files that got missed in a previous checkin. r=cmanske sr=hewitt 2002-02-19 02:17:43 +00:00
glazman%netscape.com
6f35ac34ae alignment problems + removal of useless DIVs when realigning the selection; b=102547, r=jfrancis,sr=kin 2002-02-18 10:49:15 +00:00
glazman%netscape.com
afe567a59f bad test of collapsed selection, had side effect on setting background color; b=121903, r=jfrancis, r=brade, sr=kin 2002-02-18 10:06:07 +00:00
mjudge%netscape.com
4bd6ce5363 small change for STATE_STrIng to STATE_ATTRIBUTE only embedding will notice. 2002-02-18 09:55:58 +00:00
dbaron%fas.harvard.edu
59892aa65e Remove more no-longer-needed nsComponentManager::RegisterComponent calls. Remove remnants of NS_IMPL_IDS macro, associated with long-gone NS_DECLARE_ID. b=125782 r=dougt rs=jag 2002-02-16 16:18:13 +00:00
cmanske%netscape.com
a48a59354d Prevent scope error when using timeout with setfocus in textbox, fix by neil@parkwaycc.co.uk, b=125346, r=cmanske, sr=kin 2002-02-16 02:27:29 +00:00
cmanske%netscape.com
98bb38ac3e Don't try to show empty name on Composer caption, b=121684, r=brade, sr=hewitt 2002-02-16 02:24:04 +00:00
brade%netscape.com
ebacef8405 don't adjust links/image locations if saving locally and starting with about:blank; bug #121980, r=cmanske, sr=kin 2002-02-15 14:36:07 +00:00
cmanske%netscape.com
46cc62e9ab Update for publishing UI, b=88208, r=brade, sr=ben 2002-02-15 06:07:40 +00:00
danm%netscape.com
4bf79e5661 defer SetTextboxFocus in Startup. hack to make bug 103197 appear fixed. code=saari,me r=brendan 2002-02-15 00:09:10 +00:00
cmanske%netscape.com
3daf82f7d4 Expand things done within the 'try {}' in onAccept of Image Properties dialog, b=96477, work by neil@parkwaycc.co.uk, r=cmanske, sr=kin 2002-02-14 02:13:28 +00:00
cmanske%netscape.com
5fd0ae707e Fixed comma mistake in checkin for bug 99620, r=glazman, sr=dveditz 2002-02-12 23:12:22 +00:00
brade%netscape.com
86920ff766 fix type in color conversion (bug 124459) 2002-02-12 15:52:40 +00:00