diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-29 17:07:10 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-02 17:02:57 +0200 |
commit | 20893cc3b335049a144a53be24eaacb2e33a1480 (patch) | |
tree | c0795a4246bf6c38ec8b8ad9461e25b17ec9af74 /apps/files_sharing/appinfo | |
parent | 49d9631eee1616b9ae2846886c3d428236c5b81a (diff) | |
download | nextcloud-server-20893cc3b335049a144a53be24eaacb2e33a1480.tar.gz nextcloud-server-20893cc3b335049a144a53be24eaacb2e33a1480.zip |
Images on public sharing get downscaled to increase use experience - this will speed up loading time
- adding keep aspect to core/ajax/preview.php
- remove duplicate method Preview::show()
- no more hard coded mimetype of preview
- remove .png from the preview urls
- keep old route preview.png for backwards compatibility
- aspect preserving previews are now cached
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 06e454b7d77..7c2834dc9c2 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -1,9 +1,9 @@ <?php /** @var $this \OCP\Route\IRouter */ -$this->create('core_ajax_public_preview', '/publicpreview.png')->action( -function() { - require_once __DIR__ . '/../ajax/publicpreview.php'; -}); +$this->create('core_ajax_public_preview', '/publicpreview')->action( + function() { + require_once __DIR__ . '/../ajax/publicpreview.php'; + }); // OCS API |