X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/85ed5c37c12fbc9eb6cef20f201dd022a222e9df..eee35e00bf0d0eb3d2a9f08f72c7052962fecbf6:/apps/archive/settings.py diff --git a/apps/archive/settings.py b/apps/archive/settings.py deleted file mode 100755 index a0db355..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_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"))