From 5feb99c8d2d7df37fe41e78edffb54877cbef1c9 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Thu, 20 Mar 2008 01:41:17 +0000 Subject: [PATCH] Removed deprecated aspell extension. Also, php.net/aspell now redirects to php.net/pspell git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@255538 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/extensions.xml | 3 +- reference/aspell/book.xml | 52 --------- reference/aspell/configure.xml | 30 ----- reference/aspell/constants.xml | 29 ----- .../aspell/functions/aspell-check-raw.xml | 108 ------------------ reference/aspell/functions/aspell-check.xml | 105 ----------------- reference/aspell/functions/aspell-new.xml | 88 -------------- reference/aspell/functions/aspell-suggest.xml | 99 ---------------- reference/aspell/reference.xml | 36 ------ reference/aspell/setup.xml | 59 ---------- 10 files changed, 1 insertion(+), 608 deletions(-) delete mode 100644 reference/aspell/book.xml delete mode 100644 reference/aspell/configure.xml delete mode 100644 reference/aspell/constants.xml delete mode 100644 reference/aspell/functions/aspell-check-raw.xml delete mode 100644 reference/aspell/functions/aspell-check.xml delete mode 100644 reference/aspell/functions/aspell-new.xml delete mode 100644 reference/aspell/functions/aspell-suggest.xml delete mode 100644 reference/aspell/reference.xml delete mode 100644 reference/aspell/setup.xml diff --git a/appendices/extensions.xml b/appendices/extensions.xml index 9237340621..b57bc467e5 100644 --- a/appendices/extensions.xml +++ b/appendices/extensions.xml @@ -1,5 +1,5 @@ - + - - - - Aspell [deprecated] - - - - &reftitle.intro; - - The aspell functions allows you to check the - spelling on a word and offer suggestions. - - - - This extension has been removed from PHP and is no - longer available as of PHP 4.3.0. If you want to use spell-checking - capabilities in PHP, use pspell instead. - It uses pspell library and works with newer versions of aspell. - - - - - - &reference.aspell.setup; - &reference.aspell.constants; - &reference.aspell.reference; - - - - - diff --git a/reference/aspell/configure.xml b/reference/aspell/configure.xml deleted file mode 100644 index 11a9ce89ed..0000000000 --- a/reference/aspell/configure.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -
- &reftitle.install; - - In PHP 4, these functions are only available if PHP was - configured with . - -
- - diff --git a/reference/aspell/constants.xml b/reference/aspell/constants.xml deleted file mode 100644 index 0e580c921d..0000000000 --- a/reference/aspell/constants.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - &reftitle.constants; - &no.constants; - - - - diff --git a/reference/aspell/functions/aspell-check-raw.xml b/reference/aspell/functions/aspell-check-raw.xml deleted file mode 100644 index 1aba33f295..0000000000 --- a/reference/aspell/functions/aspell-check-raw.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - aspell_check_raw - - Check a word without changing its case or trying to trim it [deprecated] - - - - &reftitle.description; - - boolaspell_check_raw - intdictionary_link - stringword - - - aspell_check_raw checks the spelling of a - word, without changing its case or trying to trim it in any way. - - - - - &reftitle.parameters; - - - - dictionary_link - - - The dictionnary link identifier returned by - aspell_new. - - - - - word - - - The tested word. - - - - - - - - - &reftitle.returnvalues; - - Returns &true; if the spelling is correct, &false; if not. - - - - - &reftitle.examples; - - - <function>aspell_check_raw</function> Example - - -]]> - - - - - - - &reftitle.seealso; - - - aspell_check - - - - - - diff --git a/reference/aspell/functions/aspell-check.xml b/reference/aspell/functions/aspell-check.xml deleted file mode 100644 index 685706c45d..0000000000 --- a/reference/aspell/functions/aspell-check.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - aspell_check - Check a word [deprecated] - - - &reftitle.description; - - boolaspell_check - intdictionary_link - stringword - - - aspell_check checks the spelling of a word. - - - - - &reftitle.parameters; - - - - dictionary_link - - - The dictionnary link identifier returned by - aspell_new. - - - - - word - - - The tested word. - - - - - - - - - &reftitle.returnvalues; - - Returns &true; if the spelling is correct, &false; if not. - - - - - &reftitle.examples; - - - <function>aspell_check</function> Example - - -]]> - - - - - - - &reftitle.seealso; - - - aspell_check_raw - - - - - - diff --git a/reference/aspell/functions/aspell-new.xml b/reference/aspell/functions/aspell-new.xml deleted file mode 100644 index 354f4bc3b8..0000000000 --- a/reference/aspell/functions/aspell-new.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - aspell_new - Load a new dictionary [deprecated] - - - &reftitle.description; - - intaspell_new - stringmaster - stringpersonal - - - aspell_new opens up a new dictionary for use with the - other aspell functions. - - - - - &reftitle.parameters; - - - - master - - - Language. - - - - - personal - - - Default to empty string. - - - - - - - - - &reftitle.returnvalues; - - Returns a dictionary link identifier or &false; on error. - - - - - &reftitle.examples; - - - <function>aspell_new</function> Example - - -]]> - - - - - - - diff --git a/reference/aspell/functions/aspell-suggest.xml b/reference/aspell/functions/aspell-suggest.xml deleted file mode 100644 index f093bc5dbc..0000000000 --- a/reference/aspell/functions/aspell-suggest.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - - aspell_suggest - Suggest spellings of a word [deprecated] - - - &reftitle.description; - - arrayaspell_suggest - intdictionary_link - stringword - - - aspell_suggest suggest spellings for the given - word. - - - - - &reftitle.parameters; - - - - dictionary_link - - - The dictionnary link identifier returned by - aspell_new. - - - - - word - - - The tested word. - - - - - - - - - &reftitle.returnvalues; - - Returns an array of suggestions. - - - - - &reftitle.examples; - - - <function>aspell_suggest</function> Example - -\n"; - } -} - -?> -]]> - - - - - - - diff --git a/reference/aspell/reference.xml b/reference/aspell/reference.xml deleted file mode 100644 index a164a98f0f..0000000000 --- a/reference/aspell/reference.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Aspell &Functions; [deprecated] - - - &reftitle.seealso; - - See also pspell. - - - - &reference.aspell.entities.functions; - - - diff --git a/reference/aspell/setup.xml b/reference/aspell/setup.xml deleted file mode 100644 index bdfabb351d..0000000000 --- a/reference/aspell/setup.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - &reftitle.setup; - - -
- &reftitle.required; - - aspell works only with very old (up to .27.* or so) versions of - aspell library. Neither this module, nor those versions of aspell - library are supported any longer. You need the aspell library, available - from: &url.aspell;. - -
- - - - &reference.aspell.configure; - - - -
- &reftitle.runtime; - &no.config; -
- - - -
- &reftitle.resources; - &no.resource; -
- - -
- - -