├── .editorconfig ├── GPL-LICENSE.txt ├── README.md ├── commentpress-core.php ├── deploy.sh ├── includes ├── common │ └── common-functions.php ├── core │ ├── assets │ │ ├── css │ │ │ ├── admin-comment-tagging.css │ │ │ ├── admin.css │ │ │ └── jquery.ui.css │ │ ├── images │ │ │ └── loading.gif │ │ ├── includes │ │ │ ├── mobile-detect │ │ │ │ └── MobileDetect.php │ │ │ └── theme │ │ │ │ ├── class-customizer-site-image.php │ │ │ │ ├── theme-buddypress.php │ │ │ │ ├── theme-comments.php │ │ │ │ ├── theme-customizer.php │ │ │ │ ├── theme-filters.php │ │ │ │ ├── theme-functions.php │ │ │ │ └── theme-navigation.php │ │ ├── js │ │ │ ├── cp-ajax-comments-page.js │ │ │ ├── cp-ajax-comments-page.min.js │ │ │ ├── cp-ajax-comments.js │ │ │ ├── cp-ajax-comments.min.js │ │ │ ├── cp-ajax-infinite.js │ │ │ ├── cp-ajax-infinite.min.js │ │ │ ├── cp-comment-tagging.js │ │ │ ├── cp-comment-tagging.min.js │ │ │ ├── cp-editor-quicktags.js │ │ │ ├── cp-settings-site-nav.js │ │ │ ├── jquery.biscuit.js │ │ │ ├── jquery.commentform.js │ │ │ ├── jquery.commentform.min.js │ │ │ ├── jquery.commentpress.js │ │ │ ├── jquery.commentpress.min.js │ │ │ ├── jquery.fitvids.js │ │ │ ├── jquery.highlighter.js │ │ │ ├── jquery.highlighter.min.js │ │ │ ├── jquery.scrollTo.js │ │ │ ├── jquery.scrollTo.min.js │ │ │ ├── jquery.texthighlighter.js │ │ │ ├── jquery.texthighlighter.min.js │ │ │ ├── jquery.waypoints.js │ │ │ ├── jquery.waypoints.min.js │ │ │ ├── jquery.wrap-selection.js │ │ │ └── jquery.wrap-selection.min.js │ │ ├── templates │ │ │ └── wordpress │ │ │ │ ├── metaboxes │ │ │ │ ├── metabox-entry.php │ │ │ │ ├── metabox-revisions.php │ │ │ │ ├── metabox-settings-site-comments.php │ │ │ │ ├── metabox-settings-site-danger.php │ │ │ │ ├── metabox-settings-site-document.php │ │ │ │ ├── metabox-settings-site-entry-single.php │ │ │ │ ├── metabox-settings-site-general.php │ │ │ │ ├── metabox-settings-site-nav.php │ │ │ │ ├── metabox-settings-site-submit.php │ │ │ │ └── metabox-settings-site-theme.php │ │ │ │ ├── pages │ │ │ │ └── page-settings-site.php │ │ │ │ └── parts │ │ │ │ ├── part-comments-tagging-settings.php │ │ │ │ ├── part-document-entry.php │ │ │ │ ├── part-document-settings.php │ │ │ │ ├── part-editor-comments-settings.php │ │ │ │ ├── part-entry-formatter-entry.php │ │ │ │ ├── part-entry-formatter-settings.php │ │ │ │ ├── part-entry-single-entry.php │ │ │ │ ├── part-parser-settings.php │ │ │ │ ├── part-revisions-settings.php │ │ │ │ ├── part-theme-sidebar-entry.php │ │ │ │ └── part-theme-sidebar-settings.php │ │ └── widgets │ │ │ └── widget-license.php │ ├── class-core-loader.php │ └── classes │ │ ├── class-ajax-comments.php │ │ ├── class-ajax-infinite-scroll.php │ │ ├── class-ajax-loader.php │ │ ├── class-core-bp-core.php │ │ ├── class-core-comments-tagging.php │ │ ├── class-core-comments.php │ │ ├── class-core-database.php │ │ ├── class-core-device.php │ │ ├── class-core-display.php │ │ ├── class-core-document.php │ │ ├── class-core-editor-comments.php │ │ ├── class-core-editor-content.php │ │ ├── class-core-editor.php │ │ ├── class-core-entry-formatter.php │ │ ├── class-core-entry-metabox.php │ │ ├── class-core-entry-single.php │ │ ├── class-core-entry.php │ │ ├── class-core-navigation.php │ │ ├── class-core-pages-legacy.php │ │ ├── class-core-parser.php │ │ ├── class-core-plugins.php │ │ ├── class-core-revisions.php │ │ ├── class-core-settings-site.php │ │ ├── class-core-theme-sidebar.php │ │ └── class-core-theme.php └── multisite │ ├── assets │ ├── css │ │ └── admin.css │ ├── js │ │ ├── cp-bp-groupblog-names-settings-network.js │ │ └── cp-bp-groupblog-settings-network.js │ └── templates │ │ ├── buddypress │ │ ├── metaboxes │ │ │ └── metabox-settings-network-bp-groupblog.php │ │ └── parts │ │ │ ├── part-bp-groupblog-names-settings-network.php │ │ │ ├── part-bp-groupblog-signup.php │ │ │ └── part-bp-signup.php │ │ └── wordpress │ │ ├── metaboxes │ │ ├── metabox-settings-network-danger.php │ │ ├── metabox-settings-network-general.php │ │ ├── metabox-settings-network-submit.php │ │ ├── metabox-settings-network-title-page.php │ │ ├── metabox-settings-network-wordpress.php │ │ ├── metabox-settings-site-activate.php │ │ ├── metabox-settings-site-danger.php │ │ └── metabox-settings-site-submit.php │ │ ├── pages │ │ ├── page-settings-network.php │ │ └── page-settings-site.php │ │ └── parts │ │ ├── part-site-settings-core.php │ │ ├── part-site-settings-site.php │ │ ├── part-sites-settings-network.php │ │ └── part-sites-signup.php │ ├── class-multisite-loader.php │ └── classes │ ├── class-multisite-bp-groupblog-groups.php │ ├── class-multisite-bp-groupblog-names.php │ ├── class-multisite-bp-groupblog-site.php │ ├── class-multisite-bp-groupblog.php │ ├── class-multisite-bp.php │ ├── class-multisite-database.php │ ├── class-multisite-revisions.php │ ├── class-multisite-settings-network.php │ ├── class-multisite-settings-site.php │ ├── class-multisite-site.php │ └── class-multisite-sites.php ├── languages ├── commentpress-core-de_DE.mo ├── commentpress-core-de_DE.po ├── commentpress-core-es_ES.mo ├── commentpress-core-es_ES.po ├── commentpress-core-fr_FR.mo ├── commentpress-core-fr_FR.po ├── commentpress-core-nl_NL.mo ├── commentpress-core-nl_NL.po └── commentpress-core.pot ├── phpcs.xml ├── readme.txt ├── themes ├── commentpress-flat │ ├── 404.php │ ├── archive.php │ ├── archives.php │ ├── assets │ │ ├── css │ │ │ ├── bp-overrides-10.css │ │ │ ├── bp-overrides-10.min.css │ │ │ ├── bp-overrides.css │ │ │ ├── bp-overrides.min.css │ │ │ ├── colours-01.css │ │ │ ├── colours-01.min.css │ │ │ ├── comment-form.css │ │ │ ├── print.css │ │ │ ├── print.min.css │ │ │ ├── screen.css │ │ │ └── screen.min.css │ │ ├── images │ │ │ ├── buddypress │ │ │ │ ├── activity_arrow.gif │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── closed.png │ │ │ │ ├── feed.png │ │ │ │ └── replyto_arrow.gif │ │ │ ├── icons │ │ │ │ ├── close.png │ │ │ │ ├── comment-add.png │ │ │ │ ├── comment.png │ │ │ │ └── min.jpg │ │ │ ├── nav │ │ │ │ ├── page-curl-bottom-left.jpg │ │ │ │ ├── page-curl-bottom-right.jpg │ │ │ │ ├── page-curl-top-left.jpg │ │ │ │ └── page-curl-top-right.jpg │ │ │ └── texthighlighter │ │ │ │ └── highlight-caret.png │ │ ├── js │ │ │ ├── all-comments.js │ │ │ ├── screen.js │ │ │ ├── screen.min.js │ │ │ └── tinymce │ │ │ │ ├── commentblock.jpg │ │ │ │ ├── content.css │ │ │ │ ├── cp-comment-block.gif │ │ │ │ ├── cp-editor-plugin.js │ │ │ │ └── transparent.gif │ │ └── templates │ │ │ ├── activity_sidebar.php │ │ │ ├── archive_sidebar.php │ │ │ ├── comment_form.php │ │ │ ├── comments_by_para.php │ │ │ ├── comments_in_page.php │ │ │ ├── comments_sidebar.php │ │ │ ├── header_body.php │ │ │ ├── navigation.php │ │ │ ├── page_navigation.php │ │ │ └── toc_sidebar.php │ ├── author.php │ ├── blog.php │ ├── category.php │ ├── comments-all.php │ ├── comments-by.php │ ├── comments-general.php │ ├── comments.php │ ├── editor-style.css │ ├── footer-wp-activate.php │ ├── footer.php │ ├── functions.php │ ├── group.php │ ├── header-wp-activate.php │ ├── header.php │ ├── image.php │ ├── index.php │ ├── links.php │ ├── page.php │ ├── screenshot.jpg │ ├── search.php │ ├── searchform.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── taxonomy-comment_tags.php │ ├── toc.php │ └── welcome.php ├── commentpress-modern │ ├── 404.php │ ├── archive.php │ ├── archives.php │ ├── assets │ │ ├── css │ │ │ ├── activate.css │ │ │ ├── bp-overrides.css │ │ │ ├── bp-overrides.min.css │ │ │ ├── colours-01.css │ │ │ ├── colours-01.min.css │ │ │ ├── comment-form.css │ │ │ ├── print.css │ │ │ ├── print.min.css │ │ │ ├── screen.css │ │ │ ├── screen.min.css │ │ │ └── signup.css │ │ ├── images │ │ │ ├── buddypress │ │ │ │ ├── activity_arrow.gif │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── closed.png │ │ │ │ ├── feed.png │ │ │ │ └── replyto_arrow.gif │ │ │ ├── header │ │ │ │ ├── caves-blue-thumbnail.jpg │ │ │ │ ├── caves-blue.jpg │ │ │ │ ├── caves-green-thumbnail.jpg │ │ │ │ ├── caves-green.jpg │ │ │ │ ├── caves-red-thumbnail.jpg │ │ │ │ ├── caves-red.jpg │ │ │ │ ├── caves-violet-thumbnail.jpg │ │ │ │ └── caves-violet.jpg │ │ │ ├── icons │ │ │ │ ├── close.png │ │ │ │ ├── comment-add.png │ │ │ │ ├── comment.png │ │ │ │ └── min.jpg │ │ │ ├── nav │ │ │ │ ├── page-curl-bottom-left.jpg │ │ │ │ ├── page-curl-bottom-right.jpg │ │ │ │ ├── page-curl-top-left.jpg │ │ │ │ └── page-curl-top-right.jpg │ │ │ └── texthighlighter │ │ │ │ └── highlight-caret.png │ │ ├── js │ │ │ ├── all-comments.js │ │ │ ├── screen.js │ │ │ ├── screen.min.js │ │ │ └── tinymce │ │ │ │ ├── commentblock.jpg │ │ │ │ ├── content.css │ │ │ │ ├── cp-comment-block.gif │ │ │ │ ├── cp-editor-plugin.js │ │ │ │ └── transparent.gif │ │ └── templates │ │ │ ├── activity_sidebar.php │ │ │ ├── archive_sidebar.php │ │ │ ├── comment_form.php │ │ │ ├── comments_by_para.php │ │ │ ├── comments_in_page.php │ │ │ ├── comments_sidebar.php │ │ │ ├── header_body.php │ │ │ ├── navigation.php │ │ │ ├── page_navigation.php │ │ │ └── toc_sidebar.php │ ├── author.php │ ├── blog.php │ ├── category.php │ ├── comments-all.php │ ├── comments-by.php │ ├── comments-general.php │ ├── comments.php │ ├── editor-style.css │ ├── footer-wp-activate.php │ ├── footer.php │ ├── functions.php │ ├── group.php │ ├── header-wp-activate.php │ ├── header.php │ ├── image.php │ ├── index.php │ ├── links.php │ ├── page.php │ ├── screenshot.png │ ├── search.php │ ├── searchform.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── taxonomy-comment_tags.php │ ├── toc.php │ └── welcome.php └── commentpress-theme │ ├── 404.php │ ├── archive.php │ ├── archives.php │ ├── assets │ ├── css │ │ ├── activate.css │ │ ├── colours-01.css │ │ ├── colours-01.min.css │ │ ├── comment-form.css │ │ ├── print.css │ │ ├── print.min.css │ │ ├── screen-default.css │ │ ├── screen-default.min.css │ │ └── signup.css │ ├── images │ │ ├── buddypress │ │ │ ├── activity_arrow.gif │ │ │ ├── ajax-loader.gif │ │ │ ├── closed.png │ │ │ ├── replyto_arrow.gif │ │ │ └── rss.png │ │ ├── buttonbar-bg.jpg │ │ ├── buttons │ │ │ ├── allcomments.jpg │ │ │ ├── archive.jpg │ │ │ ├── blog.jpg │ │ │ ├── cover.jpg │ │ │ ├── gencomments.jpg │ │ │ ├── header_min.jpg │ │ │ ├── home.jpg │ │ │ ├── members.jpg │ │ │ ├── person.jpg │ │ │ ├── search.jpg │ │ │ └── toc.jpg │ │ ├── header │ │ │ ├── caves-blue-thumbnail.jpg │ │ │ ├── caves-blue.jpg │ │ │ ├── caves-green-thumbnail.jpg │ │ │ ├── caves-green.jpg │ │ │ ├── caves-red-thumbnail.jpg │ │ │ ├── caves-red.jpg │ │ │ ├── caves-violet-thumbnail.jpg │ │ │ └── caves-violet.jpg │ │ ├── icons │ │ │ ├── archive.jpg │ │ │ ├── close.png │ │ │ ├── comment-add.png │ │ │ ├── comment.jpg │ │ │ ├── comment.png │ │ │ ├── document.jpg │ │ │ ├── information.jpg │ │ │ ├── information.png │ │ │ ├── min.jpg │ │ │ ├── page.png │ │ │ ├── quote.png │ │ │ └── toc.jpg │ │ ├── page_nav │ │ │ ├── annotated-next.jpg │ │ │ ├── annotated-prev.jpg │ │ │ ├── page-next.jpg │ │ │ └── page-prev.jpg │ │ └── texthighlighter │ │ │ └── highlight-caret.png │ ├── js │ │ ├── all-comments.js │ │ ├── screen.js │ │ ├── screen.min.js │ │ └── tinymce │ │ │ ├── commentblock.jpg │ │ │ ├── content.css │ │ │ ├── cp-comment-block.gif │ │ │ ├── cp-editor-plugin.js │ │ │ └── transparent.gif │ └── templates │ │ ├── activity_sidebar.php │ │ ├── archive_sidebar.php │ │ ├── comment_form.php │ │ ├── comments_by_para.php │ │ ├── comments_in_page.php │ │ ├── comments_sidebar.php │ │ ├── header_body.php │ │ ├── navigation.php │ │ ├── toc_sidebar.php │ │ └── user_links.php │ ├── author.php │ ├── blog.php │ ├── category.php │ ├── comments-all.php │ ├── comments-by.php │ ├── comments-general.php │ ├── comments.php │ ├── editor-style.css │ ├── footer-wp-activate.php │ ├── footer.php │ ├── functions.php │ ├── group.php │ ├── header-wp-activate.php │ ├── header.php │ ├── image.php │ ├── index.php │ ├── links.php │ ├── page.php │ ├── screenshot.png │ ├── search.php │ ├── searchform.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── taxonomy-comment_tags.php │ ├── toc.php │ └── welcome.php └── uninstall.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/.editorconfig -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/README.md -------------------------------------------------------------------------------- /commentpress-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/commentpress-core.php -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/deploy.sh -------------------------------------------------------------------------------- /includes/common/common-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/common/common-functions.php -------------------------------------------------------------------------------- /includes/core/assets/css/admin-comment-tagging.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/css/admin-comment-tagging.css -------------------------------------------------------------------------------- /includes/core/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/css/admin.css -------------------------------------------------------------------------------- /includes/core/assets/css/jquery.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/css/jquery.ui.css -------------------------------------------------------------------------------- /includes/core/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/images/loading.gif -------------------------------------------------------------------------------- /includes/core/assets/includes/mobile-detect/MobileDetect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/mobile-detect/MobileDetect.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/class-customizer-site-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/class-customizer-site-image.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-buddypress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-buddypress.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-comments.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-customizer.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-filters.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-functions.php -------------------------------------------------------------------------------- /includes/core/assets/includes/theme/theme-navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/includes/theme/theme-navigation.php -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-comments-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-comments-page.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-comments-page.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-comments-page.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-comments.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-comments.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-comments.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-infinite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-infinite.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-ajax-infinite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-ajax-infinite.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-comment-tagging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-comment-tagging.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-comment-tagging.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-comment-tagging.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-editor-quicktags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-editor-quicktags.js -------------------------------------------------------------------------------- /includes/core/assets/js/cp-settings-site-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/cp-settings-site-nav.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.biscuit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.biscuit.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.commentform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.commentform.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.commentform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.commentform.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.commentpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.commentpress.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.commentpress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.commentpress.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.fitvids.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.highlighter.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.highlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.highlighter.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.scrollTo.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.texthighlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.texthighlighter.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.texthighlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.texthighlighter.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.waypoints.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.wrap-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.wrap-selection.js -------------------------------------------------------------------------------- /includes/core/assets/js/jquery.wrap-selection.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/js/jquery.wrap-selection.min.js -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-entry.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-revisions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-revisions.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-comments.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-danger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-danger.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-document.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-entry-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-entry-single.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-general.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-nav.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-submit.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/metaboxes/metabox-settings-site-theme.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/pages/page-settings-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/pages/page-settings-site.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-comments-tagging-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-comments-tagging-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-document-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-document-entry.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-document-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-document-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-editor-comments-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-editor-comments-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-entry-formatter-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-entry-formatter-entry.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-entry-formatter-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-entry-formatter-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-entry-single-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-entry-single-entry.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-parser-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-parser-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-revisions-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-revisions-settings.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-theme-sidebar-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-theme-sidebar-entry.php -------------------------------------------------------------------------------- /includes/core/assets/templates/wordpress/parts/part-theme-sidebar-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/templates/wordpress/parts/part-theme-sidebar-settings.php -------------------------------------------------------------------------------- /includes/core/assets/widgets/widget-license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/assets/widgets/widget-license.php -------------------------------------------------------------------------------- /includes/core/class-core-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/class-core-loader.php -------------------------------------------------------------------------------- /includes/core/classes/class-ajax-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-ajax-comments.php -------------------------------------------------------------------------------- /includes/core/classes/class-ajax-infinite-scroll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-ajax-infinite-scroll.php -------------------------------------------------------------------------------- /includes/core/classes/class-ajax-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-ajax-loader.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-bp-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-bp-core.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-comments-tagging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-comments-tagging.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-comments.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-database.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-device.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-display.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-document.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-editor-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-editor-comments.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-editor-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-editor-content.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-editor.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-entry-formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-entry-formatter.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-entry-metabox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-entry-metabox.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-entry-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-entry-single.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-entry.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-navigation.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-pages-legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-pages-legacy.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-parser.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-plugins.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-revisions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-revisions.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-settings-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-settings-site.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-theme-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-theme-sidebar.php -------------------------------------------------------------------------------- /includes/core/classes/class-core-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/core/classes/class-core-theme.php -------------------------------------------------------------------------------- /includes/multisite/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/css/admin.css -------------------------------------------------------------------------------- /includes/multisite/assets/js/cp-bp-groupblog-names-settings-network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/js/cp-bp-groupblog-names-settings-network.js -------------------------------------------------------------------------------- /includes/multisite/assets/js/cp-bp-groupblog-settings-network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/js/cp-bp-groupblog-settings-network.js -------------------------------------------------------------------------------- /includes/multisite/assets/templates/buddypress/metaboxes/metabox-settings-network-bp-groupblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/buddypress/metaboxes/metabox-settings-network-bp-groupblog.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/buddypress/parts/part-bp-groupblog-names-settings-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/buddypress/parts/part-bp-groupblog-names-settings-network.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/buddypress/parts/part-bp-groupblog-signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/buddypress/parts/part-bp-groupblog-signup.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/buddypress/parts/part-bp-signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/buddypress/parts/part-bp-signup.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-danger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-danger.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-general.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-submit.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-title-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-title-page.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-network-wordpress.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-activate.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-danger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-danger.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/metaboxes/metabox-settings-site-submit.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/pages/page-settings-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/pages/page-settings-network.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/pages/page-settings-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/pages/page-settings-site.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/parts/part-site-settings-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/parts/part-site-settings-core.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/parts/part-site-settings-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/parts/part-site-settings-site.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/parts/part-sites-settings-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/parts/part-sites-settings-network.php -------------------------------------------------------------------------------- /includes/multisite/assets/templates/wordpress/parts/part-sites-signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/assets/templates/wordpress/parts/part-sites-signup.php -------------------------------------------------------------------------------- /includes/multisite/class-multisite-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/class-multisite-loader.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-bp-groupblog-groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-bp-groupblog-groups.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-bp-groupblog-names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-bp-groupblog-names.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-bp-groupblog-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-bp-groupblog-site.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-bp-groupblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-bp-groupblog.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-bp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-bp.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-database.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-revisions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-revisions.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-settings-network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-settings-network.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-settings-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-settings-site.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-site.php -------------------------------------------------------------------------------- /includes/multisite/classes/class-multisite-sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/includes/multisite/classes/class-multisite-sites.php -------------------------------------------------------------------------------- /languages/commentpress-core-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-de_DE.mo -------------------------------------------------------------------------------- /languages/commentpress-core-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-de_DE.po -------------------------------------------------------------------------------- /languages/commentpress-core-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-es_ES.mo -------------------------------------------------------------------------------- /languages/commentpress-core-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-es_ES.po -------------------------------------------------------------------------------- /languages/commentpress-core-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-fr_FR.mo -------------------------------------------------------------------------------- /languages/commentpress-core-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-fr_FR.po -------------------------------------------------------------------------------- /languages/commentpress-core-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-nl_NL.mo -------------------------------------------------------------------------------- /languages/commentpress-core-nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core-nl_NL.po -------------------------------------------------------------------------------- /languages/commentpress-core.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/languages/commentpress-core.pot -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/readme.txt -------------------------------------------------------------------------------- /themes/commentpress-flat/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/404.php -------------------------------------------------------------------------------- /themes/commentpress-flat/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/archive.php -------------------------------------------------------------------------------- /themes/commentpress-flat/archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/archives.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/bp-overrides-10.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/bp-overrides-10.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/bp-overrides-10.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/bp-overrides-10.min.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/bp-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/bp-overrides.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/bp-overrides.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/bp-overrides.min.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/colours-01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/colours-01.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/colours-01.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/colours-01.min.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/comment-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/comment-form.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/print.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/print.min.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/screen.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/css/screen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/css/screen.min.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/buddypress/activity_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/buddypress/activity_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/buddypress/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/buddypress/ajax-loader.gif -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/buddypress/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/buddypress/closed.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/buddypress/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/buddypress/feed.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/buddypress/replyto_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/buddypress/replyto_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/icons/close.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/icons/comment-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/icons/comment-add.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/icons/comment.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/icons/min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/icons/min.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/nav/page-curl-bottom-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/nav/page-curl-bottom-left.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/nav/page-curl-bottom-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/nav/page-curl-bottom-right.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/nav/page-curl-top-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/nav/page-curl-top-left.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/nav/page-curl-top-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/nav/page-curl-top-right.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/images/texthighlighter/highlight-caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/images/texthighlighter/highlight-caret.png -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/all-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/all-comments.js -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/screen.js -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/screen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/screen.min.js -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/tinymce/commentblock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/tinymce/commentblock.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/tinymce/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/tinymce/content.css -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/tinymce/cp-comment-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/tinymce/cp-comment-block.gif -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/tinymce/cp-editor-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/tinymce/cp-editor-plugin.js -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/js/tinymce/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/js/tinymce/transparent.gif -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/activity_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/activity_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/archive_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/archive_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/comment_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/comment_form.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/comments_by_para.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/comments_by_para.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/comments_in_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/comments_in_page.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/comments_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/comments_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/header_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/header_body.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/navigation.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/page_navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/page_navigation.php -------------------------------------------------------------------------------- /themes/commentpress-flat/assets/templates/toc_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/assets/templates/toc_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-flat/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/author.php -------------------------------------------------------------------------------- /themes/commentpress-flat/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/blog.php -------------------------------------------------------------------------------- /themes/commentpress-flat/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/category.php -------------------------------------------------------------------------------- /themes/commentpress-flat/comments-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/comments-all.php -------------------------------------------------------------------------------- /themes/commentpress-flat/comments-by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/comments-by.php -------------------------------------------------------------------------------- /themes/commentpress-flat/comments-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/comments-general.php -------------------------------------------------------------------------------- /themes/commentpress-flat/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/comments.php -------------------------------------------------------------------------------- /themes/commentpress-flat/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/editor-style.css -------------------------------------------------------------------------------- /themes/commentpress-flat/footer-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/footer-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-flat/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/footer.php -------------------------------------------------------------------------------- /themes/commentpress-flat/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/functions.php -------------------------------------------------------------------------------- /themes/commentpress-flat/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/group.php -------------------------------------------------------------------------------- /themes/commentpress-flat/header-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/header-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-flat/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/header.php -------------------------------------------------------------------------------- /themes/commentpress-flat/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/image.php -------------------------------------------------------------------------------- /themes/commentpress-flat/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/index.php -------------------------------------------------------------------------------- /themes/commentpress-flat/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/links.php -------------------------------------------------------------------------------- /themes/commentpress-flat/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/page.php -------------------------------------------------------------------------------- /themes/commentpress-flat/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/screenshot.jpg -------------------------------------------------------------------------------- /themes/commentpress-flat/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/search.php -------------------------------------------------------------------------------- /themes/commentpress-flat/searchform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/searchform.php -------------------------------------------------------------------------------- /themes/commentpress-flat/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-flat/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/single.php -------------------------------------------------------------------------------- /themes/commentpress-flat/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/style.css -------------------------------------------------------------------------------- /themes/commentpress-flat/taxonomy-comment_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/taxonomy-comment_tags.php -------------------------------------------------------------------------------- /themes/commentpress-flat/toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/toc.php -------------------------------------------------------------------------------- /themes/commentpress-flat/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-flat/welcome.php -------------------------------------------------------------------------------- /themes/commentpress-modern/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/404.php -------------------------------------------------------------------------------- /themes/commentpress-modern/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/archive.php -------------------------------------------------------------------------------- /themes/commentpress-modern/archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/archives.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/activate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/activate.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/bp-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/bp-overrides.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/bp-overrides.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/bp-overrides.min.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/colours-01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/colours-01.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/colours-01.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/colours-01.min.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/comment-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/comment-form.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/print.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/print.min.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/screen.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/screen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/screen.min.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/css/signup.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/buddypress/activity_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/buddypress/activity_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/buddypress/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/buddypress/ajax-loader.gif -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/buddypress/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/buddypress/closed.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/buddypress/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/buddypress/feed.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/buddypress/replyto_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/buddypress/replyto_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-blue-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-blue-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-blue.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-green-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-green-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-green.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-red-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-red-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-red.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-violet-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-violet-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/header/caves-violet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/header/caves-violet.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/icons/close.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/icons/comment-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/icons/comment-add.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/icons/comment.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/icons/min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/icons/min.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/nav/page-curl-bottom-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/nav/page-curl-bottom-left.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/nav/page-curl-bottom-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/nav/page-curl-bottom-right.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/nav/page-curl-top-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/nav/page-curl-top-left.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/nav/page-curl-top-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/nav/page-curl-top-right.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/images/texthighlighter/highlight-caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/images/texthighlighter/highlight-caret.png -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/all-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/all-comments.js -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/screen.js -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/screen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/screen.min.js -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/tinymce/commentblock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/tinymce/commentblock.jpg -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/tinymce/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/tinymce/content.css -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/tinymce/cp-comment-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/tinymce/cp-comment-block.gif -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/tinymce/cp-editor-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/tinymce/cp-editor-plugin.js -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/js/tinymce/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/js/tinymce/transparent.gif -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/activity_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/activity_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/archive_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/archive_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/comment_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/comment_form.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/comments_by_para.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/comments_by_para.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/comments_in_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/comments_in_page.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/comments_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/comments_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/header_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/header_body.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/navigation.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/page_navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/page_navigation.php -------------------------------------------------------------------------------- /themes/commentpress-modern/assets/templates/toc_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/assets/templates/toc_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-modern/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/author.php -------------------------------------------------------------------------------- /themes/commentpress-modern/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/blog.php -------------------------------------------------------------------------------- /themes/commentpress-modern/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/category.php -------------------------------------------------------------------------------- /themes/commentpress-modern/comments-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/comments-all.php -------------------------------------------------------------------------------- /themes/commentpress-modern/comments-by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/comments-by.php -------------------------------------------------------------------------------- /themes/commentpress-modern/comments-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/comments-general.php -------------------------------------------------------------------------------- /themes/commentpress-modern/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/comments.php -------------------------------------------------------------------------------- /themes/commentpress-modern/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/editor-style.css -------------------------------------------------------------------------------- /themes/commentpress-modern/footer-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/footer-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-modern/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/footer.php -------------------------------------------------------------------------------- /themes/commentpress-modern/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/functions.php -------------------------------------------------------------------------------- /themes/commentpress-modern/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/group.php -------------------------------------------------------------------------------- /themes/commentpress-modern/header-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/header-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-modern/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/header.php -------------------------------------------------------------------------------- /themes/commentpress-modern/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/image.php -------------------------------------------------------------------------------- /themes/commentpress-modern/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/index.php -------------------------------------------------------------------------------- /themes/commentpress-modern/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/links.php -------------------------------------------------------------------------------- /themes/commentpress-modern/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/page.php -------------------------------------------------------------------------------- /themes/commentpress-modern/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/screenshot.png -------------------------------------------------------------------------------- /themes/commentpress-modern/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/search.php -------------------------------------------------------------------------------- /themes/commentpress-modern/searchform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/searchform.php -------------------------------------------------------------------------------- /themes/commentpress-modern/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-modern/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/single.php -------------------------------------------------------------------------------- /themes/commentpress-modern/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/style.css -------------------------------------------------------------------------------- /themes/commentpress-modern/taxonomy-comment_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/taxonomy-comment_tags.php -------------------------------------------------------------------------------- /themes/commentpress-modern/toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/toc.php -------------------------------------------------------------------------------- /themes/commentpress-modern/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-modern/welcome.php -------------------------------------------------------------------------------- /themes/commentpress-theme/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/404.php -------------------------------------------------------------------------------- /themes/commentpress-theme/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/archive.php -------------------------------------------------------------------------------- /themes/commentpress-theme/archives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/archives.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/activate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/activate.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/colours-01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/colours-01.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/colours-01.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/colours-01.min.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/comment-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/comment-form.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/print.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/print.min.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/screen-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/screen-default.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/screen-default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/screen-default.min.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/css/signup.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buddypress/activity_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buddypress/activity_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buddypress/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buddypress/ajax-loader.gif -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buddypress/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buddypress/closed.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buddypress/replyto_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buddypress/replyto_arrow.gif -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buddypress/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buddypress/rss.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttonbar-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttonbar-bg.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/allcomments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/allcomments.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/archive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/archive.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/blog.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/cover.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/gencomments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/gencomments.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/header_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/header_min.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/home.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/members.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/person.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/search.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/buttons/toc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/buttons/toc.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-blue-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-blue-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-blue.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-green-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-green-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-green.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-red-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-red-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-red.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-violet-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-violet-thumbnail.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/header/caves-violet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/header/caves-violet.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/archive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/archive.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/close.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/comment-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/comment-add.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/comment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/comment.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/comment.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/document.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/document.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/information.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/information.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/information.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/min.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/page.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/quote.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/icons/toc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/icons/toc.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/page_nav/annotated-next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/page_nav/annotated-next.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/page_nav/annotated-prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/page_nav/annotated-prev.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/page_nav/page-next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/page_nav/page-next.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/page_nav/page-prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/page_nav/page-prev.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/images/texthighlighter/highlight-caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/images/texthighlighter/highlight-caret.png -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/all-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/all-comments.js -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/screen.js -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/screen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/screen.min.js -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/tinymce/commentblock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/tinymce/commentblock.jpg -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/tinymce/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/tinymce/content.css -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/tinymce/cp-comment-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/tinymce/cp-comment-block.gif -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/tinymce/cp-editor-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/tinymce/cp-editor-plugin.js -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/js/tinymce/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/js/tinymce/transparent.gif -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/activity_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/activity_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/archive_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/archive_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/comment_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/comment_form.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/comments_by_para.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/comments_by_para.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/comments_in_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/comments_in_page.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/comments_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/comments_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/header_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/header_body.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/navigation.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/toc_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/toc_sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-theme/assets/templates/user_links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/assets/templates/user_links.php -------------------------------------------------------------------------------- /themes/commentpress-theme/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/author.php -------------------------------------------------------------------------------- /themes/commentpress-theme/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/blog.php -------------------------------------------------------------------------------- /themes/commentpress-theme/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/category.php -------------------------------------------------------------------------------- /themes/commentpress-theme/comments-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/comments-all.php -------------------------------------------------------------------------------- /themes/commentpress-theme/comments-by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/comments-by.php -------------------------------------------------------------------------------- /themes/commentpress-theme/comments-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/comments-general.php -------------------------------------------------------------------------------- /themes/commentpress-theme/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/comments.php -------------------------------------------------------------------------------- /themes/commentpress-theme/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/editor-style.css -------------------------------------------------------------------------------- /themes/commentpress-theme/footer-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/footer-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-theme/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/footer.php -------------------------------------------------------------------------------- /themes/commentpress-theme/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/functions.php -------------------------------------------------------------------------------- /themes/commentpress-theme/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/group.php -------------------------------------------------------------------------------- /themes/commentpress-theme/header-wp-activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/header-wp-activate.php -------------------------------------------------------------------------------- /themes/commentpress-theme/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/header.php -------------------------------------------------------------------------------- /themes/commentpress-theme/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/image.php -------------------------------------------------------------------------------- /themes/commentpress-theme/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/index.php -------------------------------------------------------------------------------- /themes/commentpress-theme/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/links.php -------------------------------------------------------------------------------- /themes/commentpress-theme/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/page.php -------------------------------------------------------------------------------- /themes/commentpress-theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/screenshot.png -------------------------------------------------------------------------------- /themes/commentpress-theme/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/search.php -------------------------------------------------------------------------------- /themes/commentpress-theme/searchform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/searchform.php -------------------------------------------------------------------------------- /themes/commentpress-theme/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/sidebar.php -------------------------------------------------------------------------------- /themes/commentpress-theme/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/single.php -------------------------------------------------------------------------------- /themes/commentpress-theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/style.css -------------------------------------------------------------------------------- /themes/commentpress-theme/taxonomy-comment_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/taxonomy-comment_tags.php -------------------------------------------------------------------------------- /themes/commentpress-theme/toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/toc.php -------------------------------------------------------------------------------- /themes/commentpress-theme/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/themes/commentpress-theme/welcome.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFBook/commentpress-core/HEAD/uninstall.php --------------------------------------------------------------------------------