Re: [webkit-dev] Hunspell based spellchecker

2011-04-24 Thread 坊野 博典
Greetings Hajime-san, Even though this is out of this topic, from the point of a web-application developer, it would be great for WebKit to have a JavaScript API that encapsulates your spellchecker code so JavaScript can use it. Regards, Hironori Bono E-mail: hb...@chromium.org On Wed, Nov 17,

Re: [webkit-dev] Hunspell based spellchecker

2011-01-26 Thread Fabrizio Machado
Hi Hajime, I was looking to implement EditorClientQt::checkSpellingOfString() stub for the qt port. This is part of an effort to enable red squiggle markers for misspelled text. We'd like to show the markers for any editable content when rendering with qtwebkit based browsers. This would rely

Re: [webkit-dev] Hunspell based spellchecker

2011-01-26 Thread Ryan Leavengood
On Wed, Jan 26, 2011 at 1:52 PM, Fabrizio Machado fabrizio.machado...@gmail.com wrote: This would rely on a spelling engine but, as qt has no spell checker, Hunspell integration to WebCore seems appealing. I was headed in this direction when I found this thread and I wonder if you are still

Re: [webkit-dev] Hunspell based spellchecker

2011-01-26 Thread Hajime Morita
Fabrizio, Ryan, thank you for your interest! Although I'm suspending the work at this time, your interest gives me a good reason to restart ;-) I'll CC you in bug(s) and post some status there within weeks. Regards. morrita On Thu, Jan 27, 2011 at 4:23 AM, Ryan Leavengood

Re: [webkit-dev] Hunspell based spellchecker

2011-01-26 Thread Ryan Leavengood
On Wed, Jan 26, 2011 at 6:24 PM, Hajime Morita morr...@google.com wrote: Fabrizio, Ryan, thank you for your interest! Although I'm suspending the work at this time, your interest gives me a good reason to restart ;-) Good to hear! I think having 3 or 4 possible ports being able to use this is

Re: [webkit-dev] Hunspell based spellchecker

2010-11-18 Thread Maciej Stachowiak
On Nov 17, 2010, at 11:44 PM, Hajime Morita wrote: On Thu, Nov 18, 2010 at 3:51 PM, Darin Adler da...@apple.com wrote On Nov 17, 2010, at 10:49 PM, Hajime Morita wrote: In other word, we should make sure that TextChecker interface can have subclasses both inside and outside WebCore.

Re: [webkit-dev] Hunspell based spellchecker

2010-11-18 Thread Hajime Morita
On Fri, Nov 19, 2010 at 4:02 AM, Maciej Stachowiak m...@apple.com wrote: On Nov 17, 2010, at 11:44 PM, Hajime Morita wrote: On Thu, Nov 18, 2010 at 3:51 PM, Darin Adler da...@apple.com wrote On Nov 17, 2010, at 10:49 PM, Hajime Morita wrote: In other word, we should make sure that

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Robert Hogan
On Wednesday 17 November 2010 04:52:36 Hajime Morita wrote: Hi WebKit folks, I'm thinking about porting Hunspell-based spellchecking code from Chromium to WebKit/WebCore. The Qt folks on the list can correct me if I'm wrong but this would be very welcome for Qt. I don't see how a WebCore

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Brent Fulgham
On Wednesday 17 November 2010 04:52:36 Hajime Morita wrote: Hi WebKit folks, I'm thinking about porting Hunspell-based spellchecking code from Chromium to WebKit/WebCore. At least in the Windows implementation (WebKit/WebKit source base), the spell checker is implemented on the client side

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread KwangYul Seo
Hi, Multiple ports can share the implementation if we put spell checker in WebCore. Ports without native spell checker can use Hunspell based spell checker without much efforts. Brew MP port is also interested because it does not have a native spell checker. Regards, Kwang Yul Seo On Thu, Nov

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Hajime Morita
Hi everyone, thank you for your feedback! Now I know there are some positive interest to Hunspell integration. So I'll start investigation and come back once I have some progress. @bflgham What would be the advantage in placing the spell checker in WebCore, as opposed to the relatively

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Darin Adler
Safari on Windows provides a spelling checker outside of WebKit. If we change the way spelling checking is organized inside WebKit, we need to preserve that feature in the WebKit used by Safari on Windows. -- Darin ___ webkit-dev mailing list

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Hajime Morita
On Thu, Nov 18, 2010 at 3:33 PM, Darin Adler da...@apple.com wrote: Safari on Windows provides a spelling checker outside of WebKit. If we change the way spelling checking is organized inside WebKit, we need to preserve that feature in the WebKit used by Safari on Windows. Thank you for

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Darin Adler
On Nov 17, 2010, at 10:49 PM, Hajime Morita wrote: In other word, we should make sure that TextChecker interface can have subclasses both inside and outside WebCore. Yes, in this model the abstract base class inside WebCore will need a derived class inside Windows WebKit that then in turn

Re: [webkit-dev] Hunspell based spellchecker

2010-11-17 Thread Hajime Morita
On Thu, Nov 18, 2010 at 3:51 PM, Darin Adler da...@apple.com wrote On Nov 17, 2010, at 10:49 PM, Hajime Morita wrote: In other word, we should make sure that TextChecker interface can have subclasses both inside and outside WebCore. Yes, in this model the abstract base class inside WebCore

[webkit-dev] Hunspell based spellchecker

2010-11-16 Thread Hajime Morita
Hi WebKit folks, I'm thinking about porting Hunspell-based spellchecking code from Chromium to WebKit/WebCore. Although it's unclear whether the porting is feasible, I'd like to hear how much interest is there from other ports before starting actual work. Because the main goal is to make

Re: [webkit-dev] Hunspell based spellchecker

2010-11-16 Thread Kevin Ollivier
Hi Hajime, On Nov 16, 2010, at 8:52 PM, Hajime Morita wrote: Hi WebKit folks, I'm thinking about porting Hunspell-based spellchecking code from Chromium to WebKit/WebCore. Although it's unclear whether the porting is feasible, I'd like to hear how much interest is there from other ports