X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fplugins%2Fscayt%2Fplugin.js;h=c945735ce6f322649d4a5eae298d38a0153306f6;hp=1395d6dd671cd75548a13bcf051db44aaff9ba72;hb=e73319a12b56100b29ef456fd74114fe5519e01c;hpb=f0610347140239143439a511ee2bd48cb784f470 diff --git a/_source/plugins/scayt/plugin.js b/_source/plugins/scayt/plugin.js index 1395d6d..c945735 100644 --- a/_source/plugins/scayt/plugin.js +++ b/_source/plugins/scayt/plugin.js @@ -108,7 +108,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license // Remove scripts. var scripts = CKEDITOR.document.getElementsByTag( 'script' ), scaytIdRegex = /^dojoIoScript(\d+)$/i, - scaytSrcRegex = /^https?:\/\/svc\.spellchecker\.net\/spellcheck\/script\/ssrv\.cgi/i; + scaytSrcRegex = /^https?:\/\/svc\.webspellchecker\.net\/spellcheck\/script\/ssrv\.cgi/i; for ( var i=0; i < scripts.count(); i++ ) { @@ -394,7 +394,7 @@ CKEDITOR.plugins.scayt = var protocol = document.location.protocol; // Default to 'http' for unknown. protocol = protocol.search( /https?:/) != -1? protocol : 'http:'; - var baseUrl = 'svc.spellchecker.net/scayt26/loader__base.js'; + var baseUrl = 'svc.webspellchecker.net/scayt26/loader__base.js'; var scaytUrl = editor.config.scayt_srcUrl || ( protocol + '//' + baseUrl ); var scaytConfigBaseUrl = plugin.parseUrl( scaytUrl ).path + '/'; @@ -821,27 +821,28 @@ CKEDITOR.plugins.scayt = })(); /** - * If enabled (true), turns on SCAYT automatically after loading the editor. + * If enabled (set to true), turns on SCAYT automatically + * after loading the editor. * @name CKEDITOR.config.scayt_autoStartup * @type Boolean - * @default false + * @default false * @example * config.scayt_autoStartup = true; */ /** * Defines the number of SCAYT suggestions to show in the main context menu. - * The possible values are: + * Possible values are: * * @name CKEDITOR.config.scayt_maxSuggestions * @type Number - * @default 5 + * @default 5 * @example * // Display only three suggestions in the main context menu. * config.scayt_maxSuggestions = 3; @@ -851,11 +852,11 @@ CKEDITOR.plugins.scayt = */ /** - * Sets the customer ID for SCAYT. Required for migration from free version - * with banner to paid version. + * Sets the customer ID for SCAYT. Required for migration from free, + * ad-supported version to paid, ad-free version. * @name CKEDITOR.config.scayt_customerid * @type String - * @default '' + * @default '' * @example * // Load SCAYT using my customer ID. * config.scayt_customerid = 'your-encrypted-customer-id'; @@ -863,10 +864,10 @@ CKEDITOR.plugins.scayt = /** * Enables/disables the "More Suggestions" sub-menu in the context menu. - * The possible values are "on" or "off". + * Possible values are on and off. * @name CKEDITOR.config.scayt_moreSuggestions * @type String - * @default 'on' + * @default 'on' * @example * // Disables the "More Suggestions" sub-menu. * config.scayt_moreSuggestions = 'off'; @@ -874,91 +875,99 @@ CKEDITOR.plugins.scayt = /** * Customizes the display of SCAYT context menu commands ("Add Word", "Ignore" - * and "Ignore All"). It must be a string with one or more of the following - * words separated by a pipe ("|"): + * and "Ignore All"). This must be a string with one or more of the following + * words separated by a pipe character ("|"): * * @name CKEDITOR.config.scayt_contextCommands * @type String - * @default 'all' + * @default 'all' * @example * // Show only "Add Word" and "Ignore All" in the context menu. * config.scayt_contextCommands = 'add|ignoreall'; */ /** - * Sets the default spellchecking language for SCAYT. + * Sets the default spell checking language for SCAYT. Possible values are: + * en_US, en_GB, pt_BR, da_DK, + * nl_NL, en_CA, fi_FI, fr_FR, + * fr_CA, de_DE, el_GR, it_IT, + * nb_NO, pt_PT, es_ES, sv_SE. * @name CKEDITOR.config.scayt_sLang * @type String - * @default 'en_US' + * @default 'en_US' * @example * // Sets SCAYT to German. * config.scayt_sLang = 'de_DE'; */ /** - * Sets the visibility of the SCAYT tabs in the settings dialog and toolbar - * button. The value must contain a "1" (enabled) or "0" (disabled) number for - * each of the following entries, in this precise order, separated by a - * comma (","): "Options", "Languages" and "Dictionary". + * Sets the visibility of particular tabs in the SCAYT dialog window and toolbar + * button. This setting must contain a 1 (enabled) or 0 + * (disabled) value for each of the following entries, in this precise order, + * separated by a comma (","): "Options", "Languages", and "Dictionary". * @name CKEDITOR.config.scayt_uiTabs * @type String - * @default '1,1,1' + * @default '1,1,1' * @example - * // Hide the "Languages" tab. + * // Hides the "Languages" tab. * config.scayt_uiTabs = '1,0,1'; */ /** - * Set the URL to SCAYT core. Required to switch to licensed version of SCAYT application. - * Further details at http://wiki.spellchecker.net/doku.php?id=3rd:wysiwyg:fckeditor:wscckf3l . + * Sets the URL to SCAYT core. Required to switch to the licensed version of SCAYT application. + * Further details available at + * + * http://wiki.webspellchecker.net/doku.php?id=migration:hosredfreetolicensedck. * @name CKEDITOR.config.scayt_srcUrl * @type String - * @default '' + * @default '' * @example * config.scayt_srcUrl = "http://my-host/spellcheck/lf/scayt/scayt.js"; */ /** - * Links SCAYT to custom dictionaries. It's a string containing dictionary ids - * separared by commas (","). Available only for licensed version. - * Further details at http://wiki.spellchecker.net/doku.php?id=custom_dictionary_support . + * Links SCAYT to custom dictionaries. This is a string containing dictionary IDs + * separared by commas (","). Available only for the licensed version. + * Further details at + * + * http://wiki.webspellchecker.net/doku.php?id=installationandconfiguration:customdictionaries:licensed. * @name CKEDITOR.config.scayt_customDictionaryIds * @type String - * @default '' + * @default '' * @example * config.scayt_customDictionaryIds = '3021,3456,3478"'; */ /** - * Makes it possible to activate a custom dictionary on SCAYT. The user - * dictionary name must be used. Available only for licensed version. + * Makes it possible to activate a custom dictionary in SCAYT. The user + * dictionary name must be used. Available only for the licensed version. * @name CKEDITOR.config.scayt_userDictionaryName * @type String - * @default '' + * @default '' * @example * config.scayt_userDictionaryName = 'MyDictionary'; */ /** - * Define order of placing of SCAYT context menu items by groups. - * It must be a string with one or more of the following - * words separated by a pipe ("|"): + * Defines the order SCAYT context menu items by groups. + * This must be a string with one or more of the following + * words separated by a pipe character ("|"): * * * @name CKEDITOR.config.scayt_contextMenuItemsOrder * @type String - * @default 'suggest|moresuggest|control' + * @default 'suggest|moresuggest|control' * @example * config.scayt_contextMenuItemsOrder = 'moresuggest|control|suggest'; */