jortho.sourceforge.netJOrtho - an Open Source Java spell-checker

jortho.sourceforge.net Profile

jortho.sourceforge.net

Maindomain:sourceforge.net

Title:JOrtho - an Open Source Java spell-checker

Description:JOrtho is an Open Source spell checker programmed in Java and attachable to any JTextComponent.

Keywords:jortho,orthography,spell check,java,open source,jtextcomponent,jstring...

Discover jortho.sourceforge.net website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

jortho.sourceforge.net Information

Website / Domain: jortho.sourceforge.net
HomePage size:14.473 KB
Page Load Time:0.150595 Seconds
Website IP Address: 216.105.38.10
Isp Server: Internet Express

jortho.sourceforge.net Ip Information

Ip Country: United States
City Name: San Diego
Latitude: 32.89440536499
Longitude: -117.20095062256

jortho.sourceforge.net Keywords accounting

Keyword Count
jortho15
orthography1
spell check4
java7
open source2
jtextcomponent3
jstring0

jortho.sourceforge.net Httpheader

Server: nginx/1.14.0 (Ubuntu)
Date: Tue, 25 Feb 2020 04:08:31 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding, Host, Accept-Encoding
Last-Modified: Mon, 11 Mar 2013 11:28:04 GMT
ETag: W/"3545-4d7a4775c7900"
Cache-Control: max-age=600
Expires: Tue, 25 Feb 2020 04:18:30 GMT
X-From: sfp-web-5
Content-Encoding: gzip

jortho.sourceforge.net Meta Info

content="text/html; charset=utf-8" http-equiv="Content-Type"/
content="JOrtho - an Open Source java spell checker" name="title"/
content="index,follow" name="robots"/
content="jortho,orthography,spell check,java,open source,jtextcomponent,jstring" name="keywords"/
content="JOrtho is an Open Source spell checker programmed in Java and attachable to any JTextComponent." name="description"/
content="i-net software" name="author"/
content="i-net software" name="copyright"/
content="1 week" name="revisit-after"/
content="no" http-equiv="imagetoolbar"/

216.105.38.10 Domains

Domain WebSite Title

jortho.sourceforge.net Similar Website

Domain WebSite Title
jortho.sourceforge.netJOrtho - an Open Source Java spell-checker
osalt.comFind Open Source Alternatives to commercial software | Open Source Alternative - osalt.com
fossasia.orgFOSSASIA | Asia's Open Technology Organization - Developing Open Source Software, Open Hardware, Ope
ardupilot.comOpen Source Drone Software. Versatile, Trusted, Open. ArduPilot.
ardupilot.orgOpen Source Drone Software. Versatile, Trusted, Open. ArduPilot.
planner.ardupilot.comOpen Source Drone Software. Versatile, Trusted, Open. ArduPilot.
firmware.eu.ardupilot.orgOpen Source Drone Software Versatile Trusted Open
opensourceecology.dozuki.comOpen Source Ecology Documentation - Open Source Ecology
ubuntu.osuosl.orgOpen-Source Lab
oss.oracle.comOracle Open Source
opensource.spotify.comOpen Source @ Spotify.com
ftp.osuosl.orgOpen-Source Lab
vectorlinux.osuosl.orgOpen-Source Lab
ejbca.orgEJBCA - The Open Source CA
fedora.osuosl.orgOpen-Source Lab

jortho.sourceforge.net Traffic Sources Chart

jortho.sourceforge.net Alexa Rank History Chart

jortho.sourceforge.net aleax

jortho.sourceforge.net Html To Plain Text

JOrtho - a Java spell-checking library JOrtho (Java Orthography) is a Open Source spell-checker entirely written in Java. Its dictionaries are based on the free Wiktionary project and can therefore be updated for virtually any language. The library works with any JTextComponent from the Swing framework. This includes JTextPane, JEditorPane and JTextArea. Table of Contents Features System Requirements What it looks like Download Licensing FAQ Creating Dictionaries Changes Features What does the library do when it is bound to a JTextComponent? highlight the potentially wrongly spelled word offer a context menu with suggestions for a correct form of the word context menu with options to change the checking language dialog (when pressing F7 key) to continuously spell check the text user-defined dictionary for words that are not in the global one (this is an option that appears inside the continuous checking dialog) translated spell checker GUI so users will see buttons and labels in the language of the current locale standalone API , no server is required but applets are possible, see the sample . detects capitalization errors enable or disable each feature separately System Requirements JOrtho has the following requirements to run smoothly: Java 5 or higher 2 - 5 MB free memory in the JavaVM (depending on the dictionary) What it looks like There is a small live sample applet of JOrtho where you can test the spelling of a text. You can freely modify this text to get an impression of JOrtho in action. Download The free tool and the dictionaries can be downloaded at . The API is available here . You may also view a live sample . Licensing JOrtho is published under the GNU General Public License (GPL) for inclusion in programs published under a compatible open-source license. If you want to use JOrtho in a commercial product then you can order it in our shop . If you have further questions on licensing, please contact: Sales@inetsoftware.de FAQ Which languages are supported by JOrtho? Please have look at the download area at SourceForge . JOrtho does not support my language. How can I add a language? Have a look at the Wiktionary project for your language. There should be at minimum 50.000 entries. Translate the resource file of JOrtho into your language and send it to us . Help us on parsing the Wiktionary for your language. We will have some questions to the language dependent format of the flexion (i.e. the various grammatical forms of words). Where can I get support for this tool? For the GPL license, support is available on . For the commercial license, support is available via e-mail . For any other questions, please contact us . Some important words are missing in the dictionary. How can I add them? Look in the W iktionary for your language. If the word is missing, then add it. If the word exists, then look at how recent the entry was added/created. We will be creating new dictionaries periodically. It could also be that JOrtho is incorrectly parsing the entry. In this case, please let us know. Who is responsible for JOrtho? JOrtho is an Open Source project of i-net software Creating Dictionaries File Format The dictionaries files are a list of words. Every word is saved in a separate line. The word list is saved in UTF8 encoding. The resulting file is compressed with gzip. Generate dictionaries from Wiktionary The dictionaries are based on the Wiktionary dictionaries. This is a step by step description how you can generate a new dictionary version. Download the data from Wiktionary. The file for the English language is http://download.wikimedia.org/ en wiktionary/latest/ en wiktionary-latest-pages-articles.xml.bz2 Replace the red part with your language. Some languages also require the data of the English Wiktionary (currently Polish and Arabic) Extract the XML file from the archive Download or check out the sources of JOrtho and compile it. Execute the command java -Xmx256M com.inet.jorthodictionaries.BookGenerator en <wiktionary folder> Replace the red part with your language. Changes Changes in Version 0.1 (2007-12-13) This was the initial public version. Changes in Version 0.2 (2008-01-02) Threading problems fixed. Single characters are ignored. The extension for the dictionaries can be set now. This fixes a problem with unknown extensions and IIS. Added support for a configuration file. Added support for formatted text. Improved suggestion list. Added a reference implementation for UserDictionaryProvider. Added an editor for the user dictionary. Changes in Version 0.3 (2008-03-11) Use mouse position and not cursor position in text for suggestions. Added support for Escape key. Added alphabetical sort order in the user dictionary editor. Added support for setting an application name. Added some improvements to the user dictionary editor. Application sample added. The method SpellChecker.showSpellCheckerDialog( JTextComponent ) was added. Italian, Spanish, French and Russian translation added. Dictionaries for Italian, Spanish and French added. Support of capitalization improved. The class SpellCheckerOption added and add as optional parameter to many methods. A JPopupMenu with suggestion was added. Changes in Version 0.4 (2008-12-05) Added an Icon for the dialogs. This only works with Java 6. Add the polish translation. The pressing of the ENTER key in text and creating a new paragraph has not handle correctly the highlight. The effect can be doubled underling. Email addresses and web addresses will be ignored. Added the options IgnoreCapitalization, IgnoreAllCapsWords and IgnoreWordsWithNumbers. Translations for Czech und Slovak are added. A memory leak in SpellChecker.createLanguagesMenu() was fixed. The spell checker dialog position is set relative to the visible rectangle and not the bounds rectangle. A possible IllegalArgumentException which could occur with the context menu if the mouse pointer was not on a valid position was fixed. Changes in Version 0.5 (2010-06-10) Add the Croatian translation. Add the interface CustomDictionaryProvider. Translation for Dutch added. After a change in the spell checker dialog the search has continue from the wrong position if it was not the first sentence in the current paragraph. Changes in Version 1.0 (2013-03-11) The method SpellChecker.isDictionaryLoaded() was added. The dictionary is now reloaded after deleting a word from the custom dictionary. Reduced the temporary memory usage on loading a dictionary. For example for the current English dictionary memory usage reduced from 47 MB to 30 MB. Fix a bug in the suggestion list where there are shorter words that start with the same characters. Translation for Danish added. Words ending with a period such as "etc." are checked now. Handle a colon like a period: the next word can start in upper case. Add a tool for converting a plain txt file with words to a dictionary. Dictionaries are searched in the classpath if there is no base URL. Translations for Portuguese added. Handle words with curly apostrophe (’) for the French wiktionary. Added an "about" dialog. Improved the parser for the Spanish dictionary....

jortho.sourceforge.net Whois

"domain_name": "SOURCEFORGE.NET", "registrar": "TUCOWS, INC.", "whois_server": "whois.tucows.com", "referral_url": null, "updated_date": [ "2019-07-23 03:49:27", "2019-07-23T03:49:27" ], "creation_date": [ "1999-08-08 04:48:02", "1999-08-08T04:48:02" ], "expiration_date": [ "2020-08-08 04:47:54", "2020-08-08T04:47:54" ], "name_servers": [ "NS1.DNSMADEEASY.COM", "NS2.DNSMADEEASY.COM", "NS3.DNSMADEEASY.COM", "NS4.DNSMADEEASY.COM", "ns1.dnsmadeeasy.com", "ns4.dnsmadeeasy.com", "ns3.dnsmadeeasy.com", "ns2.dnsmadeeasy.com" ], "status": [ "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited" ], "emails": "domainabuse@tucows.com", "dnssec": "unsigned", "name": "REDACTED FOR PRIVACY", "org": "REDACTED FOR PRIVACY", "address": "REDACTED FOR PRIVACY", "city": "REDACTED FOR PRIVACY", "state": "CA", "zipcode": "REDACTED FOR PRIVACY", "country": "US"