Add file level phpdoc to external libraries we use. Fixes #5443 props darkdragon.
git-svn-id: http://svn.automattic.com/wordpress/trunk@6440 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
92c4835150
commit
33fffea3f3
|
@ -1,26 +1,67 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* atomlib.php - Atom Syndication Format PHP Library
|
* Atom Syndication Format PHP Library
|
||||||
*
|
*
|
||||||
* Project: http://code.google.com/p/phpatomlib/
|
* @package AtomLib
|
||||||
*
|
* @link http://code.google.com/p/phpatomlib/
|
||||||
* Author: Elias Torres <elias@torrez.us>
|
|
||||||
* Version: 0.4
|
|
||||||
*
|
*
|
||||||
|
* @author: Elias Torres <elias@torrez.us>
|
||||||
|
* @version: 0.4
|
||||||
|
* @since 2.3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Structure that store common Atom Feed Properties
|
||||||
|
*
|
||||||
|
* @package AtomLib
|
||||||
|
*/
|
||||||
class AtomFeed {
|
class AtomFeed {
|
||||||
|
/**
|
||||||
|
* Stores Links
|
||||||
|
* @var array
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
var $links = array();
|
var $links = array();
|
||||||
|
/**
|
||||||
|
* Stores Categories
|
||||||
|
* @var array
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
var $categories = array();
|
var $categories = array();
|
||||||
|
/**
|
||||||
|
* Stores Entries
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
var $entries = array();
|
var $entries = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Structure that store Atom Entry Properties
|
||||||
|
*
|
||||||
|
* @package AtomLib
|
||||||
|
*/
|
||||||
class AtomEntry {
|
class AtomEntry {
|
||||||
|
/**
|
||||||
|
* Stores Links
|
||||||
|
* @var array
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
var $links = array();
|
var $links = array();
|
||||||
|
/**
|
||||||
|
* Stores Categories
|
||||||
|
* @var array
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
var $categories = array();
|
var $categories = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AtomLib Atom Parser API
|
||||||
|
*
|
||||||
|
* @package AtomLib
|
||||||
|
*/
|
||||||
class AtomParser {
|
class AtomParser {
|
||||||
|
|
||||||
var $NS = 'http://www.w3.org/2005/Atom';
|
var $NS = 'http://www.w3.org/2005/Atom';
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/**
|
||||||
IXR - The Inutio XML-RPC Library - (c) Incutio Ltd 2002-2005
|
* IXR - The Inutio XML-RPC Library
|
||||||
Version 1.7 (beta) - Simon Willison, 23rd May 2005
|
*
|
||||||
Site: http://scripts.incutio.com/xmlrpc/
|
* @package IXR
|
||||||
Manual: http://scripts.incutio.com/xmlrpc/manual.php
|
* @since 1.5
|
||||||
Made available under the BSD License: http://www.opensource.org/licenses/bsd-license.php
|
*
|
||||||
*/
|
* @copyright Incutio Ltd 2002-2005
|
||||||
|
* @version 1.7 (beta) 23rd May 2005
|
||||||
|
* @author Simon Willison
|
||||||
|
* @link http://scripts.incutio.com/xmlrpc/ Site
|
||||||
|
* @link http://scripts.incutio.com/xmlrpc/manual.php Manual
|
||||||
|
* @license BSD License http://www.opensource.org/licenses/bsd-license.php
|
||||||
|
*/
|
||||||
|
|
||||||
class IXR_Value {
|
class IXR_Value {
|
||||||
var $data;
|
var $data;
|
||||||
|
@ -812,4 +818,4 @@ class IXR_ClientMulticall extends IXR_Client {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Portable PHP password hashing framework.
|
||||||
|
* @package phpass
|
||||||
|
* @since 2.4
|
||||||
|
* @version 0.1
|
||||||
|
* @link http://www.openwall.com/phpass/
|
||||||
|
*/
|
||||||
|
|
||||||
#
|
#
|
||||||
# Portable PHP password hashing framework.
|
# Portable PHP password hashing framework.
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,20 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/**
|
* mail_fetch/setup.php
|
||||||
* mail_fetch/setup.php
|
*
|
||||||
*
|
* @package SquirrelMail
|
||||||
* Copyright (c) 1999-2006 The SquirrelMail Project Team
|
*
|
||||||
*
|
* @copyright (c) 1999-2006 The SquirrelMail Project Team
|
||||||
* Copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
|
*
|
||||||
* Modified by Philippe Mingo 2001 mingo@rotedic.com
|
* @copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
|
||||||
* An RFC 1939 compliant wrapper class for the POP3 protocol.
|
* Modified by Philippe Mingo 2001 mingo@rotedic.com
|
||||||
*
|
* An RFC 1939 compliant wrapper class for the POP3 protocol.
|
||||||
* Licensed under the GNU GPL. For full terms see the file COPYING.
|
*
|
||||||
*
|
* Licensed under the GNU GPL. For full terms see the file COPYING.
|
||||||
* pop3 class
|
*
|
||||||
*
|
* pop3 class
|
||||||
* $Id$
|
*
|
||||||
*/
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
class POP3 {
|
class POP3 {
|
||||||
var $ERROR = ''; // Error string.
|
var $ERROR = ''; // Error string.
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Snoopy - the PHP net client
|
||||||
|
* @author Monte Ohrt <monte@ispi.net>
|
||||||
|
* @copyright 1999-2000 ispi, all rights reserved
|
||||||
|
* @version 1.01
|
||||||
|
* @license GNU Lesser GPL
|
||||||
|
* @link http://snoopy.sourceforge.net/
|
||||||
|
* @package Snoopy
|
||||||
|
*/
|
||||||
/*************************************************
|
/*************************************************
|
||||||
|
|
||||||
Snoopy - the PHP net client
|
Snoopy - the PHP net client
|
||||||
|
|
Loading…
Reference in New Issue