├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── attachments.phar ├── class.AttachmentPreviewPlugin.php ├── config.php ├── eclipse_formatter.xml ├── phpunit.xml ├── plugin.php ├── script.js ├── stylesheet.css └── tests ├── AttachmentPreviewPluginTest.php ├── install.sh └── setup.inc /.gitignore: -------------------------------------------------------------------------------- 1 | tests/coverage 2 | .buildpath 3 | .project 4 | .settings/ 5 | 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/README.md -------------------------------------------------------------------------------- /attachments.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/attachments.phar -------------------------------------------------------------------------------- /class.AttachmentPreviewPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/class.AttachmentPreviewPlugin.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/config.php -------------------------------------------------------------------------------- /eclipse_formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/eclipse_formatter.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/phpunit.xml -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/plugin.php -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/script.js -------------------------------------------------------------------------------- /stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/stylesheet.css -------------------------------------------------------------------------------- /tests/AttachmentPreviewPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/tests/AttachmentPreviewPluginTest.php -------------------------------------------------------------------------------- /tests/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/tests/install.sh -------------------------------------------------------------------------------- /tests/setup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clonemeagain/attachment_preview/HEAD/tests/setup.inc --------------------------------------------------------------------------------