Merge remote-tracking branch 'origin/master' into release

This commit is contained in:
Tyrel Souza 2016-12-08 15:45:35 -05:00
commit 49b21be77b
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
6 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@ from .models import DBFile
L = logging.getLogger(__name__)
class DBStorage(Storage):
class DBFileStorage(Storage):
"""
This is the Test Database file upload storage backend.
This is used so that in our test database we always have uploaded

View File

@ -4,7 +4,7 @@
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = DjangoDBStorage
SPHINXPROJ = DjangoDBFileStorage
SOURCEDIR = .
BUILDDIR = _build

View File

@ -54,9 +54,9 @@ author = u'Tyrel Souza'
# built documents.
#
# The short X.Y version.
version = u'0.0.4'
version = u'0.1.0'
# The full version, including alpha/beta/rc tags.
release = u'0.0.4'
release = u'0.1.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -9,7 +9,7 @@ if "%SPHINXBUILD%" == "" (
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=DjangoDBStorage
set SPHINXPROJ=DjangoDBFileStorage
if "%1" == "" goto help

View File

@ -10,7 +10,7 @@ except ImportError:
setup(
name="django-dbfilestorage",
version="0.0.4",
version="0.1.0",
description="Database backed file storage for testing.",
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
author="Tyrel Souza",

View File

@ -8,7 +8,7 @@ from django.test import TestCase, Client
from django.test.utils import override_settings
PROJECT_ROOT = os.path.dirname(os.path.realpath(__file__))
DEFAULT_FILE_STORAGE = "dbfilestorage.storage.DBStorage"
DEFAULT_FILE_STORAGE = "dbfilestorage.storage.DBFileStorage"
@override_settings(DEFAULT_FILE_STORAGE=DEFAULT_FILE_STORAGE)