django-transcribe 0.8.5__py3-none-any.whl → 0.8.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-transcribe
3
- Version: 0.8.5
3
+ Version: 0.8.6
4
4
  Summary: crowd source transcription
5
5
  Home-page: https://gitlab.com/byuhbll/lib/python/django-transcribe
6
6
  Author: BYU Library Software Engineering
@@ -1,4 +1,4 @@
1
- transcribe/__init__.py,sha256=AMqAM2WSrTQFzaD2tjYfcQkm7X2VLt4-J_YdWUsJm-8,78
1
+ transcribe/__init__.py,sha256=r34ohxWgkIOyeUWdJBIRYPDHXkuKpDlB3bvtkRmXdxA,78
2
2
  transcribe/admin.py,sha256=qPLL0XNzK0abIRBVRtjQq8SaEK2gzb_yyshafbxk9B4,6766
3
3
  transcribe/api.py,sha256=2m_y44ilQh87CWksHHqiE4A14javR8omlXEXm65lmC4,74
4
4
  transcribe/apps.py,sha256=XUdPQkCjpqWAKDCIaE6Mh8Q4xN5upKv95MG1u2_5pig,246
@@ -142,10 +142,10 @@ transcribe/templates/transcribe/xsl/tei-html.xsl,sha256=oOVnAZhDVDVzrQR5UEbNV-97
142
142
  transcribe/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
143
  transcribe/views/mixins.py,sha256=QmFDhWb5VCEaGatLdbsTK72jiBG2OKrlncnz79FUmto,2727
144
144
  transcribe/views/reports.py,sha256=7YD5E6CPsIfWP8hG8IFTek29cM2T29NHuowAdlTAyBs,13408
145
- transcribe/views/web.py,sha256=Uu58Kv_jCuqLx5CKiFAZYjgfoR4kDAPHAqdgPM5auC4,15348
146
- django_transcribe-0.8.5.dist-info/AUTHORS,sha256=rNmFConshTlNpyhcu4CKZSeQQMwuyVYXbeqXgRko-Yc,640
147
- django_transcribe-0.8.5.dist-info/LICENSE,sha256=I9xp13yeayqZikrv7rQrzsDWviTwy1R0phFlKtM1meg,1472
148
- django_transcribe-0.8.5.dist-info/METADATA,sha256=Q7biziDowIQUDuEW1bnts39keMiHnO4gSgStpY-LhbA,1021
149
- django_transcribe-0.8.5.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
150
- django_transcribe-0.8.5.dist-info/top_level.txt,sha256=NljSay7zO6czcjqjVmivw6VW58aXlYHVZQvnwmpy08g,11
151
- django_transcribe-0.8.5.dist-info/RECORD,,
145
+ transcribe/views/web.py,sha256=WsejNr0k2_fRTU9XKlwHsxhOB9vFUmoTJtbhkLzWuIc,15363
146
+ django_transcribe-0.8.6.dist-info/AUTHORS,sha256=rNmFConshTlNpyhcu4CKZSeQQMwuyVYXbeqXgRko-Yc,640
147
+ django_transcribe-0.8.6.dist-info/LICENSE,sha256=I9xp13yeayqZikrv7rQrzsDWviTwy1R0phFlKtM1meg,1472
148
+ django_transcribe-0.8.6.dist-info/METADATA,sha256=IzTIlPp0o_ksAQ4syaP8zBhNSaAjjHJb08siEw1XqR8,1021
149
+ django_transcribe-0.8.6.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
150
+ django_transcribe-0.8.6.dist-info/top_level.txt,sha256=NljSay7zO6czcjqjVmivw6VW58aXlYHVZQvnwmpy08g,11
151
+ django_transcribe-0.8.6.dist-info/RECORD,,
transcribe/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
1
  default_app_config = 'transcribe.apps.transcribeConfig'
2
- __version__ = '0.8.5'
2
+ __version__ = '0.8.6'
transcribe/views/web.py CHANGED
@@ -271,7 +271,7 @@ class ProjectDownloadView(mixins.AdminUsersOnlyMixin, View):
271
271
  content_type = 'application/xml'
272
272
  elif type == 'txt':
273
273
  result = project.generate_txt()
274
- content_type = 'text/plain'
274
+ content_type = 'text/plain; charset=utf-8'
275
275
  elif type == 'html':
276
276
  result = project.generate_html()
277
277
  content_type = 'text/html'