You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/08/29 02:48:19 UTC

[2/8] git commit: [flex-utilities] [refs/heads/develop] - no longer required

no longer required


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/29548b27
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/29548b27
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/29548b27

Branch: refs/heads/develop
Commit: 29548b27d29fea156c8cc36acffca3512a985bcc
Parents: 07653c9
Author: Justin Mclean <jm...@apache.org>
Authored: Fri Aug 29 10:20:19 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Fri Aug 29 10:20:19 2014 +1000

----------------------------------------------------------------------
 Squiggly/main/README.txt | 28 ----------------------------
 1 file changed, 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/29548b27/Squiggly/main/README.txt
----------------------------------------------------------------------
diff --git a/Squiggly/main/README.txt b/Squiggly/main/README.txt
deleted file mode 100644
index 00b9745..0000000
--- a/Squiggly/main/README.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-How to use the Squiggly SDK
-===================================
-
-Please read the ASDoc first to understand the classes in Squiggly.
-
-If you are using the SpellChecker class directly, you need.
-- AdobeSpellingEngine.swc in [YourProject]/libs folder, you can find it from ./libs
-- Dictionary files in [YourProject]/src folder, your can find them from ./src/dictionaries folder
-
-If you are using the simple UI integration feature (SpellUI class), in addition to what mentioned above, you also need
-- AdobeSpellingConfig.xml in [YourProject]/src
-- AdobeSpellingUI.swc (AdobeSpellingUIEx.swc if you need spark support in Flex 4) in [YourProject]/libs 
-
-This SDK came with English(US) dictionary. You can download additional HunSpell dictionaries, but for now, what we have tested are just English, Spanish, Portuguese and Italian. If you are doing this, you need to understand AdobeSpellingConfig.xml.
-
-Here's the content of AdobeSpellingConfig.xml, each entry maps the languageCode with the relative path for resource files. 
-<SpellingConfig>
-  <LanguageResource language="English" languageCode="en_US" ruleFile="dictionaries/en_US/en_US.aff" dictionaryFile="dictionaries/en_US/en_US.dic"/>
-</SpellingConfig>
-
-So if you are adding Spanish, you just need to get the hunspell dictionary es_ES.aff/dic and add one line to your config file.
-  <LanguageResource language="Spanish" languageCode="es_ES" ruleFile="dictionaries/es_ES/es_ES.aff" dictionaryFile="dictionaries/es_ES/es_ES.dic"/>
-
-Note that you can put the dictionaries in another location as long as you update the config file, the config file itself MUST be in [YourProject]/src folder.
-
-
-
-