Make WordPress Core

Changeset 29788


Ignore:
Timestamp:
09/29/2014 01:27:55 PM (10 years ago)
Author:
markjaquith
Message:

Use HTTPS URLs for core.trac.wordpress.org

see #27115

Location:
trunk
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-upgrader.php

    r29694 r29788  
    25972597If you think these failures might be due to a bug in WordPress, could you report it?
    25982598 * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta
    2599  * Or, if you're comfortable writing a bug report: http://core.trac.wordpress.org/
     2599 * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/
    26002600
    26012601Thanks! -- The WordPress Team" ) );
  • trunk/src/wp-content/themes/twentyeleven/style.css

    r29771 r29788  
    23022302 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
    23032303 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
    2304  * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
     2304 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
    23052305 */
    23062306@-ms-viewport {
  • trunk/src/wp-content/themes/twentyfourteen/style.css

    r29771 r29788  
    460460
    461461/* Support a widely-adopted but non-standard selector for text selection styles
    462  * to achieve a better experience. See http://core.trac.wordpress.org/ticket/25898.
     462 * to achieve a better experience. See https://core.trac.wordpress.org/ticket/25898.
    463463 */
    464464::selection {
     
    30783078 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
    30793079 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
    3080  * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
     3080 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
    30813081 */
    30823082@-ms-viewport {
  • trunk/src/wp-content/themes/twentyfourteen/taxonomy-post_format.php

    r26679 r29788  
    77 * new template file for each specific one.
    88 *
    9  * @todo http://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings
     9 * @todo https://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings
    1010 * and remove plurals below.
    1111 *
  • trunk/src/wp-content/themes/twentythirteen/style.css

    r29771 r29788  
    26272627 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
    26282628 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
    2629  * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
     2629 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
    26302630 */
    26312631@-ms-viewport {
  • trunk/src/wp-content/themes/twentytwelve/style.css

    r29771 r29788  
    14531453 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
    14541454 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
    1455  * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
     1455 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
    14561456 */
    14571457@-ms-viewport {
  • trunk/src/wp-includes/class-http.php

    r29661 r29788  
    616616     *
    617617     * @since 2.8.0
    618      * @link http://core.trac.wordpress.org/ticket/8927 Allow preventing external requests.
    619      * @link http://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_ACCESSIBLE_HOSTS
     618     * @link https://core.trac.wordpress.org/ticket/8927 Allow preventing external requests.
     619     * @link https://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_ACCESSIBLE_HOSTS
    620620     *
    621621     * @param string $uri URI of url.
     
    15741574 * </code>
    15751575 *
    1576  * @link http://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress.
    1577  * @link http://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS
     1576 * @link https://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress.
     1577 * @link https://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS
    15781578 * @since 2.8.0
    15791579 */
     
    20422042     * data may be returned in, some "magic offsets" are needed to ensure proper decompression
    20432043     * takes place. For a simple progmatic way to determine the magic offset in use, see:
    2044      * http://core.trac.wordpress.org/ticket/18273
     2044     * https://core.trac.wordpress.org/ticket/18273
    20452045     *
    20462046     * @since 2.8.1
    2047      * @link http://core.trac.wordpress.org/ticket/18273
     2047     * @link https://core.trac.wordpress.org/ticket/18273
    20482048     * @link http://au2.php.net/manual/en/function.gzinflate.php#70875
    20492049     * @link http://au2.php.net/manual/en/function.gzinflate.php#77336
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r29488 r29788  
    218218            add_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) );
    219219
    220             // @link: http://core.trac.wordpress.org/ticket/20027
     220            // @link: https://core.trac.wordpress.org/ticket/20027
    221221            add_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) );
    222222            add_filter( 'pre_option_template', array( $this, 'get_template' ) );
     
    255255            remove_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) );
    256256
    257             // @link: http://core.trac.wordpress.org/ticket/20027
     257            // @link: https://core.trac.wordpress.org/ticket/20027
    258258            remove_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) );
    259259            remove_filter( 'pre_option_template', array( $this, 'get_template' ) );
  • trunk/src/wp-includes/class-wp-embed.php

    r29707 r29788  
    157157
    158158        // kses converts & into &amp; and we need to undo this
    159         // See http://core.trac.wordpress.org/ticket/11311
     159        // See https://core.trac.wordpress.org/ticket/11311
    160160        $url = str_replace( '&amp;', '&', $url );
    161161
  • trunk/src/wp-includes/comment.php

    r29763 r29788  
    17721772 * We use REMOTE_ADDR here directly. If you are behind a proxy, you should ensure
    17731773 * that it is properly set, such as in wp-config.php, for your environment.
    1774  * See {@link http://core.trac.wordpress.org/ticket/9235}
     1774 * See {@link https://core.trac.wordpress.org/ticket/9235}
    17751775 *
    17761776 * @since 1.5.0
  • trunk/src/wp-includes/functions.php

    r29756 r29788  
    101101    /*
    102102     * Store original value for language with untypical grammars.
    103      * See http://core.trac.wordpress.org/ticket/9396
     103     * See https://core.trac.wordpress.org/ticket/9396
    104104     */
    105105    $req_format = $dateformatstring;
     
    378378
    379379    // Double serialization is required for backward compatibility.
    380     // See http://core.trac.wordpress.org/ticket/12930
     380    // See https://core.trac.wordpress.org/ticket/12930
    381381    if ( is_serialized( $data, false ) )
    382382        return serialize( $data );
     
    39273927 * @access private
    39283928 *
    3929  * @see http://core.trac.wordpress.org/ticket/8497
     3929 * @see https://core.trac.wordpress.org/ticket/8497
    39303930 *
    39313931 * @param string $str Header comment to clean up.
     
    42764276 * @since 3.4.0
    42774277 *
    4278  * @see http://core.trac.wordpress.org/ticket/19589
     4278 * @see https://core.trac.wordpress.org/ticket/19589
    42794279 *
    42804280 * @param string $ignore_class Optional. A class to ignore all function calls within - useful
     
    45374537 * @access private
    45384538 *
    4539  * @see http://core.trac.wordpress.org/ticket/23688
     4539 * @see https://core.trac.wordpress.org/ticket/23688
    45404540 *
    45414541 * @param string $charset A charset name.
  • trunk/src/wp-includes/functions.wp-scripts.php

    r29677 r29788  
    100100 *
    101101 * @see WP_Dependencies::localize()
    102  * @link http://core.trac.wordpress.org/ticket/11520
     102 * @link https://core.trac.wordpress.org/ticket/11520
    103103 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts.
    104104 *
  • trunk/src/wp-includes/general-template.php

    r29780 r29788  
    22982298 *
    22992299 * Using this function is the proper way to output all needed components for both TinyMCE and Quicktags.
    2300  * _WP_Editors should not be used directly. See http://core.trac.wordpress.org/ticket/17144.
     2300 * _WP_Editors should not be used directly. See https://core.trac.wordpress.org/ticket/17144.
    23012301 *
    23022302 * NOTE: Once initialized the TinyMCE editor cannot be safely moved in the DOM. For that reason
     
    23042304 * On the post edit screen several actions can be used to include additional editors
    23052305 * containing TinyMCE: 'edit_page_form', 'edit_form_advanced' and 'dbx_post_sidebar'.
    2306  * See http://core.trac.wordpress.org/ticket/19173 for more information.
     2306 * See https://core.trac.wordpress.org/ticket/19173 for more information.
    23072307 *
    23082308 * @see wp-includes/class-wp-editor.php
  • trunk/src/wp-includes/js/media-editor.js

    r29603 r29788  
    10941094                    // above the modal.
    10951095                    //
    1096                     // See: http://core.trac.wordpress.org/ticket/22445
     1096                    // See: https://core.trac.wordpress.org/ticket/22445
    10971097                    elem.blur();
    10981098
  • trunk/src/wp-includes/js/plupload/wp-plupload.js

    r27933 r29788  
    153153                // dropzone are repositioned.
    154154                //
    155                 // See http://core.trac.wordpress.org/ticket/21705
     155                // See https://core.trac.wordpress.org/ticket/21705
    156156                timer = setTimeout( function() {
    157157                    active = false;
  • trunk/src/wp-includes/rewrite.php

    r28533 r29788  
    667667     * page permastruct is actually a page before accepting it.
    668668     *
    669      * @link http://core.trac.wordpress.org/ticket/16687
     669     * @link https://core.trac.wordpress.org/ticket/16687
    670670     * @see WP_Rewrite::init()
    671671     * @since 2.5.0
  • trunk/src/wp-includes/wp-db.php

    r29784 r29788  
    568568     * to the database.
    569569     *
    570      * @link http://core.trac.wordpress.org/ticket/3354
     570     * @link https://core.trac.wordpress.org/ticket/3354
    571571     * @since 2.0.8
    572572     *
  • trunk/tests/phpunit/tests/formatting/Autop.php

    r29328 r29788  
    55 */
    66class Tests_Formatting_Autop extends WP_UnitTestCase {
    7     //From ticket http://core.trac.wordpress.org/ticket/11008
     7    //From ticket https://core.trac.wordpress.org/ticket/11008
    88    function test_first_post() {
    99        $expected = '<p>Welcome to WordPress!  This post contains important information.  After you read it, you can make it private to hide it from visitors but still have the information handy for future reference.</p>
  • trunk/tests/phpunit/tests/import/parser.php

    r27349 r29788  
    146146     * sections that contain escaped closing tags ("]]>" -> "]]]]><![CDATA[>").
    147147     *
    148      * @link http://core.trac.wordpress.org/ticket/15203
     148     * @link https://core.trac.wordpress.org/ticket/15203
    149149     */
    150150    function test_escaped_cdata_closing_sequence() {
  • trunk/tests/phpunit/tests/xmlrpc/wp/restoreRevision.php

    r25002 r29788  
    1212
    1313        $this->post_id = $this->factory->post->create( array( 'post_content' => 'edit1' ) ); // Not saved as a revision
    14         // First saved revision on update, see http://core.trac.wordpress.org/changeset/24650
     14        // First saved revision on update, see https://core.trac.wordpress.org/changeset/24650
    1515        wp_insert_post( array( 'ID' => $this->post_id, 'post_content' => 'edit2' ) );
    1616
    1717        $revisions = wp_get_post_revisions( $this->post_id );
    18         //$revision = array_shift( $revisions ); // First revision is empty - http://core.trac.wordpress.org/changeset/23842
    19         // First revision is NOT empty, see http://core.trac.wordpress.org/changeset/24650
     18        //$revision = array_shift( $revisions ); // First revision is empty - https://core.trac.wordpress.org/changeset/23842
     19        // First revision is NOT empty, see https://core.trac.wordpress.org/changeset/24650
    2020        $revision = array_shift( $revisions );
    2121        $this->revision_id = $revision->ID;
Note: See TracChangeset for help on using the changeset viewer.