mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Updated phpdoc for external libs. See #7038 props jacobsantos.
git-svn-id: http://svn.automattic.com/wordpress/trunk@8082 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a9571e003a
commit
f8a32e8d47
@ -7,20 +7,12 @@
|
||||
* @link http://www.openwall.com/phpass/
|
||||
*/
|
||||
|
||||
#
|
||||
# Portable PHP password hashing framework.
|
||||
#
|
||||
# Version 0.1 / genuine.
|
||||
#
|
||||
# Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in
|
||||
# the public domain.
|
||||
#
|
||||
# There's absolutely no warranty.
|
||||
#
|
||||
# The homepage URL for this framework is:
|
||||
#
|
||||
# http://www.openwall.com/phpass/
|
||||
#
|
||||
# Please be sure to update the Version line if you edit this file in any way.
|
||||
# It is suggested that you leave the main version number intact, but indicate
|
||||
# your project name (after the slash) and add your own revision information.
|
||||
@ -32,6 +24,15 @@
|
||||
# Obviously, since this code is in the public domain, the above are not
|
||||
# requirements (there can be none), but merely suggestions.
|
||||
#
|
||||
|
||||
/**
|
||||
* Portable PHP password hashing framework.
|
||||
*
|
||||
* @package phpass
|
||||
* @version 0.1 / genuine
|
||||
* @link http://www.openwall.com/phpass/
|
||||
* @since 2.5
|
||||
*/
|
||||
class PasswordHash {
|
||||
var $itoa64;
|
||||
var $iteration_count_log2;
|
||||
|
@ -1,15 +1,14 @@
|
||||
<?php
|
||||
////////////////////////////////////////////////////
|
||||
// PHPMailer - PHP email class
|
||||
//
|
||||
// Class for sending email using either
|
||||
// sendmail, PHP mail(), or SMTP. Methods are
|
||||
// based upon the standard AspEmail(tm) classes.
|
||||
//
|
||||
// Copyright (C) 2001 - 2003 Brent R. Matzelle
|
||||
//
|
||||
// License: LGPL, see LICENSE
|
||||
////////////////////////////////////////////////////
|
||||
/**
|
||||
* PHPMailer - PHP email class
|
||||
*
|
||||
* Class for sending email using either sendmail, PHP mail(), or SMTP. Methods
|
||||
* are based upon the standard AspEmail(tm) classes.
|
||||
*
|
||||
* @copyright 2001 - 2003 Brent R. Matzelle
|
||||
* @license LGPL
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
/**
|
||||
* PHPMailer - PHP email transport class
|
||||
|
@ -17,6 +17,11 @@
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/**
|
||||
* POP3
|
||||
*
|
||||
* @package SquirrelMail
|
||||
*/
|
||||
class POP3 {
|
||||
var $ERROR = ''; // Error string.
|
||||
|
||||
|
@ -1,23 +1,23 @@
|
||||
<?php
|
||||
////////////////////////////////////////////////////
|
||||
// SMTP - PHP SMTP class
|
||||
//
|
||||
// Version 1.02
|
||||
//
|
||||
// Define an SMTP class that can be used to connect
|
||||
// and communicate with any SMTP server. It implements
|
||||
// all the SMTP functions defined in RFC821 except TURN.
|
||||
//
|
||||
// Author: Chris Ryan
|
||||
//
|
||||
// License: LGPL, see LICENSE
|
||||
////////////////////////////////////////////////////
|
||||
/**
|
||||
* SMTP - PHP SMTP class
|
||||
*
|
||||
* Define an SMTP class that can be used to connect and communicate with any
|
||||
* SMTP server. It implements all the SMTP functions defined in RFC821 except
|
||||
* TURN.
|
||||
*
|
||||
* @version 1.02
|
||||
* @author Chris Ryan
|
||||
* @license LGPL
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
/**
|
||||
* SMTP is rfc 821 compliant and implements all the rfc 821 SMTP
|
||||
* commands except TURN which will always return a not implemented
|
||||
* error. SMTP also provides some utility methods for sending mail
|
||||
* to an SMTP server.
|
||||
*
|
||||
* @package PHPMailer
|
||||
* @author Chris Ryan
|
||||
*/
|
||||
|
@ -8,13 +8,15 @@
|
||||
* @link http://snoopy.sourceforge.net/
|
||||
* @package Snoopy
|
||||
*/
|
||||
/*************************************************
|
||||
|
||||
Snoopy - the PHP net client
|
||||
Author: Monte Ohrt <monte@ispi.net>
|
||||
Copyright (c): 1999-2000 ispi, all rights reserved
|
||||
Version: 1.01
|
||||
|
||||
if ( !in_array('Snoopy', get_declared_classes() ) ) :
|
||||
/**
|
||||
* Snoopy - the PHP net client
|
||||
*
|
||||
* @author Monte Ohrt <monte@ispi.net>
|
||||
* @copyright (c): 1999-2000 ispi, all rights reserved
|
||||
* @version 1.01
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
@ -28,22 +30,19 @@ Version: 1.01
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
You may contact the author of Snoopy by e-mail at:
|
||||
monte@ispi.net
|
||||
|
||||
Or, write to:
|
||||
Monte Ohrt
|
||||
CTO, ispi
|
||||
237 S. 70th suite 220
|
||||
Lincoln, NE 68510
|
||||
|
||||
The latest version of Snoopy can be obtained from:
|
||||
http://snoopy.sourceforge.net/
|
||||
|
||||
*************************************************/
|
||||
|
||||
if ( !in_array('Snoopy', get_declared_classes() ) ) :
|
||||
*
|
||||
* You may contact the author of Snoopy by e-mail at:
|
||||
* monte@ispi.net
|
||||
*
|
||||
* Or, write to:
|
||||
* Monte Ohrt
|
||||
* CTO, ispi
|
||||
* 237 S. 70th suite 220
|
||||
* Lincoln, NE 68510
|
||||
*
|
||||
* @link http://snoopy.sourceforge.net/ The latest version of Snoopy can be
|
||||
* obtained
|
||||
*/
|
||||
class Snoopy
|
||||
{
|
||||
/**** Public variables ****/
|
||||
|
Loading…
Reference in New Issue
Block a user