diff --git a/Gruntfile.js b/Gruntfile.js
index d24dd7cd..9153f1b4 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -31,7 +31,7 @@ module.exports = function( grunt ) {
pkg: grunt.file.readJSON( 'package.json' ),
checktextdomain: {
options: {
- text_domain: 'helphub',
+ text_domain: 'wporg-forums',
correct_domain: false,
keywords: [
'__:1,2d',
@@ -52,7 +52,8 @@ module.exports = function( grunt ) {
},
files: {
src: [
- 'plugins/helphub-*/**/*.php',
+ 'plugins/support-helphub/**/*.php',
+ '!plugins/support-helphub/inc/syntaxhighlighter/**/*.php',
'themes/helphub/**/*.php'
],
expand: true
@@ -115,19 +116,19 @@ module.exports = function( grunt ) {
},
helphub: {
expand: true,
- src: 'themes/helphub/style.css'
+ src: 'themes/wporg-support/style.css'
},
contributors: {
expand: true,
- src: 'plugins/helphub-contributors/public/css/helphub-contributors-public.css'
+ src: 'plugins/support-helphub/inc/helphub-contributors/public/css/helphub-contributors-public.css'
}
},
sass: {
helphub: {
expand: true,
ext: '.css',
- cwd: 'themes/helphub/sass/',
- dest: 'themes/helphub/',
+ cwd: 'themes/wporg-support/sass/',
+ dest: 'themes/wporg-support/',
src: [ 'style.scss' ],
options: {
indentType: 'tab',
@@ -138,8 +139,8 @@ module.exports = function( grunt ) {
contributors: {
expand: true,
ext: '.css',
- cwd: 'plugins/helphub-contributors/src/sass/',
- dest: 'plugins/helphub-contributors/public/css/',
+ cwd: 'plugins/support-helphub/inc/helphub-contributors/src/sass/',
+ dest: 'plugins/support-helphub/inc/helphub-contributors/public/css/',
src: [ 'helphub-contributors-public.scss' ],
options: {
indentType: 'tab',
@@ -172,7 +173,7 @@ module.exports = function( grunt ) {
{
expand: true,
src: ['node_modules/select2/dist/**'],
- dest: 'plugins/helphub-contributors/admin/assets/'
+ dest: 'plugins/support-helphub/inc/helphub-contributors/admin/assets/'
}
]
}
diff --git a/README.md b/README.md
index 9a92defa..165d0d0e 100644
--- a/README.md
+++ b/README.md
@@ -11,11 +11,7 @@ You can get involved in development (or any other aspect of the project) by atte
## How to use this repo
-To use this repo, simply create a new WordPress site on your local machine (using whatever development environment suits you), then empty out the `wp-content` folder and clone this repo into it. You will also need to add the following line to your site's `wp-config.php` file:
-
-```
-define( 'WPORGPATH', 'https://wordpress.org/' );
-```
+To use this repo, simply create a new WordPress site on your local machine (using whatever development environment suits you), then empty out the `wp-content` folder and clone this repo into it.
## Workflow
@@ -35,7 +31,7 @@ Any fixes that do not qualify as new features are to done in individual branches
As this is a WordPress community project, all development must have a strong committment to accessibility and responsive design. We will also be following the [WordPress coding standards](https://codex.wordpress.org/WordPress_Coding_Standards) throughout the project.
-Given that we will ultimately need to localise the whole site for different languages, please use `helphub` as the text domain for all text strings.
+Given that we will ultimately need to localise the whole site for different languages, please use `wporg-forums` as the text domain for all text strings.
A database export is available here - https://github.com/Kenshino/HelpHub/blob/master/helphub.wordpress.2017-06-15.xml
diff --git a/phpcs.ruleset.xml b/phpcs.ruleset.xml
index cc05e471..17ae9ca7 100644
--- a/phpcs.ruleset.xml
+++ b/phpcs.ruleset.xml
@@ -11,5 +11,5 @@
.
- plugins/syntaxhighlighter/*
+ plugins/support-helphub/inc/syntaxhighlighter/*
\ No newline at end of file
diff --git a/plugins/helphub-codex-languages/assets/css/codex-languages.css b/plugins/support-helphub/inc/helphub-codex-languages/assets/css/codex-languages.css
similarity index 100%
rename from plugins/helphub-codex-languages/assets/css/codex-languages.css
rename to plugins/support-helphub/inc/helphub-codex-languages/assets/css/codex-languages.css
diff --git a/plugins/helphub-codex-languages/class-helphub-codex-languages.php b/plugins/support-helphub/inc/helphub-codex-languages/class-helphub-codex-languages.php
similarity index 98%
rename from plugins/helphub-codex-languages/class-helphub-codex-languages.php
rename to plugins/support-helphub/inc/helphub-codex-languages/class-helphub-codex-languages.php
index 046e2d5b..813c86c2 100644
--- a/plugins/helphub-codex-languages/class-helphub-codex-languages.php
+++ b/plugins/support-helphub/inc/helphub-codex-languages/class-helphub-codex-languages.php
@@ -205,7 +205,7 @@ public static function instance() {
* @since 1.0.0
*/
public function load_plugin_textdomain() {
- load_plugin_textdomain( 'helphub', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
+ load_plugin_textdomain( 'wporg-forums', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
} // End load_plugin_textdomain()
/**
@@ -215,7 +215,7 @@ public function load_plugin_textdomain() {
* @since 1.0.0
*/
public function __clone() {
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'helphub' ), '1.0.0' );
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'wporg-forums' ), '1.0.0' );
} // End __clone()
/**
@@ -225,7 +225,7 @@ public function __clone() {
* @since 1.0.0
*/
public function __wakeup() {
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'helphub' ), '1.0.0' );
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'wporg-forums' ), '1.0.0' );
} // End __wakeup()
/**
diff --git a/plugins/helphub-codex-languages/index.php b/plugins/support-helphub/inc/helphub-codex-languages/index.php
similarity index 100%
rename from plugins/helphub-codex-languages/index.php
rename to plugins/support-helphub/inc/helphub-codex-languages/index.php
diff --git a/plugins/helphub-codex-languages/readme.txt b/plugins/support-helphub/inc/helphub-codex-languages/readme.txt
similarity index 100%
rename from plugins/helphub-codex-languages/readme.txt
rename to plugins/support-helphub/inc/helphub-codex-languages/readme.txt
diff --git a/plugins/helphub-contributors/LICENSE.txt b/plugins/support-helphub/inc/helphub-contributors/LICENSE.txt
similarity index 100%
rename from plugins/helphub-contributors/LICENSE.txt
rename to plugins/support-helphub/inc/helphub-contributors/LICENSE.txt
diff --git a/plugins/helphub-contributors/README.txt b/plugins/support-helphub/inc/helphub-contributors/README.txt
similarity index 100%
rename from plugins/helphub-contributors/README.txt
rename to plugins/support-helphub/inc/helphub-contributors/README.txt
diff --git a/plugins/helphub-contributors/admin/class-helphub-contributors-admin.php b/plugins/support-helphub/inc/helphub-contributors/admin/class-helphub-contributors-admin.php
similarity index 95%
rename from plugins/helphub-contributors/admin/class-helphub-contributors-admin.php
rename to plugins/support-helphub/inc/helphub-contributors/admin/class-helphub-contributors-admin.php
index bb892030..f97ad7ec 100644
--- a/plugins/helphub-contributors/admin/class-helphub-contributors-admin.php
+++ b/plugins/support-helphub/inc/helphub-contributors/admin/class-helphub-contributors-admin.php
@@ -96,14 +96,14 @@ public function add_contributors() {
$contributors = get_post_meta( $post->ID, 'helphub_contributors' ); ?>
@' . esc_html( $contributor ) . '';
if ( end( $contributors ) == $contributor ) {
- $contributor_link .= esc_html__( '.', 'helphub' );
+ $contributor_link .= esc_html__( '.', 'wporg-forums' );
} else {
- $contributor_link .= esc_html__( ', ', 'helphub' );
+ $contributor_link .= esc_html__( ', ', 'wporg-forums' );
}
echo $contributor_link;
diff --git a/plugins/helphub-contributors/admin/index.php b/plugins/support-helphub/inc/helphub-contributors/admin/index.php
similarity index 100%
rename from plugins/helphub-contributors/admin/index.php
rename to plugins/support-helphub/inc/helphub-contributors/admin/index.php
diff --git a/plugins/helphub-contributors/admin/js/helphub-contributors-admin.js b/plugins/support-helphub/inc/helphub-contributors/admin/js/helphub-contributors-admin.js
similarity index 100%
rename from plugins/helphub-contributors/admin/js/helphub-contributors-admin.js
rename to plugins/support-helphub/inc/helphub-contributors/admin/js/helphub-contributors-admin.js
diff --git a/plugins/helphub-contributors/helphub-contributors.php b/plugins/support-helphub/inc/helphub-contributors/helphub-contributors.php
similarity index 100%
rename from plugins/helphub-contributors/helphub-contributors.php
rename to plugins/support-helphub/inc/helphub-contributors/helphub-contributors.php
diff --git a/plugins/helphub-contributors/includes/class-helphub-contributors.php b/plugins/support-helphub/inc/helphub-contributors/includes/class-helphub-contributors.php
similarity index 100%
rename from plugins/helphub-contributors/includes/class-helphub-contributors.php
rename to plugins/support-helphub/inc/helphub-contributors/includes/class-helphub-contributors.php
diff --git a/plugins/helphub-contributors/includes/index.php b/plugins/support-helphub/inc/helphub-contributors/includes/index.php
similarity index 100%
rename from plugins/helphub-contributors/includes/index.php
rename to plugins/support-helphub/inc/helphub-contributors/includes/index.php
diff --git a/plugins/helphub-contributors/index.php b/plugins/support-helphub/inc/helphub-contributors/index.php
similarity index 100%
rename from plugins/helphub-contributors/index.php
rename to plugins/support-helphub/inc/helphub-contributors/index.php
diff --git a/plugins/helphub-contributors/languages/helphub-contributors.pot b/plugins/support-helphub/inc/helphub-contributors/languages/helphub-contributors.pot
similarity index 100%
rename from plugins/helphub-contributors/languages/helphub-contributors.pot
rename to plugins/support-helphub/inc/helphub-contributors/languages/helphub-contributors.pot
diff --git a/plugins/helphub-contributors/public/class-helphub-contributors-public.php b/plugins/support-helphub/inc/helphub-contributors/public/class-helphub-contributors-public.php
similarity index 98%
rename from plugins/helphub-contributors/public/class-helphub-contributors-public.php
rename to plugins/support-helphub/inc/helphub-contributors/public/class-helphub-contributors-public.php
index 0f46ca5a..1f50501c 100644
--- a/plugins/helphub-contributors/public/class-helphub-contributors-public.php
+++ b/plugins/support-helphub/inc/helphub-contributors/public/class-helphub-contributors-public.php
@@ -148,13 +148,13 @@ public function show_contributors( $content ) {
else :
// Display message if no user is found with provided username.
- $contributors_items .= '' . sprintf( __( '%s is not a valid username.', 'helphub' ), '' . $contributor . '' ) . '
';
+ $contributors_items .= '' . sprintf( __( '%s is not a valid username.', 'wporg-forums' ), '' . $contributor . '' ) . '
';
endif; // is_object( $contributor_object )
endforeach; // $contributors as $contributor
- $contributors_heading = '' . esc_html__( 'Contributors', 'helphub' ) . '
';
+ $contributors_heading = '' . esc_html__( 'Contributors', 'wporg-forums' ) . '
';
$contributors_list = '' . $contributors_items . '
';
// Build the markup
diff --git a/plugins/helphub-contributors/public/index.php b/plugins/support-helphub/inc/helphub-contributors/public/index.php
similarity index 100%
rename from plugins/helphub-contributors/public/index.php
rename to plugins/support-helphub/inc/helphub-contributors/public/index.php
diff --git a/plugins/helphub-contributors/src/sass/helphub-contributors-public.scss b/plugins/support-helphub/inc/helphub-contributors/src/sass/helphub-contributors-public.scss
similarity index 100%
rename from plugins/helphub-contributors/src/sass/helphub-contributors-public.scss
rename to plugins/support-helphub/inc/helphub-contributors/src/sass/helphub-contributors-public.scss
diff --git a/plugins/helphub-contributors/uninstall.php b/plugins/support-helphub/inc/helphub-contributors/uninstall.php
similarity index 100%
rename from plugins/helphub-contributors/uninstall.php
rename to plugins/support-helphub/inc/helphub-contributors/uninstall.php
diff --git a/plugins/helphub-post-types/assets/css/admin.css b/plugins/support-helphub/inc/helphub-post-types/assets/css/admin.css
similarity index 100%
rename from plugins/helphub-post-types/assets/css/admin.css
rename to plugins/support-helphub/inc/helphub-post-types/assets/css/admin.css
diff --git a/plugins/helphub-post-types/assets/js/admin.js b/plugins/support-helphub/inc/helphub-post-types/assets/js/admin.js
similarity index 100%
rename from plugins/helphub-post-types/assets/js/admin.js
rename to plugins/support-helphub/inc/helphub-post-types/assets/js/admin.js
diff --git a/plugins/helphub-post-types/assets/js/gallery.js b/plugins/support-helphub/inc/helphub-post-types/assets/js/gallery.js
similarity index 100%
rename from plugins/helphub-post-types/assets/js/gallery.js
rename to plugins/support-helphub/inc/helphub-post-types/assets/js/gallery.js
diff --git a/plugins/helphub-post-types/classes/class-helphub-post-types-post-type.php b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-post-type.php
similarity index 90%
rename from plugins/helphub-post-types/classes/class-helphub-post-types-post-type.php
rename to plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-post-type.php
index 26d9a073..970d6f6d 100644
--- a/plugins/helphub-post-types/classes/class-helphub-post-types-post-type.php
+++ b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-post-type.php
@@ -124,23 +124,23 @@ public function register_post_type() {
$labels = array(
'name' => $this->plural,
'singular_name' => $this->singular,
- 'add_new' => _x( 'Add New', 'add new helphub post', 'helphub' ),
+ 'add_new' => _x( 'Add New', 'add new helphub post', 'wporg-forums' ),
/* translators: %s: Post type name. */
- 'add_new_item' => sprintf( __( 'Add New %s', 'helphub' ), $this->singular ),
+ 'add_new_item' => sprintf( __( 'Add New %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'edit_item' => sprintf( __( 'Edit %s', 'helphub' ), $this->singular ),
+ 'edit_item' => sprintf( __( 'Edit %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'new_item' => sprintf( __( 'New %s', 'helphub' ), $this->singular ),
+ 'new_item' => sprintf( __( 'New %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Plural post type name. */
- 'all_items' => sprintf( __( 'All %s', 'helphub' ), $this->plural ),
+ 'all_items' => sprintf( __( 'All %s', 'wporg-forums' ), $this->plural ),
/* translators: %s: Post type name. */
- 'view_item' => sprintf( __( 'View %s', 'helphub' ), $this->singular ),
+ 'view_item' => sprintf( __( 'View %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Plural post type name. */
- 'search_items' => sprintf( __( 'Search %a', 'helphub' ), $this->plural ),
+ 'search_items' => sprintf( __( 'Search %a', 'wporg-forums' ), $this->plural ),
/* translators: %s: Plural post type name. */
- 'not_found' => sprintf( __( 'No %s Found', 'helphub' ), $this->plural ),
+ 'not_found' => sprintf( __( 'No %s Found', 'wporg-forums' ), $this->plural ),
/* translators: %s: Plural post type name. */
- 'not_found_in_trash' => sprintf( __( 'No %s Found In Trash', 'helphub' ), $this->plural ),
+ 'not_found_in_trash' => sprintf( __( 'No %s Found In Trash', 'wporg-forums' ), $this->plural ),
'parent_item_colon' => '',
'menu_name' => $this->plural,
);
@@ -220,7 +220,7 @@ public function register_custom_columns( $column_name, $id ) {
*/
public function register_custom_column_headings( $defaults ) {
$new_columns = array(
- 'image' => __( 'Image', 'helphub' ),
+ 'image' => __( 'Image', 'wporg-forums' ),
);
$last_item = array();
@@ -264,24 +264,24 @@ public function updated_messages( $messages ) {
0 => '',
// Unused. Messages start at index 1.
/* translators: %1$s: Post link tag. %2$s: Close post link tag. %3$s: Post type name. %4$s: Lowercase post type name. */
- 1 => sprintf( __( '%3$s updated. %1$sView %4$s%2$s', 'helphub' ), '', '', $this->singular, strtolower( $this->singular ) ),
- 2 => __( 'Custom field updated.', 'helphub' ),
- 3 => __( 'Custom field deleted.', 'helphub' ),
+ 1 => sprintf( __( '%3$s updated. %1$sView %4$s%2$s', 'wporg-forums' ), '', '', $this->singular, strtolower( $this->singular ) ),
+ 2 => __( 'Custom field updated.', 'wporg-forums' ),
+ 3 => __( 'Custom field deleted.', 'wporg-forums' ),
/* translators: %s: Post type name. */
- 4 => sprintf( __( '%s updated.', 'helphub' ), $this->singular ),
+ 4 => sprintf( __( '%s updated.', 'wporg-forums' ), $this->singular ),
/* translators: %s: date and time of the revision */
- 5 => isset( $_GET['revision'] ) ? sprintf( __( '%1$s restored to revision from %2$s', 'helphub' ), $this->singular, wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
+ 5 => isset( $_GET['revision'] ) ? sprintf( __( '%1$s restored to revision from %2$s', 'wporg-forums' ), $this->singular, wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
// WPCS: CSRF ok; input var ok.
/* translators: %1$s Post type name. %2$s: Lowercase post type name. %3$s: Post link tag. %4$s: Close post link tag. */
- 6 => sprintf( __( '%1$s published. %3$sView %2$s%4$s', 'helphub' ), $this->singular, strtolower( $this->singular ), '', '' ),
+ 6 => sprintf( __( '%1$s published. %3$sView %2$s%4$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '', '' ),
/* translators: %s: Post type name. */
- 7 => sprintf( __( '%s saved.', 'helphub' ), $this->singular ),
+ 7 => sprintf( __( '%s saved.', 'wporg-forums' ), $this->singular ),
/* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Post link tag. %4$s: Close post link tag. */
- 8 => sprintf( __( '%1$s submitted. %2$sPreview %3$s%4$s', 'helphub' ), $this->singular, strtolower( $this->singular ), '', '' ),
+ 8 => sprintf( __( '%1$s submitted. %2$sPreview %3$s%4$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '', '' ),
/* translators: %1$s: Post type name. %2$s: Lowercase post type name. */
- 9 => sprintf( __( '%1$s scheduled for: %1$s. %2$sPreview %2$s%3$s', 'helphub' ), $this->singular, strtolower( $this->singular ), '' . date_i18n( __( 'M j, Y @ G:i', 'helphub' ), strtotime( $post->post_date ) ) . '', '', '' ),
+ 9 => sprintf( __( '%1$s scheduled for: %1$s. %2$sPreview %2$s%3$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '' . date_i18n( __( 'M j, Y @ G:i', 'wporg-forums' ), strtotime( $post->post_date ) ) . '', '', '' ),
/* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Close post link tag. %4$s: Close post link tag. */
- 10 => sprintf( __( '%1$s draft updated. %3$sPreview %2$s%4$s', 'helphub' ), $this->singular, strtolower( $this->singular ), '', '' ),
+ 10 => sprintf( __( '%1$s draft updated. %3$sPreview %2$s%4$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '', '' ),
);
return $messages;
@@ -297,12 +297,12 @@ public function updated_messages( $messages ) {
*/
public function meta_box_setup() {
if ( 'post' === $this->post_type ) {
- add_meta_box( $this->post_type . '-display', __( 'Display Settings', 'helphub' ), array(
+ add_meta_box( $this->post_type . '-display', __( 'Display Settings', 'wporg-forums' ), array(
$this,
'meta_box_content',
), $this->post_type, 'normal', 'high' );
} elseif ( 'helphub_version' === $this->post_type ) {
- add_meta_box( $this->post_type . '-version-meta', __( 'Display Settings', 'helphub' ), array(
+ add_meta_box( $this->post_type . '-version-meta', __( 'Display Settings', 'wporg-forums' ), array(
$this,
'meta_box_version_content',
), $this->post_type, 'normal', 'high' );
@@ -603,7 +603,7 @@ public function meta_box_save( $post_id ) {
public function enter_title_here( $title ) {
if ( get_post_type() === $this->post_type ) {
if ( 'post' === get_post_type() ) {
- $title = __( 'Enter the article title here', 'helphub' );
+ $title = __( 'Enter the article title here', 'wporg-forums' );
}
}
@@ -643,16 +643,16 @@ public function get_custom_fields_post_display_settings() {
$fields = array();
$fields['read_time'] = array(
- 'name' => __( 'Article Read Time', 'helphub' ),
- 'description' => __( 'Leave this empty, calculation is automatic', 'helphub' ),
+ 'name' => __( 'Article Read Time', 'wporg-forums' ),
+ 'description' => __( 'Leave this empty, calculation is automatic', 'wporg-forums' ),
'type' => 'text',
'default' => '',
'section' => 'info',
);
$fields['custom_read_time'] = array(
- 'name' => __( 'Custom Read Time', 'helphub' ),
- 'description' => __( 'Only fill up this field if the automated calculation is incorrect', 'helphub' ),
+ 'name' => __( 'Custom Read Time', 'wporg-forums' ),
+ 'description' => __( 'Only fill up this field if the automated calculation is incorrect', 'wporg-forums' ),
'type' => 'text',
'default' => '',
'section' => 'info',
@@ -672,16 +672,16 @@ public function get_custom_fields_version_display_settings() {
$fields = array();
$fields['version_date'] = array(
- 'name' => __( 'Date Released', 'helphub' ),
- 'description' => __( 'Date this WordPress Version was released', 'helphub' ),
+ 'name' => __( 'Date Released', 'wporg-forums' ),
+ 'description' => __( 'Date this WordPress Version was released', 'wporg-forums' ),
'type' => 'date',
'default' => '',
'section' => 'info',
);
$fields['musician_codename'] = array(
- 'name' => __( 'Musician', 'helphub' ),
- 'description' => __( 'The Jazz Musician this release was named after', 'helphub' ),
+ 'name' => __( 'Musician', 'wporg-forums' ),
+ 'description' => __( 'The Jazz Musician this release was named after', 'wporg-forums' ),
'type' => 'text',
'default' => '',
'section' => 'info',
diff --git a/plugins/helphub-post-types/classes/class-helphub-post-types-taxonomy.php b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-taxonomy.php
similarity index 78%
rename from plugins/helphub-post-types/classes/class-helphub-post-types-taxonomy.php
rename to plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-taxonomy.php
index b1c20870..ebe63105 100644
--- a/plugins/helphub-post-types/classes/class-helphub-post-types-taxonomy.php
+++ b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-taxonomy.php
@@ -85,10 +85,10 @@ public function __construct( $post_type = 'thing', $token = 'thing-category', $s
$this->plural = esc_html( $plural );
if ( '' === $this->singular ) {
- $this->singular = __( 'Category', 'helphub' );
+ $this->singular = __( 'Category', 'wporg-forums' );
}
if ( '' === $this->plural ) {
- $this->plural = __( 'Categories', 'helphub' );
+ $this->plural = __( 'Categories', 'wporg-forums' );
}
$this->args = wp_parse_args( $args, $this->_get_default_args() );
@@ -128,23 +128,23 @@ private function _get_default_args() {
*/
private function _get_default_labels() {
return array(
- 'name' => sprintf( _x( '%s', 'taxonomy general name', 'helphub' ), $this->plural ), /* @codingStandardsIgnoreLine */
- 'singular_name' => sprintf( _x( '%s', 'taxonomy singular name', 'helphub' ), $this->singular ), /* @codingStandardsIgnoreLine */
- 'search_items' => sprintf( __( 'Search %s', 'helphub' ), $this->plural ),
+ 'name' => sprintf( _x( '%s', 'taxonomy general name', 'wporg-forums' ), $this->plural ), /* @codingStandardsIgnoreLine */
+ 'singular_name' => sprintf( _x( '%s', 'taxonomy singular name', 'wporg-forums' ), $this->singular ), /* @codingStandardsIgnoreLine */
+ 'search_items' => sprintf( __( 'Search %s', 'wporg-forums' ), $this->plural ),
/* translators: %s: Plural name of the post type. */
- 'all_items' => sprintf( __( 'All %s', 'helphub' ), $this->plural ),
+ 'all_items' => sprintf( __( 'All %s', 'wporg-forums' ), $this->plural ),
/* translators: %s: Post type name. */
- 'parent_item' => sprintf( __( 'Parent %s', 'helphub' ), $this->singular ),
+ 'parent_item' => sprintf( __( 'Parent %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'parent_item_colon' => sprintf( __( 'Parent %s:', 'helphub' ), $this->singular ),
+ 'parent_item_colon' => sprintf( __( 'Parent %s:', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'edit_item' => sprintf( __( 'Edit %s', 'helphub' ), $this->singular ),
+ 'edit_item' => sprintf( __( 'Edit %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'update_item' => sprintf( __( 'Update %s', 'helphub' ), $this->singular ),
+ 'update_item' => sprintf( __( 'Update %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'add_new_item' => sprintf( __( 'Add New %s', 'helphub' ), $this->singular ),
+ 'add_new_item' => sprintf( __( 'Add New %s', 'wporg-forums' ), $this->singular ),
/* translators: %s: Post type name. */
- 'new_item_name' => sprintf( __( 'New %s Name', 'helphub' ), $this->singular ),
+ 'new_item_name' => sprintf( __( 'New %s Name', 'wporg-forums' ), $this->singular ),
'menu_name' => $this->plural,
);
} // End _get_default_labels()
diff --git a/plugins/helphub-post-types/classes/class-helphub-post-types.php b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types.php
similarity index 85%
rename from plugins/helphub-post-types/classes/class-helphub-post-types.php
rename to plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types.php
index 5f0bae14..f8d2b9ca 100644
--- a/plugins/helphub-post-types/classes/class-helphub-post-types.php
+++ b/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types.php
@@ -127,19 +127,19 @@ public function __construct() {
require_once( dirname( __FILE__ ) . '/class-helphub-post-types-taxonomy.php' );
// Register an example post type. To register other post types, duplicate this line.
- $this->post_types['post'] = new HelpHub_Post_Types_Post_Type( 'post', __( 'Post', 'helphub' ), __( 'Posts', 'helphub' ), array(
+ $this->post_types['post'] = new HelpHub_Post_Types_Post_Type( 'post', __( 'Post', 'wporg-forums' ), __( 'Posts', 'wporg-forums' ), array(
'menu_icon' => 'dashicons-post',
) );
- $this->post_types['helphub_version'] = new HelpHub_Post_Types_Post_Type( 'helphub_version', __( 'WordPress Version', 'helphub' ), __( 'WordPress Versions', 'helphub' ), array(
+ $this->post_types['helphub_version'] = new HelpHub_Post_Types_Post_Type( 'helphub_version', __( 'WordPress Version', 'wporg-forums' ), __( 'WordPress Versions', 'wporg-forums' ), array(
'menu_icon' => 'dashicons-wordpress',
) );
/* Post Types - End */
// Register an example taxonomy. To register more taxonomies, duplicate this line.
- $this->taxonomies['helphub_persona'] = new HelpHub_Post_Types_Taxonomy( 'post', 'helphub_persona', __( 'Persona', 'helphub' ), __( 'Personas', 'helphub' ) );
- $this->taxonomies['helphub_experience'] = new HelpHub_Post_Types_Taxonomy( 'post', 'helphub_experience', __( 'Experience', 'helphub' ), __( 'Experiences', 'helphub' ) );
- $this->taxonomies['helphub_major_release'] = new HelpHub_Post_Types_Taxonomy( 'helphub_version', 'helphub_major_release', __( 'Major Release', 'helphub' ), __( 'Major Releases', 'helphub' ) );
+ $this->taxonomies['helphub_persona'] = new HelpHub_Post_Types_Taxonomy( 'post', 'helphub_persona', __( 'Persona', 'wporg-forums' ), __( 'Personas', 'wporg-forums' ) );
+ $this->taxonomies['helphub_experience'] = new HelpHub_Post_Types_Taxonomy( 'post', 'helphub_experience', __( 'Experience', 'wporg-forums' ), __( 'Experiences', 'wporg-forums' ) );
+ $this->taxonomies['helphub_major_release'] = new HelpHub_Post_Types_Taxonomy( 'helphub_version', 'helphub_major_release', __( 'Major Release', 'wporg-forums' ), __( 'Major Releases', 'wporg-forums' ) );
register_activation_hook( __FILE__, array( $this, 'install' ) );
@@ -173,7 +173,7 @@ public static function instance() {
* @since 1.0.0
*/
public function load_plugin_textdomain() {
- load_plugin_textdomain( 'helphub', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
+ load_plugin_textdomain( 'wporg-forums', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
} // End load_plugin_textdomain()
/**
@@ -198,16 +198,16 @@ public function enqueue_admin_styles() {
endif;
wp_localize_script( 'helphub-post-types-admin', 'HelphubAdmin',
array(
- 'default_title' => __( 'Upload', 'helphub' ),
- 'default_button' => __( 'Select this', 'helphub' ),
+ 'default_title' => __( 'Upload', 'wporg-forums' ),
+ 'default_button' => __( 'Select this', 'wporg-forums' ),
)
);
wp_localize_script( 'helphub-post-types-gallery', 'HelphubGallery',
array(
- 'gallery_title' => __( 'Add Images to Product Gallery', 'helphub' ),
- 'gallery_button' => __( 'Add to gallery', 'helphub' ),
- 'delete_image' => __( 'Delete image', 'helphub' ),
+ 'gallery_title' => __( 'Add Images to Product Gallery', 'wporg-forums' ),
+ 'gallery_button' => __( 'Add to gallery', 'wporg-forums' ),
+ 'delete_image' => __( 'Delete image', 'wporg-forums' ),
)
);
@@ -220,7 +220,7 @@ public function enqueue_admin_styles() {
* @since 1.0.0
*/
public function __clone() {
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'helphub' ), '1.0.0' );
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'wporg-forums' ), '1.0.0' );
} // End __clone()
/**
@@ -230,7 +230,7 @@ public function __clone() {
* @since 1.0.0
*/
public function __wakeup() {
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'helphub' ), '1.0.0' );
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'wporg-forums' ), '1.0.0' );
} // End __wakeup()
/**
diff --git a/plugins/helphub-post-types/classes/index.php b/plugins/support-helphub/inc/helphub-post-types/classes/index.php
similarity index 100%
rename from plugins/helphub-post-types/classes/index.php
rename to plugins/support-helphub/inc/helphub-post-types/classes/index.php
diff --git a/plugins/helphub-post-types/helphub-post-types.php b/plugins/support-helphub/inc/helphub-post-types/helphub-post-types.php
similarity index 100%
rename from plugins/helphub-post-types/helphub-post-types.php
rename to plugins/support-helphub/inc/helphub-post-types/helphub-post-types.php
diff --git a/plugins/helphub-post-types/index.php b/plugins/support-helphub/inc/helphub-post-types/index.php
similarity index 100%
rename from plugins/helphub-post-types/index.php
rename to plugins/support-helphub/inc/helphub-post-types/index.php
diff --git a/plugins/helphub-post-types/readme.txt b/plugins/support-helphub/inc/helphub-post-types/readme.txt
similarity index 100%
rename from plugins/helphub-post-types/readme.txt
rename to plugins/support-helphub/inc/helphub-post-types/readme.txt
diff --git a/plugins/helphub-read-time/helphub-read-time.php b/plugins/support-helphub/inc/helphub-read-time/helphub-read-time.php
similarity index 98%
rename from plugins/helphub-read-time/helphub-read-time.php
rename to plugins/support-helphub/inc/helphub-read-time/helphub-read-time.php
index 9c5fcc7a..2176a376 100644
--- a/plugins/helphub-read-time/helphub-read-time.php
+++ b/plugins/support-helphub/inc/helphub-read-time/helphub-read-time.php
@@ -169,7 +169,7 @@ function hh_get_the_read_time( $post_id = null ) {
$reading_time = (int) $read_time < 60 ? '1' : (string) round( $read_time / 60 );
/* translators: %s: Read time in minutes. */
- return sprintf( _n( 'Reading Time: %s Minute', 'Reading Time: %s Minutes', $reading_time, 'helphub' ), $reading_time );
+ return sprintf( _n( 'Reading Time: %s Minute', 'Reading Time: %s Minutes', $reading_time, 'wporg-forums' ), $reading_time );
}
/**
diff --git a/plugins/helphub-read-time/readme.txt b/plugins/support-helphub/inc/helphub-read-time/readme.txt
similarity index 96%
rename from plugins/helphub-read-time/readme.txt
rename to plugins/support-helphub/inc/helphub-read-time/readme.txt
index 1e4b0ef0..3732bdd2 100644
--- a/plugins/helphub-read-time/readme.txt
+++ b/plugins/support-helphub/inc/helphub-read-time/readme.txt
@@ -14,7 +14,7 @@ Generates a rough read time estimate for a post.
== Usage ==
-Display read time for a single post in the loop.
+Display read time for a single post in the loop.
``
Display the read time for a post outside the loop.
@@ -28,7 +28,7 @@ Adjusting Words Per Minute Average can be filtered using
Pre tag content holds a bit more weight than normal words. The weight of the word count in pre tags is twice than normal (2 x Word Count).
The weight can be modified by using the filter `read_time_offset_weight` which is set to 1 by default since the offset word count is added to the final word count total.
-Increasing `read_time_offset_weight` will increase the weight of the pre tag word count.
+Increasing `read_time_offset_weight` will increase the weight of the pre tag word count.
Final Word Count + ( Offset Word Count * Offset Weight )
diff --git a/plugins/syntaxhighlighter/localization/_syntaxhighlighter-template.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/_syntaxhighlighter-template.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/_syntaxhighlighter-template.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/_syntaxhighlighter-template.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-ja.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-ja.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-ja.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-ja.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-uk.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-uk.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-uk.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-uk.po
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po b/plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po
similarity index 100%
rename from plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po
rename to plugins/support-helphub/inc/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po
diff --git a/plugins/syntaxhighlighter/readme.txt b/plugins/support-helphub/inc/syntaxhighlighter/readme.txt
similarity index 100%
rename from plugins/syntaxhighlighter/readme.txt
rename to plugins/support-helphub/inc/syntaxhighlighter/readme.txt
diff --git a/plugins/syntaxhighlighter/screenshot-1.png b/plugins/support-helphub/inc/syntaxhighlighter/screenshot-1.png
similarity index 100%
rename from plugins/syntaxhighlighter/screenshot-1.png
rename to plugins/support-helphub/inc/syntaxhighlighter/screenshot-1.png
diff --git a/plugins/syntaxhighlighter/screenshot-2.png b/plugins/support-helphub/inc/syntaxhighlighter/screenshot-2.png
similarity index 100%
rename from plugins/syntaxhighlighter/screenshot-2.png
rename to plugins/support-helphub/inc/syntaxhighlighter/screenshot-2.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter.php b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter.php
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter.php
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter.php
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/LGPLv3.txt b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/LGPLv3.txt
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/LGPLv3.txt
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/LGPLv3.txt
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/clipboard.swf b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/clipboard.swf
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/clipboard.swf
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/clipboard.swf
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js
similarity index 99%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js
index 985a3e8d..b40d1aab 100644
--- a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js
+++ b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushAS3.js
@@ -1,32 +1,32 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
- *
- * @version
- * 2.1.364 (October 15 2009)
- *
- * @copyright
- * Copyright (C) 2004-2009 Alex Gorbatchev.
- *
- * @license
- * This file is part of SyntaxHighlighter.
- *
- * SyntaxHighlighter is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SyntaxHighlighter is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with SyntaxHighlighter. If not, see .
- */
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
+ *
+ * @version
+ * 2.1.364 (October 15 2009)
+ *
+ * @copyright
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
+ *
+ * @license
+ * This file is part of SyntaxHighlighter.
+ *
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with SyntaxHighlighter. If not, see .
+ */
SyntaxHighlighter.brushes.AS3 = function()
{
// Created by Peter Atoria @ http://iAtoria.com
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushBash.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushBash.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushBash.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushBash.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCSharp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCSharp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCSharp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCSharp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js
similarity index 99%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js
index 57de5215..b520544d 100644
--- a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js
+++ b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushColdFusion.js
@@ -1,32 +1,32 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
- *
- * @version
- * 2.1.364 (October 15 2009)
- *
- * @copyright
- * Copyright (C) 2004-2009 Alex Gorbatchev.
- *
- * @license
- * This file is part of SyntaxHighlighter.
- *
- * SyntaxHighlighter is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SyntaxHighlighter is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with SyntaxHighlighter. If not, see .
- */
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
+ *
+ * @version
+ * 2.1.364 (October 15 2009)
+ *
+ * @copyright
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
+ *
+ * @license
+ * This file is part of SyntaxHighlighter.
+ *
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with SyntaxHighlighter. If not, see .
+ */
SyntaxHighlighter.brushes.ColdFusion = function()
{
// Contributed by Jen
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCpp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCpp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCpp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCpp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCss.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCss.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCss.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushCss.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDelphi.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDelphi.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDelphi.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDelphi.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDiff.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDiff.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDiff.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushDiff.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushErlang.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushErlang.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushErlang.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushErlang.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js
similarity index 99%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js
index 4872777b..db0b8e68 100644
--- a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js
+++ b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushGroovy.js
@@ -1,32 +1,32 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
- *
- * @version
- * 2.1.364 (October 15 2009)
- *
- * @copyright
- * Copyright (C) 2004-2009 Alex Gorbatchev.
- *
- * @license
- * This file is part of SyntaxHighlighter.
- *
- * SyntaxHighlighter is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SyntaxHighlighter is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with SyntaxHighlighter. If not, see .
- */
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
+ *
+ * @version
+ * 2.1.364 (October 15 2009)
+ *
+ * @copyright
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
+ *
+ * @license
+ * This file is part of SyntaxHighlighter.
+ *
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with SyntaxHighlighter. If not, see .
+ */
SyntaxHighlighter.brushes.Groovy = function()
{
// Contributed by Andres Almiray
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJScript.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJScript.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJScript.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJScript.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJava.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJava.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJava.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJava.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js
similarity index 98%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js
index e22c2ecf..eeb8f65a 100644
--- a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js
+++ b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushJavaFX.js
@@ -1,32 +1,32 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
- *
- * @version
- * 2.1.364 (October 15 2009)
- *
- * @copyright
- * Copyright (C) 2004-2009 Alex Gorbatchev.
- *
- * @license
- * This file is part of SyntaxHighlighter.
- *
- * SyntaxHighlighter is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SyntaxHighlighter is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with SyntaxHighlighter. If not, see .
- */
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
+ *
+ * @version
+ * 2.1.364 (October 15 2009)
+ *
+ * @copyright
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
+ *
+ * @license
+ * This file is part of SyntaxHighlighter.
+ *
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with SyntaxHighlighter. If not, see .
+ */
SyntaxHighlighter.brushes.JavaFX = function()
{
// Contributed by Patrick Webster
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPerl.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPerl.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPerl.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPerl.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPhp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPhp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPhp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPhp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPlain.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPlain.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPlain.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPlain.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPowerShell.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPowerShell.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPowerShell.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPowerShell.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPython.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPython.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPython.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushPython.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushRuby.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushRuby.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushRuby.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushRuby.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushScala.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushScala.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushScala.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushScala.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushSql.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushSql.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushSql.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushSql.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushVb.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushVb.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushVb.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushVb.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushXml.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushXml.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushXml.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shBrushXml.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shCore.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shCore.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shCore.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shCore.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shLegacy.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shLegacy.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/scripts/shLegacy.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/scripts/shLegacy.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/help.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/help.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/help.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/help.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/magnifier.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/magnifier.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/magnifier.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/magnifier.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/page_white_code.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/page_white_code.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/page_white_code.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/page_white_code.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/page_white_copy.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/page_white_copy.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/page_white_copy.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/page_white_copy.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/printer.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/printer.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/printer.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/printer.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shCore.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shCore.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shCore.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shCore.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDefault.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDefault.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDefault.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDefault.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDjango.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDjango.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDjango.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeDjango.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEclipse.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEclipse.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEclipse.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEclipse.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEmacs.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEmacs.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEmacs.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeEmacs.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeFadeToGrey.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeFadeToGrey.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeFadeToGrey.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeFadeToGrey.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeMidnight.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeMidnight.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeMidnight.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeMidnight.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeRDark.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeRDark.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/shThemeRDark.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/shThemeRDark.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter2/styles/wrapping.png b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/wrapping.png
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter2/styles/wrapping.png
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter2/styles/wrapping.png
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/LGPL-LICENSE b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/LGPL-LICENSE
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/LGPL-LICENSE
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/LGPL-LICENSE
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/MIT-LICENSE b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/MIT-LICENSE
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/MIT-LICENSE
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/MIT-LICENSE
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shAutoloader.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shAutoloader.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shAutoloader.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shAutoloader.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAS3.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAS3.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAS3.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAS3.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAppleScript.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAppleScript.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAppleScript.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushAppleScript.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushBash.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushBash.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushBash.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushBash.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCSharp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCSharp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCSharp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCSharp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushColdFusion.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushColdFusion.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushColdFusion.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushColdFusion.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCpp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCpp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCpp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCpp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCss.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCss.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCss.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushCss.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDelphi.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDelphi.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDelphi.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDelphi.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDiff.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDiff.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDiff.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushDiff.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushErlang.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushErlang.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushErlang.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushErlang.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushGroovy.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushGroovy.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushGroovy.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushGroovy.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJScript.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJScript.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJScript.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJScript.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJava.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJava.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJava.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJava.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJavaFX.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJavaFX.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJavaFX.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushJavaFX.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPerl.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPerl.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPerl.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPerl.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPhp.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPhp.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPhp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPhp.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPowerShell.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPowerShell.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPowerShell.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPowerShell.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPython.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPython.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPython.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPython.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushRuby.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushRuby.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushRuby.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushRuby.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSass.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSass.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSass.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSass.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushScala.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushScala.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushScala.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushScala.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSql.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSql.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSql.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushSql.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushVb.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushVb.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushVb.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushVb.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushXml.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushXml.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushXml.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushXml.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shLegacy.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shLegacy.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shLegacy.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/scripts/shLegacy.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDefault.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDefault.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDefault.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDefault.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDjango.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDjango.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDjango.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreDjango.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEclipse.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEclipse.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEclipse.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEclipse.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEmacs.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEmacs.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEmacs.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreEmacs.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreFadeToGrey.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreFadeToGrey.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreFadeToGrey.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreFadeToGrey.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMDUltra.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMDUltra.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMDUltra.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMDUltra.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMidnight.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMidnight.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMidnight.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreMidnight.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreRDark.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreRDark.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCoreRDark.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shCoreRDark.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDjango.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDjango.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDjango.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDjango.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEclipse.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEclipse.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEclipse.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEclipse.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEmacs.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEmacs.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEmacs.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeEmacs.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeFadeToGrey.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeFadeToGrey.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeFadeToGrey.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeFadeToGrey.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMDUltra.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMDUltra.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMDUltra.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMDUltra.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMidnight.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMidnight.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMidnight.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeMidnight.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeRDark.css b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeRDark.css
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeRDark.css
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter3/styles/shThemeRDark.css
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter_mce-4.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter_mce-4.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter_mce-4.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter_mce-4.js
diff --git a/plugins/syntaxhighlighter/syntaxhighlighter_mce.js b/plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter_mce.js
similarity index 100%
rename from plugins/syntaxhighlighter/syntaxhighlighter_mce.js
rename to plugins/support-helphub/inc/syntaxhighlighter/syntaxhighlighter_mce.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/_readme.txt b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/_readme.txt
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/_readme.txt
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/_readme.txt
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushClojure.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushClojure.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushClojure.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushClojure.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushFSharp.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushFSharp.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushFSharp.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushFSharp.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushLatex.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushLatex.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushLatex.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushLatex.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushMatlabKey.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushMatlabKey.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushMatlabKey.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushMatlabKey.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushObjC.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushObjC.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushObjC.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushObjC.js
diff --git a/plugins/syntaxhighlighter/third-party-brushes/shBrushR.js b/plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushR.js
similarity index 100%
rename from plugins/syntaxhighlighter/third-party-brushes/shBrushR.js
rename to plugins/support-helphub/inc/syntaxhighlighter/third-party-brushes/shBrushR.js
diff --git a/plugins/table-of-contents-lite/assets/css/style.css b/plugins/support-helphub/inc/table-of-contents-lite/assets/css/style.css
similarity index 100%
rename from plugins/table-of-contents-lite/assets/css/style.css
rename to plugins/support-helphub/inc/table-of-contents-lite/assets/css/style.css
diff --git a/plugins/table-of-contents-lite/includes/class-table-of-contents-lite.php b/plugins/support-helphub/inc/table-of-contents-lite/includes/class-table-of-contents-lite.php
similarity index 97%
rename from plugins/table-of-contents-lite/includes/class-table-of-contents-lite.php
rename to plugins/support-helphub/inc/table-of-contents-lite/includes/class-table-of-contents-lite.php
index 34e275fd..9f8f1b9d 100644
--- a/plugins/table-of-contents-lite/includes/class-table-of-contents-lite.php
+++ b/plugins/support-helphub/inc/table-of-contents-lite/includes/class-table-of-contents-lite.php
@@ -179,7 +179,7 @@ public static function instance( $file = '', $version = '1.0.0' ) {
* @since 1.0.0
*/
public function __clone() {
- _doing_it_wrong( __FUNCTION__, esc_html_e( 'Cheatin’ huh?' ) );
+ _doing_it_wrong( __FUNCTION__, esc_html_e( 'Cheatin’ huh?', 'wporg-forums' ) );
} // End __clone ()
/**
@@ -188,7 +188,7 @@ public function __clone() {
* @since 1.0.0
*/
public function __wakeup() {
- _doing_it_wrong( __FUNCTION__, esc_html_e( 'Cheatin’ huh?' ) );
+ _doing_it_wrong( __FUNCTION__, esc_html_e( 'Cheatin’ huh?', 'wporg-forums' ) );
} // End __wakeup ()
/**
@@ -236,7 +236,7 @@ public function add_toc( $content ) {
if ( $items ) {
$contents_header = sprintf( 'h%s', $items[0][2] );
$toc .= '';
- $toc .= '
' . __( 'Topics' ) . '
';
+ $toc .= '
' . __( 'Topics', 'wporg-forums' ) . '
';
$toc .= '
';
$last_item = false;
foreach ( $items as $item ) {
@@ -294,12 +294,12 @@ public function add_ids_and_jumpto_links( $tag, $content ) {
$matches[] = $item[0];
$id = sanitize_title_with_dashes( $item[2] );
if ( ! $first ) {
- $replacement .= '' . __( 'Top ↑', 'table-of-contents-lite' ) . '
';
+ $replacement .= '' . __( 'Top ↑', 'wporg-forums' ) . '
';
} else {
$first = false;
}
$a11y_text = sprintf( '%s', $item[2] );
- $hash = __( '#' );
+ $hash = __( '#', 'wporg-forums' );
$anchor = sprintf( '%2$s %3$s', $id, $hash, $a11y_text );
$replacement .= sprintf( '<%1$s class="toc-heading" id="%2$s" tabindex="-1">%3$s %4$s%1$s>', $tag, $id, $item[2], $anchor );
$replacements[] = $replacement;
diff --git a/plugins/table-of-contents-lite/index.php b/plugins/support-helphub/inc/table-of-contents-lite/index.php
similarity index 100%
rename from plugins/table-of-contents-lite/index.php
rename to plugins/support-helphub/inc/table-of-contents-lite/index.php
diff --git a/plugins/table-of-contents-lite/lang/table-of-contents-lite.pot b/plugins/support-helphub/inc/table-of-contents-lite/lang/table-of-contents-lite.pot
similarity index 100%
rename from plugins/table-of-contents-lite/lang/table-of-contents-lite.pot
rename to plugins/support-helphub/inc/table-of-contents-lite/lang/table-of-contents-lite.pot
diff --git a/plugins/table-of-contents-lite/readme.txt b/plugins/support-helphub/inc/table-of-contents-lite/readme.txt
similarity index 100%
rename from plugins/table-of-contents-lite/readme.txt
rename to plugins/support-helphub/inc/table-of-contents-lite/readme.txt
diff --git a/plugins/table-of-contents-lite/table-of-contents-lite.php b/plugins/support-helphub/inc/table-of-contents-lite/table-of-contents-lite.php
similarity index 100%
rename from plugins/table-of-contents-lite/table-of-contents-lite.php
rename to plugins/support-helphub/inc/table-of-contents-lite/table-of-contents-lite.php
diff --git a/plugins/support-helphub/support-helphub.php b/plugins/support-helphub/support-helphub.php
new file mode 100644
index 00000000..3524a95e
--- /dev/null
+++ b/plugins/support-helphub/support-helphub.php
@@ -0,0 +1,21 @@
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- ' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'helphub' ), convert_smilies( ':)' ) ) . '';
- the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=$archive_content" );
-
- the_widget( 'WP_Widget_Tag_Cloud' );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/themes/helphub/footer.php b/themes/helphub/footer.php
deleted file mode 100644
index 71d36a5d..00000000
--- a/themes/helphub/footer.php
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- ' . get_the_title() . '' - ); - } else { - printf( // WPCS: XSS OK. - /* translators: 1: number of comments, 2: post title */ - esc_html( _nx( - '%1$s thought on “%2$s”', - '%1$s thoughts on “%2$s”', - $comments_number, - 'comments title', - 'helphub' - ) ), - number_format_i18n( $comments_number ), - '' . get_the_title() . '' - ); - } - ?> -
- - 1 && get_option( 'page_comments' ) ) : /* Are there comments to navigate through? */ ?> - - - -- 'ol', - 'short_ping' => true, - ) ); - ?> -
- - 1 && get_option( 'page_comments' ) ) : /* Are there comments to navigate through? */ ?> - - - - - - -