├── .gitignore ├── LICENSE ├── Makefile ├── Plugin.php ├── README.md ├── Template └── task │ └── sidebar.php └── _config.yml /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/Makefile -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/README.md -------------------------------------------------------------------------------- /Template/task/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/Template/task/sidebar.php -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/opencomment/HEAD/_config.yml --------------------------------------------------------------------------------