1. 15 May, 2018 1 commit
  2. 08 May, 2018 4 commits
  3. 07 May, 2018 2 commits
  4. 18 Apr, 2018 1 commit
  5. 06 Feb, 2018 14 commits
  6. 01 Feb, 2018 1 commit
  7. 31 Jan, 2018 7 commits
  8. 30 Jan, 2018 2 commits
    • Mikhail Vagin's avatar
      Add Djanog 2.0 deprecated methods · be3ade29
      Mikhail Vagin authored
      FileField methods get_directory_name() and get_filename() was deprecated in Django 2.0, so adding them manually to keep support of previous Django versions.
      be3ade29
    • Mark Allen's avatar
      Add Python 2 compatibility for If-Last-Modified · ea5f54cd
      Mark Allen authored
      The serve method of the DjangoStreamingServer class support
      If-Last-Modified, and for this it requires a timestamp of the last
      modified time of the private file. Python 3 datetimes have a
      timestamp method, which is used to generate the required timestamp,
      but this isn't available in Python 2. Serving files on S3 therefore
      fails if Python 2 is used.
      
      This commit adds an alternative means of generating the timestamp
      if Python 2 is used.
      ea5f54cd
  9. 04 Dec, 2017 3 commits
  10. 03 Dec, 2017 1 commit
  11. 20 Nov, 2017 2 commits
  12. 15 Oct, 2017 1 commit
  13. 09 Oct, 2017 1 commit
    • Oleksandr's avatar
      fix UnicodeDecodeError with cyrillic file names · 03eca312
      Oleksandr authored
      Django Version:	1.11.6
      Exception Type:	UnicodeDecodeError
      Exception Value:	
      'ascii' codec can't decode byte 0xd1 in position 0: ordinal not in range(128)
      Exception Location:	../site-packages/django/core/files/storage.py in get_available_name, line 79
      03eca312