Convert file explorer page to template

This commit is contained in:
Sunil Mohan Adapa 2014-05-08 10:55:48 +05:30
parent c50fe72587
commit 4e4ca43b40
2 changed files with 27 additions and 21 deletions

View File

@ -1,4 +1,5 @@
import cherrypy import cherrypy
from gettext import gettext as _
from modules.auth import require from modules.auth import require
from plugin_mount import PagePlugin from plugin_mount import PagePlugin
import cfg import cfg
@ -14,24 +15,5 @@ class FileExplorer(PagePlugin):
@cherrypy.expose @cherrypy.expose
@require() @require()
def index(self): def index(self):
main = """ return util.render_template(template='file_explorer',
<p>File explorer for users that also have shell accounts.</p> <p>Until title=_('File Explorer'))
that is written (and it will be a while), we should install <a
href="http://www.mollify.org/demo.php">mollify</a> or <a
href="http://www.ajaxplorer.info/wordpress/demo/">ajaxplorer</a>, but
of which seem to have some support for playing media files in the
browser (as opposed to forcing users to download and play them
locally). The downsides to third-party explorers are: they're don't
fit within our theme system, they require separate login, and they're
written in php, which will make integrating them hard.</p>
<p>There are, of course, many other options for php-based file
explorers. These were the ones I saw that might do built-in media
players.</p>
<p>For python-friendly options, check out <a
href="http://blogfreakz.com/jquery/web-based-filemanager/">FileManager</a>.
It appears to be mostly javascript with some bindings to make it
python-friendly.</p>
"""
return util.render_template(title="File Explorer", main=main)

View File

@ -0,0 +1,24 @@
{% extends 'login_nav.html' %}
{% block main_block %}
<p>File explorer for users that also have shell accounts.</p> <p>Until
that is written (and it will be a while), we should
install <a href="http://www.mollify.org/demo.php">mollify</a>
or <a href="http://www.ajaxplorer.info/wordpress/demo/">ajaxplorer</a>,
but of which seem to have some support for playing media files in the
browser (as opposed to forcing users to download and play them
locally). The downsides to third-party explorers are: they're don't
fit within our theme system, they require separate login, and they're
written in php, which will make integrating them hard.</p>
<p>There are, of course, many other options for php-based file
explorers. These were the ones I saw that might do built-in media
players.</p>
<p>For python-friendly options, check out <a
href="http://blogfreakz.com/jquery/web-based-filemanager/">FileManager</a>.
It appears to be mostly javascript with some bindings to make it
python-friendly.</p>
{% endblock %}