Make WordPress Core

Changeset 6554


Ignore:
Timestamp:
01/04/2008 08:05:07 PM (17 years ago)
Author:
ryan
Message:

Some file level phpdoc from darkdragon. fixes #5572

Location:
trunk/wp-includes
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/gettext.php

    r6488 r6554  
    11<?php
    2 /*
     2/**
     3 * PHP-Gettext External Library: gettext_reader class
     4 *
     5 * @package External
     6 * @subpackage PHP-gettext
     7 *
     8 * @internal
    39     Copyright (c) 2003 Danilo Segan <danilo@kvota.net>.
    410     Copyright (c) 2005 Nico Kaiser <nico@siriux.net>
  • trunk/wp-includes/registration-functions.php

    r6514 r6554  
    11<?php
    2 // Deprecated.  Use registration.php.
     2/**
     3 * Deprecated. Use registration.php.
     4 *
     5 * @package WordPress
     6 */
    37_deprecated_file( basename(__FILE__), '0.0', 'registration.php' );
    48require_once(ABSPATH . WPINC .  '/registration.php');
  • trunk/wp-includes/rss-functions.php

    r6514 r6554  
    11<?php
    2 // Deprecated.  Use rss.php instead.
     2/**
     3 * Deprecated.  Use rss.php instead.
     4 *
     5 * @package WordPress
     6 */
    37
    48_deprecated_file( basename(__FILE__), '0.0', 'rss.php' );
  • trunk/wp-includes/streams.php

    r6026 r6554  
    11<?php
    2 /*
     2/**
     3 * PHP-Gettext External Library: StreamReader classes
     4 *
     5 * @package External
     6 * @subpackage PHP-gettext
     7 *
     8 * @internal
    39   Copyright (c) 2003, 2005 Danilo Segan <danilo@kvota.net>.
    410
     
    1925   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    2026
    21 */
     27 */
    2228
    2329
  • trunk/wp-includes/vars.php

    r6104 r6554  
    11<?php
     2/**
     3 * Creates common globals for the rest of WordPress
     4 *
     5 * Sets $pagenow global which is the current page. Checks
     6 * for the browser to set which one is currently being used.
     7 *
     8 * Detects which user environment WordPress is being used on.
     9 * Only attempts to check for Apache and IIS. Two web servers
     10 * with known permalink capability.
     11 *
     12 * @package WordPress
     13 */
    214
    315// On which page are we ?
     
    4254
    4355// Server detection
     56
     57/**
     58 * Whether the server software is Apache or something else
     59 * @global bool $is_apache
     60 */
    4461$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
     62
     63/**
     64 * Whether the server software is IIS or something else
     65 * @global bool $is_IIS
     66 */
    4567$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
    4668
  • trunk/wp-includes/version.php

    r6177 r6554  
    11<?php
     2/**
     3 * This holds the version number in a separate file so we can bump it without cluttering the SVN
     4 */
    25
    3 // This holds the version number in a separate file so we can bump it without cluttering the SVN
     6/**
     7 * The WordPress version string
     8 *
     9 * @global string $wp_version
     10 */
     11$wp_version = '2.4-bleeding';
    412
    5 $wp_version = '2.4-bleeding';
     13/**
     14 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
     15 * changes.
     16 *
     17 * @global int $wp_db_version
     18 */
    619$wp_db_version = 6124;
    720
Note: See TracChangeset for help on using the changeset viewer.