~~~~~~~~~~~~~~~~~~~
- Changed ``admin_details`` to not include superfluous ``<br>`` tags.
- Changed the ``accept_file`` methods on file mixins to return bools and
not raise exceptions.
- Fixed the ``OverwriteMixin`` to call ``delete_files`` so that e.g.
the ``imagefield`` gets a chance of removing stale
thumbnails.
- Dropped the useless ``AbstractFile``, and renamed ``AbstractFileBase``
to ``AbstractFile``.
- Added a guide on how to swap out the file model.
- Added a hint to the files changelist that drag-drop upload is
possible.
- Disabled the drag-drop upload on the root folder (which would not have
worked anyway, because files cannot be added to the root folder).
- Added ``unify`` so that only one quoting style is used in the code.
- Changed the order of ``accept_file`` methods called to the order of
``FILE_FIELDS`` instead of the MRO (resp. the classes where the file
fields are defined initially).
- Fixed the double saves in ``OverwriteMixin``, and hopefully avoided
edge case-y problems with ``delete_files``.