summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
committerYuval Adam <yuval@segmanta.com>2014-03-20 17:49:16 +0200
commit75f93a3f7854a7383febd047391e2bfd4caceee0 (patch)
treed5e634ef292c6b84acacc3982dbcaa0d300a346e /docs
Initial git fork of django-storagesHEADmaster
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile130
-rw-r--r--docs/backends/amazon-S3.rst202
-rw-r--r--docs/backends/apache_libcloud.rst174
-rw-r--r--docs/backends/azure.rst32
-rw-r--r--docs/backends/couchdb.rst5
-rw-r--r--docs/backends/database.rst59
-rw-r--r--docs/backends/ftp.rst7
-rw-r--r--docs/backends/image.rst5
-rw-r--r--docs/backends/mogilefs.rst55
-rw-r--r--docs/backends/mongodb.rst21
-rw-r--r--docs/backends/overwrite.rst5
-rw-r--r--docs/backends/rackspace-cloudfiles.rst37
-rw-r--r--docs/backends/sftp.rst5
-rw-r--r--docs/backends/symlinkcopy.rst6
-rw-r--r--docs/conf.py257
-rw-r--r--docs/index.rst49
-rw-r--r--docs/make.bat170
17 files changed, 1219 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile
new file mode 100644
index 0000000..18f6e2d
--- /dev/null
+++ b/docs/Makefile
@@ -0,0 +1,130 @@
+# Makefile for Sphinx documentation
+#
+
+# You can set these variables from the command line.
+SPHINXOPTS =
+SPHINXBUILD = sphinx-build
+PAPER =
+BUILDDIR = _build
+
+# Internal variables.
+PAPEROPT_a4 = -D latex_paper_size=a4
+PAPEROPT_letter = -D latex_paper_size=letter
+ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
+
+.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
+
+help:
+ @echo "Please use \`make <target>' where <target> is one of"
+ @echo " html to make standalone HTML files"
+ @echo " dirhtml to make HTML files named index.html in directories"
+ @echo " singlehtml to make a single large HTML file"
+ @echo " pickle to make pickle files"
+ @echo " json to make JSON files"
+ @echo " htmlhelp to make HTML files and a HTML help project"
+ @echo " qthelp to make HTML files and a qthelp project"
+ @echo " devhelp to make HTML files and a Devhelp project"
+ @echo " epub to make an epub"
+ @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
+ @echo " latexpdf to make LaTeX files and run them through pdflatex"
+ @echo " text to make text files"
+ @echo " man to make manual pages"
+ @echo " changes to make an overview of all changed/added/deprecated items"
+ @echo " linkcheck to check all external links for integrity"
+ @echo " doctest to run all doctests embedded in the documentation (if enabled)"
+
+clean:
+ -rm -rf $(BUILDDIR)/*
+
+html:
+ $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
+ @echo
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
+
+dirhtml:
+ $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
+ @echo
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
+
+singlehtml:
+ $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
+ @echo
+ @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
+
+pickle:
+ $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
+ @echo
+ @echo "Build finished; now you can process the pickle files."
+
+json:
+ $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
+ @echo
+ @echo "Build finished; now you can process the JSON files."
+
+htmlhelp:
+ $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
+ @echo
+ @echo "Build finished; now you can run HTML Help Workshop with the" \
+ ".hhp project file in $(BUILDDIR)/htmlhelp."
+
+qthelp:
+ $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
+ @echo
+ @echo "Build finished; now you can run "qcollectiongenerator" with the" \
+ ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
+ @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/django-storages.qhcp"
+ @echo "To view the help file:"
+ @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/django-storages.qhc"
+
+devhelp:
+ $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
+ @echo
+ @echo "Build finished."
+ @echo "To view the help file:"
+ @echo "# mkdir -p $$HOME/.local/share/devhelp/django-storages"
+ @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django-storages"
+ @echo "# devhelp"
+
+epub:
+ $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
+ @echo
+ @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
+
+latex:
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
+ @echo
+ @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
+ @echo "Run \`make' in that directory to run these through (pdf)latex" \
+ "(use \`make latexpdf' here to do that automatically)."
+
+latexpdf:
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
+ @echo "Running LaTeX files through pdflatex..."
+ make -C $(BUILDDIR)/latex all-pdf
+ @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
+
+text:
+ $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
+ @echo
+ @echo "Build finished. The text files are in $(BUILDDIR)/text."
+
+man:
+ $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
+ @echo
+ @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
+
+changes:
+ $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
+ @echo
+ @echo "The overview file is in $(BUILDDIR)/changes."
+
+linkcheck:
+ $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
+ @echo
+ @echo "Link check complete; look for any errors in the above output " \
+ "or in $(BUILDDIR)/linkcheck/output.txt."
+
+doctest:
+ $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
+ @echo "Testing of doctests in the sources finished, look at the " \
+ "results in $(BUILDDIR)/doctest/output.txt."
diff --git a/docs/backends/amazon-S3.rst b/docs/backends/amazon-S3.rst
new file mode 100644
index 0000000..3773c02
--- /dev/null
+++ b/docs/backends/amazon-S3.rst
@@ -0,0 +1,202 @@
+Amazon S3
+=========
+
+Usage
+*****
+
+There are two backend APIs for interacting with S3. The first is the s3 backend (in storages/backends/s3.py) which is simple and based on the Amazon S3 Python library. The second is the s3boto backend (in storages/backends/s3boto.py) which is well-maintained by the community and is generally more robust (including connection pooling, etc...). s3boto requires the python-boto library.
+
+Settings
+--------
+
+``DEFAULT_FILE_STORAGE``
+
+This setting sets the path to the S3 storage class, the first part correspond to the filepath and the second the name of the class, if you've got example.com in your PYTHONPATH and store your storage file in example.com/libs/storages/S3Storage.py, the resulting setting will be::
+
+ DEFAULT_FILE_STORAGE = 'libs.storages.S3Storage.S3Storage'
+
+or if you installed using setup.py::
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.s3.S3Storage'
+
+If you keep the same filename as in repository, it should always end with S3Storage.S3Storage.
+
+To use s3boto, this setting will be::
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
+
+``AWS_ACCESS_KEY_ID``
+
+Your Amazon Web Services access key, as a string.
+
+``AWS_SECRET_ACCESS_KEY``
+
+Your Amazon Web Services secret access key, as a string.
+
+``AWS_STORAGE_BUCKET_NAME``
+
+Your Amazon Web Services storage bucket name, as a string.
+
+``AWS_CALLING_FORMAT`` (Subdomain hardcoded in s3boto)
+
+The way you'd like to call the Amazon Web Services API, for instance if you prefer subdomains::
+
+ from S3 import CallingFormat
+ AWS_CALLING_FORMAT = CallingFormat.SUBDOMAIN
+
+``AWS_HEADERS`` (optional)
+
+If you'd like to set headers sent with each file of the storage::
+
+ # see http://developer.yahoo.com/performance/rules.html#expires
+ AWS_HEADERS = {
+ 'Expires': 'Thu, 15 Apr 2010 20:00:00 GMT',
+ 'Cache-Control': 'max-age=86400',
+ }
+
+To allow ``django-admin.py`` collectstatic to automatically put your static files in your bucket set the following in your settings.py::
+
+ STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
+
+Fields
+------
+
+Once you're done, default_storage will be the S3 storage::
+
+ >>> from django.core.files.storage import default_storage
+ >>> print default_storage.__class__
+ <class 'S3Storage.S3Storage'>
+
+The above doesn't seem to be true for django 1.3+ instead look at::
+
+ >>> from django.core.files.storage import default_storage
+ >>> print default_storage.connection
+ S3Connection:s3.amazonaws.com
+
+This way, if you define a new FileField, it will use the S3 storage::
+
+ >>> from django.db import models
+ >>> class Resume(models.Model):
+ ... pdf = models.FileField(upload_to='pdfs')
+ ... photos = models.ImageField(upload_to='photos')
+ ...
+ >>> resume = Resume()
+ >>> print resume.pdf.storage
+ <S3Storage.S3Storage object at ...>
+
+Tests
+*****
+
+Initialization::
+
+ >>> from django.core.files.storage import default_storage
+ >>> from django.core.files.base import ContentFile
+ >>> from django.core.cache import cache
+ >>> from models import MyStorage
+
+Storage
+-------
+
+Standard file access options are available, and work as expected::
+
+ >>> default_storage.exists('storage_test')
+ False
+ >>> file = default_storage.open('storage_test', 'w')
+ >>> file.write('storage contents')
+ >>> file.close()
+
+ >>> default_storage.exists('storage_test')
+ True
+ >>> file = default_storage.open('storage_test', 'r')
+ >>> file.read()
+ 'storage contents'
+ >>> file.close()
+
+ >>> default_storage.delete('storage_test')
+ >>> default_storage.exists('storage_test')
+ False
+
+Model
+-----
+
+An object without a file has limited functionality::
+
+ >>> obj1 = MyStorage()
+ >>> obj1.normal
+ <FieldFile: None>
+ >>> obj1.normal.size
+ Traceback (most recent call last):
+ ...
+ ValueError: The 'normal' attribute has no file associated with it.
+
+Saving a file enables full functionality::
+
+ >>> obj1.normal.save('django_test.txt', ContentFile('content'))
+ >>> obj1.normal
+ <FieldFile: tests/django_test.txt>
+ >>> obj1.normal.size
+ 7
+ >>> obj1.normal.read()
+ 'content'
+
+Files can be read in a little at a time, if necessary::
+
+ >>> obj1.normal.open()
+ >>> obj1.normal.read(3)
+ 'con'
+ >>> obj1.normal.read()
+ 'tent'
+ >>> '-'.join(obj1.normal.chunks(chunk_size=2))
+ 'co-nt-en-t'
+
+Save another file with the same name::
+
+ >>> obj2 = MyStorage()
+ >>> obj2.normal.save('django_test.txt', ContentFile('more content'))
+ >>> obj2.normal
+ <FieldFile: tests/django_test_.txt>
+ >>> obj2.normal.size
+ 12
+
+Push the objects into the cache to make sure they pickle properly::
+
+ >>> cache.set('obj1', obj1)
+ >>> cache.set('obj2', obj2)
+ >>> cache.get('obj2').normal
+ <FieldFile: tests/django_test_.txt>
+
+Deleting an object deletes the file it uses, if there are no other objects still using that file::
+
+ >>> obj2.delete()
+ >>> obj2.normal.save('django_test.txt', ContentFile('more content'))
+ >>> obj2.normal
+ <FieldFile: tests/django_test_.txt>
+
+Default values allow an object to access a single file::
+
+ >>> obj3 = MyStorage.objects.create()
+ >>> obj3.default
+ <FieldFile: tests/default.txt>
+ >>> obj3.default.read()
+ 'default content'
+
+But it shouldn't be deleted, even if there are no more objects using it::
+
+ >>> obj3.delete()
+ >>> obj3 = MyStorage()
+ >>> obj3.default.read()
+ 'default content'
+
+Verify the fix for #5655, making sure the directory is only determined once::
+
+ >>> obj4 = MyStorage()
+ >>> obj4.random.save('random_file', ContentFile('random content'))
+ >>> obj4.random
+ <FieldFile: .../random_file>
+
+Clean up the temporary files::
+
+ >>> obj1.normal.delete()
+ >>> obj2.normal.delete()
+ >>> obj3.default.delete()
+ >>> obj4.random.delete()
diff --git a/docs/backends/apache_libcloud.rst b/docs/backends/apache_libcloud.rst
new file mode 100644
index 0000000..b53401b
--- /dev/null
+++ b/docs/backends/apache_libcloud.rst
@@ -0,0 +1,174 @@
+Apache Libcloud
+===============
+
+`Apache Libcloud`_ is an API wrapper around a range of cloud storage providers.
+It aims to provide a consistent API for dealing with cloud storage (and, more
+broadly, the many other services provided by cloud providers, such as device
+provisioning, load balancer configuration, and DNS configuration).
+
+As of v0.10.1, Libcloud supports the following cloud storage providers:
+ * `Amazon S3`_
+ * `Google Cloud Storage`_
+ * `Nimbus.io`_
+ * `Ninefold Cloud Storage`_
+ * `Rackspace CloudFiles`_
+
+Libcloud can also be configured with relatively little effort to support any provider
+using EMC Atmos storage, or the OpenStack API.
+
+.. _Apache Libcloud: http://libcloud.apache.org/
+.. _Amazon S3: http://aws.amazon.com/s3/
+.. _Google Cloud Storage: http://cloud.google.com/products/cloud-storage.html
+.. _Rackspace CloudFiles: http://www.rackspace.com/cloud/cloud_hosting_products/files/
+.. _Ninefold Cloud Storage: http://ninefold.com/cloud-storage/
+.. _Nimbus.io: http://nimbus.io
+
+Settings
+--------
+
+``LIBCLOUD_PROVIDERS``
+~~~~~~~~~~~~~~~~~~~~~~
+
+This setting is required to configure connections to cloud storage providers.
+Each entry corresponds to a single 'bucket' of storage. You can have multiple
+buckets for a single service provider (e.g., multiple S3 buckets), and you can
+define buckets at multiple providers. For example, the following configuration
+defines 3 providers: two buckets (``bucket-1`` and ``bucket-2``) on a US-based
+Amazon S3 store, and a third bucket (``bucket-3``) on Google::
+
+
+ LIBCLOUD_PROVIDERS = {
+ 'amazon_1': {
+ 'type': 'libcloud.storage.types.Provider.S3_US_STANDARD_HOST',
+ 'user': '<your username here>',
+ 'key': '<your key here>',
+ 'bucket': 'bucket-1',
+ },
+ 'amazon_2': {
+ 'type': 'libcloud.storage.types.Provider.S3_US_STANDARD_HOST',
+ 'user': '<your username here>',
+ 'key': '<your key here>',
+ 'bucket': 'bucket-2',
+ },
+ 'google': {
+ 'type': 'libcloud.storage.types.GOOGLE_STORAGE',
+ 'user': '<Your Google APIv1 username>',
+ 'key': '<Your Google APIv1 Key>',
+ 'bucket': 'bucket-3',
+ },
+ }
+
+The values for the ``type``, ``user`` and ``key`` arguments will vary depending on
+your storage provider:
+
+ **Amazon S3**:
+
+ **type**: ``libcloud.storage.types.Provider.S3_US_STANDARD_HOST``,
+
+ **user**: Your AWS access key ID
+
+ **key**: Your AWS secret access key
+
+ If you want to use a availability zone other than the US default, you
+ can use one of ``S3_US_WEST_HOST``, ``S3_US_WEST_OREGON_HOST``,
+ ``S3_EU_WEST_HOST``, ``S3_AP_SOUTHEAST_HOST``, or
+ ``S3_AP_NORTHEAST_HOST`` instead of ``S3_US_STANDARD_HOST``.
+
+ **Google Cloud Storage**:
+
+ **type**: ``libcloud.storage.types.Provider.GOOGLE_STORAGE``,
+
+ **user**: Your Google APIv1 username (20 characters)
+
+ **key**: Your Google APIv1 key
+
+ **Nimbus.io**:
+
+ **type**: ``libcloud.storage.types.Provider.NIMBUS``,
+
+ **user**: Your Nimbus.io user ID
+
+ **key**: Your Nimbus.io access key
+
+ **Ninefold Cloud Storage**:
+
+ **type**: ``libcloud.storage.types.Provider.NINEFOLD``,
+
+ **user**: Your Atmos Access Token
+
+ **key**: Your Atmos Shared Secret
+
+ **Rackspace Cloudfiles**:
+
+ **type**: ``libcloud.storage.types.Provider.CLOUDFIULES_US`` or ``libcloud.storage.types.Provider.CLOUDFIULES_UK``,
+
+ **user**: Your Rackspace user ID
+
+ **key**: Your Rackspace access key
+
+You can specify any bucket name you want; however, the bucket must exist before you
+can start using it. If you need to create the bucket, you can use the storage API.
+For example, to create ``bucket-1`` from our previous example::
+
+ >>> from storages.backends.apache_libcloud import LibCloudStorage
+ >>> store = LibCloudStorage('amazon_1')
+ >>> store.driver.create_container('bucket-1')
+
+
+``DEFAULT_LIBCLOUD_PROVIDER``
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Once you have defined your Libcloud providers, you have the option of
+setting one provider as the default provider of Libcloud storage. This
+is done setting ``DEFAULT_LIBCLOUD_PROVIDER`` to the key in
+``LIBCLOUD_PROVIDER`` that you want to use as the default provider.
+For example, if you want the ``amazon-1`` provider to be the default
+provider, use::
+
+ DEFAULT_LIBCLOUD_PROVIDER = 'amazon-1'
+
+If ``DEFAULT_LIBCLOUD_PROVIDER`` isn't set, the Libcloud backend will assume
+that the default storage backend is named ``default``. Therefore, you can
+avoid settings DEFAULT_LIBCLOUD_PROVIDER by simply naming one of your
+Libcloud providers ``default``::
+
+ LIBCLOUD_PROVIDERS = {
+ 'default': {
+ 'type': ...
+ },
+ }
+
+
+``DEFAULT_FILE_STORAGE``
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+If you want your Libcloud storage to be the default Django file store, you can
+set::
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.apache_libcloud.LibCloudStorage'
+
+Your default Libcloud provider will be used as the file store.
+
+Certifcate authorities
+----------------------
+
+Libcloud uses HTTPS connections, and in order for these HTTPS connections are
+correctly signed, certificate authorities must be present. On some platforms
+(most notably, OS X and Windows), the required certificates may not be available
+by default. To test
+
+ >>> from storages.backends.apache_libcloud import LibCloudStorage
+ >>> store = LibCloudStorage('amazon_1')
+ Traceback (most recent call last):
+ ...
+ ImproperlyConfigured: Unable to create libcloud driver type libcloud.storage.types.Provider.S3_US_STANDARD_HOST: No CA Certificates were found in CA_CERTS_PATH.
+
+If you get this error, you need to install a certificate authority.
+`Download a certificate authority file`_, and then put the following two lines
+into your settings.py::
+
+ import libcloud.security
+ libcloud.security.CA_CERTS_PATH.append("/path/to/your/cacerts.pem")
+
+.. _Download a certificate authority file: http://curl.haxx.se/ca/cacert.pem
+
diff --git a/docs/backends/azure.rst b/docs/backends/azure.rst
new file mode 100644
index 0000000..6433b17
--- /dev/null
+++ b/docs/backends/azure.rst
@@ -0,0 +1,32 @@
+Azure Storage
+===========
+
+A custom storage system for Django using Windows Azure Storage backend.
+
+
+Settings
+*******
+
+``DEFAULT_FILE_STORAGE``
+
+This setting sets the path to the Azure storage class::
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
+
+
+``AZURE_ACCOUNT_NAME``
+
+This setting is the Windows Azure Storage Account name, which in many cases is also the first part of the url for instance: http://azure_account_name.blob.core.windows.net/ would mean::
+
+ AZURE_ACCOUNT_NAME = "azure_account_name"
+
+``AZURE_ACCOUNT_KEY``
+
+This is the private key that gives your Django app access to your Windows Azure Account.
+
+``AZURE_CONTAINER``
+
+This is where the files uploaded through your Django app will be uploaded.
+The container must be already created as the storage system will not attempt to create it.
+
+
diff --git a/docs/backends/couchdb.rst b/docs/backends/couchdb.rst
new file mode 100644
index 0000000..f93761b
--- /dev/null
+++ b/docs/backends/couchdb.rst
@@ -0,0 +1,5 @@
+CouchDB
+=======
+
+A custom storage system for Django with CouchDB backend.
+
diff --git a/docs/backends/database.rst b/docs/backends/database.rst
new file mode 100644
index 0000000..bc86e1c
--- /dev/null
+++ b/docs/backends/database.rst
@@ -0,0 +1,59 @@
+Database
+========
+
+Class DatabaseStorage can be used with either FileField or ImageField. It can be used to map filenames to database blobs: so you have to use it with a special additional table created manually. The table should contain a pk-column for filenames (better to use the same type that FileField uses: nvarchar(100)), blob field (image type for example) and size field (bigint). You can't just create blob column in the same table, where you defined FileField, since there is no way to find required row in the save() method. Also size field is required to obtain better perfomance (see size() method).
+
+So you can use it with different FileFields and even with different "upload_to" variables used. Thus it implements a kind of root filesystem, where you can define dirs using "upload_to" with FileField and store any files in these dirs.
+
+It uses either settings.DB_FILES_URL or constructor param 'base_url' (see __init__()) to create urls to files. Base url should be mapped to view that provides access to files. To store files in the same table, where FileField is defined you have to define your own field and provide extra argument (e.g. pk) to save().
+
+Raw sql is used for all operations. In constructor or in DB_FILES of settings.py () you should specify a dictionary with db_table, fname_column, blob_column, size_column and 'base_url'. For example I just put to the settings.py the following line::
+
+ DB_FILES = {
+ 'db_table': 'FILES',
+ 'fname_column': 'FILE_NAME',
+ 'blob_column': 'BLOB',
+ 'size_column': 'SIZE',
+ 'base_url': 'http://localhost/dbfiles/'
+ }
+
+And use it with ImageField as following::
+
+ player_photo = models.ImageField(upload_to="player_photos", storage=DatabaseStorage() )
+
+DatabaseStorage class uses your settings.py file to perform custom connection to your database.
+
+The reason to use custom connection: http://code.djangoproject.com/ticket/5135 Connection string looks like::
+
+ cnxn = pyodbc.connect('DRIVER={SQL Server};SERVER=localhost;DATABASE=testdb;UID=me;PWD=pass')
+
+It's based on pyodbc module, so can be used with any database supported by pyodbc. I've tested it with MS Sql Express 2005.
+
+Note: It returns special path, which should be mapped to special view, which returns requested file::
+
+ def image_view(request, filename):
+ import os
+ from django.http import HttpResponse
+ from django.conf import settings
+ from django.utils._os import safe_join
+ from filestorage import DatabaseStorage
+ from django.core.exceptions import ObjectDoesNotExist
+
+ storage = DatabaseStorage()
+
+ try:
+ image_file = storage.open(filename, 'rb')
+ file_content = image_file.read()
+ except:
+ filename = 'no_image.gif'
+ path = safe_join(os.path.abspath(settings.MEDIA_ROOT), filename)
+ if not os.path.exists(path):
+ raise ObjectDoesNotExist
+ no_image = open(path, 'rb')
+ file_content = no_image.read()
+
+ response = HttpResponse(file_content, mimetype="image/jpeg")
+ response['Content-Disposition'] = 'inline; filename=%s'%filename
+ return response
+
+Note: If filename exist, blob will be overwritten, to change this remove get_available_name(self, name), so Storage.get_available_name(self, name) will be used to generate new filename.
diff --git a/docs/backends/ftp.rst b/docs/backends/ftp.rst
new file mode 100644
index 0000000..6b894f0
--- /dev/null
+++ b/docs/backends/ftp.rst
@@ -0,0 +1,7 @@
+FTP
+===
+
+.. warning:: This FTP storage is not prepared to work with large files, because it uses memory for temporary data storage. It also does not close FTP connection automatically (but open it lazy and try to reestablish when disconnected).
+
+This implementation was done preliminary for upload files in admin to remote FTP location and read them back on site by HTTP. It was tested mostly in this configuration, so read/write using FTPStorageFile class may break.
+
diff --git a/docs/backends/image.rst b/docs/backends/image.rst
new file mode 100644
index 0000000..b03e1d4
--- /dev/null
+++ b/docs/backends/image.rst
@@ -0,0 +1,5 @@
+Image
+=====
+
+A custom FileSystemStorage made for normalizing extensions. It lets PIL look at the file to determine the format and append an always lower-case extension based on the results.
+
diff --git a/docs/backends/mogilefs.rst b/docs/backends/mogilefs.rst
new file mode 100644
index 0000000..a330fdd
--- /dev/null
+++ b/docs/backends/mogilefs.rst
@@ -0,0 +1,55 @@
+MogileFS
+========
+
+This storage allows you to use MogileFS, it comes from this blog post.
+
+The MogileFS storage backend is fairly simple: it uses URLs (or, rather, parts of URLs) as keys into the mogile database. When the user requests a file stored by mogile (say, an avatar), the URL gets passed to a view which, using a client to the mogile tracker, retrieves the "correct" path (the path that points to the actual file data). The view will then either return the path(s) to perlbal to reproxy, or, if you're not using perlbal to reproxy (which you should), it serves the data of the file directly from django.
+
+* ``MOGILEFS_DOMAIN``: The mogile domain that files should read from/written to, e.g "production"
+* ``MOGILEFS_TRACKERS``: A list of trackers to connect to, e.g. ["foo.sample.com:7001", "bar.sample.com:7001"]
+* ``MOGILEFS_MEDIA_URL`` (optional): The prefix for URLs that point to mogile files. This is used in a similar way to ``MEDIA_URL``, e.g. "/mogilefs/"
+* ``SERVE_WITH_PERLBAL``: Boolean that, when True, will pass the paths back in the response in the ``X-REPROXY-URL`` header. If False, django will serve all mogile media files itself (bad idea for production, but useful if you're testing on a setup that doesn't have perlbal running)
+* ``DEFAULT_FILE_STORAGE``: This is the class that's used for the backend. You'll want to set this to ``project.app.storages.MogileFSStorage`` (or wherever you've installed the backend)
+
+Getting files into mogile
+*************************
+
+The great thing about file backends is that we just need to specify the backend in the model file and everything is taken care for us - all the default save() methods work correctly.
+
+For Fluther, we have two main media types we use mogile for: avatars and thumbnails. Mogile defines "classes" that dictate how each type of file is replicated - so you can make sure you have 3 copies of the original avatar but only 1 of the thumbnail.
+
+In order for classes to behave nicely with the backend framework, we've had to do a little tomfoolery. (This is something that may change in future versions of the filestorage framework).
+
+Here's what the models.py file looks like for the avatars::
+
+ from django.core.filestorage import storage
+
+ # TODO: Find a better way to deal with classes. Maybe a generator?
+ class AvatarStorage(storage.__class__):
+ mogile_class = 'avatar'
+
+ class ThumbnailStorage(storage.__class__):
+ mogile_class = 'thumb'
+
+ class Avatar(models.Model):
+ user = models.ForeignKey(User, null=True, blank=True)
+ image = models.ImageField(storage=AvatarStorage())
+ thumb = models.ImageField(storage=ThumbnailStorage())
+
+Each of the custom storage classes defines a class attribute which gets passed to the mogile backend behind the scenes. If you don't want to worry about mogile classes, don't need to define a custom storage engine or specify it in the field - the default should work just fine.
+
+Serving files from mogile
+*************************
+
+Now, all we need to do is plug in the view that serves up mogile data.
+
+Here's what we use::
+
+ urlpatterns += patterns(",
+ (r'^%s(?P<key>.*)' % settings.MOGILEFS_MEDIA_URL[1:],
+ 'MogileFSStorage.serve_mogilefs_file')
+ )
+
+Any url beginning with the value of ``MOGILEFS_MEDIA_URL`` will get passed to our view. Since ``MOGILEFS_MEDIA_URL`` requires a leading slash (like ``MEDIA_URL``), we strip that off and pass the rest of the url over to the view.
+
+That's it! Happy mogiling!
diff --git a/docs/backends/mongodb.rst b/docs/backends/mongodb.rst
new file mode 100644
index 0000000..2ea997f
--- /dev/null
+++ b/docs/backends/mongodb.rst
@@ -0,0 +1,21 @@
+MongoDB
+=======
+
+A GridFS backend that works with django_mongodb_engine and the upcoming GSoC 2010 MongoDB backend which gets developed by Alex Gaynor.
+
+Usage (in settings.py)::
+
+ DATABASES = {
+ 'default': {
+ 'ENGINE': 'django_mongodb_engine.mongodb',
+ 'NAME': 'test',
+ 'USER': '',
+ 'PASSWORD': '',
+ 'HOST': 'localhost',
+ 'PORT': 27017,
+ 'SUPPORTS_TRANSACTIONS': False,
+ }
+ }
+
+ DEFAULT_FILE_STORAGE = 'storages.backends.mongodb.GridFSStorage'
+ GRIDFS_DATABASE = 'default'
diff --git a/docs/backends/overwrite.rst b/docs/backends/overwrite.rst
new file mode 100644
index 0000000..66aa875
--- /dev/null
+++ b/docs/backends/overwrite.rst
@@ -0,0 +1,5 @@
+Overwrite
+=========
+
+This is a simple implementation overwrite of the FileSystemStorage. It removes the addition of an '_' to the filename if the file already exists in the storage system. I needed a model in the admin area to act exactly like a file system (overwriting the file if it already exists).
+
diff --git a/docs/backends/rackspace-cloudfiles.rst b/docs/backends/rackspace-cloudfiles.rst
new file mode 100644
index 0000000..99c41d2
--- /dev/null
+++ b/docs/backends/rackspace-cloudfiles.rst
@@ -0,0 +1,37 @@
+Rackspace CloudFiles
+====================
+
+Requirements
+************
+
+Mosso's Cloud Files python module http://www.mosso.com/cloudfiles.jsp
+
+Usage
+*****
+
+Add the following to your project's settings.py file::
+
+ CLOUDFILES_USERNAME = 'YourUsername'
+ CLOUDFILES_API_KEY = 'YourAPIKey'
+ CLOUDFILES_CONTAINER = 'ContainerName'
+ DEFAULT_FILE_STORAGE = 'backends.mosso.CloudFilesStorage'
+
+ # Optional - use SSL
+ CLOUDFILES_SSL = True
+
+Optionally, you can implement the following custom upload_to in your models.py file. This will upload the file using the file name only to Cloud Files (e.g. 'myfile.jpg'). If you supply a string (e.g. upload_to='some/path'), your file name will include the path (e.g. 'some/path/myfile.jpg')::
+
+ from backends.mosso import cloudfiles_upload_to
+
+ class SomeKlass(models.Model):
+ some_field = models.ImageField(upload_to=cloudfiles_upload_to)
+
+Alternatively, if you don't want to set the DEFAULT_FILE_STORAGE, you can do the following in your models::
+
+ from backends.mosso import CloudFilesStorage, cloudfiles_upload_to
+
+ cloudfiles_storage = CloudFilesStorage()
+
+ class SomeKlass(models.Model):
+ some_field = models.ImageField(storage=cloudfiles_storage,
+ upload_to=cloudfiles_upload_to)
diff --git a/docs/backends/sftp.rst b/docs/backends/sftp.rst
new file mode 100644
index 0000000..6f19f9f
--- /dev/null
+++ b/docs/backends/sftp.rst
@@ -0,0 +1,5 @@
+SFTP
+====
+
+Take a look at the top of the backend's file for the documentation.
+
diff --git a/docs/backends/symlinkcopy.rst b/docs/backends/symlinkcopy.rst
new file mode 100644
index 0000000..be4abe1
--- /dev/null
+++ b/docs/backends/symlinkcopy.rst
@@ -0,0 +1,6 @@
+Symlink or copy
+===============
+
+Stores symlinks to files instead of actual files whenever possible
+
+When a file that's being saved is currently stored in the symlink_within directory, then symlink the file. Otherwise, copy the file.
diff --git a/docs/conf.py b/docs/conf.py
new file mode 100644
index 0000000..c1052fa
--- /dev/null
+++ b/docs/conf.py
@@ -0,0 +1,257 @@
+# -*- coding: utf-8 -*-
+#
+# django-storages documentation build configuration file, created by
+# sphinx-quickstart on Sun Aug 28 13:44:45 2011.
+#
+# This file is execfile()d with the current directory set to its containing dir.
+#
+# Note that not all possible configuration values are present in this
+# autogenerated file.
+#
+# All configuration values have a default; values that are commented out
+# serve to show the default.
+
+import sys, os
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+sys.path.insert(0, os.path.abspath('..'))
+import storages
+
+# -- General configuration -----------------------------------------------------
+
+# If your documentation needs a minimal Sphinx version, state it here.
+#needs_sphinx = '1.0'
+
+# Add any Sphinx extension module names here, as strings. They can be extensions
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The encoding of source files.
+#source_encoding = 'utf-8-sig'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = u'django-storages'
+copyright = u'2011-2013, David Larlet, et. al.'
+
+# The version info for the project you're documenting, acts as replacement for
+# |version| and |release|, also used in various other places throughout the
+# built documents.
+#
+# The short X.Y version.
+version = storages.__version__
+# The full version, including alpha/beta/rc tags.
+release = storages.__version__
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#today = ''
+# Else, today_fmt is used as the format for a strftime call.
+#today_fmt = '%B %d, %Y'
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+exclude_patterns = ['_build']
+
+# The reST default role (used for this markup: `text`) to use for all documents.
+#default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+#modindex_common_prefix = []
+
+
+# -- Options for HTML output ---------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages. See the documentation for
+# a list of builtin themes.
+html_theme = 'default'
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further. For a list of options available for each theme, see the
+# documentation.
+#html_theme_options = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+#html_theme_path = []
+
+# The name for this set of Sphinx documents. If None, it defaults to
+# "<project> v<release> documentation".
+#html_title = None
+
+# A shorter title for the navigation bar. Default is the same as html_title.
+#html_short_title = None
+
+# The name of an image file (relative to this directory) to place at the top
+# of the sidebar.
+#html_logo = None
+
+# The name of an image file (within the static path) to use as favicon of the
+# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+#html_favicon = None
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['_static']
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+#html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#html_additional_pages = {}
+
+# If false, no module index is generated.
+#html_domain_indices = True
+
+# If false, no index is generated.
+#html_use_index = True
+
+# If true, the index is split into individual pages for each letter.
+#html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+#html_show_sourcelink = True
+
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
+#html_show_sphinx = True
+
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
+#html_show_copyright = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it. The value of this option must be the
+# base URL from which the finished HTML is served.
+#html_use_opensearch = ''
+
+# This is the file name suffix for HTML files (e.g. ".xhtml").
+#html_file_suffix = None
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'django-storagesdoc'
+
+
+# -- Options for LaTeX output --------------------------------------------------
+
+# The paper size ('letter' or 'a4').
+#latex_paper_size = 'letter'
+
+# The font size ('10pt', '11pt' or '12pt').
+#latex_font_size = '10pt'
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title, author, documentclass [howto/manual]).
+latex_documents = [
+ ('index', 'django-storages.tex', u'django-storages Documentation',
+ u'David Larlet, et. al.', 'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+#latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+#latex_use_parts = False
+
+# If true, show page references after internal links.
+#latex_show_pagerefs = False
+
+# If true, show URL addresses after external links.
+#latex_show_urls = False
+
+# Additional stuff for the LaTeX preamble.
+#latex_preamble = ''
+
+# Documents to append as an appendix to all manuals.
+#latex_appendices = []
+
+# If false, no module index is generated.
+#latex_domain_indices = True
+
+
+# -- Options for manual page output --------------------------------------------
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+ ('index', 'django-storages', u'django-storages Documentation',
+ [u'David Larlet, et. al.'], 1)
+]
+
+
+# -- Options for Epub output ---------------------------------------------------
+
+# Bibliographic Dublin Core info.
+epub_title = u'django-storages'
+epub_author = u'David Larlet, et. al.'
+epub_publisher = u'David Larlet, et. al.'
+epub_copyright = u'2011-2013, David Larlet, et. al.'
+
+# The language of the text. It defaults to the language option
+# or en if the language is not set.
+#epub_language = ''
+
+# The scheme of the identifier. Typical schemes are ISBN or URL.
+#epub_scheme = ''
+
+# The unique identifier of the text. This can be a ISBN number
+# or the project homepage.
+#epub_identifier = ''
+
+# A unique identification for the text.
+#epub_uid = ''
+
+# HTML files that should be inserted before the pages created by sphinx.
+# The format is a list of tuples containing the path and title.
+#epub_pre_files = []
+
+# HTML files shat should be inserted after the pages created by sphinx.
+# The format is a list of tuples containing the path and title.
+#epub_post_files = []
+
+# A list of files that should not be packed into the epub file.
+#epub_exclude_files = []
+
+# The depth of the table of contents in toc.ncx.
+#epub_tocdepth = 3
+
+# Allow duplicate toc entries.
+#epub_tocdup = True
diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644
index 0000000..fa6e013
--- /dev/null
+++ b/docs/index.rst
@@ -0,0 +1,49 @@
+django-storages
+===============
+
+django-storages is a collection of custom storage backends for Django.
+
+.. toctree::
+ :maxdepth: 1
+ :glob:
+
+ backends/*
+
+Installation
+************
+
+Use pip to install from PyPI::
+
+ pip install django-storages
+
+Add ``storages`` to your settings.py file::
+
+ INSTALLED_APPS = (
+ ...
+ 'storages',
+ ...
+ )
+
+Each storage backend has its own unique settings you will need to add to your settings.py file. Read the documentation for your storage engine(s) of choice to determine what you need to add.
+
+Contributing
+************
+
+To contribute to django-storages `create a fork`_ on bitbucket. Clone your fork, make some changes, and submit a pull request.
+
+.. _create a fork: https://bitbucket.org/david/django-storages/fork
+
+Issues
+******
+
+Use the bitbucket `issue tracker`_ for django-storages to submit bugs, issues, and feature requests.
+
+.. _issue tracker: https://bitbucket.org/david/django-storages/issues
+
+Indices and tables
+==================
+
+* :ref:`genindex`
+* :ref:`modindex`
+* :ref:`search`
+
diff --git a/docs/make.bat b/docs/make.bat
new file mode 100644
index 0000000..2001686
--- /dev/null
+++ b/docs/make.bat
@@ -0,0 +1,170 @@
+@ECHO OFF
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=sphinx-build
+)
+set BUILDDIR=_build
+set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
+if NOT "%PAPER%" == "" (
+ set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
+)
+
+if "%1" == "" goto help
+
+if "%1" == "help" (
+ :help
+ echo.Please use `make ^<target^>` where ^<target^> is one of
+ echo. html to make standalone HTML files
+ echo. dirhtml to make HTML files named index.html in directories
+ echo. singlehtml to make a single large HTML file
+ echo. pickle to make pickle files
+ echo. json to make JSON files
+ echo. htmlhelp to make HTML files and a HTML help project
+ echo. qthelp to make HTML files and a qthelp project
+ echo. devhelp to make HTML files and a Devhelp project
+ echo. epub to make an epub
+ echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
+ echo. text to make text files
+ echo. man to make manual pages
+ echo. changes to make an overview over all changed/added/deprecated items
+ echo. linkcheck to check all external links for integrity
+ echo. doctest to run all doctests embedded in the documentation if enabled
+ goto end
+)
+
+if "%1" == "clean" (
+ for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
+ del /q /s %BUILDDIR%\*
+ goto end
+)
+
+if "%1" == "html" (
+ %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The HTML pages are in %BUILDDIR%/html.
+ goto end
+)
+
+if "%1" == "dirhtml" (
+ %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
+ goto end
+)
+
+if "%1" == "singlehtml" (
+ %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
+ goto end
+)
+
+if "%1" == "pickle" (
+ %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished; now you can process the pickle files.
+ goto end
+)
+
+if "%1" == "json" (
+ %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished; now you can process the JSON files.
+ goto end
+)
+
+if "%1" == "htmlhelp" (
+ %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished; now you can run HTML Help Workshop with the ^
+.hhp project file in %BUILDDIR%/htmlhelp.
+ goto end
+)
+
+if "%1" == "qthelp" (
+ %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished; now you can run "qcollectiongenerator" with the ^
+.qhcp project file in %BUILDDIR%/qthelp, like this:
+ echo.^> qcollectiongenerator %BUILDDIR%\qthelp\django-storages.qhcp
+ echo.To view the help file:
+ echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-storages.ghc
+ goto end
+)
+
+if "%1" == "devhelp" (
+ %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished.
+ goto end
+)
+
+if "%1" == "epub" (
+ %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The epub file is in %BUILDDIR%/epub.
+ goto end
+)
+
+if "%1" == "latex" (
+ %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
+ goto end
+)
+
+if "%1" == "text" (
+ %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The text files are in %BUILDDIR%/text.
+ goto end
+)
+
+if "%1" == "man" (
+ %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Build finished. The manual pages are in %BUILDDIR%/man.
+ goto end
+)
+
+if "%1" == "changes" (
+ %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.The overview file is in %BUILDDIR%/changes.
+ goto end
+)
+
+if "%1" == "linkcheck" (
+ %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Link check complete; look for any errors in the above output ^
+or in %BUILDDIR%/linkcheck/output.txt.
+ goto end
+)
+
+if "%1" == "doctest" (
+ %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
+ if errorlevel 1 exit /b 1
+ echo.
+ echo.Testing of doctests in the sources finished, look at the ^
+results in %BUILDDIR%/doctest/output.txt.
+ goto end
+)
+
+:end