Changeset 8082
- Timestamp:
- 06/14/2008 04:36:13 PM (17 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-phpass.php
r7421 r8082 9 9 10 10 # 11 # Portable PHP password hashing framework.12 #13 # Version 0.1 / genuine.14 #15 11 # Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in 16 12 # the public domain. 17 13 # 18 14 # There's absolutely no warranty. 19 #20 # The homepage URL for this framework is:21 #22 # http://www.openwall.com/phpass/23 15 # 24 16 # Please be sure to update the Version line if you edit this file in any way. … … 33 25 # requirements (there can be none), but merely suggestions. 34 26 # 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 */ 35 36 class PasswordHash { 36 37 var $itoa64; -
trunk/wp-includes/class-phpmailer.php
r7451 r8082 1 1 <?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 */ 13 12 14 13 /** -
trunk/wp-includes/class-pop3.php
r6440 r8082 18 18 */ 19 19 20 /** 21 * POP3 22 * 23 * @package SquirrelMail 24 */ 20 25 class POP3 { 21 26 var $ERROR = ''; // Error string. -
trunk/wp-includes/class-smtp.php
r5700 r8082 1 1 <?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 */ 15 14 16 15 /** … … 19 18 * error. SMTP also provides some utility methods for sending mail 20 19 * to an SMTP server. 20 * 21 21 * @package PHPMailer 22 22 * @author Chris Ryan -
trunk/wp-includes/class-snoopy.php
r6440 r8082 9 9 * @package Snoopy 10 10 */ 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 12 if ( !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 * 18 20 * This library is free software; you can redistribute it and/or 19 21 * modify it under the terms of the GNU Lesser General Public … … 29 31 * License along with this library; if not, write to the Free Software 30 32 * 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 */ 47 46 class Snoopy 48 47 {
Note: See TracChangeset
for help on using the changeset viewer.