From 42ab4429303a6ad4cad3e8c481d8ead0e60855d4 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sat, 16 Nov 2013 07:14:00 -0500 Subject: [PATCH] Cosmetic changes to owncloud page. --- modules/installed/apps/owncloud.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/installed/apps/owncloud.py b/modules/installed/apps/owncloud.py index e2b95c75f..83a79539c 100644 --- a/modules/installed/apps/owncloud.py +++ b/modules/installed/apps/owncloud.py @@ -19,12 +19,12 @@ class Owncloud(PagePlugin): @cherrypy.expose @require() def index(self, **kwargs): - sidebar_right=""" -Owncloud

gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn't need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins. + main=""" +

ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn't need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins.

""" - sidebar_right = sidebar_right + 'Configure Owncloud' - return self.fill_template(title="Owncloud", main='', sidebar_right=sidebar_right) + sidebar_right = 'Configure Owncloud' + return self.fill_template(title="Owncloud", main=main, sidebar_right=sidebar_right) class configure(FormPlugin, PagePlugin): url = ["/apps/owncloud/configure"]