├── .gitignore ├── README.md ├── documentation ├── AnaforaManual.pdf ├── anaforalogo.png └── screenshots │ ├── screenshot1.png │ └── screenshot2.png ├── sample data ├── Demo Schema │ └── med-schema.xml └── sampleanaforaprojectfile │ ├── .schema │ └── demomedicalschema.xml │ ├── .setting.xml │ └── SampleProject │ └── SampleCorpus │ └── doc22 │ ├── doc22 │ ├── doc22.Medicine.stylerw.completed.xml │ └── doc22.Medicine.weitechen.completed.xml ├── src ├── README.md ├── Templates │ ├── anafora │ │ └── index.html │ ├── base.html │ ├── markFalsePositive │ │ ├── displayTask.html │ │ ├── getHeadword.xml │ │ ├── index.html │ │ └── listTask.html │ ├── showFalsePositive │ │ ├── displayTask.html │ │ ├── getHeadword.xml │ │ ├── index.html │ │ └── listTask.html │ └── testAnnotate │ │ └── index.html ├── anafora │ ├── __init__.py │ ├── anaforaAuthMiddleware.py │ ├── anaforaProjectManager.py │ ├── models.py │ ├── projectSetting.py │ ├── taskFile.py │ ├── templatetags │ │ ├── __init__.py │ │ └── index_extras.py │ ├── tests │ │ ├── __init__.py │ │ ├── databaselessTest.py │ │ ├── testAnaforaAuthMiddleware.py │ │ ├── testSettings.py │ │ ├── test_anaforaProjectManager.py │ │ ├── test_projectSetting.py │ │ ├── test_taskFile.py │ │ ├── test_urls.py │ │ └── tests.py │ ├── urls.py │ └── views.py ├── anaforaTest │ ├── README.md │ ├── __init__.py │ ├── urls.py │ └── views.py ├── bin │ └── createProject.sh ├── manage.py ├── static │ ├── css │ │ ├── jquery.contextMenu.css │ │ ├── jquery.contextMenu │ │ │ └── jquery.contextMenu.css │ │ ├── markFalsePositive │ │ │ └── style.css │ │ ├── qunit │ │ │ └── qunit-2.5.0.css │ │ ├── showFalsePositive │ │ │ └── style.css │ │ ├── style.css │ │ └── themes │ │ │ ├── README.md │ │ │ ├── apple │ │ │ ├── bg.jpg │ │ │ ├── d.png │ │ │ ├── dot_for_ie.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ ├── classic │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── dot_for_ie.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ ├── default-rtl │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── dots.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ └── default │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── style.css │ │ │ └── throbber.gif │ ├── image │ │ ├── anaforafavicon.png │ │ └── icon_remove.png │ └── js │ │ ├── Gruntfile.js │ │ ├── anafora │ │ ├── aObjSelectionMenu.js │ │ ├── anaforaAdjudicationProject.js │ │ ├── anaforaAdjudicationProjectCoreference.js │ │ ├── anaforaCrossAdjudicationProject.js │ │ ├── anaforaCrossProject.js │ │ ├── anaforaObj.js │ │ ├── anaforaPreannotationProject.js │ │ ├── anaforaProject.js │ │ ├── annotate.js │ │ ├── annotateFrame.js │ │ ├── errorHandler.js │ │ ├── eventLogging.js │ │ ├── projectSelector.js │ │ ├── propertyFrame.js │ │ ├── relationFrame.js │ │ ├── schema.js │ │ └── stablePair.js │ │ ├── lib │ │ ├── jquery.contextMenu.js │ │ ├── jquery.contextMenu.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.json-2.4.min.js │ │ ├── jquery.jstree.js │ │ ├── jquery.jstree.schema.js │ │ ├── jquery.min.js │ │ ├── jquery.scrollTo.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.position.min.js │ │ └── qunit │ │ │ └── qunit-2.5.0.js │ │ ├── package.json │ │ └── test │ │ ├── ansCSVReader.js │ │ ├── testAdjudication.js │ │ ├── testAnnotateFrame.js │ │ └── testStableMarriage.js ├── testing.py └── web │ ├── __init__.py │ ├── scripts │ ├── __init__.py │ └── testrunner.py │ ├── settings.py.template │ ├── urls.py │ └── wsgi.py └── versionhistory.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/README.md -------------------------------------------------------------------------------- /documentation/AnaforaManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/documentation/AnaforaManual.pdf -------------------------------------------------------------------------------- /documentation/anaforalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/documentation/anaforalogo.png -------------------------------------------------------------------------------- /documentation/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/documentation/screenshots/screenshot1.png -------------------------------------------------------------------------------- /documentation/screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/documentation/screenshots/screenshot2.png -------------------------------------------------------------------------------- /sample data/Demo Schema/med-schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/Demo Schema/med-schema.xml -------------------------------------------------------------------------------- /sample data/sampleanaforaprojectfile/.schema/demomedicalschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/sampleanaforaprojectfile/.schema/demomedicalschema.xml -------------------------------------------------------------------------------- /sample data/sampleanaforaprojectfile/.setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/sampleanaforaprojectfile/.setting.xml -------------------------------------------------------------------------------- /sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22 -------------------------------------------------------------------------------- /sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22.Medicine.stylerw.completed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22.Medicine.stylerw.completed.xml -------------------------------------------------------------------------------- /sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22.Medicine.weitechen.completed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/sample data/sampleanaforaprojectfile/SampleProject/SampleCorpus/doc22/doc22.Medicine.weitechen.completed.xml -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/README.md -------------------------------------------------------------------------------- /src/Templates/anafora/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/anafora/index.html -------------------------------------------------------------------------------- /src/Templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/base.html -------------------------------------------------------------------------------- /src/Templates/markFalsePositive/displayTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/markFalsePositive/displayTask.html -------------------------------------------------------------------------------- /src/Templates/markFalsePositive/getHeadword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/markFalsePositive/getHeadword.xml -------------------------------------------------------------------------------- /src/Templates/markFalsePositive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/markFalsePositive/index.html -------------------------------------------------------------------------------- /src/Templates/markFalsePositive/listTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/markFalsePositive/listTask.html -------------------------------------------------------------------------------- /src/Templates/showFalsePositive/displayTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/showFalsePositive/displayTask.html -------------------------------------------------------------------------------- /src/Templates/showFalsePositive/getHeadword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/showFalsePositive/getHeadword.xml -------------------------------------------------------------------------------- /src/Templates/showFalsePositive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/showFalsePositive/index.html -------------------------------------------------------------------------------- /src/Templates/showFalsePositive/listTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/showFalsePositive/listTask.html -------------------------------------------------------------------------------- /src/Templates/testAnnotate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/Templates/testAnnotate/index.html -------------------------------------------------------------------------------- /src/anafora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/__init__.py -------------------------------------------------------------------------------- /src/anafora/anaforaAuthMiddleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/anaforaAuthMiddleware.py -------------------------------------------------------------------------------- /src/anafora/anaforaProjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/anaforaProjectManager.py -------------------------------------------------------------------------------- /src/anafora/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/models.py -------------------------------------------------------------------------------- /src/anafora/projectSetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/projectSetting.py -------------------------------------------------------------------------------- /src/anafora/taskFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/taskFile.py -------------------------------------------------------------------------------- /src/anafora/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anafora/templatetags/index_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/templatetags/index_extras.py -------------------------------------------------------------------------------- /src/anafora/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anafora/tests/databaselessTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/databaselessTest.py -------------------------------------------------------------------------------- /src/anafora/tests/testAnaforaAuthMiddleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/testAnaforaAuthMiddleware.py -------------------------------------------------------------------------------- /src/anafora/tests/testSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/testSettings.py -------------------------------------------------------------------------------- /src/anafora/tests/test_anaforaProjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/test_anaforaProjectManager.py -------------------------------------------------------------------------------- /src/anafora/tests/test_projectSetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/test_projectSetting.py -------------------------------------------------------------------------------- /src/anafora/tests/test_taskFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/test_taskFile.py -------------------------------------------------------------------------------- /src/anafora/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/test_urls.py -------------------------------------------------------------------------------- /src/anafora/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/tests/tests.py -------------------------------------------------------------------------------- /src/anafora/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/urls.py -------------------------------------------------------------------------------- /src/anafora/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anafora/views.py -------------------------------------------------------------------------------- /src/anaforaTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anaforaTest/README.md -------------------------------------------------------------------------------- /src/anaforaTest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anaforaTest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anaforaTest/urls.py -------------------------------------------------------------------------------- /src/anaforaTest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/anaforaTest/views.py -------------------------------------------------------------------------------- /src/bin/createProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/bin/createProject.sh -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/static/css/jquery.contextMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/jquery.contextMenu.css -------------------------------------------------------------------------------- /src/static/css/jquery.contextMenu/jquery.contextMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/jquery.contextMenu/jquery.contextMenu.css -------------------------------------------------------------------------------- /src/static/css/markFalsePositive/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/markFalsePositive/style.css -------------------------------------------------------------------------------- /src/static/css/qunit/qunit-2.5.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/qunit/qunit-2.5.0.css -------------------------------------------------------------------------------- /src/static/css/showFalsePositive/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/showFalsePositive/style.css -------------------------------------------------------------------------------- /src/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/style.css -------------------------------------------------------------------------------- /src/static/css/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/README.md -------------------------------------------------------------------------------- /src/static/css/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/apple/bg.jpg -------------------------------------------------------------------------------- /src/static/css/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/apple/d.png -------------------------------------------------------------------------------- /src/static/css/themes/apple/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/apple/dot_for_ie.gif -------------------------------------------------------------------------------- /src/static/css/themes/apple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/apple/style.css -------------------------------------------------------------------------------- /src/static/css/themes/apple/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/apple/throbber.gif -------------------------------------------------------------------------------- /src/static/css/themes/classic/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/classic/d.gif -------------------------------------------------------------------------------- /src/static/css/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/classic/d.png -------------------------------------------------------------------------------- /src/static/css/themes/classic/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/classic/dot_for_ie.gif -------------------------------------------------------------------------------- /src/static/css/themes/classic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/classic/style.css -------------------------------------------------------------------------------- /src/static/css/themes/classic/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/classic/throbber.gif -------------------------------------------------------------------------------- /src/static/css/themes/default-rtl/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default-rtl/d.gif -------------------------------------------------------------------------------- /src/static/css/themes/default-rtl/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default-rtl/d.png -------------------------------------------------------------------------------- /src/static/css/themes/default-rtl/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default-rtl/dots.gif -------------------------------------------------------------------------------- /src/static/css/themes/default-rtl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default-rtl/style.css -------------------------------------------------------------------------------- /src/static/css/themes/default-rtl/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default-rtl/throbber.gif -------------------------------------------------------------------------------- /src/static/css/themes/default/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default/d.gif -------------------------------------------------------------------------------- /src/static/css/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default/d.png -------------------------------------------------------------------------------- /src/static/css/themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default/style.css -------------------------------------------------------------------------------- /src/static/css/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/css/themes/default/throbber.gif -------------------------------------------------------------------------------- /src/static/image/anaforafavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/image/anaforafavicon.png -------------------------------------------------------------------------------- /src/static/image/icon_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/image/icon_remove.png -------------------------------------------------------------------------------- /src/static/js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/Gruntfile.js -------------------------------------------------------------------------------- /src/static/js/anafora/aObjSelectionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/aObjSelectionMenu.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaAdjudicationProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaAdjudicationProject.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaAdjudicationProjectCoreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaAdjudicationProjectCoreference.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaCrossAdjudicationProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaCrossAdjudicationProject.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaCrossProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaCrossProject.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaObj.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaPreannotationProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaPreannotationProject.js -------------------------------------------------------------------------------- /src/static/js/anafora/anaforaProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/anaforaProject.js -------------------------------------------------------------------------------- /src/static/js/anafora/annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/annotate.js -------------------------------------------------------------------------------- /src/static/js/anafora/annotateFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/annotateFrame.js -------------------------------------------------------------------------------- /src/static/js/anafora/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/errorHandler.js -------------------------------------------------------------------------------- /src/static/js/anafora/eventLogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/eventLogging.js -------------------------------------------------------------------------------- /src/static/js/anafora/projectSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/projectSelector.js -------------------------------------------------------------------------------- /src/static/js/anafora/propertyFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/propertyFrame.js -------------------------------------------------------------------------------- /src/static/js/anafora/relationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/relationFrame.js -------------------------------------------------------------------------------- /src/static/js/anafora/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/schema.js -------------------------------------------------------------------------------- /src/static/js/anafora/stablePair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/anafora/stablePair.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.contextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.contextMenu.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.contextMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.contextMenu.min.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.cookie.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.hotkeys.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.json-2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.json-2.4.min.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.jstree.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.jstree.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.jstree.schema.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.min.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.scrollTo.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.ui.position.js -------------------------------------------------------------------------------- /src/static/js/lib/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/jquery.ui.position.min.js -------------------------------------------------------------------------------- /src/static/js/lib/qunit/qunit-2.5.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/lib/qunit/qunit-2.5.0.js -------------------------------------------------------------------------------- /src/static/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/package.json -------------------------------------------------------------------------------- /src/static/js/test/ansCSVReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/test/ansCSVReader.js -------------------------------------------------------------------------------- /src/static/js/test/testAdjudication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/test/testAdjudication.js -------------------------------------------------------------------------------- /src/static/js/test/testAnnotateFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/test/testAnnotateFrame.js -------------------------------------------------------------------------------- /src/static/js/test/testStableMarriage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/static/js/test/testStableMarriage.js -------------------------------------------------------------------------------- /src/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/testing.py -------------------------------------------------------------------------------- /src/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web/scripts/testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/web/scripts/testrunner.py -------------------------------------------------------------------------------- /src/web/settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/web/settings.py.template -------------------------------------------------------------------------------- /src/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/web/urls.py -------------------------------------------------------------------------------- /src/web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/src/web/wsgi.py -------------------------------------------------------------------------------- /versionhistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitechen/anafora/HEAD/versionhistory.md --------------------------------------------------------------------------------