Make WordPress Core

Ticket #28841: 28841.2.diff

File 28841.2.diff, 5.3 KB (added by DrewAPicture, 12 years ago)

Markdown list fixes

  • src/wp-includes/class-http.php

     
    15141514 * cURL MAY support more methods (such as NTLM authentication) depending on your environment.
    15151515 *
    15161516 * The constants are as follows:
    1517  * <ol>
    1518  * <li>WP_PROXY_HOST - Enable proxy support and host for connecting.</li>
    1519  * <li>WP_PROXY_PORT - Proxy port for connection. No default, must be defined.</li>
    1520  * <li>WP_PROXY_USERNAME - Proxy username, if it requires authentication.</li>
    1521  * <li>WP_PROXY_PASSWORD - Proxy password, if it requires authentication.</li>
    1522  * <li>WP_PROXY_BYPASS_HOSTS - Will prevent the hosts in this list from going through the proxy.
    1523  * You do not need to have localhost and the blog host in this list, because they will not be passed
    1524  * through the proxy. The list should be presented in a comma separated list, wildcards using * are supported, eg. *.wordpress.org</li>
    1525  * </ol>
    15261517 *
     1518 * - WP_PROXY_HOST - Enable proxy support and host for connecting.
     1519 * - WP_PROXY_PORT - Proxy port for connection. No default, must be defined.
     1520 * - WP_PROXY_USERNAME - Proxy username, if it requires authentication.
     1521 * - WP_PROXY_PASSWORD - Proxy password, if it requires authentication.
     1522 * - WP_PROXY_BYPASS_HOSTS - Will prevent the hosts in this list from going through the proxy.
     1523 *   You do not need to have localhost and the blog host in this list, because they will not be passed
     1524 *   through the proxy. The list should be presented in a comma separated list, wildcards using * are supported, eg. *.wordpress.org.
     1525 *
    15271526 * An example can be as seen below.
    15281527 * <code>
    15291528 * define('WP_PROXY_HOST', '192.168.84.101');
     
    17711770         * or a header string detailing it.
    17721771         *
    17731772         * If it's an array, it should include the following elements:
    1774          * <ol>
    1775          * <li>Name</li>
    1776          * <li>Value - should NOT be urlencoded already.</li>
    1777          * <li>Expires - (optional) String or int (UNIX timestamp).</li>
    1778          * <li>Path (optional)</li>
    1779          * <li>Domain (optional)</li>
    1780          * <li>Port (optional)</li>
    1781          * </ol>
    17821773         *
     1774         * - name
     1775         * - value - should NOT be urlencoded already.
     1776         * - expires - (optional) String or int (UNIX timestamp).
     1777         * - path - (optional)
     1778         * - domain - (optional)
     1779         * - port - (optional)
     1780         *
    17831781         * @access public
    17841782         * @since 2.8.0
    17851783         *
  • src/wp-includes/general-template.php

     
    602602 * The deprecated blog info options are listed in the function contents.
    603603 *
    604604 * The possible values for the 'show' parameter are listed below.
    605  * <ol>
    606  * <li><strong>url</strong> - Blog URI to homepage.</li>
    607  * <li><strong>wpurl</strong> - Blog URI path to WordPress.</li>
    608  * <li><strong>description</strong> - Secondary title</li>
    609  * </ol>
    610605 *
     606 * - url - Blog URI to homepage.
     607 * - wpurl - Blog URI path to WordPress.
     608 * - description - Secondary title.
     609 *
    611610 * The feed URL options can be retrieved from 'rdf_url' (RSS 0.91),
    612611 * 'rss_url' (RSS 1.0), 'rss2_url' (RSS 2.0), or 'atom_url' (Atom feed). The
    613612 * comment feeds can be retrieved from the 'comments_atom_url' (Atom comment
  • src/wp-includes/shortcodes.php

     
    209209 *
    210210 * The regular expression contains 6 different sub matches to help with parsing.
    211211 *
    212  * 1 - An extra [ to allow for escaping shortcodes with double [[]]
    213  * 2 - The shortcode name
    214  * 3 - The shortcode argument list
    215  * 4 - The self closing /
    216  * 5 - The content of a shortcode when it wraps some content.
    217  * 6 - An extra ] to allow for escaping shortcodes with double [[]]
     212 * - 1 - An extra [ to allow for escaping shortcodes with double [[]]
     213 * - 2 - The shortcode name
     214 * - 3 - The shortcode argument list
     215 * - 4 - The self closing /
     216 * - 5 - The content of a shortcode when it wraps some content.
     217 * - 6 - An extra ] to allow for escaping shortcodes with double [[]]
    218218 *
    219219 * @since 2.5.0
    220220 *
  • src/wp-includes/wp-db.php

     
    895895         *
    896896         * The scope argument can take one of the following:
    897897         *
    898          * 'all' - returns 'all' and 'global' tables. No old tables are returned.
    899          * 'blog' - returns the blog-level tables for the queried blog.
    900          * 'global' - returns the global tables for the installation, returning multisite tables only if running multisite.
    901          * 'ms_global' - returns the multisite global tables, regardless if current installation is multisite.
    902          * 'old' - returns tables which are deprecated.
     898         * - 'all' - returns 'all' and 'global' tables. No old tables are returned.
     899         * - 'blog' - returns the blog-level tables for the queried blog.
     900         * - 'global' - returns the global tables for the installation, returning multisite tables only if running multisite.
     901         * - 'ms_global' - returns the multisite global tables, regardless if current installation is multisite.
     902         * - 'old' - returns tables which are deprecated.
    903903         *
    904904         * @since 3.0.0
    905905         * @uses wpdb::$tables