spellchecking

any way for the web page itself to turn off spellcheck in iPad Safari?

My app is a full-text search interface for ancient texts. The input is always going to be an ancient word. iPad Safari insists on pointing out that it is not correctly spelled -- for modern English, which it ain't. Chrome honors this, iPad Safari does not: <input type="text" spellcheck="false" > Is there something analogous for ...

I cannot access suggestions? - Django Haystack + Whoosh

Hi folks, I'm using Whoosh 3.18. 1) I'm following the docs here. from whoosh.store import FileStorage is not working and therefore anything else I try to accomplish with it. 2) I cannot figure out how to include suggestions within my search templates. I'm using the template provided within the docs' tutorial. Help would be g...

How can I spell check words ignoring optional hyphens?

I am using a RTE (TinyMce) for text creation in a browser. The RTE is inserting non-visible optional hyphens (code: '' or '\u00ad') into words of a minimum length for hyphenation as the user writes. The problem i got now is to find a spellchecker that is able to check my words even though they consist not only of letters but additionall...

What is the best way to implement a FSA/FSM in Java

Hi every one, I have a big finite state automaton with like 50 states and each state has avg. 3-4 transitions to other states. So I don't think the "state pattern" is suitable for this. This FSM tends to be a spellchecker and morphological analyzer for some agglutinative language. What is the best way to implement a FSA/FSM in Java or ...

iPhone Programming: Deactivate spell check in UITextView

UITextAutocorrectionTypeNo didn't work for me. I'm working on a crossword app for the iPhone. The questions are in UITextViews and I use UITextFields for the User-Input of each letter. By touching a question(UITextView), the TextField for the first answer char becomesFirstResponder. It all works fine but the UITextViews are still spell...

Recommendations for a multi-language spell checking control for ASP.NET

Looking for recommendations for a control which make can do spell checking for various languages. ...

How can I disable the spell checker on text inputs on the iPhone

Sometimes the spell checker is unnecessary, captchas, usernames, emails, ect. Is there a way disable it on some text inputs/text areas? ...

UITextView Spelling correction is not working some times

Hi all, I am implementing spelling correction in my UITextView like this [txtView setAutocorrectionType:UITextAutocorrectionTypeYes]; [txtView setAutocapitalizationType:UITextAutocapitalizationTypeWords]; It is working sometimes but, some times it is not working.. Please suggest me ho wi works. ...

"Large" scale spell checking in Python

Surprisingly I've been unable to find anyone else really doing this, but surely someone has. I'm working on a python project currently that involves spell checking some 16 thousand words. That number of words is only going to grow unfortunately. Right now I'm pulling words from Mongo, iterating through them, and then spell checking them ...

MS Word macro to fix closest spelling error

I'm trying to create a fairly simple macro in Word 2010 using Visual Basic. All it needs to do is press Alt+F7 to select the closest spelling error, then press Enter to choose the first spelling suggestion, then press Shift+F5 to return to the previous edit point. I tried this: SendKeys "%{F7}" SendKeys "~" SendKeys "+{F5}" but the co...

freetextbox spellchecking not working in IE

I have an .aspx page and am using the FTB:FreeTextBox control. Seems to be working fine except in conjunction with the jQuery spellchecker. In IE the spell checking is not working in the textbox. Is there something specific that its looking for to get it to work in IE? ...

Javascript based spell-checkers for web applications

Oh great StackOverflow, give me guidance as my web application is going astray... I have just received a requirement to implement spell checking on a web application that we are creating. I know all about FF, Chrome, IESpell, etc. but this one is the client's request. Given that the only way to implement something like this (real ti...

Search term suggestions

This question has been asked in various ways before, but I'm wondering if people who have experience with automatic search term suggestion could offer advice on the most useful and efficient approaches. Here's the scenario: I'm just starting on a website for a book that is a dictionary of terms (roughly 1,000 entries, with 300 word exp...

Suggestions for spell checking HTML with Aptana plugin for Eclipse

I'm using the Aptana plugin for Eclipse to do web development. Apparently spell checking is disabled in Aptana for performance reasons (see https://aptanastudio.tenderapp.com/discussions/questions/140-invoking-the-version-20-spell-checker). Currently I drop to a shell and run a script that in turn runs aspell on all my *.html files, bu...

Use Office 2000 proofing tools in Access 2010 Runtime

I am using Access 2010 Runtime to run my custom database application. Office 2000 professional is also installed on the same machine. I use DoCmd.RunCommand acCmdSpelling a couple different place to perform a spell check on the data entered. This works great on the full version of Access 2000 but when I open it up in 2010 Runtime I get ...

Get in column B the words of column A that are `not in dictionary`

How could I create a macro that would check each cell of column A, find the words that are not in the defined dictionary, and write them (separated by space) in the next cell. In the picture below you can see an example of the worksheet after that macro was completed. The complete idea was to get a (varchar) column from a database and...

Is there a way to check the spelling of words in a character vector?

The text to be checked is in Greek, but I would like to know if it can be done for English words too. My initial idea is described here, and I have already found a way to do it using VBA. But I wonder if there's a way to do it using R. If there isn't a way in R, do you think of something better than Excel-vba? ...

Linux tool to check spelling of comments in c/c++ source code

What software do you suggest to check spelling of comments contained in c/c++ source code (especially doxygen comments)? I'm looking something that will parse only comments so I can easily find mistakes and correct them. The question is general but to be more specific - I'm using CodeLite IDE. ...

VIM Spellcheck, Within Quoted Strings - PHP

Hi, I was wondering if it would be possible to run the vim spell checker while coding with PHP. I can run it if I disable syntax highlighting, and it highlights almost all methods/function names because they are not English words. So, my question is this, can I run the spell check on just the strings within PHP files? For example,...

Where can I learn more about the Google search "did you mean" algorithm?

Possible Duplicate: How do you implement a Did you mean? I am writing an application where I require functionality similar to Google's "did you mean?" feature used by their search engine: Is there source code available for such a thing or where can I find articles that would help me to build my own? ...