Some file level phpdoc from darkdragon. fixes #5572
git-svn-id: http://svn.automattic.com/wordpress/trunk@6554 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
502a542d64
commit
4374db281e
|
@ -1,5 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/**
|
||||||
|
* PHP-Gettext External Library: gettext_reader class
|
||||||
|
*
|
||||||
|
* @package External
|
||||||
|
* @subpackage PHP-gettext
|
||||||
|
*
|
||||||
|
* @internal
|
||||||
Copyright (c) 2003 Danilo Segan <danilo@kvota.net>.
|
Copyright (c) 2003 Danilo Segan <danilo@kvota.net>.
|
||||||
Copyright (c) 2005 Nico Kaiser <nico@siriux.net>
|
Copyright (c) 2005 Nico Kaiser <nico@siriux.net>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
// Deprecated. Use registration.php.
|
/**
|
||||||
|
* Deprecated. Use registration.php.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
_deprecated_file( basename(__FILE__), '0.0', 'registration.php' );
|
_deprecated_file( basename(__FILE__), '0.0', 'registration.php' );
|
||||||
require_once(ABSPATH . WPINC . '/registration.php');
|
require_once(ABSPATH . WPINC . '/registration.php');
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
// Deprecated. Use rss.php instead.
|
/**
|
||||||
|
* Deprecated. Use rss.php instead.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
|
|
||||||
_deprecated_file( basename(__FILE__), '0.0', 'rss.php' );
|
_deprecated_file( basename(__FILE__), '0.0', 'rss.php' );
|
||||||
require_once (ABSPATH . WPINC . '/rss.php');
|
require_once (ABSPATH . WPINC . '/rss.php');
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/**
|
||||||
|
* PHP-Gettext External Library: StreamReader classes
|
||||||
|
*
|
||||||
|
* @package External
|
||||||
|
* @subpackage PHP-gettext
|
||||||
|
*
|
||||||
|
* @internal
|
||||||
Copyright (c) 2003, 2005 Danilo Segan <danilo@kvota.net>.
|
Copyright (c) 2003, 2005 Danilo Segan <danilo@kvota.net>.
|
||||||
|
|
||||||
This file is part of PHP-gettext.
|
This file is part of PHP-gettext.
|
||||||
|
@ -18,7 +24,7 @@
|
||||||
along with PHP-gettext; if not, write to the Free Software
|
along with PHP-gettext; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
// Simple class to wrap file streams, string streams, etc.
|
// Simple class to wrap file streams, string streams, etc.
|
||||||
|
|
|
@ -1,4 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Creates common globals for the rest of WordPress
|
||||||
|
*
|
||||||
|
* Sets $pagenow global which is the current page. Checks
|
||||||
|
* for the browser to set which one is currently being used.
|
||||||
|
*
|
||||||
|
* Detects which user environment WordPress is being used on.
|
||||||
|
* Only attempts to check for Apache and IIS. Two web servers
|
||||||
|
* with known permalink capability.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
|
|
||||||
// On which page are we ?
|
// On which page are we ?
|
||||||
if ( is_admin() ) {
|
if ( is_admin() ) {
|
||||||
|
@ -41,7 +53,17 @@ if (strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false) {
|
||||||
$is_IE = ( $is_macIE || $is_winIE );
|
$is_IE = ( $is_macIE || $is_winIE );
|
||||||
|
|
||||||
// Server detection
|
// Server detection
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether the server software is Apache or something else
|
||||||
|
* @global bool $is_apache
|
||||||
|
*/
|
||||||
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
|
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether the server software is IIS or something else
|
||||||
|
* @global bool $is_IIS
|
||||||
|
*/
|
||||||
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
|
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -1,8 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* This holds the version number in a separate file so we can bump it without cluttering the SVN
|
||||||
|
*/
|
||||||
|
|
||||||
// This holds the version number in a separate file so we can bump it without cluttering the SVN
|
/**
|
||||||
|
* The WordPress version string
|
||||||
|
*
|
||||||
|
* @global string $wp_version
|
||||||
|
*/
|
||||||
$wp_version = '2.4-bleeding';
|
$wp_version = '2.4-bleeding';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
|
||||||
|
* changes.
|
||||||
|
*
|
||||||
|
* @global int $wp_db_version
|
||||||
|
*/
|
||||||
$wp_db_version = 6124;
|
$wp_db_version = 6124;
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue