]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/upload.py
Migrate to Django 1.6
[osqa.git] / forum / settings / upload.py
1 import os.path
2 from base import Setting, SettingSet
3 from django.utils.translation import ugettext_lazy as _
4
5 UPLOAD_SET = SettingSet('paths', _('File upload settings'), _("File uploads related settings."), 600)
6
7 UPFILES_FOLDER = Setting('UPFILES_FOLDER', os.path.join(os.path.dirname(os.path.dirname(__file__)),'upfiles'), UPLOAD_SET, dict(
8 label = _("Uploaded files folder"),
9 help_text = _("The filesystem path where uploaded files will be stored. Please note that this folder must exist.")))
10
11 UPFILES_ALIAS = Setting('UPFILES_ALIAS', '/upfiles/', UPLOAD_SET, dict(
12 label = _("Uploaded files alias"),
13 help_text = _("The url alias for uploaded files. Notice that if you change this setting, you'll need to restart your site.")))
14
15 ALLOW_MAX_FILE_SIZE = Setting('ALLOW_MAX_FILE_SIZE', 2.5, UPLOAD_SET, dict(
16 label = _("Max file size"),
17 help_text = _("The maximum allowed file size for uploads in mb.")))