X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/2d1d955bb3b4a5ca4dad1153c062c9ab3b6319e7..eee35e00bf0d0eb3d2a9f08f72c7052962fecbf6:/apps/archive/settings.py?ds=sidebyside diff --git a/apps/archive/settings.py b/apps/archive/settings.py deleted file mode 100755 index ea42c15..0000000 --- a/apps/archive/settings.py +++ /dev/null @@ -1,32 +0,0 @@ -import os.path -from django.conf import settings - -# this is where the end user puts new files -try: - NEW_PATH = settings.ARCHIVE_NEW_PATH -except AttributeError: - NEW_FILES_PATH = os.path.abspath(os.path.join(settings.MEDIA_ROOT, - "archive/new")) - -# here the application keeps its managed files -try: - FILES_PATH = settings.ARCHIVE_FILES_PATH -except AttributeError: - FILES_PATH = os.path.abspath(os.path.join(settings.MEDIA_ROOT, - "archive/files")) - - -# here the app keeps the unmanaged (archive) files -try: - UNMANAGED_PATH = settings.ARCHIVE_UNMANAGED_PATH -except AttributeError: - UNMANAGED_PATH = os.path.abspath(os.path.join(settings.MEDIA_ROOT, - "archive/unmanaged")) - - -# here the app keeps the resulting (published) files -try: - FINAL_PATH = settings.ARCHIVE_FINAL_PATH -except AttributeError: - FINAL_PATH = os.path.abspath(os.path.join(settings.MEDIA_ROOT, - "archive/final"))