cmanske%netscape.com
c52a827c0d
Added new JavaScript files
1999-05-05 23:33:34 +00:00
cmanske%netscape.com
9ebbada5a7
Split JavaScript out of XUL into separate files
1999-05-05 23:30:21 +00:00
cmanske%netscape.com
5f7dc926d8
Added UI for paragraph style and preliminary versions of image and link dialogs
1999-05-05 23:29:18 +00:00
akkana%netscape.com
1f3151a20d
- Rename iDirection enum to ECollapsedSelectionAction
...
- Initial implementation of Insert HTML
1999-05-05 23:27:17 +00:00
waterson%netscape.com
dc4863fc21
Fix nsCOMPtr bustage.
1999-05-05 05:56:58 +00:00
buster%netscape.com
3ea6d7ff2b
fixed mac bustage
1999-05-05 05:17:59 +00:00
buster%netscape.com
cadc514e1d
added a param to GetPriorNode and GetNextNode to tell these methods whether to use or skip
...
non-editable content.
added some comments, turned off some debugging flags.
1999-05-05 04:51:54 +00:00
buster%netscape.com
99a96a39ec
1. block transformation infrastructure is now in place. We can go ahead and implement interesting
...
features like set paragraph style, set list type, indent, etc. I'm sure there's holes in my
implementation that these high level features will make obvious.
2. I've factored a lot of utility methods from several modules into nsEditor as public static methods.
This makes them easily accessable to all, and will help Joe and I remove redundant methods.
3. I changed the HTML tags to lower case, and made all string compares case-insensitive. No, this
isn't quite the right thing to do, but we don't have atoms from layout yet. The Right Thing is for us
to reuse those atoms.
1999-05-05 04:05:19 +00:00
kin%netscape.com
dc11fb7a86
Renamed NS_TEXTSERVICE_CID to NS_SPELLCHECKER_CID.
1999-05-04 22:03:32 +00:00
kin%netscape.com
4d9e8272c4
Initial checkin of file.
1999-05-04 21:54:11 +00:00
jfrancis%netscape.com
f32cb5f466
fixing problem with undo of join txn
1999-05-04 08:03:51 +00:00
jfrancis%netscape.com
6035561262
revamped join on deletion
1999-05-04 08:03:07 +00:00
tague%netscape.com
83e78f89e5
Fixed bug #5527 (Editor is not able to accumulate successive Japanese input)
1999-05-03 22:57:48 +00:00
sfraser%netscape.com
3b2d7aef50
Memory leak fixes for bug 5870. r mjudge, a chofmann.
1999-05-03 22:26:07 +00:00
jfrancis%netscape.com
724e8503af
fix for bug 5832; bad constant for nbsp value. rvd - floppy moose; appv - chofmann
1999-05-03 22:16:02 +00:00
mjudge%netscape.com
f9a664a948
ok done Simon reviewed 5870. choffman approved for M5
1999-05-03 21:52:19 +00:00
kostello%netscape.com
860a8b9cfa
Changed:
...
nsI*Editor::OutputText(nsString& aOutputString);
nsI*Editor::OutputHTML(nsString& aOutputString);
These methods always returns back a Unicode version of whatever is in the content model. It is the
responsibility of the caller then to call whatever converter is required to convert to the appropriate
charset.
Added:
nsI*Editor::OutputText(nsIOutputStream* aOutputStream, nsString* aCharsetOverride = nsnull)
nsI*Editor::OutputHTML(nsIOutputStream* aOutputStream, nsString* aCharsetOverride = nsnull)
These methods output the the current content model to aOutputStream. The document is encoded using the
document defined charset or if the user passes in a non-null value for aCharsetOverride then this
encoding overrides the encoding used by the document.
1999-05-03 18:48:39 +00:00
kostello%netscape.com
b9a1437db0
Added OutputText and OutputHTML that take in an nsIOutputStream.
1999-05-03 18:47:04 +00:00
jfrancis%netscape.com
8bd92b238d
fix for bug 5782 - check for null return when getting prev/next node is deletion rules; rvd floppy moose, appr chofmann
1999-05-01 19:37:50 +00:00
buster%netscape.com
c6d23e3e18
with permission from chofmann:
...
1. fix for bug 5796, crash on exit. This was a bad, bad memory smudge on my part, easily fixed by doing the right ref counting in the
right places.
2. some preliminary code for M6 block transformations has leaked into this checkin. It's safer than trying to re-code the fix above into
a fresh tree. Unless you're making calls to do block transformations, you won't see any difference.
1999-04-30 22:40:18 +00:00
joki%netscape.com
d1f2b3ef88
Adding scrolling fixes to fix bug #3999 , A: chofmann
1999-04-30 19:38:39 +00:00
akkana%netscape.com
3b7263ff95
5734: put back working copy from version 1.17, which got accidentally stomped in a cvs merge. a=cyeh,kostello
1999-04-30 18:03:39 +00:00
mjudge%netscape.com
4b46397958
hack to get redraw to work on setting bold or italics editor only
1999-04-30 00:06:40 +00:00
mjudge%netscape.com
b77df20b6e
FIXING M5 BUGS: making weak links to stop extra addreff to presshell. fixing xul to set editor doc type to "content"
1999-04-29 20:21:04 +00:00
pinkerton%netscape.com
f029f1c432
fix build bustage comparing raw pointer to nsCOMPtr.
1999-04-29 01:01:04 +00:00
buster%netscape.com
457a1555e7
approved bug fix for infinite loop when typing a space in a document with only a single text node
1999-04-29 00:14:05 +00:00
sfraser%netscape.com
b471a1fc77
Move ShowClipboard to the Debug menu
1999-04-28 05:20:05 +00:00
akkana%netscape.com
28ec093fff
Fix location of xul files
1999-04-28 01:36:10 +00:00
ftang%netscape.com
6115c0b0c5
pass charset info from the current doc to the parser
1999-04-27 23:52:39 +00:00
kin%netscape.com
a716fda659
Removed enabled code that was ifdef'd with HAVE_EDIT_ACTION_LISTENERS.
1999-04-27 19:17:35 +00:00
kin%netscape.com
2426441f95
Added AddEditActionListener() and RemoveEditActionListener() methods.
1999-04-27 19:16:26 +00:00
kin%netscape.com
6aa1c4b270
Modified nsIEditActionListener to have Will*() and Do*() methods. Added
...
nsIEditActionListener support to nsEditor.cpp and nsEditor.h.
1999-04-27 17:14:28 +00:00
rods%netscape.com
285b916f78
Added "EditorShowClipboard" function
1999-04-27 02:45:37 +00:00
rods%netscape.com
367d5114e2
Added seprartor and ShowClipboard menu item
1999-04-27 02:44:55 +00:00
sfraser%netscape.com
a2d921d85e
Advance the iterator so we don't freeze bringing up the link dialog.
1999-04-27 01:10:10 +00:00
buster%netscape.com
8f5def6551
just removing a printf
1999-04-26 23:41:13 +00:00
cmanske%netscape.com
7bae157253
Removed reference to missing file
1999-04-26 20:47:55 +00:00
sfraser%netscape.com
3947ef627f
Updated project
1999-04-26 19:52:04 +00:00
law%netscape.com
f51accb75c
Add txtsvc to get find dialog building on win32 and unix
1999-04-26 19:46:01 +00:00
sspitzer%netscape.com
90b0dbe615
more cvs ignorage
1999-04-26 18:29:39 +00:00
sspitzer%netscape.com
fcfd7c1d8b
cvs ignorage of generated makefiles
1999-04-26 18:26:05 +00:00
jfrancis%netscape.com
3df268e5de
adding list to sample html
1999-04-26 14:27:02 +00:00
jfrancis%netscape.com
dfd141ac76
more html typing rules implementation
1999-04-26 14:08:52 +00:00
rickg%netscape.com
f822b17f07
sync with nsString2
1999-04-24 01:39:50 +00:00
kin%netscape.com
0a1c9c3096
Misc changes to the nsITextServicesDocument interface.
1999-04-23 16:52:28 +00:00
bruce%cybersight.com
0e89b6e2ab
Must define inline methods _before_ calling them on AIX 4.2 with xlC.
1999-04-23 16:47:30 +00:00
kin%netscape.com
8a94321424
Removed spellchk from the list of directories to build.
1999-04-23 15:47:33 +00:00
rods%netscape.com
a570e5b6c0
Switch Drag&Drop over to nsCOMPtr and fixed service release
1999-04-23 14:43:30 +00:00
rods%netscape.com
4f4cf854ea
Switch Paste support over to nsCOMPtr
1999-04-23 14:41:32 +00:00
akkana%netscape.com
a2c7b3006a
Fix linux startup crash parsing entity defs
1999-04-22 22:30:44 +00:00
buster%netscape.com
0423fb36df
vastly improved type-in state handling. smaller and faster
1999-04-22 14:46:53 +00:00
buster%netscape.com
d4f70efea8
remove block
1999-04-22 14:45:48 +00:00
warren%netscape.com
c289c670cd
Added Write(nsIInputStream) and Flush to nsIOutputStream.
1999-04-22 07:31:03 +00:00
rickg%netscape.com
a059047f9d
update to sync with nsString2
1999-04-22 06:19:44 +00:00
mcafee%netscape.com
8c94674b00
Removing NEW_CLIPBOARD_SUPPORT ifdef.
1999-04-22 05:41:51 +00:00
sspitzer%netscape.com
128e16b958
add the cvs ignore file. (Am I the only one who ever does this?)
1999-04-22 04:09:35 +00:00
sspitzer%netscape.com
a1b51ff2e4
add the cvsignore files
1999-04-22 04:08:37 +00:00
sfraser%netscape.com
07cfc3750f
Install resources inside 'default' directory in content, skin etc.
1999-04-22 02:57:57 +00:00
buster%netscape.com
84cc0a7462
added the notion of contain vs. replace for block transformations.
1999-04-21 21:01:59 +00:00
buster%netscape.com
44f4dcec30
fixed a bug in handling text properties that have an attribute, such as <FONT color=...>
1999-04-21 21:01:30 +00:00
cmanske%netscape.com
6fe595eca4
Moved global java script variables into js file
1999-04-21 20:55:31 +00:00
sfraser%netscape.com
1079026e2b
Fix manifest for editor dialogs
1999-04-21 20:53:44 +00:00
cmanske%netscape.com
26373876b4
Fixed problems with insert link dialog
1999-04-21 20:46:40 +00:00
akkana%netscape.com
74b899ecad
composer ui should be installed to chrome/editor/composer, not just chrome/editor
1999-04-21 20:44:59 +00:00
cmanske%netscape.com
cf0e05cd03
Fixed error in link properties dialog reference
1999-04-21 20:31:17 +00:00
sfraser%netscape.com
3e50cddfb6
Fix the chrome URL for the bold GIF
1999-04-21 19:31:36 +00:00
sfraser%netscape.com
c95b7f0a83
Set export by pragma and fragment names.
1999-04-21 19:12:08 +00:00
sfraser%netscape.com
789195888f
Added EditorInitPagePlain.html
1999-04-21 19:11:19 +00:00
sfraser%netscape.com
974edaafa3
First Checked In.
1999-04-21 19:11:18 +00:00
cmanske%netscape.com
6228e33112
Added simple dialogs for insert link and restructured ui source directories
1999-04-21 18:53:55 +00:00
jfrancis%netscape.com
4eb392665e
more typing rules work - space and tab occassionally do the right thing now
1999-04-21 14:49:58 +00:00
kin%netscape.com
12277f312f
Added code to track iterator status, and modified first/last/next/prev
...
methods to set the iterator based on this status.
1999-04-21 14:38:15 +00:00
buster%netscape.com
d0c30e4948
more block transformation WIP: nested blocks work much better now
1999-04-21 04:08:43 +00:00
cmanske%netscape.com
7f01f9158a
Removed makefiles not needed
1999-04-21 03:44:24 +00:00
cmanske%netscape.com
19624c3e5d
Added new dialog XUL for editor
1999-04-21 03:38:29 +00:00
cmanske%netscape.com
70ca9dc98e
Built new chrome directories for Editor
1999-04-21 03:35:51 +00:00
cmanske%netscape.com
a5eea2eb19
Added general CSS file for main editor window
1999-04-21 03:31:41 +00:00
sfraser%netscape.com
f4441d5a7e
First Checked In.
1999-04-20 22:51:57 +00:00
sfraser%netscape.com
aa63654780
First Checked In.
1999-04-20 22:24:20 +00:00
buster%netscape.com
f72d765be4
more factoring
1999-04-20 22:02:02 +00:00
kin%netscape.com
8c816eb4aa
Commented out debugging printfs and added HAVE_EDIT_ACTION_LISTENERS ifdef
...
to fix build bustage.
1999-04-20 21:54:10 +00:00
mcmullen%netscape.com
f662c72c7b
Fix busted debug build by adding TextEditorTest.cpp. Somebody else should fix this properly. Grrr.
1999-04-20 21:41:02 +00:00
jfrancis%netscape.com
08f41d1832
File Removed.
1999-04-20 21:40:48 +00:00
jfrancis%netscape.com
c7dd8a6be9
First Checked In.
1999-04-20 21:39:53 +00:00
sfraser%netscape.com
ebc0d2da0b
First Checked In.
1999-04-20 20:48:46 +00:00
kin%netscape.com
1d5d418552
Some changes to keep the offset table in sync with editor changes to the DOM.
1999-04-20 17:59:19 +00:00
kin%netscape.com
2a887f14f1
Added nsTSDNotifier.cpp to build list.
1999-04-20 17:57:48 +00:00
kin%netscape.com
18794ac117
Initial checkin of file.
1999-04-20 17:57:20 +00:00
jfrancis%netscape.com
54241dd9c1
fixing access path
1999-04-20 17:55:09 +00:00
jfrancis%netscape.com
1ac6394a63
First Checked In.
1999-04-20 17:53:46 +00:00
kin%netscape.com
991e1b0db6
Added nsIEditActionListener.h to list of exported headers.
1999-04-20 17:51:26 +00:00
buster%netscape.com
f2c86d8f47
preliminary work for applying block transformations to content.
1999-04-20 17:50:56 +00:00
buster%netscape.com
7f1d6dfe95
factoring of text property code for reuse.
...
extended APIs to handle fonts -- the trick here is to allow attributes and values
to effectively describe independent properties.
1999-04-20 17:49:34 +00:00
buster%netscape.com
8f038d3ca8
preliminary work for applying block transformations to content. works for simple selections.
...
remove block parent not yet implemented.
1999-04-20 17:47:12 +00:00
kin%netscape.com
9ad95fe43d
Initial checkin of file.
1999-04-20 17:44:44 +00:00
buster%netscape.com
b2ce083800
added tests for fonts and block transformations
1999-04-20 17:43:26 +00:00
buster%netscape.com
f9fbaf0b1a
added atoms for H1 and H2
1999-04-20 17:42:07 +00:00
buster%netscape.com
f3c8213457
fix warning
1999-04-20 17:41:00 +00:00
buster%netscape.com
c3f43edd68
allow delete of a node that is not in the document tree. This is a no-op.
1999-04-20 17:40:15 +00:00
buster%netscape.com
ced0729237
*** empty log message ***
1999-04-20 17:39:23 +00:00