mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
See #1841 for discussion on why Turbolinks needs to be removed. Closes: #1841. Closes: #1804. Tests performed: - There are no more references to 'turbolinks' in source code other than .po(t) files and the manual. - When loading a page, turbolinks.js is no longer loaded. - The following links don't have data-turbolinks attribute and work well when clicked.a - Gitweb repository links - Download manual links (en, es) - Ikiwiki wiki links - Sharing app web share links - TT-RSS mobile app link - 'Launch web client' button - 'Launch' button in web section of clients table - Active and regular front page shortcut - Roundcube does not have a link to /roundcube in description. - turblinks not present in /static/jslicense.html . LibreJs accepts all scripts. Reported-by: Veiko Aasa <veiko17@disroot.org> Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Tested-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
77 lines
2.4 KiB
Python
77 lines
2.4 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
FreedomBox app to configure Shaarli.
|
|
"""
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth import app as app_module
|
|
from plinth import frontpage, menu
|
|
from plinth.modules.apache.components import Webserver
|
|
from plinth.modules.firewall.components import Firewall
|
|
|
|
from .manifest import clients
|
|
|
|
version = 1
|
|
|
|
managed_packages = ['shaarli']
|
|
|
|
_description = [
|
|
_('Shaarli allows you to save and share bookmarks.'),
|
|
_('Note that Shaarli only supports a single user account, which you will '
|
|
'need to setup on the initial visit.'),
|
|
]
|
|
|
|
app = None
|
|
|
|
|
|
class ShaarliApp(app_module.App):
|
|
"""FreedomBox app for Shaarli."""
|
|
|
|
app_id = 'shaarli'
|
|
|
|
def __init__(self):
|
|
"""Create components for the app."""
|
|
super().__init__()
|
|
info = app_module.Info(app_id=self.app_id, version=version,
|
|
name=_('Shaarli'), icon_filename='shaarli',
|
|
short_description=_('Bookmarks'),
|
|
description=_description, manual_page='Shaarli',
|
|
clients=clients)
|
|
self.add(info)
|
|
|
|
menu_item = menu.Menu('menu-shaarli', info.name,
|
|
info.short_description, info.icon_filename,
|
|
'shaarli:index', parent_url_name='apps')
|
|
self.add(menu_item)
|
|
|
|
shortcut = frontpage.Shortcut('shortcut-shaarli', info.name,
|
|
short_description=info.short_description,
|
|
icon=info.icon_filename, url='/shaarli',
|
|
clients=info.clients,
|
|
login_required=True)
|
|
self.add(shortcut)
|
|
|
|
firewall = Firewall('firewall-shaarli', info.name,
|
|
ports=['http', 'https'], is_external=True)
|
|
self.add(firewall)
|
|
|
|
webserver = Webserver('webserver-shaarli', 'shaarli')
|
|
self.add(webserver)
|
|
|
|
|
|
def init():
|
|
"""Initialize the module."""
|
|
global app
|
|
app = ShaarliApp()
|
|
|
|
setup_helper = globals()['setup_helper']
|
|
if setup_helper.get_state() != 'needs-setup' and app.is_enabled():
|
|
app.set_enabled(True)
|
|
|
|
|
|
def setup(helper, old_version=None):
|
|
"""Install and configure the module."""
|
|
helper.install(managed_packages)
|
|
helper.call('post', app.enable)
|