IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Bibliothèques et frameworks PHP Discussion :

[PEAR] Annonces de paquetages [News]


Sujet :

Bibliothèques et frameworks PHP

  1. #21
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package PHP_Debug-1.0.2 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    Removed the w3c on the fly validation as it was un-finalized and not useable.

    Package Info
    ------------
    The basic purpose of PHP_Debug is to provide assistance in debugging PHP code, by "debug" i don't mean "step by step debug" but program trace, variables display, process time, included files, queries executed, watch variables... These informations are gathered through the script execution and therefore are displayed at the end of the script (in a nice floating div or a html table) so that it can be read and used at any moment. (especially usefull during the development phase of a project or in production with a secure key/ip)

    Related Links
    -------------
    Package home: http://pear.php.net/package/PHP_Debug
    Changelog: http://pear.php.net/package/PHP_Debug/download/1.0.2
    Download: http://download.pear.php.net/package...ebug-1.0.2.tgz

    Authors
    -------
    Loïc Vernet <qrf_coil@yahoo.fr> (lead)

    The new PEAR package HTTP-1.4.1 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Fixed bug #7130 - HTTP::absoluteUri("?foo") loses path
    * Fixed bug #12672 - PHP_SELF ending on / causes incorrect redirects
    * Fixed bug #12571 - Wrong license in package.xml
    * Fixed bug #12759 - DOS linebreaks
    * Fixed req #9148 - Added negotiateCharset() method
    * Fixed req #11060 - Added negotiateMimeType() method
    * Added regression tests
    * Bump to package.xml v2.0
    * Added failover JavaScript for redirect()

    Package Info
    ------------
    The HTTP class is a class with static methods for doing
    miscellaneous HTTP related stuff like date formatting,
    language negotiation or HTTP redirection.

    Related Links
    -------------
    Package home: http://pear.php.net/package/HTTP
    Changelog: http://pear.php.net/package/HTTP/download/1.4.1
    Download: http://download.pear.php.net/package/HTTP-1.4.1.tgz

    Authors
    -------
    Michael Wallner <mike@php.net> (lead)
    Philippe Jausions (lead)

    The new PECL package phar-2.0.0RC1 (beta) has been released at http://pecl.php.net/.

    Release notes
    -------------
    BC BREAKING RELEASE
    BC breaks:
    * Phar object Compression API is rewritten. Use Phar::compress() and decompress(),
    Phar::compressFiles()/decompressFiles() and PharFileInfo->compress()/decompress().
    * phar.extract_list and Phar::getExtractList() are removed

    Major feature functionality release
    * phar.cache_list allows web-based phar applications to run at equal or faster than
    their on-disk equivalent [Greg]
    * new default stub allows running of phar-based phars without phar extension [Greg/Steph]
    * add support for tar-based and zip-based phar archives [Greg]
    * add support for OpenSSL-based true signatures [Greg]
    * add support for signatures to tar-based phar archives [Greg]
    * add Phar::isFileFormat() [Greg]
    * add Phar::convertToExecutable(), Phar::convertToData() [Greg]
    * add Phar::compress() [Greg]
    * rename Phar::compressAllFiles() to compressFiles(), uncompressAllFiles() to
    decompressFiles() [Greg]
    * conversion to compressed or to other file formats automatically copies the archive
    to a new extension (i.e. ".phar" to ".phar.tar" or ".tar" to ".tar.gz") [Steph]
    * add Phar::webPhar() for running a web-based application unmodified
    directly from a phar archive [Greg]
    * file functions (fopen-based and stat-based) can be instructed to only look for
    relative paths within a phar via Phar::interceptFileFuncs()
    * add PharData class to allow manipulation/creation of non-executable tar and zip archives. [Steph]
    non-executable tar/zip manipulation is allowed even when phar.readonly=1 [Greg]
    * paths with . and .. work (phar://blah.phar/a/../b.php => phar://blah.phar/b.php) [Greg]
    * add support for mkdir()/rmdir() and support for empty directories to phar file format [Greg]
    * add option to compress the entire phar file for phar/tar file format [Greg]
    * implement Phar::isCompressed() returning 0, Phar::GZ or Phar::BZ2 [Greg]
    * implement Phar::copy(string $from, string $to) [Greg]
    * implement Phar::running(), returns path or URL to currently executed phar
    * implement Phar::buildFromIterator(Iterator $it[, string $base_directory]) [Greg]
    * implement Phar::buildFromDirectory(string $base_directory[, string $regex]) [Steph]
    * implement Phar::mount() for mounting external paths or files to locations inside a phar [Greg]
    * add Phar::delete() [Greg]
    * implement Phar::unlinkArchive() [Greg]

    Security addition
    * aliases are validated so that they contain no directory separators as intended
    * on conversion to other formats, user-supplied aliases are validated

    Changes since 2.0.0a2: many bugfixes, removal of phar.extract_list, compression API refactored,
    conversion API refactored
    Changes since 2.0.0b1: addition of phar.cache_list, many performance improvements and bugfixes
    implement OpenSSL asynchronous true package signing
    add support for package signing to tar-based archives
    require PHP 5.2.1+

    Package Info
    -------------
    This is the extension version of PEAR's PHP_Archive package. Support for
    zlib, bz2 and crc32 is achieved without any dependency other than the external
    zlib or bz2 extension.

    .phar files can be read using the phar stream, or with the Phar class. If the SPL extension
    is available, a Phar object can be used as an array to iterate over a phar's contents
    or to read files directly from the phar.

    Phar supports tar and zip file formats as well as the native phar file format, and can also be
    used to create data-only tar and zip archives with the PharData class, even if
    write access is disabled by the phar.readonly ini variable.

    Executable phar archives can be created using the streams API or with the Phar class, if
    the phar.readonly ini variable is set to false.

    Full support for MD5 and SHA1 signatures is possible. Signatures can be required
    if the ini variable phar.require_hash is set to true. When PECL extension hash is
    available then SHA-256 and SHA-512 signatures are supported as well.

    Phar is APC-compatible, the latest APC will cache files within a phar archive, resulting in
    a 6x speedup measured running phpMyAdmin as a phar archive.

    Related Links
    -------------
    Package home: http://pecl.php.net/package/phar
    Changelog: http://pecl.php.net/package-changelog.php?package=phar
    Download: http://pecl.php.net/get/phar-2.0.0RC1.tgz

    Authors
    -------------
    Steph Fox (developer)
    Greg Beaver (lead)
    Marcus Börger <helly@php.net> (lead)

  2. #22
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Crypt_Blowfish-1.1.0RC2 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Bump to package.xml v2.0
    * Algorithm tweak for bug #12906 and bug #10162
    * Switch to new BSD license from PHP 3.0 license

    Package Info
    ------------
    This package allows you to perform two-way blowfish encryption on the fly using only PHP. This package does not require the MCrypt PHP extension to work, although it can make use of it if available.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Crypt_Blowfish
    Changelog: http://pear.php.net/package/Crypt_Bl...nload/1.1.0RC2
    Download: http://download.pear.php.net/package...h-1.1.0RC2.tgz

    Authors
    -------
    Matthew Fonda (lead)
    Philippe Jausions (lead)

    The new PEAR package Validate_CA-0.1.3 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Deprecated Validate_CA::Luhn() method
    - Fixes bug #11785 (PEAR coding standard compliance)

    Package Info
    ------------
    Package contains locale validation for Canada such as:
    * Social Insurance Numbers (SIN)
    * Postal Codes
    * Regions (Provinces)
    * Phone Numbers

    Related Links
    -------------
    Package home: http://pear.php.net/package/Validate_CA
    Changelog: http://pear.php.net/package/Validate_CA/download/0.1.3
    Download: http://download.pear.php.net/package...e_CA-0.1.3.tgz

    Authors
    -------
    Philippe Jausions (lead)
    David Coallier <davidc@agoraproduction.com> (lead)

    The new PEAR package Validate_Finance_CreditCard-0.5.3 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Deprecated Validate_Finance_CreditCard::Luhn() method
    - Bump to package.xml v2.0

    Package Info
    ------------
    Package to validate Credit Card numbers and types.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Validate_Finance_CreditCard
    Changelog: http://pear.php.net/package/Validate...download/0.5.3
    Download: http://download.pear.php.net/package...Card-0.5.3.tgz

    Authors
    -------
    Philippe Jausions (lead)

  3. #23
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Net_DIME-1.0.1 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    Fixed message decoding (Bug #14590).

    Package Info
    ------------
    The Net_DIME package provides an implementation of DIME as defined at http://xml.coverpages.org/draft-nielsen-dime-02.txt

    Related Links
    -------------
    Package home: http://pear.php.net/package/Net_DIME
    Changelog: http://pear.php.net/package/Net_DIME/download/1.0.1
    Download: http://download.pear.php.net/package/Net_DIME-1.0.1.tgz

    Authors
    -------
    Jan Schneider <jan@horde.org> (lead)

  4. #24
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Log-1.11.2 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Correcting some breakage in Log::_getBacktraceVars(). (Bug 14595)

    Package Info
    ------------
    The Log package provides an abstracted logging framework. It includes output handlers for log files, databases, syslog, email, Firebug, and the console. It also provides composite and subject-observer logging mechanisms.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Log
    Changelog: http://pear.php.net/package/Log/download/1.11.2
    Download: http://download.pear.php.net/package/Log-1.11.2.tgz

    Authors
    -------
    Jon Parise <jon@php.net> (lead)
    Jan Schneider <jan@horde.org> (lead)
    Chuck Hagenbuch (lead)

  5. #25
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Services_Facebook-0.1.4 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * 1. Added singleton method for Services_Facebook. 2. Updated Notifications.send() to use new names for types. (user_to_user and app_to_user)
    * Added CURL timeout for requests.
    * Added method getPhoto for users.

    Package Info
    ------------
    An interface for accessing Facebook's web services API at http://api.facebook.com.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_Facebook
    Changelog: http://pear.php.net/package/Services...download/0.1.4
    Download: http://download.pear.php.net/package...book-0.1.4.tgz

    Authors
    -------
    Joe Stump <pear@joestump.net> (lead)
    Travis Swicegood (developer)
    Jeff Hodsdon <jeffhodsdon@gmail.com> (lead)

  6. #26
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Services_Hatena-0.1.2 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    We can use Hatena's Web Servies API with this package.
    i like Hatena. i want to say "thank you" to developer's member in Hatena.
    Because there was help of many people, I was able to make a package.
    Thanks for Mr.Shoma.

    0.1.2) converted to package2.xml and added new class 'Services_Hatena_Question'

    Package Info
    ------------
    Interface to Hatena's XML-API.
    feature, follows:
    It provides objects to operate Hatena's Bookmark or Fotolife service,
    and get information from Hatena Web Site.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_Hatena
    Changelog: http://pear.php.net/package/Services...download/0.1.2
    Download: http://download.pear.php.net/package...tena-0.1.2.tgz

    Authors
    -------
    Makoto Tanaka (lead)

  7. #27
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Text_Diff-1.1.0 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Add countAddedLines() and countDeletedLines() methods (Christian King, PEAR Request #13183).
    * Improve string engine if patch data has no header (PEAR Bug #14533).
    * Fix autodetection of diff type in string engine (PEAR Bug #14625).

    Package Info
    ------------
    This package provides a text-based diff engine and renderers for multiple diff output formats.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Text_Diff
    Changelog: http://pear.php.net/package/Text_Diff/download/1.1.0
    Download: http://download.pear.php.net/package...Diff-1.1.0.tgz

    Authors
    -------
    Chuck Hagenbuch (lead)
    Jan Schneider <jan@horde.org> (lead)

  8. #28
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package XML_RPC2-1.0.5 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Fixed bug 12249: Php Server backend does not pass encoding to response object
    - Fixed bug 12884: Bogus User-agent header
    - Fixed bug 13145: Server sends the wrong content-length header if mbstring is used

    Package Info
    ------------
    XML_RPC2 is a pear package providing XML_RPC client and server services. XML-RPC is a simple remote procedure call protocol built using HTTP as transport and XML as encoding.
    As a client library, XML_RPC2 is capable of creating a proxy class which exposes the methods exported by the server. As a server library, XML_RPC2 is capable of exposing methods from a class or object instance, seamlessly exporting local methods as remotely callable procedures.

    Related Links
    -------------
    Package home: http://pear.php.net/package/XML_RPC2
    Changelog: http://pear.php.net/package/XML_RPC2/download/1.0.5
    Download: http://download.pear.php.net/package/XML_RPC2-1.0.5.tgz

    Authors
    -------
    Sérgio Carvalho <sergiosgc@gmail.com> (lead)
    Fabien MARTY <fabien.marty@gmail.com> (developer)
    Alan Langford (developer)

  9. #29
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package HTML_Template_PHPLIB-1.4.0 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Fix bug #12243: PEAR_Errors not returned from halt()
    - Add new "return" haltOnError level
    - Respect haltOnError settings
    - Command line tool to validate template files
    - Command line tool to generate php code from template files

    Package Info
    ------------
    The popular Template system from PHPLIB ported to PEAR. It has some
    features that can't be found currently in the original version like
    fallback paths. It has minor improvements and cleanup in the code as
    well as some speed improvements.

    Related Links
    -------------
    Package home: http://pear.php.net/package/HTML_Template_PHPLIB
    Changelog: http://pear.php.net/package/HTML_Tem...download/1.4.0
    Download: http://download.pear.php.net/package...PLIB-1.4.0.tgz

    Authors
    -------
    Christian Weiske (lead)

    The new PEAR package Services_Facebook-0.1.5 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Changed names of setApi() and getApi() to setAPI() and getAPI().
    * Switched the default $api to be the new REST API.

    Package Info
    ------------
    An interface for accessing Facebook's web services API at http://api.facebook.com.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_Facebook
    Changelog: http://pear.php.net/package/Services...download/0.1.5
    Download: http://download.pear.php.net/package...book-0.1.5.tgz

    Authors
    -------
    Joe Stump <pear@joestump.net> (lead)
    Travis Swicegood (developer)
    Jeff Hodsdon <jeffhodsdon@gmail.com> (lead)

    The new PEAR package Services_Hatena-0.1.3 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    We can use Hatena's Web Servies API with this package.
    i like Hatena. i want to say "thank you" to developer's member in Hatena.
    Because there was help of many people, I was able to make a package.
    Thanks for Mr.Shoma.

    0.1.3) bug fix on Hatena.php. Thank you, drry.

    Package Info
    ------------
    Interface to Hatena's XML-API.
    feature, follows:
    It provides objects to operate Hatena's Bookmark or Fotolife service,
    and get information from Hatena Web Site.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_Hatena
    Changelog: http://pear.php.net/package/Services...download/0.1.3
    Download: http://download.pear.php.net/package...tena-0.1.3.tgz

    Authors
    -------
    Makoto Tanaka (lead)

  10. #30
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Net_UserAgent_Mobile_GPS-0.1.1 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    alpha version.

    Package Info
    ------------
    converted to package2.xml from package.xml.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Net_UserAgent_Mobile_GPS
    Changelog: http://pear.php.net/package/Net_User...download/0.1.1
    Download: http://download.pear.php.net/package..._GPS-0.1.1.tgz

    Authors
    -------
    Horikita Kei (lead)
    The new PEAR package XML_Parser-1.3.1 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - correct package.xml to reflect switch to BSD License

    Package Info
    ------------
    This is an XML parser based on PHPs built-in xml extension.
    It supports two basic modes of operation: "func" and "event". In "func" mode, it will look for a function named after each element (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and in "event" mode it uses a set of generic callbacks.

    Since version 1.2.0 there's a new XML_Parser_Simple class that makes parsing of most XML documents easier, by automatically providing a stack for the elements.
    Furthermore its now possible to split the parser from the handler object, so you do not have to extend XML_Parser anymore in order to parse a document with it.

    Related Links
    -------------
    Package home: http://pear.php.net/package/XML_Parser
    Changelog: http://pear.php.net/package/XML_Parser/download/1.3.1
    Download: http://download.pear.php.net/package...rser-1.3.1.tgz

    Authors
    -------
    Chuck Burgess (lead)
    The new PEAR package XML_Beautifier-1.2.0 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - switched to BSD License
    - switch to package.xml v2
    - PEAR CS cleanup
    - Fixed Bug #1009: Data in <![CDATA[ ... ]]> [schst]
    - Fixed Bug #1232: The standalone attributes turned to 'on' [schst]

    Package Info
    ------------
    XML_Beautifier will add indentation and linebreaks to you XML files, replace all entities, format your comments and makes your document easier to read.
    You can influence the way your document is beautified with several options, ranging from indentation to changing the case of tags and normalizing your comments.

    Related Links
    -------------
    Package home: http://pear.php.net/package/XML_Beautifier
    Changelog: http://pear.php.net/package/XML_Beau...download/1.2.0
    Download: http://download.pear.php.net/package...fier-1.2.0.tgz

    Authors
    -------
    Chuck Burgess (lead)
    The new PEAR package Net_IPv6-1.1.0RC4 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    take care of prefix length specification in an address, thanks to Jens Ott

    Package Info
    ------------
    The class allows you to:
    * check if an address is an IPv6 address
    * compress/uncompress IPv6 addresses
    * check for an IPv4 compatible ending in an IPv6 address
    * check the assigned address space of an IPv6 address
    * do netmask calculations

    Related Links
    -------------
    Package home: http://pear.php.net/package/Net_IPv6
    Changelog: http://pear.php.net/package/Net_IPv6/download/1.1.0RC4
    Download: http://download.pear.php.net/package...6-1.1.0RC4.tgz

    Authors
    -------
    Alexander Merz (lead)
    The new PEAR package Services_Yahoo_JP-0.1.1 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    alpha version.

    Package Info
    ------------
    fixed the api url.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_Yahoo_JP
    Changelog: http://pear.php.net/package/Services...download/0.1.1
    Download: http://download.pear.php.net/package...o_JP-0.1.1.tgz

    Authors
    -------
    Nakase Tetsuya (lead)
    The new PEAR package HTML_Crypt-1.3.3 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Fix bug #14675: Security issue due to seeding random number generator

    Package Info
    ------------
    HTML_Crypt provides methods to encrypt text, which
    can be later be decrypted using JavaScript on the client side.

    This is very useful to prevent spam robots collecting email
    addresses from your site, included is a method to add mailto
    links to the text being generated

    Related Links
    -------------
    Package home: http://pear.php.net/package/HTML_Crypt
    Changelog: http://pear.php.net/package/HTML_Crypt/download/1.3.3
    Download: http://download.pear.php.net/package...rypt-1.3.3.tgz

    Authors
    -------
    Christian Weiske (lead)
    The new PEAR package Genealogy_Gedcom-1.0.1 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    Maintenance release

    Package Info
    ------------
    This package was written to parse .ged (gedcom) file.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Genealogy_Gedcom
    Changelog: http://pear.php.net/package/Genealog...download/1.0.1
    Download: http://download.pear.php.net/package...dcom-1.0.1.tgz

    Authors
    -------
    Olivier Vanhoucke <olivier.vanhoucke@gmail.com> (lead)
    Ken Guest <ken@linux.ie> (lead)
    The new PEAR package PEAR_Size-0.1.7 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Fix Bug #14465: warning if files (which are registered as installed) are missing
    * Fix Bug #14474: channel selection doesn't work

    Package Info
    ------------
    A commandline tool modeled on the Unix 'df' that lists how much filespace each installed package consumes. A subset of packages can be specified as can channels.

    Related Links
    -------------
    Package home: http://pear.php.net/package/PEAR_Size
    Changelog: http://pear.php.net/package/PEAR_Size/download/0.1.7
    Download: http://download.pear.php.net/package...Size-0.1.7.tgz

    Authors
    -------
    Ken Guest <ken@linux.ie> (lead)
    The new PEAR package Date_Holidays_UNO-0.1.2 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Fix Bug #14570: test suite for Date_Holidays_UNO doesn't test anything [kguest]

    Package Info
    ------------
    Date_Holidays helps you calculate the dates and titles of holidays and other special celebrations. This is the driver for calculating UNO holidays.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Date_Holidays_UNO
    Changelog: http://pear.php.net/package/Date_Hol...download/0.1.2
    Download: http://download.pear.php.net/package..._UNO-0.1.2.tgz

    Authors
    -------
    Ken Guest <ken@linux.ie> (lead)
    Carsten Lucke <luckec@php.net> (lead)
    The new PEAR package Date_Holidays_Austria-0.1.2 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Implement Feature #14605: Adding more austrian dates [kguest]

    Package Info
    ------------
    Date_Holidays helps you calculate the dates and titles of holidays and other special celebrations. This is the driver for calculating holidays in Austria.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Date_Holidays_Austria
    Changelog: http://pear.php.net/package/Date_Hol...download/0.1.2
    Download: http://download.pear.php.net/package...tria-0.1.2.tgz

    Authors
    -------
    Ken Guest <ken@linux.ie> (lead)
    Carsten Lucke <luckec@php.net> (lead)
    The new PEAR package Date_Holidays_PHPdotNet-0.1.2 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Fix Bug #14568: test suite is useless - asserts are commented out [kguest]
    * Fix Bug #14683: ashnazg wants his details added [kguest]

    Package Info
    ------------
    Date_Holidays helps you calculate the dates and titles of holidays and other special celebrations. This is the driver for calculating the birthdays of some members of the PHP.net community.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Date_Holidays_PHPdotNet
    Changelog: http://pear.php.net/package/Date_Hol...download/0.1.2
    Download: http://download.pear.php.net/package...tNet-0.1.2.tgz

    Authors
    -------
    Ken Guest <ken@linux.ie> (lead)
    Carsten Lucke <luckec@php.net> (lead)
    The new PEAR package Services_TwitPic-0.1.0 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Implemented Michael Gauthier's' comments: http://pear.php.net/pepr/pepr-vote-s...ndle=gauthierm

    Package Info
    ------------
    An interface for uploading pictures to TwitPic and optionally posting them (along with status messages) to Twitter as well.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Services_TwitPic
    Changelog: http://pear.php.net/package/Services...download/0.1.0
    Download: http://download.pear.php.net/package...tPic-0.1.0.tgz

    Authors
    -------
    Bill Shupp <hostmaster@shupp.org> (lead)
    The new PEAR package XML_Serializer-0.19.0 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    - switch to package.xml v2
    - PEAR CS cleanup
    - Req #13856: License Change from PHP to BSD [ashnazg]
    - Bug #8048: Entities are not replaced in tags with attributes [schst]
    - Doc #12725: tuto link no more available

    Package Info
    ------------
    XML_Serializer serializes complex data structures like arrays or object as XML documents.
    This class helps you generating any XML document you require without the need for DOM.
    Furthermore this package can be used as a replacement to serialize() and unserialize() as it comes with a matching XML_Unserializer that is able to create PHP data structures (like arrays and objects) from XML documents, if type hints are available.
    If you use the XML_Unserializer on standard XML files, it will try to guess how it has to be unserialized. In most cases it does exactly what you expect it to do.
    Try reading a RSS file with XML_Unserializer and you have the whole RSS file in a structured array or even a collection of objects, similar to XML_RSS.

    Since version 0.8.0 the package is able to treat XML documents similar to the simplexml extension of PHP 5.

    Related Links
    -------------
    Package home: http://pear.php.net/package/XML_Serializer
    Changelog: http://pear.php.net/package/XML_Seri...ownload/0.19.0
    Download: http://download.pear.php.net/package...zer-0.19.0.tgz

    Authors
    -------
    Chuck Burgess (lead)

  11. #31
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Crypt_GPG-0.7.0 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    Brought to you by strace, xdebug, time and phpunit.

    API is beta -- there are significant API changes in this release. See the API or end-user documentation for details. Other changes in this release include:
    * support operations on large strings properly. Bug #13806.
    * support operations on files (or anything fopen-able). Bug #13586.
    * encryption speed improvements (went from 10 seconds to encrypt a 1.9 MiB file to 0.1 - 0.2 seconds). There is new file-specific API. see the API docs for details.
    * remove GnuPG driver and driver architecture [BC BREAK]. The pecl extension powering the GnuPG driver is missing features and doesn't support any extra features that make it desirable to use. Crypt_GPG still has nicer error handling, a greater feature set, better documentation and more comprehensive tests.
    * split GPG I/O engine into a separate class
    * support multiple encryption, decryption and signing recipients [BC BREAK]. Bug #13808. This moves the API towards something more like the PECL gnupg extension where you add and clear keys for a particular operation. This also changes the returned value of verify() from a signature object to an array of signature objects.
    * use PHP_EOL for detecting line endings.
    * throw an exception if keychain can not be read or written. Bug #14645.
    * split unit tests into separate files.
    * updated unit tests for new API and features.
    * throw a KeyNotFound exception if trying to verify a signature when the public key is not in the keyring.
    * drop Windows support. PHP bugs and known limitations make it next to impossible to develop for Windows correctly.

    Package Info
    ------------
    This package provides an object oriented interface to GNU Privacy Guard (GPG). It requires the GPG executable to be on the system.

    Though GPG can support symmetric-key cryptography, this package is intended only to facilitate public-key cryptography.

    This package requires PHP version 5.2.1 or greater.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Crypt_GPG
    Changelog: http://pear.php.net/package/Crypt_GPG/download/0.7.0
    Download: http://download.pear.php.net/package..._GPG-0.7.0.tgz

    Authors
    -------
    Michael Gauthier (lead)
    Nathan Fredrickson <nathan@silverorange.com> (lead)

  12. #32
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Crypt_GPG-0.7.1 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    Small cleanups in generated API documentation. See 0.7.0 release notes:

    Brought to you by strace, xdebug, time and phpunit.

    API is beta -- there are significant API changes in this release. See the API or end-user documentation for details. Other changes in this release include:
    * support operations on large strings properly. Bug #13806.
    * support operations on files (or anything fopen-able). Bug #13586.
    * encryption speed improvements (went from 10 seconds to encrypt a 1.9 MiB file to 0.1 - 0.2 seconds). There is new file-specific API. see the API docs for details.
    * remove GnuPG driver and driver architecture [BC BREAK]. The pecl extension powering the GnuPG driver is missing features and doesn't support any extra features that make it desirable to use. Crypt_GPG still has nicer error handling, a greater feature set, better documentation and more comprehensive tests.
    * split GPG I/O engine into a separate class
    * support multiple encryption, decryption and signing recipients [BC BREAK]. Bug #13808. This moves the API towards something more like the PECL gnupg extension where you add and clear keys for a particular operation. This also changes the returned value of verify() from a signature object to an array of signature objects.
    * use PHP_EOL for detecting line endings.
    * throw an exception if keychain can not be read or written. Bug #14645.
    * split unit tests into separate files.
    * updated unit tests for new API and features.
    * throw a KeyNotFound exception if trying to verify a signature when the public key is not in the keyring.
    * drop Windows support. PHP bugs and known limitations make it next to impossible to develop for Windows correctly.

    Package Info
    ------------
    This package provides an object oriented interface to GNU Privacy Guard (GPG). It requires the GPG executable to be on the system.

    Though GPG can support symmetric-key cryptography, this package is intended only to facilitate public-key cryptography.

    This package requires PHP version 5.2.1 or greater.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Crypt_GPG
    Changelog: http://pear.php.net/package/Crypt_GPG/download/0.7.1
    Download: http://download.pear.php.net/package..._GPG-0.7.1.tgz

    Authors
    -------
    Michael Gauthier (lead)
    Nathan Fredrickson <nathan@silverorange.com> (lead)

    The new PEAR package PEAR_Size-0.1.8 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    * now dependant on version 1.1.0 of Console_Table

    Package Info
    ------------
    A commandline tool modeled on the Unix 'df' that lists how much filespace each installed package consumes. A subset of packages can be specified as can channels.

    Related Links
    -------------
    Package home: http://pear.php.net/package/PEAR_Size
    Changelog: http://pear.php.net/package/PEAR_Size/download/0.1.8
    Download: http://download.pear.php.net/package...Size-0.1.8.tgz

    Authors
    -------
    Ken Guest <ken@linux.ie> (lead)

  13. #33
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package PHP_CompatInfo-1.8.1 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    * bugs
    - 14696 : PHP_CompatInfo fails to scan code line when not ended with ;

    * changes
    - getallheaders() is detected as sapi_apache rather than sapi_aolserver

    Package Info
    ------------
    PHP_CompatInfo will parse a file/folder/script/array to find out the minimum
    version and extensions required for it to run. Features advanced debug output
    which shows which functions require which version and CLI output script

    Related Links
    -------------
    Package home: http://pear.php.net/package/PHP_CompatInfo
    Changelog: http://pear.php.net/package/PHP_Comp...download/1.8.1
    Download: http://download.pear.php.net/package...Info-1.8.1.tgz

    Authors
    -------
    Laurent Laville <pear@laurent-laville.org> (lead)

  14. #34
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Console_CommandLine-1.0.3 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - now handles stdin with the "-" special switch;
    - fixed bug #14717 (Password not optional when parser built from an xml file);
    - added relevant unit tests;
    - removed useless require_once's in some tests.

    Package Info
    ------------
    Console_CommandLine is a full featured package for managing command-line
    options and arguments highly inspired from python optparse module, it allows
    the developer to easily build complex command line interfaces.

    Main features:
    * handles sub commands (ie. $ myscript.php -q subcommand -f file),
    * can be completely built from an xml definition file,
    * generate --help and --version options automatically,
    * can be completely customized,
    * builtin support for i18n,
    * and much more...

    Related Links
    -------------
    Package home: http://pear.php.net/package/Console_CommandLine
    Changelog: http://pear.php.net/package/Console_...download/1.0.3
    Download: http://download.pear.php.net/package...Line-1.0.3.tgz

    Authors
    -------
    David Jean Louis (lead)

  15. #35
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Crypt_CBC-1.0.0 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    Fix deinit problems.

    Package Info
    ------------
    A class to emulate Perl's Crypt::CBC module.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Crypt_CBC
    Changelog: http://pear.php.net/package/Crypt_CBC/download/1.0.0
    Download: http://download.pear.php.net/package..._CBC-1.0.0.tgz

    Authors
    -------
    Colin Viebrock <colin@viebrock.ca> (lead)

  16. #36
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Net_Vpopmaild-0.3.2 (beta) has been released at http://pear.php.net/.

    Release notes
    -------------
    Fix PEAR bug #14733 in getLimits(). Thanks to Michal Dvoracek (lampacz).

    Package Info
    ------------
    Supports all vpopmaild commands, such as adding/removing domains, users, robots (autoresponders), and ezmlm lists (todo), as well as modifying domain limits, ip maps, etc

    Related Links
    -------------
    Package home: http://pear.php.net/package/Net_Vpopmaild
    Changelog: http://pear.php.net/package/Net_Vpop...download/0.3.2
    Download: http://download.pear.php.net/package...aild-0.3.2.tgz

    Authors
    -------
    Bill Shupp <hostmaster@shupp.org> (lead)

  17. #37
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Cache-1.5.5 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - Fixed Bug #14673: Security issue due to seeding random number generator

    Package Info
    ------------
    With the PEAR Cache you can cache the result of certain function
    calls, as well as the output of a whole script run or share data
    between applications.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Cache
    Changelog: http://pear.php.net/package/Cache/download/1.5.5
    Download: http://download.pear.php.net/package/Cache-1.5.5.tgz

    Authors
    -------
    Helgi Þormar Þorbjörnsson <helgith@gmail.com> (lead)


    --
    PEAR General Mailing List (http://pear.php.net/)
    To unsubscribe, visit: http://www.php.net/unsub.php

  18. #38
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Console_CommandLine-1.0.4 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    - implemented feature request #14753 (add_list_option parameter for --list-XXX option);
    - fixed bug #14762 (error message always tells me to use "-h" for help);
    - added relevant unit tests;
    - cleaned up phpdoc tags and some cosmetic changes.

    Package Info
    ------------
    Console_CommandLine is a full featured package for managing command-line
    options and arguments highly inspired from python optparse module, it allows
    the developer to easily build complex command line interfaces.

    Main features:
    * handles sub commands (ie. $ myscript.php -q subcommand -f file),
    * can be completely built from an xml definition file,
    * generate --help and --version options automatically,
    * can be completely customized,
    * builtin support for i18n,
    * and much more...

    Related Links
    -------------
    Package home: http://pear.php.net/package/Console_CommandLine
    Changelog: http://pear.php.net/package/Console_...download/1.0.4
    Download: http://download.pear.php.net/package...Line-1.0.4.tgz

    Authors
    -------
    David Jean Louis (lead)

  19. #39
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package URI_Template-0.3.0 (alpha) has been released at http://pear.php.net/.

    Release notes
    -------------
    Implemented Feature Request #14763: Added new method getTemplateVariables() which returns an array containing the template variables names. (Provided by David Jean Louis.)

    Package Info
    ------------
    URI_Template is a parser for URI Templates as defined in the URI Template specification (http://bitworking.org/projects/URI-Templates).

    Related Links
    -------------
    Package home: http://pear.php.net/package/URI_Template
    Changelog: http://pear.php.net/package/URI_Template/download/0.3.0
    Download: http://download.pear.php.net/package...late-0.3.0.tgz

    Authors
    -------
    Martin Jansen <mj@php.net> (lead)

  20. #40
    Rédacteur

    Avatar de Yogui
    Homme Profil pro
    Directeur technique
    Inscrit en
    Février 2004
    Messages
    13 721
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yonne (Bourgogne)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Février 2004
    Messages : 13 721
    Points : 29 985
    Points
    29 985
    Par défaut
    The new PEAR package Net_UserAgent_Detect-2.5.0 (stable) has been released at http://pear.php.net/.

    Release notes
    -------------
    * Added support for Google Chrome, Firefox 3, and Safari Mobile (iphone) (matteo)
    * Fixed a path error in APC.php.

    Package Info
    ------------
    The Net_UserAgent object does a number of tests on an HTTP user
    agent string. The results of these tests are available via methods of
    the object.

    This module is based upon the JavaScript browser detection code
    available at http://www.mozilla.org/docs/web-deve...wser_type.html.
    This module had many influences from the lib/Browser.php code in
    version 1.3 of Horde.

    Related Links
    -------------
    Package home: http://pear.php.net/package/Net_UserAgent_Detect
    Changelog: http://pear.php.net/package/Net_User...download/2.5.0
    Download: http://download.pear.php.net/package...tect-2.5.0.tgz

    Authors
    -------
    Dan Allen (helper)
    Jason Rust <jason@rustyparts.com> (lead)
    David Costa <gurugeek@php.net> (helper)

Discussions similaires

  1. [XML] Annonces d'extensions et de paquetages
    Par Community Management dans le forum Bibliothèques et frameworks
    Réponses: 10
    Dernier message: 22/01/2009, 15h34
  2. [Web Service][Services Web] Annonces d'extensions et de paquetages
    Par Community Management dans le forum Bibliothèques et frameworks
    Réponses: 26
    Dernier message: 22/01/2009, 15h33
  3. [PEAR][DB] Annonces de nouvelles versions
    Par Lana.Bauer dans le forum Bibliothèques et frameworks
    Réponses: 4
    Dernier message: 22/01/2009, 15h31
  4. [PEAR][HTML_QuickForm] Annonces de paquetages
    Par Community Management dans le forum Bibliothèques et frameworks
    Réponses: 1
    Dernier message: 23/09/2008, 20h05
  5. Annonces de paquetages
    Par RideKick dans le forum GTK+ avec PHP
    Réponses: 0
    Dernier message: 03/08/2008, 10h51

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo