[5540]
|
netweb
|
Drupal7: Add support for importing Drupal v7.x pending topics and replies. See #2645
|
[5539]
|
netweb
|
Include anonymous topic and reply import support in `phpBB.php` and `SMF.php` importers
Props netweb. See #2347
|
[5538]
|
netweb
|
Introduce support for importing anonymous topics and replies in `converter.php`
* Adds two new steps to the import conversion process:
* "Convert anonymous topic authors" and "Convert anonymous reply authors"
* Utilizes existing bbPress support for anonymous user topics and replies
* Adds post meta key `_bbp_anonymous_name` to imported anonymous topic and replies
* Depending on the forum being imported these may be referenced as anonymous, guest or deleted topics or replies
* Imported topics and replies are assigned post meta key `_bbp_old_topic_author_name_id` or `_bbp_old_reply_author_name_id` respectively that is then compared using the returned `true` or `false` in the callback function `callback_check_anonymous()` of each of importers that are are supported.
Props netweb. See #2347
|
[5537]
|
netweb
|
Vanilla2 importer improvements:
* Don't import Vanilla 2's deleted topic or replies as both topic and reply content is deleted resulting in fragmented topic context
* Use `callback_topicid_to_forumid` to convert replies parent topic id to forum id eliminating a SQL join improving performance.
|
[5536]
|
netweb
|
Drupal7: Don't import Drupal 7's guest user
|
[5535]
|
netweb
|
Vanilla2: Don't import Vanilla 2's deleted users
|
[5534]
|
johnjamesjacoby
|
Better ABSPATH check in `bbpress.php` stub loader.
|
[5533]
|
netweb
|
Fix regression in `bbPress1.php` importer introduced in r5349 where topics were imported a second time as part of the reply section import.
|
[5532]
|
netweb
|
Bump NPM package versions in package.json
"grunt-contrib-copy": "~0.5.0" -> "~0.6.0"
"grunt-contrib-uglify": "~0.5.1" -> "~0.6.0"
Requires npm install to update packages and dependencies
|
[5531]
|
netweb
|
Add a leading slash to `phpunit.xml` in `.gitignore` to only ignore `phpunit.xml` in the root folder
|
[5530]
|
netweb
|
Converter import user meta data improvements and fixes:
* Original 'old' user meta key is now defined using `_bbp_old_user_id`
* Fixes the "Purge Previous Import" optional removal of previously imported users when using the database sync_table.
* Updates all included importers with the above changes including the custom callback in `e107v1.php`
See #2650
|
[5529]
|
netweb
|
punBB: Don't import punBB's guest user
|
[5528]
|
netweb
|
phpBB: Don't import phpBB search engine bot/crawler user accounts, e.g Google Bot, Bing Bot
|
[5527]
|
netweb
|
Converter import meta data improvements and fixes:
* Original 'old' hierarchical/threaded replies meta key is now defined using `_bbp_old_reply_to_id`
* Fixes the "Purge Previous Import" optional removal of previously imported hierarchical/threaded replies when using the database sync_table.
* Updates `Drupal7.php` importer compatibility for the above changes
See #2650
|
[5526]
|
netweb
|
Importer templates updates to coincide with r5525 changeset to differentiating original forum, topic and reply meta ID's from new bbPress post meta keys.
* Renames `_bbp_forum_id` to `_bbp_old_forum_id`
* Renames `_bbp_topic_id` to `_bbp_old_topic_id`
* Renames `_bbp_post_id` to `_bbp_old_reply_id`
See #2650
|
[5525]
|
netweb
|
Converter import meta data improvements and fixes:
* Original 'old' forum, topic or reply meta data is now explicitly defined using a common `_bbp_old` prefix in the post meta keys that clearly differentiates the new bbPress post meta from the original 'old' forum meta.
* Fixes the "Purge Previous Import" optional removal of previously imported forums, topics and replies when using the database sync_table. Meta keys ending with `_id` are now copied to the database sync_table.
See #2650
|
[5524]
|
netweb
|
In `phpBB.php` importer use the correct `callback_forumid` callback for reply forum ID's.
|
[5523]
|
netweb
|
Vanilla forum importer:
* Use the correct `callback_forumid` callback for reply forum ID's.
* Add support for importing Vanilla 'Announcements' as bbPress 'Sticky' topics
|
[5522]
|
netweb
|
In `Phorum.php` importer use the correct `callback_forumid` callback for reply forum ID's.
|
[5521]
|
netweb
|
Use tabs not spaces for indentation in `Kunena1.php`
|
[5520]
|
netweb
|
In `Example.php` importer use the correct `callback_forumid` callback for reply forum ID's.
|
[5519]
|
netweb
|
Improved `Drupal7.php` importer performance by leaning on our helper functions.
* Use `callback_topicid_to_forumid()` to convert the topic ID to forum ID eliminating an extra MySQL join.
|
[5518]
|
netweb
|
Spelling typo in `bbp_toggle_reply_handler()`, in between words we use spaces.
|
[5517]
|
netweb
|
In bbPress 1.x converter add support for closed topics via improved method in r5425.
Props netweb. Fixes #2125.
|
[5516]
|
netweb
|
Include 'default' forum status and forum type meta keys in importers for databases that do not support these values.
* Forum status: `_bbp_status` = `open` meta
* Forum type: `_bbp_forum_type` = `forum`
Props netweb. See #2647
|
[5515]
|
netweb
|
PHPDdoc corrections for topic and reply pending status approve and unapprove functions. See #2645
|
[5514]
|
netweb
|
So `.gitignore` is whitespace sensitive. If you include trailing whitespace, git won't recognize your files.
|
[5513]
|
johnjamesjacoby
|
Simplify topic & reply author role markup arguments, with backpat support. Props netweb. Fixes #2557.
|
[5512]
|
johnjamesjacoby
|
Slightly refactor `bbp_format_buddypress_notifications()`:
* Return original `$action` if not `bbp_new_reply`.
* Reduce indentation to accommodate new `$action` check.
This fixes a bug where checking for new reply notifications could cause future notification filter checks to fail.
Props Faison. Fixes #2665.
|
[5511]
|
johnjamesjacoby
|
In our BuddyPress Groups `display_forums` method, `break` out of switch statement rather than `return`. This prevents malformed markup caused by not allowing the method to continue on. Hat-tip boonebgorges, netweb. Fixes #2595.
|
[5510]
|
johnjamesjacoby
|
Only allow direct modification of reply forum meta when there is a mismatch with the topic forum.
This prevents moderators and keymasters from creating mismatches and leaves the tool available only for repairs (usually after a migration from a different platform.) Fixes #2270.
|
[5509]
|
johnjamesjacoby
|
Administrative support for un/approving replies. Props netweb. See #2645.
|
[5508]
|
johnjamesjacoby
|
Add default theme compat styling for pending topics and replies. Props netweb. See #2645.
|
[5507]
|
johnjamesjacoby
|
Preliminary template support for un/approving replies. Props netweb. See #2645.
|
[5506]
|
johnjamesjacoby
|
Preliminary function support for un/approving replies. Props netweb. See #2645.
|
[5505]
|
johnjamesjacoby
|
Add pending status to search results for capable users wishing to view all results. Props netweb. See #2645.
|
[5504]
|
johnjamesjacoby
|
Preliminary template support for un/approving topics. Props netweb. See #2645.
|
[5503]
|
johnjamesjacoby
|
Preliminary function support for un/approving topics. Props netweb. See #2645.
|
[5502]
|
johnjamesjacoby
|
Add pending topics to forum hidden topic counts. Props netweb. See #2645.
|
[5501]
|
johnjamesjacoby
|
Update phpdoc blocks in forum template functions. Props netweb. See #2645.
|
[5500]
|
johnjamesjacoby
|
Clean up core `actions.php`. Props netweb. See #2645.
|
[5499]
|
johnjamesjacoby
|
Enable forum status and visibility functions to check ancestry by extracting existing logic into new helper functions. Props alex-ye, netweb. Fixes #2303.
|
[5498]
|
johnjamesjacoby
|
Update widget description in `BBP_Topics_Widget` to include topic newness. Props netweb. Fixes #2531.
|
[5497]
|
johnjamesjacoby
|
Improve ID and classification in `form-topic.php` when forum is closed or user cannot create new topics. Props netweb. Fixes #2574.
|
[5496]
|
johnjamesjacoby
|
Embetter Orwellian Newspeak used to describe sticky topics in `admin/topics.php`. Props netweb. Fixes #2622.
|
[5495]
|
johnjamesjacoby
|
Add reply status section to `form-reply.php`. Props netweb. Fixes #2644.
|
[5494]
|
johnjamesjacoby
|
Tweak `bbp-author-ip` styling, removing the font family and ensuring long IP addresses break correctly. Props netweb. Fixes #2675.
|
[5493]
|
johnjamesjacoby
|
Allow `class` attribute for `pre` tags in `bbp_kses_allowed_tags()`. Props netweb. Fixes #2657.
|
[5492]
|
johnjamesjacoby
|
Missed a 'Reply To' reply title update. See r5490.
|
[5491]
|
johnjamesjacoby
|
In `bbp_split_topic_handler()` remove `$reply_position` cheater code, and rely on `bbp_update_reply_position()` to recalculate the correct position in the hierarchy after `wp_update_post()` has finished. Props netweb. Fixes #2624.
|
[5490]
|
johnjamesjacoby
|
Remove remaining 'Reply To' references in reply `post_title`'s.
(Now that posts can have empty titles, this is no longer necessary. It also yielded undesired single reply slugs, though they are only exposed to moderators and keymasters.)
Hat tip netweb.
|
[5489]
|
johnjamesjacoby
|
In `bbp_merge_topic_handler()` delete last and count metas, and update the reply position after call to `wp_update_post()`. Fixes bug where merging two topics with odd timestamps could result in orphaned or incorrect meta data and hierarchy positioning. Props netweb. Fixes #2528.
|
[5488]
|
johnjamesjacoby
|
Change behavior of `bbp_check_for_moderation()` so empty `moderation_keys` no longer skips `max_links` check. Props netweb. See #2546.
|
[5487]
|
johnjamesjacoby
|
Dedicated filters to allow manipulating of users who will receive subscription emails. Hat tip roysmyth. Fixes #2627.
|
[5486]
|
johnjamesjacoby
|
Pass `$topic_id` and `$forum_id` to relevant favorites and subscriptions filters. Hat tip DJPaul. Fixes #2651.
|
[5485]
|
johnjamesjacoby
|
Add brackets to comparison in `bbp_is_single_forum()`.
|
[5484]
|
netweb
|
Update Travis CI `.travis.yml`:
* Include WordPress .4.0 in test matrix
* Now that PHP 5.6 has been released move tests from "allowed to fail" to required
* Exclude PHP 5.6 and WordPress 3.7 from tests (Ignore the deprecated mysql_connect() warnings
|
[5483]
|
netweb
|
Improved inline docs readability for Grunt task `jshint`.
|
[5482]
|
netweb
|
Improved topic merge verbiage in form-topic-merge.php template.
Props johnjamesjacoby. Fixes #2539
|
[5481]
|
netweb
|
Remove @ToDo 'Implement Feeds' PHPDoc reference in `bbp_register_view()`, feeds were added for views in r3171 and r3172. Fixes #2631
|
[5480]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29447, WP:changeset:29542, WP:changeset:29697. See #2583
|
[5479]
|
netweb
|
Updated `_mixins.scss` via WP:changeset:29616, WP:changeset:29648. See #2583
|
[5478]
|
johnjamesjacoby
|
In the `form-topic.php` template part, check for 'bbp_get_forum_title()` before outputting an empty title. Props jreeve. Fixes #2625.
|
[5477]
|
johnjamesjacoby
|
In `bbp_has_topics()` bring back `$default_topic_search` variable to prevent debug notices.
|
[5476]
|
johnjamesjacoby
|
In `_bbp_has_replies_where()` remove the `post__not_in` check and add extra search/replace arguments for more complex queries. Improves support for popular privacy plugins that frequently use `post__not_in`. Props mikelopez. Fixes #2609.
|
[5475]
|
johnjamesjacoby
|
Use `exclude` instead of post__not_in, in `bbp_get_forums_for_current_user()`.
|
[5474]
|
johnjamesjacoby
|
Correct inline doc in `bbp_forum_get_subforums()`.
|
[5473]
|
johnjamesjacoby
|
In `bbp_admin_repair_forum_topic_count()` include hidden topics in repair tool. Props thebrandonallen. Fixes #2680.
|
[5472]
|
johnjamesjacoby
|
Use `wp_get_user_contact_methods()` in `bbp_get_user_contact_methods()`. See #2570.
|
[5471]
|
johnjamesjacoby
|
Use "Unfavorite" in `bbp_get_user_favorites_link()`. Fixes #2604.
|
[5470]
|
johnjamesjacoby
|
In `bbp_theme_compat_reset_post()` also set `is_singular` to value of `is_single`. Improves query compatibility with themes and other plugins. Props Mat Lipe. Fixes #2545.
|
[5469]
|
johnjamesjacoby
|
Whitespace and brackets in main `bbPress` class.
|
[5468]
|
johnjamesjacoby
|
Only add the `s` argument to global forum search queries if search-terms exist.
See #2607, #WP11330, [WP28623] [WP28612], [WP28804].
|
[5467]
|
johnjamesjacoby
|
Only add the `s` argument to queries if `rs` or `ts` are set in their respective topics & replies queries.
See #2607, #WP11330, [WP28623] [WP28612], [WP28804].
|
[5466]
|
johnjamesjacoby
|
Simpify `ABSPATH` checks to pass coding standard sniffers that look for brackets on comparisons.
|
[5465]
|
johnjamesjacoby
|
In `bbp_do_ajax()` use `get_option( 'html_type' )`.
|
[5464]
|
netweb
|
Use `Topic Tag` term for singular topic tag context in 'at a glance' dashboard metabox. Fixes #2544
|
[5463]
|
netweb
|
Bump NPM package versions in `package.json`
* "grunt-sass": "~0.14.0 -> "~0.14.1"
* "grunt-wp-i18n": "~0.4.7 -> "~0.4.8"
* Requires `npm install` to update packages and dependencies
|
[5462]
|
johnjamesjacoby
|
Use the correct `EMPTY_TRASH_DAYS` const.
|
[5461]
|
netweb
|
Bump tested-up-to version to 4.0. (2.5 branch)
|
[5460]
|
netweb
|
Bump tested-up-to version to 4.0. (trunk)
|
[5459]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29542. See #2583
|
[5458]
|
netweb
|
Update `BBP_EXCLUDED_FILES` in `Grunfile.js` to match `svn:ignore` and `.gitgnore` ignore properties, see also r5457
|
[5457]
|
netweb
|
Sync ignore properties of SVN and Git
* Git - More robust `.gitignore` file
* SVN - Ignore `npm-debug.log`
|
[5456]
|
netweb
|
Fix speeling error in settings.php
|
[5455]
|
netweb
|
Bump NPM package versions in `package.json`
* "grunt-wp-i18n": "~0.4.6 -> "~0.4.7"
* Requires `npm install` to update packages and dependencies
|
[5454]
|
netweb
|
Improved verbiage when importer has no topic tags to import.
|
[5453]
|
netweb
|
Updated verbiage when converting threaded replies, lets call them what they are in bbPress terms, "threaded replies", rather than the abstract term "reply_to".
|
[5452]
|
netweb
|
DB schema change for `wp_bbconverter_translator` converter sync table
* Increase `meta_key` maximum characters from 25 o 255 to allow for longer meta keys during import
See #2650
|
[5451]
|
netweb
|
Bump NPM package versions in `package.json`
* "grunt-contrib-clean": "~0.5.0 -> "~0.6.0"
* Requires `npm install` to update packages and dependencies
|
[5450]
|
netweb
|
* Alphabetize grunt tasks and tweak inline docs in `Gruntfile.js`
* Automatically reload the `grunt watch` task when changes are made to `Gruntfile.js`
|
[5449]
|
netweb
|
Remove extra URL forward slash in 'reset tools' help codex link. Props extendwings. Fixes #2666
|
[5448]
|
netweb
|
Bump NPM package versions in `package.json`
* "grunt-contrib-uglify": "~0.5.0 -> "~0.5.1"
* "grunt-exec": "~0.4.5" -> "~0.4.6"
* "grunt-wp-i18n": "~0.4.5" -> "~0.4.6"
* Requires `npm install` to update packages and dependencies
|
[5447]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29124 and WP:changeset:29287. See #2583
|
[5446]
|
netweb
|
Add a full stop to bbPress' short description, improves plugin cards readability see #WP28785 Comment:40
|
[5445]
|
johnjamesjacoby
|
Add missing brackets to core functions.
|
[5444]
|
johnjamesjacoby
|
Breathing room for `!` usages in Search component.
|
[5443]
|
johnjamesjacoby
|
Breathing room for `!` usages in Topics component.
|
[5442]
|
johnjamesjacoby
|
Breathing room for `!` usages in Users component.
|
[5441]
|
johnjamesjacoby
|
Bracketize extensions, and missed a spot in the admin.
|