Make WordPress Core

Ticket #5443: phpdoc.thirdparty.diff

File phpdoc.thirdparty.diff, 4.4 KB (added by darkdragon, 18 years ago)

Based off r6367, adds file level documentation

  • atomlib.php

     
    11<?php
    22/*
    3  * atomlib.php - Atom Syndication Format PHP Library
     3 * Atom Syndication Format PHP Library
    44 *
    5  * Project: http://code.google.com/p/phpatomlib/
     5 * @package AtomLib
     6 * @link http://code.google.com/p/phpatomlib/
    67 *
    7  * Author: Elias Torres <elias@torrez.us>
    8  * Version: 0.4
     8 * @author: Elias Torres <elias@torrez.us>
     9 * @version: 0.4
     10 * @since 2.3
     11 */
     12
     13/**
     14 * Structure that store common Atom Feed Properties
    915 *
     16 * @package AtomLib
    1017 */
    11 
    1218class AtomFeed {
     19        /**
     20         * Stores Links
     21         * @var array
     22         * @access public
     23         */
    1324    var $links = array();
     25    /**
     26     * Stores Categories
     27     * @var array
     28     * @access public
     29     */
    1430    var $categories = array();
    15 
     31        /**
     32         * Stores Entries
     33         *
     34         * @var array
     35         * @access public
     36         */
    1637    var $entries = array();
    1738}
    1839
     40/**
     41 * Structure that store Atom Entry Properties
     42 *
     43 * @package AtomLib
     44 */
    1945class AtomEntry {
     46        /**
     47         * Stores Links
     48         * @var array
     49         * @access public
     50         */
    2051    var $links = array();
     52    /**
     53     * Stores Categories
     54     * @var array
     55         * @access public
     56     */
    2157    var $categories = array();
    2258}
    2359
     60/**
     61 * AtomLib Atom Parser API
     62 *
     63 * @package AtomLib
     64 */
    2465class AtomParser {
    2566
    2667    var $NS = 'http://www.w3.org/2005/Atom';
     
    310351    }
    311352}
    312353
    313 ?>
     354?>
     355 No newline at end of file
  • class-IXR.php

     
    11<?php
    2 /*
    3    IXR - The Inutio XML-RPC Library - (c) Incutio Ltd 2002-2005
    4    Version 1.7 (beta) - Simon Willison, 23rd May 2005
    5    Site:   http://scripts.incutio.com/xmlrpc/
    6    Manual: http://scripts.incutio.com/xmlrpc/manual.php
    7    Made available under the BSD License: http://www.opensource.org/licenses/bsd-license.php
    8 */
     2/**
     3 * IXR - The Inutio XML-RPC Library
     4 *
     5 * @package IXR
     6 * @since 1.5
     7 *
     8 * @copyright Incutio Ltd 2002-2005
     9 * @version 1.7 (beta) 23rd May 2005
     10 * @author Simon Willison
     11 * @link http://scripts.incutio.com/xmlrpc/ Site
     12 * @link http://scripts.incutio.com/xmlrpc/manual.php Manual
     13 * @license BSD License http://www.opensource.org/licenses/bsd-license.php
     14 */
    915
    1016class IXR_Value {
    1117    var $data;
  • class-phpass.php

     
    11<?php
     2/**
     3 * Portable PHP password hashing framework.
     4 * @package phpass
     5 * @since 2.4
     6 * @version 0.1
     7 * @link http://www.openwall.com/phpass/
     8 */
     9
    210#
    311# Portable PHP password hashing framework.
    412#
  • class-pop3.php

     
    11<?php
     2/**
     3 * mail_fetch/setup.php
     4 *
     5 * @package SquirrelMail
     6 *
     7 * @copyright (c) 1999-2006 The SquirrelMail Project Team
     8 *
     9 * @copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
     10 * Modified by Philippe Mingo 2001 mingo@rotedic.com
     11 * An RFC 1939 compliant wrapper class for the POP3 protocol.
     12 *
     13 * Licensed under the GNU GPL. For full terms see the file COPYING.
     14 *
     15 * pop3 class
     16 *
     17 * $Id$
     18 */
    219
    3    /**
    4     * mail_fetch/setup.php
    5     *
    6     * Copyright (c) 1999-2006 The SquirrelMail Project Team
    7     *
    8     * Copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
    9     * Modified by Philippe Mingo 2001 mingo@rotedic.com
    10     * An RFC 1939 compliant wrapper class for the POP3 protocol.
    11     *
    12     * Licensed under the GNU GPL. For full terms see the file COPYING.
    13     *
    14     * pop3 class
    15     *
    16     * $Id$
    17     */
    18 
    1920class POP3 {
    2021    var $ERROR      = '';       //  Error string.
    2122
  • class-snoopy.php

     
    11<?php
    2 
     2/**
     3 * Snoopy - the PHP net client
     4 * @author Monte Ohrt <monte@ispi.net>
     5 * @copyright 1999-2000 ispi, all rights reserved
     6 * @version 1.01
     7 * @license GNU Lesser GPL
     8 * @link http://snoopy.sourceforge.net/
     9 * @package Snoopy
     10 */
    311/*************************************************
    412
    513Snoopy - the PHP net client