Annotation of embedaddon/php/ext/enchant/package.xml, revision 1.1.1.1

1.1       misho       1: <?xml version="1.0" encoding="UTF-8"?>
                      2: <package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.4.8" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
                      3:   <name>enchant</name>
                      4:   <channel>pecl.php.net</channel>
                      5:   <summary>libenchant binder, support near all spelling tools</summary>
                      6:   <description>Enchant is a binder for libenchant. Libenchant provides a common
                      7: API for many spell libraries:
                      8: - aspell/pspell (intended to replace ispell)
                      9: - hspell (hebrew)
                     10: - ispell 
                     11: - myspell/hunspell (OpenOffice project, mozilla)
                     12: - uspell (primarily Yiddish, Hebrew, and Eastern European languages)
                     13: A plugin system allows to add custom spell support.
                     14: see www.abisource.com/enchant/
                     15:  </description>
                     16:   <lead>
                     17:     <name>Pierre-Alain Joye</name>
                     18:     <user>pajoye</user>
                     19:     <email>paj@pearfr.org</email>
                     20:     <active>yes</active>
                     21:   </lead>
                     22:   <lead>
                     23:     <name>Ilia Alshanetsky</name>
                     24:     <user>iliaa</user>
                     25:     <email>ilia@php.net</email>
                     26:     <active>yes</active>
                     27:   </lead>
                     28:   <date>2008-04-16</date>
                     29:   <version>
                     30:     <release>1.0.2</release>
                     31:     <api>1.1.0</api>
                     32:   </version>
                     33:   <stability>
                     34:     <release>stable</release>
                     35:     <api>stable</api>
                     36:   </stability>
                     37:   <license uri="http://www.php.net/license">PHP</license>
                     38:   <notes>- #13181, Leaving a context frees the dictionnary resources
                     39: - Fix protos descriptions in the sources
                     40: </notes>
                     41:   <contents>
                     42:     <dir name="/">
                     43:       <dir name="docs">
                     44:         <dir name="examples">
                     45:           <file name="example1.php" role="doc"/>
                     46:         </dir>
                     47:         <!-- //docs/examples -->
                     48:       </dir>
                     49:       <!-- //docs -->
                     50:       <file name="config.m4" role="src"/>
                     51:       <file name="config.w32" role="src"/>
                     52:       <file name="CREDITS" role="doc"/>
                     53:       <file name="enchant.c" role="src"/>
                     54:       <file name="php_enchant.h" role="src"/>
                     55:       <dir name="tests">
                     56:         <file name="broker_describe.phpt" role="test"/>
                     57:         <file name="broker_free.phpt" role="test"/>
                     58:         <file name="broker_init.phpt" role="test"/>
                     59:         <file name="broker_request_dict.phpt" role="test"/>
                     60:         <file name="hindi_correct.txt" role="test"/>
                     61:         <file name="hindi_incorrect.txt" role="test"/>
                     62:         <file name="bug13181.phpt" role="test"/>
                     63:       </dir>
                     64:     </dir>
                     65:     <!-- / -->
                     66:   </contents>
                     67:   <dependencies>
                     68:     <required>
                     69:       <php>
                     70:         <min>5</min>
                     71:       </php>
                     72:       <pearinstaller>
                     73:         <min>1.4.0b1</min>
                     74:       </pearinstaller>
                     75:     </required>
                     76:   </dependencies>
                     77:   <providesextension>enchant</providesextension>
                     78:   <extsrcrelease>
                     79:     <configureoption default="shared" name="with-enchant" prompt="libenchant prefix?"/>
                     80:   </extsrcrelease>
                     81:   <changelog>
                     82:     <release>
                     83:       <date>2006-03-21</date>
                     84:       <version>
                     85:         <release>1.0.1</release>
                     86:         <api>1.1.0</api>
                     87:       </version>
                     88:       <stability>
                     89:         <release>stable</release>
                     90:         <api>stable</api>
                     91:       </stability>
                     92:       <license uri="http://www.php.net/license">PHP</license>
                     93:       <notes>- add enchant_broker_list_dicts to get a list of available dictionaries
                     94: - fix compilation warnings
                     95: - add examples
                     96: - add tests</notes>
                     97:     </release>
                     98:     <release>
                     99:       <date>2004-08-11</date>
                    100:       <version>
                    101:         <release>1.0</release>
                    102:         <api>1.0</api>
                    103:       </version>
                    104:       <stability>
                    105:         <release>stable</release>
                    106:         <api>stable</api>
                    107:       </stability>
                    108:       <license uri="http://www.php.net/license">PHP</license>
                    109:       <notes>- Fixed leak inside MINFO function.
                    110: - Fixed crash inside enchant_dict_suggest() when there are no suggestions.
                    111: - Added missing safe_mode/open_basedir check inside enchant_broker_request_pwl_dict().
                    112: - Fixed various function prototypes.
                    113: - Fixed possible leak in suggestions result.
                    114:  </notes>
                    115:     </release>
                    116:     <release>
                    117:       <version>
                    118:         <release>0.2.1</release>
                    119:         <api>0.2.1</api>
                    120:       </version>
                    121:       <stability>
                    122:         <release>beta</release>
                    123:         <api>beta</api>
                    124:       </stability>
                    125:       <date>2004-03-11</date>
                    126:       <license uri="http://www.php.net/license">PHP</license>
                    127:       <notes>- Fix possible leak in suggestions result
                    128: - Move to beta status
                    129:    </notes>
                    130:     </release>
                    131:     <release>
                    132:       <version>
                    133:         <release>0.2.0</release>
                    134:         <api>0.2.0</api>
                    135:       </version>
                    136:       <stability>
                    137:         <release>alpha</release>
                    138:         <api>alpha</api>
                    139:       </stability>
                    140:       <date>2006-03-21</date>
                    141:       <license uri="http://www.php.net/license">PHP</license>
                    142:       <notes>- Add Ilia Alshanetsky as maintainer
                    143: - Cleanup sources codes (ilia)
                    144: - Add enchant_dict_quick_check (ilia)
                    145:    </notes>
                    146:     </release>
                    147:     <release>
                    148:       <version>
                    149:         <release>0.1</release>
                    150:         <api>0.1</api>
                    151:       </version>
                    152:       <stability>
                    153:         <release>alpha</release>
                    154:         <api>alpha</api>
                    155:       </stability>
                    156:       <date>2003-03-08</date>
                    157:       <license uri="http://www.php.net/license">PHP</license>
                    158:       <notes>Initial release
                    159:    </notes>
                    160:     </release>
                    161:   </changelog>
                    162: </package>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>