├── .gitignore ├── LICENSE ├── LICENSE-APACHE-2.0.txt ├── README.rst ├── __init__.py ├── data ├── dumps │ └── .gitignore ├── import │ └── .gitignore └── lists │ └── .gitignore ├── db └── .gitignore ├── libs └── python │ ├── lru_cache.py │ └── modified_collections.py ├── log ├── curl_logs │ └── .gitignore └── work_logs │ └── .gitignore ├── manage.py ├── media ├── css │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ └── jquery-ui.css ├── flash │ └── Jplayer.swf ├── img │ └── logo_ufal_73_transparent.png ├── js │ ├── datetimepicker │ │ ├── LICENSE │ │ ├── datetimepicker_css.js │ │ └── images2 │ │ │ ├── cal.gif │ │ │ ├── cal_close.gif │ │ │ ├── cal_fastforward.gif │ │ │ ├── cal_fastreverse.gif │ │ │ ├── cal_forward.gif │ │ │ ├── cal_minus.gif │ │ │ ├── cal_plus.gif │ │ │ └── cal_reverse.gif │ ├── easyXDM.min.js │ ├── jquery-ui.min.js │ ├── jquery.jplayer.min.js │ ├── jquery.js │ ├── jquery.multi-open-accordion.js │ └── name.html └── wavplayer │ ├── domready.js │ ├── expressInstall.swf │ ├── swfobject.js │ ├── tinywav.js │ ├── wavplayer.js │ └── wavplayer.swf ├── scripts ├── copyback_transcriptions.sh ├── dumpdata.sh ├── fetch_dgdir.sh ├── setup_script.py └── tpt-static-files.lst ├── static └── .gitignore ├── templates ├── base.html └── registration │ ├── logged_out.html │ └── login.html ├── transcription ├── __init__.py ├── admin.py ├── alex_da ├── alex_da-default │ ├── __init__.py │ ├── components │ │ ├── __init__.py │ │ └── slu │ │ │ ├── __init__.py │ │ │ ├── da.py │ │ │ └── exceptions.py │ ├── corpustools │ │ ├── __init__.py │ │ └── wavaskey.py │ ├── ml │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── features.py │ │ └── hypothesis.py │ └── utils │ │ ├── __init__.py │ │ └── text.py ├── autopath.py ├── context_processors.py ├── crowdflower.py ├── db_fields.py ├── dg_util.py ├── form_fields.py ├── forms.py ├── models.py ├── session_xml.py ├── static │ └── slotvalues │ │ ├── from_stop.txt │ │ ├── stop.txt │ │ └── to_stop.txt ├── templates │ ├── crowdflower │ │ ├── .gitignore │ │ ├── job-easyxdm.cml.tpt │ │ ├── job-iframe.cml.tpt │ │ └── job-linked.cml.tpt │ └── trs │ │ ├── base_form.html │ │ ├── censoring.html │ │ ├── code.html │ │ ├── create-jobs.html │ │ ├── dbaccess-error.html │ │ ├── delete-jobs.html │ │ ├── delete-list.html │ │ ├── dialogue-stats.html │ │ ├── donotspam.html │ │ ├── finished.html │ │ ├── goldbreaking.html │ │ ├── home.html │ │ ├── hooks-fired.html │ │ ├── import.html │ │ ├── imported.html │ │ ├── incomplete_words.html │ │ ├── jobs-created.html │ │ ├── jobs-deleted.html │ │ ├── list-deleted.html │ │ ├── localnames-cir.html │ │ ├── nonspeech_sounds.html │ │ ├── nosuchcid.html │ │ ├── numerals.html │ │ ├── open_annions.html │ │ ├── ortography.html │ │ ├── overview.html │ │ ├── overview_dialogs.html │ │ ├── reports-collected.html │ │ ├── reuse-worklogs.html │ │ ├── transcribe.html │ │ ├── wav_player.html │ │ ├── work_measures.html │ │ ├── worker-ids-filled-in.html │ │ └── worklogs-reused.html ├── tests.py ├── tr_normalisation.py ├── urls.py ├── util.py ├── validator.py ├── views.py └── widgets.py └── trs_site ├── __init__.py ├── localsettings.py.example ├── settings.py ├── site_urls.py ├── views.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/LICENSE-APACHE-2.0.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/dumps/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /data/import/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /data/lists/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /db/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /libs/python/lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/libs/python/lru_cache.py -------------------------------------------------------------------------------- /libs/python/modified_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/libs/python/modified_collections.py -------------------------------------------------------------------------------- /log/curl_logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /log/work_logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/manage.py -------------------------------------------------------------------------------- /media/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /media/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /media/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /media/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /media/css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /media/css/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /media/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /media/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/css/jquery-ui.css -------------------------------------------------------------------------------- /media/flash/Jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/flash/Jplayer.swf -------------------------------------------------------------------------------- /media/img/logo_ufal_73_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/img/logo_ufal_73_transparent.png -------------------------------------------------------------------------------- /media/js/datetimepicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/LICENSE -------------------------------------------------------------------------------- /media/js/datetimepicker/datetimepicker_css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/datetimepicker_css.js -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_close.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_fastforward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_fastforward.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_fastreverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_fastreverse.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_forward.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_minus.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_plus.gif -------------------------------------------------------------------------------- /media/js/datetimepicker/images2/cal_reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/datetimepicker/images2/cal_reverse.gif -------------------------------------------------------------------------------- /media/js/easyXDM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/easyXDM.min.js -------------------------------------------------------------------------------- /media/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/jquery-ui.min.js -------------------------------------------------------------------------------- /media/js/jquery.jplayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/jquery.jplayer.min.js -------------------------------------------------------------------------------- /media/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/jquery.js -------------------------------------------------------------------------------- /media/js/jquery.multi-open-accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/js/jquery.multi-open-accordion.js -------------------------------------------------------------------------------- /media/js/name.html: -------------------------------------------------------------------------------- 1 | ../../static/easyXDM-master/work/name.html -------------------------------------------------------------------------------- /media/wavplayer/domready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/domready.js -------------------------------------------------------------------------------- /media/wavplayer/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/expressInstall.swf -------------------------------------------------------------------------------- /media/wavplayer/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/swfobject.js -------------------------------------------------------------------------------- /media/wavplayer/tinywav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/tinywav.js -------------------------------------------------------------------------------- /media/wavplayer/wavplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/wavplayer.js -------------------------------------------------------------------------------- /media/wavplayer/wavplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/media/wavplayer/wavplayer.swf -------------------------------------------------------------------------------- /scripts/copyback_transcriptions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/scripts/copyback_transcriptions.sh -------------------------------------------------------------------------------- /scripts/dumpdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/scripts/dumpdata.sh -------------------------------------------------------------------------------- /scripts/fetch_dgdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/scripts/fetch_dgdir.sh -------------------------------------------------------------------------------- /scripts/setup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/scripts/setup_script.py -------------------------------------------------------------------------------- /scripts/tpt-static-files.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/scripts/tpt-static-files.lst -------------------------------------------------------------------------------- /static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/templates/registration/logged_out.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /transcription/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/__init__.py -------------------------------------------------------------------------------- /transcription/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/admin.py -------------------------------------------------------------------------------- /transcription/alex_da: -------------------------------------------------------------------------------- 1 | alex_da-default/ -------------------------------------------------------------------------------- /transcription/alex_da-default/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/__init__.py -------------------------------------------------------------------------------- /transcription/alex_da-default/components/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /transcription/alex_da-default/components/slu/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /transcription/alex_da-default/components/slu/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/components/slu/da.py -------------------------------------------------------------------------------- /transcription/alex_da-default/components/slu/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/components/slu/exceptions.py -------------------------------------------------------------------------------- /transcription/alex_da-default/corpustools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/corpustools/__init__.py -------------------------------------------------------------------------------- /transcription/alex_da-default/corpustools/wavaskey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/corpustools/wavaskey.py -------------------------------------------------------------------------------- /transcription/alex_da-default/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transcription/alex_da-default/ml/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/ml/exceptions.py -------------------------------------------------------------------------------- /transcription/alex_da-default/ml/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/ml/features.py -------------------------------------------------------------------------------- /transcription/alex_da-default/ml/hypothesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/ml/hypothesis.py -------------------------------------------------------------------------------- /transcription/alex_da-default/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/utils/__init__.py -------------------------------------------------------------------------------- /transcription/alex_da-default/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/alex_da-default/utils/text.py -------------------------------------------------------------------------------- /transcription/autopath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/autopath.py -------------------------------------------------------------------------------- /transcription/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/context_processors.py -------------------------------------------------------------------------------- /transcription/crowdflower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/crowdflower.py -------------------------------------------------------------------------------- /transcription/db_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/db_fields.py -------------------------------------------------------------------------------- /transcription/dg_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/dg_util.py -------------------------------------------------------------------------------- /transcription/form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/form_fields.py -------------------------------------------------------------------------------- /transcription/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/forms.py -------------------------------------------------------------------------------- /transcription/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/models.py -------------------------------------------------------------------------------- /transcription/session_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/session_xml.py -------------------------------------------------------------------------------- /transcription/static/slotvalues/from_stop.txt: -------------------------------------------------------------------------------- 1 | stop.txt -------------------------------------------------------------------------------- /transcription/static/slotvalues/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/static/slotvalues/stop.txt -------------------------------------------------------------------------------- /transcription/static/slotvalues/to_stop.txt: -------------------------------------------------------------------------------- 1 | stop.txt -------------------------------------------------------------------------------- /transcription/templates/crowdflower/.gitignore: -------------------------------------------------------------------------------- 1 | /*.cml 2 | /jobs.lst 3 | -------------------------------------------------------------------------------- /transcription/templates/crowdflower/job-easyxdm.cml.tpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/crowdflower/job-easyxdm.cml.tpt -------------------------------------------------------------------------------- /transcription/templates/crowdflower/job-iframe.cml.tpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/crowdflower/job-iframe.cml.tpt -------------------------------------------------------------------------------- /transcription/templates/crowdflower/job-linked.cml.tpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/crowdflower/job-linked.cml.tpt -------------------------------------------------------------------------------- /transcription/templates/trs/base_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/base_form.html -------------------------------------------------------------------------------- /transcription/templates/trs/censoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/censoring.html -------------------------------------------------------------------------------- /transcription/templates/trs/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/code.html -------------------------------------------------------------------------------- /transcription/templates/trs/create-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/create-jobs.html -------------------------------------------------------------------------------- /transcription/templates/trs/dbaccess-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/dbaccess-error.html -------------------------------------------------------------------------------- /transcription/templates/trs/delete-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/delete-jobs.html -------------------------------------------------------------------------------- /transcription/templates/trs/delete-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/delete-list.html -------------------------------------------------------------------------------- /transcription/templates/trs/dialogue-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/dialogue-stats.html -------------------------------------------------------------------------------- /transcription/templates/trs/donotspam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/donotspam.html -------------------------------------------------------------------------------- /transcription/templates/trs/finished.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/finished.html -------------------------------------------------------------------------------- /transcription/templates/trs/goldbreaking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/goldbreaking.html -------------------------------------------------------------------------------- /transcription/templates/trs/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/home.html -------------------------------------------------------------------------------- /transcription/templates/trs/hooks-fired.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/hooks-fired.html -------------------------------------------------------------------------------- /transcription/templates/trs/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/import.html -------------------------------------------------------------------------------- /transcription/templates/trs/imported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/imported.html -------------------------------------------------------------------------------- /transcription/templates/trs/incomplete_words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/incomplete_words.html -------------------------------------------------------------------------------- /transcription/templates/trs/jobs-created.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/jobs-created.html -------------------------------------------------------------------------------- /transcription/templates/trs/jobs-deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/jobs-deleted.html -------------------------------------------------------------------------------- /transcription/templates/trs/list-deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/list-deleted.html -------------------------------------------------------------------------------- /transcription/templates/trs/localnames-cir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/localnames-cir.html -------------------------------------------------------------------------------- /transcription/templates/trs/nonspeech_sounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/nonspeech_sounds.html -------------------------------------------------------------------------------- /transcription/templates/trs/nosuchcid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/nosuchcid.html -------------------------------------------------------------------------------- /transcription/templates/trs/numerals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/numerals.html -------------------------------------------------------------------------------- /transcription/templates/trs/open_annions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/open_annions.html -------------------------------------------------------------------------------- /transcription/templates/trs/ortography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/ortography.html -------------------------------------------------------------------------------- /transcription/templates/trs/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/overview.html -------------------------------------------------------------------------------- /transcription/templates/trs/overview_dialogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/overview_dialogs.html -------------------------------------------------------------------------------- /transcription/templates/trs/reports-collected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/reports-collected.html -------------------------------------------------------------------------------- /transcription/templates/trs/reuse-worklogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/reuse-worklogs.html -------------------------------------------------------------------------------- /transcription/templates/trs/transcribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/transcribe.html -------------------------------------------------------------------------------- /transcription/templates/trs/wav_player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/wav_player.html -------------------------------------------------------------------------------- /transcription/templates/trs/work_measures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/work_measures.html -------------------------------------------------------------------------------- /transcription/templates/trs/worker-ids-filled-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/worker-ids-filled-in.html -------------------------------------------------------------------------------- /transcription/templates/trs/worklogs-reused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/templates/trs/worklogs-reused.html -------------------------------------------------------------------------------- /transcription/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/tests.py -------------------------------------------------------------------------------- /transcription/tr_normalisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/tr_normalisation.py -------------------------------------------------------------------------------- /transcription/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/urls.py -------------------------------------------------------------------------------- /transcription/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/util.py -------------------------------------------------------------------------------- /transcription/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/validator.py -------------------------------------------------------------------------------- /transcription/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/views.py -------------------------------------------------------------------------------- /transcription/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/transcription/widgets.py -------------------------------------------------------------------------------- /trs_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trs_site/localsettings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/trs_site/localsettings.py.example -------------------------------------------------------------------------------- /trs_site/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/trs_site/settings.py -------------------------------------------------------------------------------- /trs_site/site_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/trs_site/site_urls.py -------------------------------------------------------------------------------- /trs_site/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/trs_site/views.py -------------------------------------------------------------------------------- /trs_site/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/django-crowdflower-annotations/HEAD/trs_site/wsgi.py --------------------------------------------------------------------------------