Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.scrutinizer.yml2
-rw-r--r--.travis.yml2
-rw-r--r--CHANGELOG.md2
-rw-r--r--COPYING2
-rw-r--r--appinfo/app.php2
-rw-r--r--appinfo/application.php2
-rw-r--r--appinfo/info.xml2
-rw-r--r--controller/jsonhttperror.php2
-rw-r--r--controller/pagecontroller.php2
-rw-r--r--controller/publicservicecontroller.php2
-rw-r--r--controller/servicecontroller.php2
-rw-r--r--environment/environment.php2
-rw-r--r--environment/environmentexception.php2
-rw-r--r--environment/notfoundenvexception.php2
-rw-r--r--middleware/checkmiddleware.php2
-rw-r--r--middleware/envcheckmiddleware.php2
-rw-r--r--middleware/sharingcheckmiddleware.php2
-rw-r--r--preview/preview.php2
-rw-r--r--service/base64encode.php2
-rw-r--r--service/downloadservice.php2
-rw-r--r--service/infoservice.php2
-rw-r--r--service/notfoundserviceexception.php2
-rw-r--r--service/previewservice.php2
-rw-r--r--service/service.php2
-rw-r--r--service/serviceexception.php2
-rw-r--r--service/thumbnailservice.php2
-rw-r--r--templates/part.error.php2
-rw-r--r--templates/slideshow.html2
-rw-r--r--utility/normalizer.php2
-rw-r--r--utility/smarterlogger.php2
30 files changed, 29 insertions, 31 deletions
diff --git a/.scrutinizer.yml b/.scrutinizer.yml
index ff371c0e..19e83c8d 100644
--- a/.scrutinizer.yml
+++ b/.scrutinizer.yml
@@ -91,4 +91,4 @@ coding_style:
size: 4
braces:
classes_functions:
- class: end-of-line \ No newline at end of file
+ class: end-of-line
diff --git a/.travis.yml b/.travis.yml
index 85691341..a7a1c816 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,4 +19,4 @@ branches:
# - cd apps/galleryplus
script: ant test
-# - phpunit tests \ No newline at end of file
+# - phpunit tests
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 56996aaf..4ae257df 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,4 +12,4 @@ owncloud-galleryplus (1.0.0)
* Prettier albums (@libasys,@oparoz)
* Native SVG support, without conversion (@oparoz)
* Loads the gallery exactly where you were in the Files app (@oparoz)
-* Various fixes to the preview generator (@oparoz) \ No newline at end of file
+* Various fixes to the preview generator (@oparoz)
diff --git a/COPYING b/COPYING
index 2def0e88..dba13ed2 100644
--- a/COPYING
+++ b/COPYING
@@ -658,4 +658,4 @@ specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
-<http://www.gnu.org/licenses/>. \ No newline at end of file
+<http://www.gnu.org/licenses/>.
diff --git a/appinfo/app.php b/appinfo/app.php
index ebf4e1a3..99f6794f 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -68,4 +68,4 @@ $c->query('API')
* Styles for the Files app
*/
$c->query('API')
- ->addStyle('slideshow', $appName); \ No newline at end of file
+ ->addStyle('slideshow', $appName);
diff --git a/appinfo/application.php b/appinfo/application.php
index 00eb7939..be4ce1a8 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -305,4 +305,4 @@ class Application extends App {
}
-} \ No newline at end of file
+}
diff --git a/appinfo/info.xml b/appinfo/info.xml
index f73b7f32..b6aaf663 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -16,4 +16,4 @@
<dependencies>
<owncloud min-version="8"/>
</dependencies>
-</info> \ No newline at end of file
+</info>
diff --git a/controller/jsonhttperror.php b/controller/jsonhttperror.php
index 9de6653e..d5760725 100644
--- a/controller/jsonhttperror.php
+++ b/controller/jsonhttperror.php
@@ -53,4 +53,4 @@ trait JsonHttpError {
$code
);
}
-} \ No newline at end of file
+}
diff --git a/controller/pagecontroller.php b/controller/pagecontroller.php
index e0d04445..20e9b003 100644
--- a/controller/pagecontroller.php
+++ b/controller/pagecontroller.php
@@ -135,4 +135,4 @@ class PageController extends Controller {
return $errorTemplate;
}
-} \ No newline at end of file
+}
diff --git a/controller/publicservicecontroller.php b/controller/publicservicecontroller.php
index c5142567..fbbc466a 100644
--- a/controller/publicservicecontroller.php
+++ b/controller/publicservicecontroller.php
@@ -84,4 +84,4 @@ class PublicServiceController extends ServiceController {
return parent::downloadPreview($file);
}
-} \ No newline at end of file
+}
diff --git a/controller/servicecontroller.php b/controller/servicecontroller.php
index ebab195b..326ba00d 100644
--- a/controller/servicecontroller.php
+++ b/controller/servicecontroller.php
@@ -313,4 +313,4 @@ class ServiceController extends Controller {
];
}
-} \ No newline at end of file
+}
diff --git a/environment/environment.php b/environment/environment.php
index f4df3324..f09b5474 100644
--- a/environment/environment.php
+++ b/environment/environment.php
@@ -331,4 +331,4 @@ class Environment {
throw new NotFoundEnvException($message);
}
-} \ No newline at end of file
+}
diff --git a/environment/environmentexception.php b/environment/environmentexception.php
index 9481797f..914323fe 100644
--- a/environment/environmentexception.php
+++ b/environment/environmentexception.php
@@ -25,4 +25,4 @@ class EnvironmentException extends Exception {
* @param string $msg the message contained in the exception
*/
public function __construct($msg) {}
-} \ No newline at end of file
+}
diff --git a/environment/notfoundenvexception.php b/environment/notfoundenvexception.php
index 991c1447..ed9c23c0 100644
--- a/environment/notfoundenvexception.php
+++ b/environment/notfoundenvexception.php
@@ -15,4 +15,4 @@ namespace OCA\GalleryPlus\Environment;
/**
* Thrown when the service cannot reply to a request
*/
-class NotFoundEnvException extends EnvironmentException {} \ No newline at end of file
+class NotFoundEnvException extends EnvironmentException {}
diff --git a/middleware/checkmiddleware.php b/middleware/checkmiddleware.php
index e13b14e6..5e5b819f 100644
--- a/middleware/checkmiddleware.php
+++ b/middleware/checkmiddleware.php
@@ -200,4 +200,4 @@ abstract class CheckMiddleware extends Middleware {
return new JSONResponse($jsonData, $code);
}
-} \ No newline at end of file
+}
diff --git a/middleware/envcheckmiddleware.php b/middleware/envcheckmiddleware.php
index d6ba520a..f4979fdc 100644
--- a/middleware/envcheckmiddleware.php
+++ b/middleware/envcheckmiddleware.php
@@ -313,4 +313,4 @@ class EnvCheckMiddleware extends CheckMiddleware {
}
}
-} \ No newline at end of file
+}
diff --git a/middleware/sharingcheckmiddleware.php b/middleware/sharingcheckmiddleware.php
index b623c479..ed81ea73 100644
--- a/middleware/sharingcheckmiddleware.php
+++ b/middleware/sharingcheckmiddleware.php
@@ -105,4 +105,4 @@ class SharingCheckMiddleware extends CheckMiddleware {
return true;
}
-} \ No newline at end of file
+}
diff --git a/preview/preview.php b/preview/preview.php
index 563ec087..91724d15 100644
--- a/preview/preview.php
+++ b/preview/preview.php
@@ -312,4 +312,4 @@ class Preview {
return $iconData;
}
-} \ No newline at end of file
+}
diff --git a/service/base64encode.php b/service/base64encode.php
index c29f6220..9b72792d 100644
--- a/service/base64encode.php
+++ b/service/base64encode.php
@@ -39,4 +39,4 @@ trait Base64Encode {
return $previewData;
}
-} \ No newline at end of file
+}
diff --git a/service/downloadservice.php b/service/downloadservice.php
index 510cde80..669fb061 100644
--- a/service/downloadservice.php
+++ b/service/downloadservice.php
@@ -79,4 +79,4 @@ class DownloadService extends Service {
return $download;
}
-} \ No newline at end of file
+}
diff --git a/service/infoservice.php b/service/infoservice.php
index 0e8d82ee..873dda84 100644
--- a/service/infoservice.php
+++ b/service/infoservice.php
@@ -196,4 +196,4 @@ class InfoService extends Service {
return $result;
}
-} \ No newline at end of file
+}
diff --git a/service/notfoundserviceexception.php b/service/notfoundserviceexception.php
index 3f83f84a..fcd01478 100644
--- a/service/notfoundserviceexception.php
+++ b/service/notfoundserviceexception.php
@@ -15,4 +15,4 @@ namespace OCA\GalleryPlus\Service;
/**
* Thrown when the service cannot reply to a request
*/
-class NotFoundServiceException extends ServiceException {} \ No newline at end of file
+class NotFoundServiceException extends ServiceException {}
diff --git a/service/previewservice.php b/service/previewservice.php
index cf359add..3333d0c0 100644
--- a/service/previewservice.php
+++ b/service/previewservice.php
@@ -227,4 +227,4 @@ class PreviewService extends Service {
return $count > 1;
}
-} \ No newline at end of file
+}
diff --git a/service/service.php b/service/service.php
index 11da03a1..bb9b229f 100644
--- a/service/service.php
+++ b/service/service.php
@@ -56,4 +56,4 @@ abstract class Service {
throw new NotFoundServiceException($message);
}
-} \ No newline at end of file
+}
diff --git a/service/serviceexception.php b/service/serviceexception.php
index 81f24079..cd540e0d 100644
--- a/service/serviceexception.php
+++ b/service/serviceexception.php
@@ -27,4 +27,4 @@ class ServiceException extends Exception {
public function __construct($msg) {
parent::__construct($msg);
}
-} \ No newline at end of file
+}
diff --git a/service/thumbnailservice.php b/service/thumbnailservice.php
index d9da608b..11c4b087 100644
--- a/service/thumbnailservice.php
+++ b/service/thumbnailservice.php
@@ -66,4 +66,4 @@ class ThumbnailService {
return $thumbnail;
}
-} \ No newline at end of file
+}
diff --git a/templates/part.error.php b/templates/part.error.php
index f935f539..ea49baf1 100644
--- a/templates/part.error.php
+++ b/templates/part.error.php
@@ -29,5 +29,3 @@ style(
<p><?php p($l->t('For more info, please ask the person who sent this link.')); ?></p>
</li>
</ul>
-
-
diff --git a/templates/slideshow.html b/templates/slideshow.html
index 86b95f76..d7e220e2 100644
--- a/templates/slideshow.html
+++ b/templates/slideshow.html
@@ -7,4 +7,4 @@
<input type="button" class="svg downloadImage icon-view-download"/>
<div class="progress icon-view-pause"/>
-</div> \ No newline at end of file
+</div>
diff --git a/utility/normalizer.php b/utility/normalizer.php
index 45140944..0aa975f1 100644
--- a/utility/normalizer.php
+++ b/utility/normalizer.php
@@ -182,4 +182,4 @@ class Normalizer {
return null;
}
-} \ No newline at end of file
+}
diff --git a/utility/smarterlogger.php b/utility/smarterlogger.php
index 72dd788a..209b7126 100644
--- a/utility/smarterlogger.php
+++ b/utility/smarterlogger.php
@@ -184,4 +184,4 @@ class SmarterLogger implements ILogger {
}
}
-} \ No newline at end of file
+}