Closed
Bug 180346
Opened 22 years ago
Closed 13 years ago
Impl new interfaces for external spell checkers
Categories
(Core :: Spelling checker, defect)
Core
Spelling checker
Tracking
()
RESOLVED
INVALID
mozilla1.3beta
People
(Reporter: rods, Unassigned)
References
Details
Attachments
(1 file, 7 obsolete files)
4.48 KB,
image/gif
|
Details |
Comment 1•22 years ago
|
||
Can you explain what this is about?
Reporter | ||
Comment 2•22 years ago
|
||
I have a new set of interfaces based on David Einsteins work that will enable
external spell checkers to work within Mozilla. The default spell checker will
still be our SC for Netscape. But David said he would port his MySpell over to
work with Mozilla so then Mozilla will have a spell checker.
Status: NEW → ASSIGNED
Updated•22 years ago
|
Blocks: spellchecker
Comment 3•22 years ago
|
||
oh so what did you need on that.
Reporter | ||
Updated•22 years ago
|
Target Milestone: --- → mozilla1.3alpha
Reporter | ||
Comment 4•22 years ago
|
||
These are the new interfaces for enabling Mozilla to work with external
spellcheckers
Reporter | ||
Comment 5•22 years ago
|
||
Here are the interfaces with what I hope is the correct MPL and the new glue
code for mozilla.
Attachment #106523 -
Attachment is obsolete: true
Reporter | ||
Updated•22 years ago
|
Attachment #106525 -
Flags: superreview?(kin)
Attachment #106525 -
Flags: review?(jfrancis)
Reporter | ||
Comment 6•22 years ago
|
||
Diagram of the object hierarchy
Comment 7•22 years ago
|
||
Is bug 58615 a dup of this one? Bug 56301 comment #234 seems to imply that it is.
Updated•22 years ago
|
Reporter | ||
Comment 10•22 years ago
|
||
Greg, what this means is that someone can now provide and impl of the apple
spellcheck to these new interfaces.
Comment 11•22 years ago
|
||
Thanks, rods. Sounds like this should be All/All.
OS: Windows 2000 → All
Hardware: PC → All
Reporter | ||
Comment 12•22 years ago
|
||
Comment on attachment 106525 [details] [diff] [review]
patch (interfaces and new glue code)
The interfaces are fine, I am obsoleting this because I have made some
significant changes to some of the glue code and I don't want this patch to be
reviewed. Plus, I think I will be moving this to the "extensions" directory.
Attachment #106525 -
Attachment is obsolete: true
Updated•22 years ago
|
Attachment #106525 -
Flags: superreview?(kin)
Attachment #106525 -
Flags: review?(jfrancis)
Reporter | ||
Comment 13•22 years ago
|
||
Reporter | ||
Comment 14•22 years ago
|
||
Reporter | ||
Comment 15•22 years ago
|
||
Reporter | ||
Comment 18•22 years ago
|
||
This patch contains only the changes for splitting the glue code apart and
being able to spellcheck an arbitrary selection
Attachment #109251 -
Attachment is obsolete: true
Attachment #109252 -
Attachment is obsolete: true
Attachment #109254 -
Attachment is obsolete: true
Comment 19•22 years ago
|
||
+#ifdef XP_MAC
+#define IS_NBSP_CHAR(c) (((unsigned char)0xca)==(c))
+#else
+#define IS_NBSP_CHAR(c) (((unsigned char)0xa0)==(c))
+#endif
That might need to be
#if defined(XP_MAC) || defined(XP_MACOSX)
Reporter | ||
Comment 20•22 years ago
|
||
These files will put the mozilla/extensions/spellcheck into the build
Reporter | ||
Updated•22 years ago
|
Attachment #110025 -
Flags: superreview?(kin)
Attachment #110025 -
Flags: review?(jfrancis)
Reporter | ||
Updated•22 years ago
|
Attachment #110000 -
Flags: superreview?(kin)
Attachment #110000 -
Flags: review?(jfrancis)
Comment 21•22 years ago
|
||
Rod,
what is the status on this bug? Can we start porting mozdev's spell checker to
the new glue code?
Comment 22•22 years ago
|
||
Any chance of this going in during the 1.4 cycle?
Comment 23•22 years ago
|
||
Has the now Mozilla roadmap any influence on this bug? Will
Minotaur/Thunderbird/Moz1.5 ship with a spellchecker? AFAIK additions/plugins
should be easier to handle with the new approach. Will the spellchecker remain a
mozdev addon, or will it once be part of the distribution?
Comment 24•21 years ago
|
||
Now that mozdev spellchecker is in the tree, is this bug still relevant?
Component: Editor: Core → Spelling checker
QA Contact: sujay → core.spelling-checker
Updated•15 years ago
|
Assignee: rods → nobody
Comment 25•13 years ago
|
||
I'm pretty sure this is no longer valid.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → INVALID
Updated•13 years ago
|
Attachment #110000 -
Attachment is obsolete: true
Attachment #110000 -
Flags: superreview?(kinmoz)
Attachment #110000 -
Flags: review?(mozeditor)
Updated•13 years ago
|
Attachment #110025 -
Attachment is obsolete: true
Attachment #110025 -
Flags: superreview?(kinmoz)
Attachment #110025 -
Flags: review?(mozeditor)
You need to log in
before you can comment on or make changes to this bug.
Description
•