Make WordPress Core

Changeset 37674


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (8 years ago)
Author:
peterwilsoncc
Message:

DOCS: Replace HTTP links with HTTPS.

Replaces unsecure links in documentation and translator comments with their secure versions.

Props johnpgreen, netweb

Fixes #36993

Location:
trunk
Files:
53 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/readme.html

    r37183 r37674  
    5454<h2>System Requirements</h2>
    5555<ul>
    56     <li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
    57     <li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
     56    <li><a href="https://secure.php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
     57    <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
    5858</ul>
    5959
    6060<h3>Recommendations</h3>
    6161<ul>
    62     <li><a href="http://php.net/">PHP</a> version <strong>5.6</strong> or higher.</li>
    63     <li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</li>
    64     <li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
     62    <li><a href="https://secure.php.net/">PHP</a> version <strong>5.6</strong> or higher.</li>
     63    <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</li>
     64    <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
    6565    <li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
    6666</ul>
  • trunk/src/wp-admin/comment.php

    r37488 r37674  
    198198        /* translators: 1: comment date, 2: comment time */
    199199        $submitted = sprintf( __( '%1$s at %2$s' ),
    200             /* translators: comment date format. See http://php.net/date */
     200            /* translators: comment date format. See https://secure.php.net/date */
    201201            get_comment_date( __( 'Y/m/d' ), $comment ),
    202202            get_comment_date( __( 'g:i a' ), $comment )
  • trunk/src/wp-admin/edit-form-advanced.php

    r37488 r37674  
    130130}
    131131
    132 /* translators: Publish box date format, see http://php.net/date */
     132/* translators: Publish box date format, see https://secure.php.net/date */
    133133$scheduled_date = date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_date ) );
    134134
  • trunk/src/wp-admin/edit-form-comment.php

    r37611 r37674  
    9090<div class="misc-pub-section curtime misc-pub-curtime">
    9191<?php
    92 /* translators: Publish box date format, see http://php.net/date */
     92/* translators: Publish box date format, see https://secure.php.net/date */
    9393$datef = __( 'M j, Y @ H:i' );
    9494?>
  • trunk/src/wp-admin/edit-tag-form.php

    r37488 r37674  
    4646
    4747/**
    48  * Use with caution, see http://codex.wordpress.org/Function_Reference/wp_reset_vars
     48 * Use with caution, see https://codex.wordpress.org/Function_Reference/wp_reset_vars
    4949 */
    5050wp_reset_vars( array( 'wp_http_referer' ) );
  • trunk/src/wp-admin/freedoms.php

    r37170 r37674  
    4848printf( __( 'Every plugin and theme in WordPress.org&#8217;s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it&#8217;s GPL</a> first. If they don&#8217;t respect the WordPress license, we don&#8217;t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); ?></p>
    4949
    50 <p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="http://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
     50<p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
    5151
    5252</div>
  • trunk/src/wp-admin/includes/ajax-actions.php

    r37664 r37674  
    17981798            $time = '';
    17991799        } else {
    1800             /* translators: date format in table columns, see http://php.net/date */
     1800            /* translators: date format in table columns, see https://secure.php.net/date */
    18011801            $time = mysql2date(__('Y/m/d'), $post->post_date);
    18021802        }
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r37624 r37674  
    718718        /* translators: 1: comment date, 2: comment time */
    719719        $submitted = sprintf( __( '%1$s at %2$s' ),
    720             /* translators: comment date format. See http://php.net/date */
     720            /* translators: comment date format. See https://secure.php.net/date */
    721721            get_comment_date( __( 'Y/m/d' ), $comment ),
    722722            get_comment_date( __( 'g:i a' ), $comment )
  • trunk/src/wp-admin/includes/class-wp-filesystem-base.php

    r36250 r37674  
    317317     * From the PHP documentation page for fileperms().
    318318     *
    319      * @link http://docs.php.net/fileperms
     319     * @link https://secure.php.net/manual/en/function.fileperms.php
    320320     *
    321321     * @access public
     
    385385     * From "info at rvgate dot nl"'s comment on the PHP documentation for chmod()
    386386     *
    387      * @link http://docs.php.net/manual/en/function.chmod.php#49614
     387     * @link https://secure.php.net/manual/en/function.chmod.php#49614
    388388     *
    389389     * @access public
  • trunk/src/wp-admin/includes/dashboard.php

    r37537 r37674  
    836836                $relative = __( 'Tomorrow' );
    837837            } elseif ( date( 'Y', $time ) !== date( 'Y', current_time( 'timestamp' ) ) ) {
    838                 /* translators: date and time format for recent posts on the dashboard, from a different calendar year, see http://php.net/date */
     838                /* translators: date and time format for recent posts on the dashboard, from a different calendar year, see https://secure.php.net/date */
    839839                $relative = date_i18n( __( 'M jS Y' ), $time );
    840840            } else {
    841                 /* translators: date and time format for recent posts on the dashboard, see http://php.net/date */
     841                /* translators: date and time format for recent posts on the dashboard, see https://secure.php.net/date */
    842842                $relative = date_i18n( __( 'M jS' ), $time );
    843843            }
  • trunk/src/wp-admin/includes/meta-boxes.php

    r37488 r37674  
    171171
    172172<?php
    173 /* translators: Publish box date format, see http://php.net/date */
     173/* translators: Publish box date format, see https://secure.php.net/date */
    174174$datef = __( 'M j, Y @ H:i' );
    175175if ( 0 != $post->ID ) {
     
    297297<div id="misc-publishing-actions">
    298298    <?php
    299     /* translators: Publish box date format, see http://php.net/date */
     299    /* translators: Publish box date format, see https://secure.php.net/date */
    300300    $datef = __( 'M j, Y @ H:i' );
    301301    $stamp = __('Uploaded on: <b>%1$s</b>');
  • trunk/src/wp-admin/includes/misc.php

    r37619 r37674  
    882882            $response['wp_autosave'] = array( 'success' => false, 'message' => __( 'Error while saving.' ) );
    883883        } else {
    884             /* translators: draft saved date format, see http://php.net/date */
     884            /* translators: draft saved date format, see https://secure.php.net/date */
    885885            $draft_saved_date_format = __( 'g:i:s a' );
    886886            /* translators: %s: date and time */
  • trunk/src/wp-admin/includes/network.php

    r37488 r37674  
    181181            printf( __( 'If %1$s is disabled, ask your administrator to enable that module, or look at the <a href="%2$s">Apache documentation</a> or <a href="%3$s">elsewhere</a> for help setting it up.' ),
    182182                '<code>mod_rewrite</code>',
    183                 'http://httpd.apache.org/docs/mod/mod_rewrite.html',
    184                 'http://www.google.com/search?q=apache+mod_rewrite'
     183                'https://httpd.apache.org/docs/mod/mod_rewrite.html',
     184                'https://www.google.com/search?q=apache+mod_rewrite'
    185185            );
    186186            echo '</p></div>';
  • trunk/src/wp-admin/includes/schema.php

    r37524 r37674  
    382382    $gmt_offset = 0;
    383383    /* translators: default GMT offset or timezone string. Must be either a valid offset (-12 to 14)
    384        or a valid timezone string (America/New_York). See http://us3.php.net/manual/en/timezones.php
     384       or a valid timezone string (America/New_York). See https://secure.php.net/manual/en/timezones.php
    385385       for all timezone strings supported by PHP.
    386386    */
     
    416416    'default_pingback_flag' => 1,
    417417    'posts_per_page' => 10,
    418     /* translators: default date format, see http://php.net/date */
     418    /* translators: default date format, see https://secure.php.net/date */
    419419    'date_format' => __('F j, Y'),
    420     /* translators: default time format, see http://php.net/date */
     420    /* translators: default time format, see https://secure.php.net/date */
    421421    'time_format' => __('g:i a'),
    422     /* translators: links last updated date format, see http://php.net/date */
     422    /* translators: links last updated date format, see https://secure.php.net/date */
    423423    'links_updated_date_format' => __('F j, Y g:i a'),
    424424    'comment_moderation' => 0,
  • trunk/src/wp-admin/options-discussion.php

    r37488 r37674  
    196196<?php
    197197$ratings = array(
    198     /* translators: Content suitability rating: http://bit.ly/89QxZA */
     198    /* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
    199199    'G' => __('G &#8212; Suitable for all audiences'),
    200     /* translators: Content suitability rating: http://bit.ly/89QxZA */
     200    /* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
    201201    'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'),
    202     /* translators: Content suitability rating: http://bit.ly/89QxZA */
     202    /* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
    203203    'R' => __('R &#8212; Intended for adult audiences above 17'),
    204     /* translators: Content suitability rating: http://bit.ly/89QxZA */
     204    /* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
    205205    'X' => __('X &#8212; Even more mature than above')
    206206);
  • trunk/src/wp-admin/options-general.php

    r37488 r37674  
    1818$title = __('General Settings');
    1919$parent_file = 'options-general.php';
    20 /* translators: date and time format for exact current time, mainly about timezones, see http://php.net/date */
     20/* translators: date and time format for exact current time, mainly about timezones, see https://secure.php.net/date */
    2121$timezone_format = _x('Y-m-d H:i:s', 'timezone date format');
    2222
  • trunk/src/wp-admin/theme-editor.php

    r37488 r37674  
    113113    $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto;
    114114    if ( is_writeable( $file ) ) {
    115         // is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
     115        // is_writable() not always reliable, check return value. see comments @ https://secure.php.net/is_writable
    116116        $f = fopen( $file, 'w+' );
    117117        if ( $f !== false ) {
  • trunk/src/wp-includes/Requests/Exception/HTTP/418.php

    r37428 r37674  
    33 * Exception for 418 I'm A Teapot responses
    44 *
    5  * @see http://tools.ietf.org/html/rfc2324
     5 * @see https://tools.ietf.org/html/rfc2324
    66 * @package Requests
    77 */
     
    1010 * Exception for 418 I'm A Teapot responses
    1111 *
    12  * @see http://tools.ietf.org/html/rfc2324
     12 * @see https://tools.ietf.org/html/rfc2324
    1313 * @package Requests
    1414 */
  • trunk/src/wp-includes/Requests/Exception/HTTP/428.php

    r37428 r37674  
    33 * Exception for 428 Precondition Required responses
    44 *
    5  * @see http://tools.ietf.org/html/rfc6585
     5 * @see https://tools.ietf.org/html/rfc6585
    66 * @package Requests
    77 */
     
    1010 * Exception for 428 Precondition Required responses
    1111 *
    12  * @see http://tools.ietf.org/html/rfc6585
     12 * @see https://tools.ietf.org/html/rfc6585
    1313 * @package Requests
    1414 */
  • trunk/src/wp-includes/Requests/Exception/HTTP/429.php

    r37428 r37674  
    33 * Exception for 429 Too Many Requests responses
    44 *
    5  * @see http://tools.ietf.org/html/draft-nottingham-http-new-status-04
     5 * @see https://tools.ietf.org/html/draft-nottingham-http-new-status-04
    66 * @package Requests
    77 */
     
    1010 * Exception for 429 Too Many Requests responses
    1111 *
    12  * @see http://tools.ietf.org/html/draft-nottingham-http-new-status-04
     12 * @see https://tools.ietf.org/html/draft-nottingham-http-new-status-04
    1313 * @package Requests
    1414 */
  • trunk/src/wp-includes/Requests/Exception/HTTP/431.php

    r37428 r37674  
    33 * Exception for 431 Request Header Fields Too Large responses
    44 *
    5  * @see http://tools.ietf.org/html/rfc6585
     5 * @see https://tools.ietf.org/html/rfc6585
    66 * @package Requests
    77 */
     
    1010 * Exception for 431 Request Header Fields Too Large responses
    1111 *
    12  * @see http://tools.ietf.org/html/rfc6585
     12 * @see https://tools.ietf.org/html/rfc6585
    1313 * @package Requests
    1414 */
  • trunk/src/wp-includes/Requests/Exception/HTTP/511.php

    r37428 r37674  
    33 * Exception for 511 Network Authentication Required responses
    44 *
    5  * @see http://tools.ietf.org/html/rfc6585
     5 * @see https://tools.ietf.org/html/rfc6585
    66 * @package Requests
    77 */
     
    1010 * Exception for 511 Network Authentication Required responses
    1111 *
    12  * @see http://tools.ietf.org/html/rfc6585
     12 * @see https://tools.ietf.org/html/rfc6585
    1313 * @package Requests
    1414 */
  • trunk/src/wp-includes/Requests/IDNAEncoder.php

    r37428 r37674  
    88 * @package Requests
    99 * @subpackage Utilities
    10  * @see http://tools.ietf.org/html/rfc3490 IDNA specification
    11  * @see http://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification
     10 * @see https://tools.ietf.org/html/rfc3490 IDNA specification
     11 * @see https://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification
    1212 */
    1313class Requests_IDNAEncoder {
     
    1515     * ACE prefix used for IDNA
    1616     *
    17      * @see http://tools.ietf.org/html/rfc3490#section-5
     17     * @see https://tools.ietf.org/html/rfc3490#section-5
    1818     * @var string
    1919     */
     
    2323     * Bootstrap constant for Punycode
    2424     *
    25      * @see http://tools.ietf.org/html/rfc3492#section-5
     25     * @see https://tools.ietf.org/html/rfc3492#section-5
    2626     * @var int
    2727     */
     
    334334     * Convert a digit to its respective character
    335335     *
    336      * @see http://tools.ietf.org/html/rfc3492#section-5
     336     * @see https://tools.ietf.org/html/rfc3492#section-5
    337337     * @throws Requests_Exception On invalid digit (`idna.invalid_digit`)
    338338     *
     
    354354     * Adapt the bias
    355355     *
    356      * @see http://tools.ietf.org/html/rfc3492#section-6.1
     356     * @see https://tools.ietf.org/html/rfc3492#section-6.1
    357357     * @param int $delta
    358358     * @param int $numpoints
  • trunk/src/wp-includes/Requests/SSL.php

    r37428 r37674  
    2323     * Instead
    2424     *
    25      * @see http://tools.ietf.org/html/rfc2818#section-3.1 RFC2818, Section 3.1
     25     * @see https://tools.ietf.org/html/rfc2818#section-3.1 RFC2818, Section 3.1
    2626     *
    2727     * @throws Requests_Exception On not obtaining a match for the host (`fsockopen.ssl.no_match`)
  • trunk/src/wp-includes/Requests/Session.php

    r37428 r37674  
    176176     * specification recommends that should send an ETag
    177177     *
    178      * @link http://tools.ietf.org/html/rfc5789
     178     * @link https://tools.ietf.org/html/rfc5789
    179179     */
    180180    public function patch($url, $headers, $data = array(), $options = array()) {
  • trunk/src/wp-includes/Requests/Transport/cURL.php

    r37430 r37674  
    3434     * Information on the current request
    3535     *
    36      * @var array cURL information array, see {@see http://php.net/curl_getinfo}
     36     * @var array cURL information array, see {@see https://secure.php.net/curl_getinfo}
    3737     */
    3838    public $info;
     
    482482     *
    483483     * @param string $url
    484      * @param array|object $data Data to build query using, see {@see http://php.net/http_build_query}
     484     * @param array|object $data Data to build query using, see {@see https://secure.php.net/http_build_query}
    485485     * @return string URL with data
    486486     */
  • trunk/src/wp-includes/Requests/Transport/fsockopen.php

    r37428 r37674  
    3131     * Stream metadata
    3232     *
    33      * @var array Associative array of properties, see {@see http://php.net/stream_get_meta_data}
     33     * @var array Associative array of properties, see {@see https://secure.php.net/stream_get_meta_data}
    3434     */
    3535    public $info;
     
    342342     *
    343343     * @param array $url_parts
    344      * @param array|object $data Data to build query using, see {@see http://php.net/http_build_query}
     344     * @param array|object $data Data to build query using, see {@see https://secure.php.net/http_build_query}
    345345     * @return string URL with data
    346346     */
     
    392392     * Instead
    393393     *
    394      * @see http://tools.ietf.org/html/rfc2818#section-3.1 RFC2818, Section 3.1
     394     * @see https://tools.ietf.org/html/rfc2818#section-3.1 RFC2818, Section 3.1
    395395     *
    396396     * @throws Requests_Exception On failure to connect via TLS (`fsockopen.ssl.connect_error`)
  • trunk/src/wp-includes/class-http.php

    r37514 r37674  
    701701     * Based off the HTTP http_encoding_dechunk function.
    702702     *
    703      * @link http://tools.ietf.org/html/rfc2616#section-19.4.6 Process for chunked decoding.
     703     * @link https://tools.ietf.org/html/rfc2616#section-19.4.6 Process for chunked decoding.
    704704     *
    705705     * @access public
  • trunk/src/wp-includes/class-requests.php

    r37428 r37674  
    7272     * PATCH method
    7373     *
    74      * @link http://tools.ietf.org/html/rfc5789
     74     * @link https://tools.ietf.org/html/rfc5789
    7575     * @var string
    7676     */
     
    288288     * specification recommends that should send an ETag
    289289     *
    290      * @link http://tools.ietf.org/html/rfc5789
     290     * @link https://tools.ietf.org/html/rfc5789
    291291     */
    292292    public static function patch($url, $headers, $data = array(), $options = array()) {
     
    743743     * Decoded a chunked body as per RFC 2616
    744744     *
    745      * @see http://tools.ietf.org/html/rfc2616#section-3.6.1
     745     * @see https://tools.ietf.org/html/rfc2616#section-3.6.1
    746746     * @param string $data Chunked body
    747747     * @return string Decoded body
     
    849849     * data may be returned in, some "magic offsets" are needed to ensure proper decompression
    850850     * takes place. For a simple progmatic way to determine the magic offset in use, see:
    851      * http://core.trac.wordpress.org/ticket/18273
     851     * https://core.trac.wordpress.org/ticket/18273
    852852     *
    853853     * @since 2.8.1
    854      * @link http://core.trac.wordpress.org/ticket/18273
    855      * @link http://au2.php.net/manual/en/function.gzinflate.php#70875
    856      * @link http://au2.php.net/manual/en/function.gzinflate.php#77336
     854     * @link https://core.trac.wordpress.org/ticket/18273
     855     * @link https://secure.php.net/manual/en/function.gzinflate.php#70875
     856     * @link https://secure.php.net/manual/en/function.gzinflate.php#77336
    857857     *
    858858     * @param string $gzData String to decompress.
     
    892892        // System.IO.Compression.DeflateStream.
    893893        //
    894         // See http://decompres.blogspot.com/ for a quick explanation of this
     894        // See https://decompres.blogspot.com/ for a quick explanation of this
    895895        // data type
    896896        $huffman_encoded = false;
  • trunk/src/wp-includes/class-wp-http-encoding.php

    r37492 r37674  
    8989     * @since 2.8.1
    9090     * @link https://core.trac.wordpress.org/ticket/18273
    91      * @link http://au2.php.net/manual/en/function.gzinflate.php#70875
    92      * @link http://au2.php.net/manual/en/function.gzinflate.php#77336
     91     * @link https://secure.php.net/manual/en/function.gzinflate.php#70875
     92     * @link https://secure.php.net/manual/en/function.gzinflate.php#77336
    9393     *
    9494     * @static
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r37539 r37674  
    11531153     * @since 3.4.0
    11541154     *
    1155      * @link http://en.wikipedia.org/wiki/RSS_enclosure for information on RSS enclosures.
     1155     * @link https://en.wikipedia.org/wiki/RSS_enclosure for information on RSS enclosures.
    11561156     *
    11571157     * @param array  $args {
     
    42994299
    43004300    /* Blogger API functions.
    4301      * specs on http://plant.blogger.com/api and http://groups.yahoo.com/group/bloggerDev/
     4301     * specs on http://plant.blogger.com/api and https://groups.yahoo.com/group/bloggerDev/
    43024302     */
    43034303
  • trunk/src/wp-includes/comment.php

    r37614 r37674  
    25442544 *
    25452545 * @since 3.5.1
    2546  * @link http://www.hixie.ch/specs/pingback/pingback#TOC3
     2546 * @link https://www.hixie.ch/specs/pingback/pingback#TOC3
    25472547 *
    25482548 * @param IXR_Error $ixr_error
  • trunk/src/wp-includes/compat.php

    r37637 r37674  
    422422     * Compatibility shim for PHP <5.4
    423423     *
    424      * @link http://php.net/jsonserializable
     424     * @link https://secure.php.net/jsonserializable
    425425     *
    426426     * @since 4.4.0
  • trunk/src/wp-includes/default-constants.php

    r36061 r37674  
    9999     * YEAR_IN_SECONDS does not take leap years into account.
    100100     *
    101      * If you need more accuracy please consider using the DateTime class (http://php.net/manual/class.datetime.php).
     101     * If you need more accuracy please consider using the DateTime class (https://secure.php.net/manual/en/class.datetime.php).
    102102     *
    103103     * @since 3.5.0
  • trunk/src/wp-includes/deprecated.php

    r37592 r37674  
    28192819 * @see error_log()
    28202820 *
    2821  * @link http://www.php.net/manual/en/function.error-log.php
     2821 * @link https://secure.php.net/manual/en/function.error-log.php
    28222822 *
    28232823 * @param string $filename File name.
     
    28372837 * @see error_log()
    28382838 *
    2839  * @link http://www.php.net/manual/en/function.error-log.php
     2839 * @link https://secure.php.net/manual/en/function.error-log.php
    28402840 *
    28412841 * @param mixed  $fp     Unused.
     
    28552855 * @see error_log()
    28562856 *
    2857  * @link http://www.php.net/manual/en/function.error-log.php
     2857 * @link https://secure.php.net/manual/en/function.error-log.php
    28582858 *
    28592859 * @param mixed $fp Unused.
  • trunk/src/wp-includes/feed-atom-comments.php

    r35294 r37674  
    9292        <content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php comment_text(); ?>]]></content>
    9393<?php endif; // post pass
    94     // Return comment threading information (http://www.ietf.org/rfc/rfc4685.txt)
     94    // Return comment threading information (https://www.ietf.org/rfc/rfc4685.txt)
    9595    if ( $comment->comment_parent == 0 ) : // This comment is top level ?>
    9696        <thr:in-reply-to ref="<?php the_guid(); ?>" href="<?php the_permalink_rss() ?>" type="<?php bloginfo_rss('html_type'); ?>" />
  • trunk/src/wp-includes/formatting.php

    r37669 r37674  
    23622362 *
    23632363 * Slashes will first be removed if magic_quotes_gpc is set, see {@link
    2364  * http://www.php.net/magic_quotes} for more details.
     2364 * https://secure.php.net/magic_quotes} for more details.
    23652365 *
    23662366 * @since 0.71
     
    30363036 * @since 1.5.0
    30373037 *
    3038  * @param string $date_string Date and time in ISO 8601 format {@link http://en.wikipedia.org/wiki/ISO_8601}.
     3038 * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}.
    30393039 * @param string $timezone    Optional. If set to GMT returns the time minus gmt_offset. Default is 'user'.
    30403040 * @return string The date and time in MySQL DateTime format - Y-m-d H:i:s.
     
    38333833 * Convert entities, while preserving already-encoded entities.
    38343834 *
    3835  * @link http://www.php.net/htmlentities Borrowed from the PHP Manual user notes.
     3835 * @link https://secure.php.net/htmlentities Borrowed from the PHP Manual user notes.
    38363836 *
    38373837 * @since 1.2.2
     
    42754275 * Parses a string into variables to be stored in an array.
    42764276 *
    4277  * Uses {@link http://www.php.net/parse_str parse_str()} and stripslashes if
    4278  * {@link http://www.php.net/magic_quotes magic_quotes_gpc} is on.
     4277 * Uses {@link https://secure.php.net/parse_str parse_str()} and stripslashes if
     4278 * {@link https://secure.php.net/magic_quotes magic_quotes_gpc} is on.
    42794279 *
    42804280 * @since 2.2.1
     
    43294329 *
    43304330 * @since 2.5.0
    4331  * @link http://www.php.net/sprintf
     4331 * @link https://secure.php.net/sprintf
    43324332 *
    43334333 * @param string $pattern   The string which formatted args are inserted.
  • trunk/src/wp-includes/functions.php

    r37670 r37674  
    676676 *
    677677 * @see _http_build_query() Used to build the query
    678  * @link http://us2.php.net/manual/en/function.http-build-query.php for more on what
     678 * @link https://secure.php.net/manual/en/function.http-build-query.php for more on what
    679679 *       http_build_query() does.
    680680 *
     
    692692 * @access private
    693693 *
    694  * @see http://us1.php.net/manual/en/function.http-build-query.php
     694 * @see https://secure.php.net/manual/en/function.http-build-query.php
    695695 *
    696696 * @param array|object  $data       An array or object of data. Converted to array.
     
    17801780 * @since 2.8.0
    17811781 *
    1782  * @see http://bugs.php.net/bug.php?id=27609
    1783  * @see http://bugs.php.net/bug.php?id=30931
     1782 * @see https://bugs.php.net/bug.php?id=27609
     1783 * @see https://bugs.php.net/bug.php?id=30931
    17841784 *
    17851785 * @param string $path Windows path to check for write-ability.
     
    47324732 * @since 3.0.0
    47334733 *
    4734  * @see http://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx
    4735  * @see http://src.chromium.org/viewvc/chrome?view=rev&revision=6985
     4734 * @see https://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx
     4735 * @see https://src.chromium.org/viewvc/chrome?view=rev&revision=6985
    47364736 */
    47374737function send_nosniff_header() {
  • trunk/src/wp-includes/functions.wp-styles.php

    r37191 r37674  
    101101 *
    102102 * @see WP_Dependencies::add()
    103  * @link http://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
     103 * @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
    104104 *
    105105 * @since 2.6.0
     
    146146 * @see WP_Dependencies::add()
    147147 * @see WP_Dependencies::enqueue()
    148  * @link http://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
     148 * @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
    149149 *
    150150 * @since 2.6.0
  • trunk/src/wp-includes/general-template.php

    r37645 r37674  
    26902690 * Display the link to the Windows Live Writer manifest file.
    26912691 *
    2692  * @link http://msdn.microsoft.com/en-us/library/bb463265.aspx
     2692 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
    26932693 * @since 2.3.1
    26942694 */
     
    27362736 * @since 4.3.0
    27372737 *
    2738  * @link http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#rel-icon HTML5 specification link icon.
     2738 * @link https://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#rel-icon HTML5 specification link icon.
    27392739 */
    27402740function wp_site_icon() {
  • trunk/src/wp-includes/locale.php

    r37431 r37674  
    185185
    186186        // Numbers formatting
    187         // See http://php.net/number_format
    188 
    189         /* translators: $thousands_sep argument for http://php.net/number_format, default is , */
     187        // See https://secure.php.net/number_format
     188
     189        /* translators: $thousands_sep argument for https://secure.php.net/number_format, default is , */
    190190        $thousands_sep = __( 'number_format_thousands_sep' );
    191191
     
    200200        $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;
    201201
    202         /* translators: $dec_point argument for http://php.net/number_format, default is . */
     202        /* translators: $dec_point argument for https://secure.php.net/number_format, default is . */
    203203        $decimal_point = __( 'number_format_decimal_point' );
    204204
     
    386386     */
    387387    public function _strings_for_pot() {
    388         /* translators: localized date format, see http://php.net/date */
     388        /* translators: localized date format, see https://secure.php.net/date */
    389389        __( 'F j, Y' );
    390         /* translators: localized time format, see http://php.net/date */
     390        /* translators: localized time format, see https://secure.php.net/date */
    391391        __( 'g:i a' );
    392         /* translators: localized date and time format, see http://php.net/date */
     392        /* translators: localized date and time format, see https://secure.php.net/date */
    393393        __( 'F j, Y g:i a' );
    394394    }
  • trunk/src/wp-includes/plugin.php

    r37588 r37674  
    99 *
    1010 * Any of the syntaxes explained in the PHP documentation for the
    11  * {@link http://us2.php.net/manual/en/language.pseudo-types.php#language.types.callback 'callback'}
     11 * {@link https://secure.php.net/manual/en/language.pseudo-types.php#language.types.callback 'callback'}
    1212 * type are valid.
    1313 *
  • trunk/src/wp-includes/post-template.php

    r37544 r37674  
    16231623        return false;
    16241624
    1625     /* translators: revision date format, see http://php.net/date */
     1625    /* translators: revision date format, see https://secure.php.net/date */
    16261626    $datef = _x( 'F j, Y @ H:i:s', 'revision date format' );
    16271627    /* translators: 1: date */
     
    16591659
    16601660    $author = get_the_author_meta( 'display_name', $revision->post_author );
    1661     /* translators: revision date format, see http://php.net/date */
     1661    /* translators: revision date format, see https://secure.php.net/date */
    16621662    $datef = _x( 'F j, Y @ H:i:s', 'revision date format' );
    16631663
  • trunk/src/wp-includes/rest-api/class-wp-rest-request.php

    r37490 r37674  
    184184     * @link http://stackoverflow.com/q/18185366
    185185     * @link http://wiki.nginx.org/Pitfalls#Missing_.28disappearing.29_HTTP_headers
    186      * @link http://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
     186     * @link https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
    187187     *
    188188     * @since 4.4.0
  • trunk/src/wp-includes/rest-api/class-wp-rest-response.php

    r37490 r37674  
    5252     * @access public
    5353     *
    54      * @link http://tools.ietf.org/html/rfc5988
    55      * @link http://www.iana.org/assignments/link-relations/link-relations.xml
     54     * @link https://tools.ietf.org/html/rfc5988
     55     * @link https://www.iana.org/assignments/link-relations/link-relations.xml
    5656     *
    5757     * @param string $rel        Link relation. Either an IANA registered type,
     
    148148     * @access public
    149149     *
    150      * @link http://tools.ietf.org/html/rfc5988
    151      * @link http://www.iana.org/assignments/link-relations/link-relations.xml
     150     * @link https://tools.ietf.org/html/rfc5988
     151     * @link https://www.iana.org/assignments/link-relations/link-relations.xml
    152152     *
    153153     * @param string $rel   Link relation. Either an IANA registered type, or an absolute URL.
  • trunk/src/wp-includes/rest-api/class-wp-rest-server.php

    r37646 r37674  
    231231         * Mitigate possible JSONP Flash attacks.
    232232         *
    233          * http://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
     233         * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
    234234         */
    235235        $this->send_header( 'X-Content-Type-Options', 'nosniff' );
     
    390390            if ( $jsonp_callback ) {
    391391                // Prepend '/**/' to mitigate possible JSONP Flash attacks
    392                 // http://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
     392                // https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
    393393                echo '/**/' . $jsonp_callback . '(' . $result . ')';
    394394            } else {
  • trunk/src/wp-includes/rss.php

    r37402 r37674  
    6464        #
    6565        if ( !function_exists('xml_parser_create') )
    66             trigger_error( "Failed to load PHP's XML Extension. http://www.php.net/manual/en/ref.xml.php" );
     66            trigger_error( "Failed to load PHP's XML Extension. https://secure.php.net/manual/en/ref.xml.php" );
    6767
    6868        $parser = @xml_parser_create();
    6969
    7070        if ( !is_resource($parser) )
    71             trigger_error( "Failed to create an instance of PHP's XML parser. http://www.php.net/manual/en/ref.xml.php");
     71            trigger_error( "Failed to create an instance of PHP's XML parser. https://secure.php.net/manual/en/ref.xml.php");
    7272
    7373        $this->parser = $parser;
  • trunk/src/wp-includes/theme.php

    r37673 r37674  
    843843 *
    844844 * If the modification name does not exist, then the $default will be passed
    845  * through {@link http://php.net/sprintf sprintf()} PHP function with the first
     845 * through {@link https://secure.php.net/sprintf sprintf()} PHP function with the first
    846846 * string the template directory URI and the second string the stylesheet
    847847 * directory URI.
  • trunk/src/wp-includes/wp-db.php

    r37601 r37674  
    12551255     * Does not support argument numbering/swapping.
    12561256     *
    1257      * May be called like {@link http://php.net/sprintf sprintf()} or like {@link http://php.net/vsprintf vsprintf()}.
     1257     * May be called like {@link https://secure.php.net/sprintf sprintf()} or like {@link https://secure.php.net/vsprintf vsprintf()}.
    12581258     *
    12591259     * Both %d and %s should be left unquoted in the query string.
     
    12621262     *     wpdb::prepare( "SELECT DATE_FORMAT(`field`, '%%c') FROM `table` WHERE `column` = %s", 'foo' );
    12631263     *
    1264      * @link http://php.net/sprintf Description of syntax.
     1264     * @link https://secure.php.net/sprintf Description of syntax.
    12651265     * @since 2.3.0
    12661266     *
    12671267     * @param string      $query    Query statement with sprintf()-like placeholders
    12681268     * @param array|mixed $args     The array of variables to substitute into the query's placeholders if being called like
    1269      *                              {@link http://php.net/vsprintf vsprintf()}, or the first variable to substitute into the query's placeholders if
    1270      *                              being called like {@link http://php.net/sprintf sprintf()}.
     1269     *                              {@link https://secure.php.net/vsprintf vsprintf()}, or the first variable to substitute into the query's placeholders if
     1270     *                              being called like {@link https://secure.php.net/sprintf sprintf()}.
    12711271     * @param mixed       $args,... further variables to substitute into the query's placeholders if being called like
    1272      *                              {@link http://php.net/sprintf sprintf()}.
     1272     *                              {@link https://secure.php.net/sprintf sprintf()}.
    12731273     * @return string|void Sanitized query string, if there is a query to prepare.
    12741274     */
  • trunk/tools/i18n/not-gettexted.php

    r25254 r37674  
    77 * @subpackage tools
    88 */
    9 // see: http://php.net/tokenizer
     9// see: https://secure.php.net/tokenizer
    1010if ( ! defined( 'T_ML_COMMENT' ) )
    1111        define( 'T_ML_COMMENT', T_COMMENT );
  • trunk/tools/i18n/t/ExtractTest.php

    r36781 r37674  
    206206        $this->assertEquals( array( array(
    207207                'name' => '__', 'args' => array( 'F j, Y g:i a' ), 'line' => 3,
    208                 'comment' => 'translators: localized date and time format, see http://php.net/date'
     208                'comment' => 'translators: localized date and time format, see https://secure.php.net/date'
    209209            ) ),
    210210            $this->extractor->find_function_calls( array( '__' ),
    211211                "<?php
    212                 /* translators: localized date and time format, see http://php.net/date */
     212                /* translators: localized date and time format, see https://secure.php.net/date */
    213213                __( 'F j, Y g:i a' );"
    214214            )
  • trunk/tools/i18n/t/data/not-gettexted-0-result.php

    r25003 r37674  
    99    require_once( dirname(__FILE__) . '/wp-includes/functions.php');
    1010    require_once( dirname(__FILE__) . '/wp-includes/plugin.php');
    11     wp_die( sprintf(/*WP_I18N_CONFIG*/'Translation: There doesn\'t seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href=\'http://codex.wordpress.org/Editing_wp-config.php\'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn\'t work for all server setups. The safest way is to manually create the file.</p><p><a href=\'%s\' class=\'button\'>Create a Configuration File</a>' /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ 'Translation: WordPress &rsaquo; Error' /*/WP_I18N_ERROR*/);
     11    wp_die( sprintf(/*WP_I18N_CONFIG*/'Translation: There doesn\'t seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href=\'https://codex.wordpress.org/Editing_wp-config.php\'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn\'t work for all server setups. The safest way is to manually create the file.</p><p><a href=\'%s\' class=\'button\'>Create a Configuration File</a>' /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ 'Translation: WordPress &rsaquo; Error' /*/WP_I18N_ERROR*/);
    1212}
    1313
  • trunk/tools/i18n/t/data/not-gettexted-0.php

    r25003 r37674  
    99    require_once( dirname(__FILE__) . '/wp-includes/functions.php');
    1010    require_once( dirname(__FILE__) . '/wp-includes/plugin.php');
    11     wp_die( sprintf(/*WP_I18N_CONFIG*/" There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%s' class='button'>Create a Configuration File</a>" /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ "WordPress &rsaquo; Error" /*/WP_I18N_ERROR*/);
     11    wp_die( sprintf(/*WP_I18N_CONFIG*/" There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%s' class='button'>Create a Configuration File</a>" /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ "WordPress &rsaquo; Error" /*/WP_I18N_ERROR*/);
    1212}
    1313
Note: See TracChangeset for help on using the changeset viewer.