Make WordPress Core

Changeset 8082


Ignore:
Timestamp:
06/14/2008 04:36:13 PM (17 years ago)
Author:
westi
Message:

Updated phpdoc for external libs. See #7038 props jacobsantos.

Location:
trunk/wp-includes
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-phpass.php

    r7421 r8082  
    99
    1010#
    11 # Portable PHP password hashing framework.
    12 #
    13 # Version 0.1 / genuine.
    14 #
    1511# Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in
    1612# the public domain.
    1713#
    1814# There's absolutely no warranty.
    19 #
    20 # The homepage URL for this framework is:
    21 #
    22 #   http://www.openwall.com/phpass/
    2315#
    2416# Please be sure to update the Version line if you edit this file in any way.
     
    3325# requirements (there can be none), but merely suggestions.
    3426#
     27
     28/**
     29 * Portable PHP password hashing framework.
     30 *
     31 * @package phpass
     32 * @version 0.1 / genuine
     33 * @link http://www.openwall.com/phpass/
     34 * @since 2.5
     35 */
    3536class PasswordHash {
    3637    var $itoa64;
  • trunk/wp-includes/class-phpmailer.php

    r7451 r8082  
    11<?php
    2 ////////////////////////////////////////////////////
    3 // PHPMailer - PHP email class
    4 //
    5 // Class for sending email using either
    6 // sendmail, PHP mail(), or SMTP.  Methods are
    7 // based upon the standard AspEmail(tm) classes.
    8 //
    9 // Copyright (C) 2001 - 2003  Brent R. Matzelle
    10 //
    11 // License: LGPL, see LICENSE
    12 ////////////////////////////////////////////////////
     2/**
     3 * PHPMailer - PHP email class
     4 *
     5 * Class for sending email using either sendmail, PHP mail(), or SMTP. Methods
     6 * are based upon the standard AspEmail(tm) classes.
     7 *
     8 * @copyright 2001 - 2003 Brent R. Matzelle
     9 * @license LGPL
     10 * @package PHPMailer
     11 */
    1312
    1413/**
  • trunk/wp-includes/class-pop3.php

    r6440 r8082  
    1818 */
    1919
     20/**
     21 * POP3
     22 *
     23 * @package SquirrelMail
     24 */
    2025class POP3 {
    2126    var $ERROR      = '';       //  Error string.
  • trunk/wp-includes/class-smtp.php

    r5700 r8082  
    11<?php
    2 ////////////////////////////////////////////////////
    3 // SMTP - PHP SMTP class
    4 //
    5 // Version 1.02
    6 //
    7 // Define an SMTP class that can be used to connect
    8 // and communicate with any SMTP server. It implements
    9 // all the SMTP functions defined in RFC821 except TURN.
    10 //
    11 // Author: Chris Ryan
    12 //
    13 // License: LGPL, see LICENSE
    14 ////////////////////////////////////////////////////
     2/**
     3 * SMTP - PHP SMTP class
     4 *
     5 * Define an SMTP class that can be used to connect and communicate with any
     6 * SMTP server. It implements all the SMTP functions defined in RFC821 except
     7 * TURN.
     8 *
     9 * @version 1.02
     10 * @author Chris Ryan
     11 * @license LGPL
     12 * @package PHPMailer
     13 */
    1514
    1615/**
     
    1918 * error. SMTP also provides some utility methods for sending mail
    2019 * to an SMTP server.
     20 *
    2121 * @package PHPMailer
    2222 * @author Chris Ryan
  • trunk/wp-includes/class-snoopy.php

    r6440 r8082  
    99 * @package Snoopy
    1010 */
    11 /*************************************************
    12 
    13 Snoopy - the PHP net client
    14 Author: Monte Ohrt <monte@ispi.net>
    15 Copyright (c): 1999-2000 ispi, all rights reserved
    16 Version: 1.01
    17 
     11
     12if ( !in_array('Snoopy', get_declared_classes() ) ) :
     13/**
     14 * Snoopy - the PHP net client
     15 *
     16 * @author Monte Ohrt <monte@ispi.net>
     17 * @copyright (c): 1999-2000 ispi, all rights reserved
     18 * @version 1.01
     19 *
    1820 * This library is free software; you can redistribute it and/or
    1921 * modify it under the terms of the GNU Lesser General Public
     
    2931 * License along with this library; if not, write to the Free Software
    3032 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    31 
    32 You may contact the author of Snoopy by e-mail at:
    33 monte@ispi.net
    34 
    35 Or, write to:
    36 Monte Ohrt
    37 CTO, ispi
    38 237 S. 70th suite 220
    39 Lincoln, NE 68510
    40 
    41 The latest version of Snoopy can be obtained from:
    42 http://snoopy.sourceforge.net/
    43 
    44 *************************************************/
    45 
    46 if ( !in_array('Snoopy', get_declared_classes() ) ) :
     33 *
     34 * You may contact the author of Snoopy by e-mail at:
     35 * monte@ispi.net
     36 *
     37 * Or, write to:
     38 * Monte Ohrt
     39 * CTO, ispi
     40 * 237 S. 70th suite 220
     41 * Lincoln, NE 68510
     42 *
     43 * @link http://snoopy.sourceforge.net/ The latest version of Snoopy can be
     44 *      obtained
     45 */
    4746class Snoopy
    4847{
Note: See TracChangeset for help on using the changeset viewer.