Skip to:
Content

bbPress.org

Changeset 6498


Ignore:
Timestamp:
06/08/2017 01:58:51 AM (9 years ago)
Author:
johnjamesjacoby
Message:

Documentation: Don't hyphenate "bbPress's"

It's cute, and I tend to say it in person to be cute, but in writing it doesn't look very classy.

Location:
trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/.gitignore

    r5772 r6498  
    1010/npm-debug.log
    1111
    12 # bbPress's output directory.
     12# Output directory.
    1313/build
    1414
  • trunk/src/bbpress.php

    r6421 r6498  
    4545     *
    4646     * This is a precautionary measure, to avoid potential errors produced by
    47      * unanticipated direct manipulation of bbPress's run-time data.
     47     * unanticipated direct manipulation of run-time data.
    4848     *
    4949     * @see bbPress::setup_globals()
  • trunk/src/includes/admin/admin.php

    r6483 r6498  
    179179        /** Filters ***********************************************************/
    180180
    181         // Modify bbPress's admin links
     181        // Modify admin links
    182182        add_filter( 'plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 );
    183183
  • trunk/src/includes/admin/common.php

    r6438 r6498  
    192192
    193193/**
    194  * Redirect user to bbPress's What's New page on activation
     194 * Redirect user to "What's New" page on activation
    195195 *
    196196 * @since 2.2.0 bbPress (r4389)
  • trunk/src/includes/admin/settings.php

    r6491 r6498  
    18091809
    18101810/**
    1811  * Disable a settings field if the value is forcibly set in bbPress's global
    1812  * options array.
     1811 * Disable a settings field if it is forcibly set in the global options array.
    18131812 *
    18141813 * @since 2.2.0 bbPress (r4347)
  • trunk/src/includes/admin/users.php

    r6415 r6498  
    279279    public static function user_role_row( $retval = '', $column_name = '', $user_id = 0 ) {
    280280
    281         // Only looking for bbPress's user role column
     281        // User role column
    282282        if ( 'bbp_user_role' === $column_name ) {
    283283
     
    300300     * Filter the list of roles included in the WordPress site role list
    301301     *
    302      * This ensures bbPress' roles are only displayed under the Forum Role list
    303      * in the WordPress Users list table
     302     * Ensures forum roles are only displayed under the Forum Role list in the
     303     * WordPress Users list table
    304304     *
    305305     * @since 2.6.0 bbPress (r6051)
  • trunk/src/includes/common/ajax.php

    r6438 r6498  
    5454
    5555/**
    56  * Hooked to the 'bbp_template_redirect' action, this is bbPress's custom
    57  * theme-side ajax handler.
     56 * Hooked to the 'bbp_template_redirect' action, this is also the custom
     57 * theme-side AJAX handler.
    5858 *
    5959 * @since 2.3.0 bbPress (r4543)
    6060 *
    61  * @return If not a bbPress ajax request
     61 * @return If not a bbPress AJAX request
    6262 */
    6363function bbp_do_ajax() {
    6464
    65     // Bail if not an ajax request
     65    // Bail if not an AJAX request
    6666    if ( ! bbp_is_ajax() ) {
    6767        return;
    6868    }
    6969
    70     // Set WordPress core ajax constant
     70    // Set WordPress core AJAX constant
    7171    define( 'DOING_AJAX', true );
    7272
     
    8585
    8686/**
    87  * Helper method to return JSON response for the ajax calls
     87 * Helper method to return JSON response for the AJAX calls
    8888 *
    8989 * @since 2.3.0 bbPress (r4542)
  • trunk/src/includes/common/template.php

    r6487 r6498  
    436436
    437437/**
    438  * Check if the current post type is one of bbPress's
     438 * Check if the current post type is one that comes with bbPress
    439439 *
    440440 * @since 2.0.0 bbPress (r3311)
  • trunk/src/includes/core/capabilities.php

    r6438 r6498  
    247247
    248248/**
    249  * Get the available roles minus bbPress's dynamic roles
     249 * Get the available roles, minus the dynamic roles that come with bbPress
    250250 *
    251251 * @since 2.4.0 bbPress (r5064)
     
    282282 * @since 2.2.0 bbPress (r4290)
    283283 *
    284  * @uses bbp_get_dynamic_roles() To get and add bbPress's roles to $wp_roles
     284 * @uses bbp_get_dynamic_roles() To get and add forum roles to $wp_roles
    285285 *
    286286 * @param WP_Roles $wp_roles The array of WP_Role objects that was initialized
  • trunk/src/includes/core/template-loader.php

    r6438 r6498  
    110110
    111111    // A bbPress template file was located, so override the WordPress template
    112     // and use it to switch off bbPress's theme compatibility.
     112    // and use it to switch off theme compatibility.
    113113    if ( ! empty( $new_template ) ) {
    114114        $template = bbp_set_template_included( $new_template );
  • trunk/src/includes/core/theme-compat.php

    r6453 r6498  
    812812
    813813    /**
    814      * If we are relying on bbPress's built in theme compatibility to load
     814     * If we are relying on the built-in theme compatibility API to load
    815815     * the proper content, we need to intercept the_content, replace the
    816816     * output, and display ours instead.
  • trunk/src/includes/core/update.php

    r6415 r6498  
    1717 *
    1818 * @uses get_option()
    19  * @uses bbp_get_db_version() To get bbPress's database version
     19 * @uses bbp_get_db_version() To get the database version
    2020 * @return bool True if update, False if not
    2121 */
     
    3030 *
    3131 * @uses get_option()
    32  * @uses bbp_get_db_version() To get bbPress's database version
     32 * @uses bbp_get_db_version() To get the database version
    3333 * @return bool True if update, False if not
    3434 */
     
    149149 *
    150150 * @uses update_option()
    151  * @uses bbp_get_db_version() To get bbPress's database version
     151 * @uses bbp_get_db_version() To get the database version
    152152 */
    153153function bbp_version_bump() {
     
    254254
    255255/**
    256  * bbPress's version updater looks at what the current database version is, and
     256 * The version updater looks at what the current database version is, and
    257257 * runs whatever other code is needed.
    258258 *
     
    353353
    354354/**
    355  * Redirect user to bbPress's What's New page on activation
     355 * Redirect user to the "What's New" page on activation
    356356 *
    357357 * @since 2.2.0 bbPress (r4389)
  • trunk/src/includes/extend/buddypress/functions.php

    r6485 r6498  
    2424
    2525/**
    26  * Return bbPress's component name/ID ('forums' by default)
     26 * Return component name/ID ('forums' by default)
    2727 *
    2828 * This is used primarily for Notifications integration.
  • trunk/src/includes/extend/buddypress/groups.php

    r6488 r6498  
    44 * bbPress BuddyPress Group Extension Class
    55 *
    6  * This file is responsible for connecting bbPress to BuddyPress's Groups
     6 * This file is responsible for connecting bbPress to the BuddyPress Groups
    77 * Component. It's a great example of how to perform both simple and advanced
    8  * techniques to manipulate bbPress's default output.
     8 * techniques to manipulate the default output provided by both.
    99 *
    1010 * @package bbPress
     
    818818        }
    819819
    820         // Update bbPress' internal private and forum ID variables
     820        // Update internal private and forum ID variables
    821821        bbp_repair_forum_visibility();
    822822
  • trunk/src/includes/forums/functions.php

    r6481 r6498  
    22902290        $posts_query->set( 'post_status', array_unique( array_filter( $post_stati ) ) );
    22912291
    2292     // Some other post type besides bbPress's Forums, Topics, or Replies
     2292    // Some other post type besides Forums, Topics, or Replies
    22932293    } elseif ( ! array_diff( $post_types, array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() ) ) ) {
    22942294
  • trunk/src/readme.txt

    r6210 r6498  
    34341. Visit 'Forums > Add New' and create some forums. (You can always delete these later.)
    35352. If you have pretty permalinks enabled, visit example.com/forums/, or if you do not have pretty permalinks enabled, visit example.com?post_type=forum
    36 3. Visit 'Settings > Forums' and take a moment to match bbPress's settings to match your community.
     363. Visit 'Settings > Forums' and configure the settings to best match the needs of your community.
    37374. Visit 'Tools > Forums > Import Forums' if you have an existing forum to convert to bbPress.
    3838
  • trunk/src/templates/default/bbpress-functions.php

    r6344 r6498  
    22
    33/**
    4  * Functions of bbPress's Default theme
     4 * Functions of the Default template-pack
    55 *
    66 * @package bbPress
  • trunk/tests/phpunit/bootstrap.php

    r6031 r6498  
    1919
    2020/**
    21  * Load bbPress's PHPUnit test suite loader
     21 * Load the bbPress/PHPUnit test-suite loader
    2222 */
    2323function _load_loader() {
Note: See TracChangeset for help on using the changeset viewer.