├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codecov.yml │ ├── golangci-lint.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SOURCE.txt ├── codecov.yml ├── config.toml ├── go.mod ├── go.sum ├── main.go ├── main_test.go ├── testdata ├── page │ ├── index.html │ └── page ├── prod │ ├── .htaccess │ ├── about.html │ ├── extra_tag.html │ ├── ignored_css.html │ ├── index.html │ ├── index.xml │ ├── posts │ │ ├── 1 │ │ │ └── index.html │ │ ├── 2 │ │ │ └── index.html │ │ ├── 4 │ │ │ └── index.html │ │ ├── index.html │ │ └── index.xml │ └── tags │ │ ├── a │ │ ├── index.html │ │ └── index.xml │ │ └── index.html └── staging │ ├── .htaccess │ ├── about.html │ ├── extra_tag.html │ ├── ignored_css.html │ ├── index.html │ ├── index.xml │ ├── other.xml │ ├── posts │ ├── 1 │ │ └── index.html │ ├── 2 │ │ └── index.html │ ├── 3 │ │ └── index.html │ ├── 4 │ │ └── index.html │ ├── index.html │ └── index.xml │ └── tags │ ├── a │ ├── index.html │ └── index.xml │ ├── b │ ├── index.html │ └── index.xml │ └── index.html ├── version_generate.go ├── websub.go └── websub_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | /static-webmentions 3 | /release/ 4 | /debian.changelog 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/README.md -------------------------------------------------------------------------------- /SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/SOURCE.txt -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | require_changes: true 3 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/config.toml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/main_test.go -------------------------------------------------------------------------------- /testdata/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/page/index.html -------------------------------------------------------------------------------- /testdata/page/page: -------------------------------------------------------------------------------- 1 | ../page -------------------------------------------------------------------------------- /testdata/prod/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/.htaccess -------------------------------------------------------------------------------- /testdata/prod/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/extra_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/extra_tag.html -------------------------------------------------------------------------------- /testdata/prod/ignored_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/ignored_css.html -------------------------------------------------------------------------------- /testdata/prod/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/index.xml: -------------------------------------------------------------------------------- 1 | old contents 2 | -------------------------------------------------------------------------------- /testdata/prod/posts/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/posts/1/index.html -------------------------------------------------------------------------------- /testdata/prod/posts/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/posts/2/index.html -------------------------------------------------------------------------------- /testdata/prod/posts/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/posts/4/index.html -------------------------------------------------------------------------------- /testdata/prod/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/prod/posts/index.html -------------------------------------------------------------------------------- /testdata/prod/posts/index.xml: -------------------------------------------------------------------------------- 1 | old contents 2 | -------------------------------------------------------------------------------- /testdata/prod/tags/a/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/tags/a/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/prod/tags/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/.htaccess -------------------------------------------------------------------------------- /testdata/staging/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/extra_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/extra_tag.html -------------------------------------------------------------------------------- /testdata/staging/ignored_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/ignored_css.html -------------------------------------------------------------------------------- /testdata/staging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/index.html -------------------------------------------------------------------------------- /testdata/staging/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/other.xml: -------------------------------------------------------------------------------- 1 | new file 2 | -------------------------------------------------------------------------------- /testdata/staging/posts/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/posts/1/index.html -------------------------------------------------------------------------------- /testdata/staging/posts/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/posts/2/index.html -------------------------------------------------------------------------------- /testdata/staging/posts/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/posts/3/index.html -------------------------------------------------------------------------------- /testdata/staging/posts/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/posts/4/index.html -------------------------------------------------------------------------------- /testdata/staging/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/testdata/staging/posts/index.html -------------------------------------------------------------------------------- /testdata/staging/posts/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/tags/a/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/tags/a/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/tags/b/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/tags/b/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/tags/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/version_generate.go -------------------------------------------------------------------------------- /websub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/websub.go -------------------------------------------------------------------------------- /websub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekr0z/static-webmentions/HEAD/websub_test.go --------------------------------------------------------------------------------