├── .nvmrc ├── .prettierrc ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── komments.css └── komments.js ├── blueprints └── sections │ └── komments.yml ├── composer.json ├── composer.lock ├── doc-assets └── panel-moderation-view.png ├── index.css ├── index.js ├── index.php ├── lib ├── AvatarHandler.php ├── CommentVerification.php ├── DatabaseAbstraction.php ├── KommentModeration.php ├── KommentNotifications.php ├── KommentReceiver.php ├── KommentsFrontend.php ├── MarkdownConverter.php ├── Migrations.php ├── Storage.php ├── StorageFactory.php ├── StorageMarkdown.php ├── StoragePhpunit.php ├── StorageSqlite.php ├── TestCaseMocked.php └── WebmentionReceiver.php ├── migrations ├── database_202407211411.sql ├── database_202511071020.sql ├── database_202511071100.sql ├── database_202511122120.sql ├── database_202511171100.sql └── database_202511181830.sql ├── plugin ├── api.php ├── areas.php ├── blueprints.php ├── fields.php ├── hooks.php ├── options.php ├── page-methods.php ├── routes.php ├── site-methods.php ├── snippets.php └── translations.php ├── snippets ├── deprecated.php ├── form.php ├── list-comments.php ├── list-likes.php ├── list-mentions.php ├── list-replies.php ├── list-reposts.php ├── response-base.php ├── response-comment.php ├── response-like.php ├── response-mention.php ├── response-reply.php └── response-repost.php ├── templates ├── emails │ ├── mailverification.php │ └── newComments.php └── pages │ ├── comment-verified.php │ └── response.php └── vendor ├── autoload.php ├── bin ├── fetch-mf2 └── parse-mf2 ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php ├── getkirby └── composer-installer │ ├── composer.json │ ├── composer.lock │ ├── readme.md │ └── src │ └── ComposerInstaller │ ├── CmsInstaller.php │ ├── Installer.php │ ├── Plugin.php │ └── PluginInstaller.php ├── indieweb └── mention-client │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── README.md │ ├── composer.json │ ├── coverage │ ├── MentionClient.php.html │ ├── clover.xml │ ├── css │ │ ├── bootstrap.min.css │ │ ├── nv.d3.min.css │ │ └── style.css │ ├── dashboard.html │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ ├── d3.min.js │ │ ├── holder.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery.min.js │ │ ├── nv.d3.min.js │ │ └── respond.min.js │ ├── example.php │ ├── phpunit │ ├── phpunit.xml │ ├── src │ └── IndieWeb │ │ ├── MentionClient.php │ │ └── MentionClientTest.php │ └── tests │ ├── DiscoverTest.php │ ├── FindOutgoingLinksTest.php │ ├── LinkHeaderParserTest.php │ ├── SendMentionsTest.php │ ├── SendPingbackTest.php │ ├── SendWebmentionTest.php │ ├── TagParserTest.php │ ├── bootstrap.php │ └── data │ ├── 404.response.txt │ ├── pingback-endpoint.example │ ├── 404-response │ ├── empty-body │ ├── invalid-body │ ├── invalid-request │ ├── invalid-xmlrpc │ └── valid-response │ ├── pingback-target.example │ ├── has-erroring-endpoint.html │ ├── has-valid-endpoint.html │ └── no-endpoint.html │ ├── source.example.com │ ├── mixed-success-links.html │ ├── no-links.html │ ├── send-to-h-entry-links.html │ ├── target-has-both.html │ └── two-valid-links.html │ ├── target.example.com │ ├── body-a.html │ ├── body-link-org.html │ ├── body-link-org2.html │ ├── body-link.html │ ├── document-order-1.html │ ├── document-order-2.html │ ├── empty-string.html │ ├── false-endpoint-in-comment.html │ ├── header.html │ ├── only-pingback.html │ ├── pingback-failed.html │ ├── redirect.html │ ├── relative │ │ ├── after-redirect.html │ │ └── path-relative-endpoint.html │ ├── webmention-created.html │ ├── webmention-failed.html │ ├── webmention-only-failed.html │ ├── webmention-rocks-test-1.html │ ├── webmention-rocks-test-2.html │ ├── webmention-rocks-test-3.html │ ├── webmention-rocks-test-4.html │ ├── webmention-rocks-test-5.html │ ├── webmention-rocks-test-6.html │ ├── webmention-rocks-test-7.html │ └── webmention-rocks-test-8.html │ ├── webmention-endpoint.example │ ├── 404-response │ ├── 500-response │ ├── created-response │ ├── invalid-request │ └── queued-response │ └── webmention-target.example │ ├── has-erroring-endpoint.html │ ├── has-valid-endpoint.html │ └── no-endpoint.html └── mf2 └── mf2 ├── .editorconfig ├── .gitignore ├── LICENSE.md ├── Mf2 └── Parser.php ├── README.md ├── bin ├── fetch-mf2 └── parse-mf2 ├── composer.json ├── phpunit.xml └── tests └── Mf2 ├── ClassicMicroformatsTest.php ├── CombinedMicroformatsTest.php ├── MicroformatsWikiExamplesTest.php ├── ParseDTTest.php ├── ParseImpliedTest.php ├── ParseLanguageTest.php ├── ParsePTest.php ├── ParseUTest.php ├── ParseValueClassTitleTest.php ├── ParserTest.php ├── PlainTextTest.php ├── RelTest.php ├── URLTest.php ├── bootstrap.php ├── fberriman.com.html └── snarfed.org.html /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.1 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/README.md -------------------------------------------------------------------------------- /assets/komments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/assets/komments.css -------------------------------------------------------------------------------- /assets/komments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/assets/komments.js -------------------------------------------------------------------------------- /blueprints/sections/komments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/blueprints/sections/komments.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/composer.lock -------------------------------------------------------------------------------- /doc-assets/panel-moderation-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/doc-assets/panel-moderation-view.png -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/index.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/index.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/index.php -------------------------------------------------------------------------------- /lib/AvatarHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/AvatarHandler.php -------------------------------------------------------------------------------- /lib/CommentVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/CommentVerification.php -------------------------------------------------------------------------------- /lib/DatabaseAbstraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/DatabaseAbstraction.php -------------------------------------------------------------------------------- /lib/KommentModeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/KommentModeration.php -------------------------------------------------------------------------------- /lib/KommentNotifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/KommentNotifications.php -------------------------------------------------------------------------------- /lib/KommentReceiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/KommentReceiver.php -------------------------------------------------------------------------------- /lib/KommentsFrontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/KommentsFrontend.php -------------------------------------------------------------------------------- /lib/MarkdownConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/MarkdownConverter.php -------------------------------------------------------------------------------- /lib/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/Migrations.php -------------------------------------------------------------------------------- /lib/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/Storage.php -------------------------------------------------------------------------------- /lib/StorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/StorageFactory.php -------------------------------------------------------------------------------- /lib/StorageMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/StorageMarkdown.php -------------------------------------------------------------------------------- /lib/StoragePhpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/StoragePhpunit.php -------------------------------------------------------------------------------- /lib/StorageSqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/StorageSqlite.php -------------------------------------------------------------------------------- /lib/TestCaseMocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/TestCaseMocked.php -------------------------------------------------------------------------------- /lib/WebmentionReceiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/lib/WebmentionReceiver.php -------------------------------------------------------------------------------- /migrations/database_202407211411.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/migrations/database_202407211411.sql -------------------------------------------------------------------------------- /migrations/database_202511071020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/migrations/database_202511071020.sql -------------------------------------------------------------------------------- /migrations/database_202511071100.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/migrations/database_202511071100.sql -------------------------------------------------------------------------------- /migrations/database_202511122120.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/migrations/database_202511122120.sql -------------------------------------------------------------------------------- /migrations/database_202511171100.sql: -------------------------------------------------------------------------------- 1 | UPDATE "comments" SET verification_status = 'PUBLISHED' WHERE published = true; 2 | -------------------------------------------------------------------------------- /migrations/database_202511181830.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/migrations/database_202511181830.sql -------------------------------------------------------------------------------- /plugin/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/api.php -------------------------------------------------------------------------------- /plugin/areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/areas.php -------------------------------------------------------------------------------- /plugin/blueprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/blueprints.php -------------------------------------------------------------------------------- /plugin/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/fields.php -------------------------------------------------------------------------------- /plugin/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/hooks.php -------------------------------------------------------------------------------- /plugin/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/options.php -------------------------------------------------------------------------------- /plugin/page-methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/page-methods.php -------------------------------------------------------------------------------- /plugin/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/routes.php -------------------------------------------------------------------------------- /plugin/site-methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/site-methods.php -------------------------------------------------------------------------------- /plugin/snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/snippets.php -------------------------------------------------------------------------------- /plugin/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/plugin/translations.php -------------------------------------------------------------------------------- /snippets/deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/deprecated.php -------------------------------------------------------------------------------- /snippets/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/form.php -------------------------------------------------------------------------------- /snippets/list-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/list-comments.php -------------------------------------------------------------------------------- /snippets/list-likes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/list-likes.php -------------------------------------------------------------------------------- /snippets/list-mentions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/list-mentions.php -------------------------------------------------------------------------------- /snippets/list-replies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/list-replies.php -------------------------------------------------------------------------------- /snippets/list-reposts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/list-reposts.php -------------------------------------------------------------------------------- /snippets/response-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-base.php -------------------------------------------------------------------------------- /snippets/response-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-comment.php -------------------------------------------------------------------------------- /snippets/response-like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-like.php -------------------------------------------------------------------------------- /snippets/response-mention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-mention.php -------------------------------------------------------------------------------- /snippets/response-reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-reply.php -------------------------------------------------------------------------------- /snippets/response-repost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/snippets/response-repost.php -------------------------------------------------------------------------------- /templates/emails/mailverification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/templates/emails/mailverification.php -------------------------------------------------------------------------------- /templates/emails/newComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/templates/emails/newComments.php -------------------------------------------------------------------------------- /templates/pages/comment-verified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/templates/pages/comment-verified.php -------------------------------------------------------------------------------- /templates/pages/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/templates/pages/response.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/fetch-mf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/bin/fetch-mf2 -------------------------------------------------------------------------------- /vendor/bin/parse-mf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/bin/parse-mf2 -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/composer.json -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/composer.lock -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/readme.md -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/src/ComposerInstaller/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/src/ComposerInstaller/Installer.php -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/src/ComposerInstaller/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/src/ComposerInstaller/Plugin.php -------------------------------------------------------------------------------- /vendor/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/.gitignore -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/.travis.yml -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/README.md -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/composer.json -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/MentionClient.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/MentionClient.php.html -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/clover.xml -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/css/bootstrap.min.css -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/css/nv.d3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/css/nv.d3.min.css -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/css/style.css -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/dashboard.html -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/index.html -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/d3.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/holder.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/html5shiv.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/jquery.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/nv.d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/nv.d3.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/coverage/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/coverage/js/respond.min.js -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/example.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/phpunit: -------------------------------------------------------------------------------- 1 | ./vendor/phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/phpunit.xml -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/src/IndieWeb/MentionClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/src/IndieWeb/MentionClient.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/src/IndieWeb/MentionClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/src/IndieWeb/MentionClientTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/DiscoverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/DiscoverTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/FindOutgoingLinksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/FindOutgoingLinksTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/LinkHeaderParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/LinkHeaderParserTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/SendMentionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/SendMentionsTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/SendPingbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/SendPingbackTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/SendWebmentionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/SendWebmentionTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/TagParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricerenck/komments/HEAD/vendor/indieweb/mention-client/tests/TagParserTest.php -------------------------------------------------------------------------------- /vendor/indieweb/mention-client/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |