├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── Readme.md~ ├── api_query.py ├── bracketed2dsearch.py ├── compile_ext.py ├── db_util.pxd ├── db_util.pyx ├── example_en.conllu ├── exp_parser_test.py ├── lex.py ├── parsubj.pyx ├── pseudocode_ob_3.py ├── query.py ├── query_functions.cpp ├── query_functions.h ├── redone_expr.py ├── search_common.pxi ├── search_with_expr.py ├── setup.py ├── show_tree.py ├── test_search.py ├── trash_collector_d.py ├── tree.py ├── unit_test.data ├── unit_test_query.data ├── webapi ├── available_corpora.py ├── corpora.yaml ├── corpus_groups.yaml ├── css │ ├── annodoc-main.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── depsearch-main.css │ ├── depsearch.css │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── ui-icons_217bc0_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_469bdd_256x240.png │ │ ├── ui-icons_6da8d5_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_d8e7f3_256x240.png │ │ └── ui-icons_f9bd01_256x240.png │ ├── jquery-ui-redmond.css │ └── style-vis.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── js │ ├── brat │ │ ├── annotation_log.js │ │ ├── configuration.js │ │ ├── dispatcher.js │ │ ├── url_monitor.js │ │ ├── util.js │ │ └── visualizer.js │ ├── ext │ │ ├── conllu.js │ │ │ └── conllu.js │ │ ├── head.load.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.min.js │ │ ├── jquery.svg.min.js │ │ ├── jquery.svgdom.min.js │ │ ├── waypoints.min.js │ │ └── webfont.js │ ├── local │ │ ├── annodoc.js │ │ ├── collections.js │ │ └── config.js │ ├── main.js │ └── vendor │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.11.2.min.js │ │ ├── modernizr-2.8.3-respond-1.4.2.min.js │ │ └── npm.js ├── launch_webapi_via_uwsgi.sh ├── result.conllu ├── serve_webapi.py └── static │ └── fonts │ ├── Liberation_Sans-Regular.ttf │ └── PT_Sans-Caption-Web-Regular.ttf └── yacc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/README.md -------------------------------------------------------------------------------- /Readme.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/Readme.md~ -------------------------------------------------------------------------------- /api_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/api_query.py -------------------------------------------------------------------------------- /bracketed2dsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/bracketed2dsearch.py -------------------------------------------------------------------------------- /compile_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/compile_ext.py -------------------------------------------------------------------------------- /db_util.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/db_util.pxd -------------------------------------------------------------------------------- /db_util.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/db_util.pyx -------------------------------------------------------------------------------- /example_en.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/example_en.conllu -------------------------------------------------------------------------------- /exp_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/exp_parser_test.py -------------------------------------------------------------------------------- /lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/lex.py -------------------------------------------------------------------------------- /parsubj.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/parsubj.pyx -------------------------------------------------------------------------------- /pseudocode_ob_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/pseudocode_ob_3.py -------------------------------------------------------------------------------- /query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/query.py -------------------------------------------------------------------------------- /query_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/query_functions.cpp -------------------------------------------------------------------------------- /query_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/query_functions.h -------------------------------------------------------------------------------- /redone_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/redone_expr.py -------------------------------------------------------------------------------- /search_common.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/search_common.pxi -------------------------------------------------------------------------------- /search_with_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/search_with_expr.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/setup.py -------------------------------------------------------------------------------- /show_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/show_tree.py -------------------------------------------------------------------------------- /test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/test_search.py -------------------------------------------------------------------------------- /trash_collector_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/trash_collector_d.py -------------------------------------------------------------------------------- /tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/tree.py -------------------------------------------------------------------------------- /unit_test.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/unit_test.data -------------------------------------------------------------------------------- /unit_test_query.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/unit_test_query.data -------------------------------------------------------------------------------- /webapi/available_corpora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/available_corpora.py -------------------------------------------------------------------------------- /webapi/corpora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/corpora.yaml -------------------------------------------------------------------------------- /webapi/corpus_groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/corpus_groups.yaml -------------------------------------------------------------------------------- /webapi/css/annodoc-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/annodoc-main.css -------------------------------------------------------------------------------- /webapi/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap-theme.css -------------------------------------------------------------------------------- /webapi/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /webapi/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /webapi/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap.css -------------------------------------------------------------------------------- /webapi/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap.css.map -------------------------------------------------------------------------------- /webapi/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/bootstrap.min.css -------------------------------------------------------------------------------- /webapi/css/depsearch-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/depsearch-main.css -------------------------------------------------------------------------------- /webapi/css/depsearch.css: -------------------------------------------------------------------------------- 1 | /* styles specific to depsearch web UI */ 2 | 3 | .type-link { 4 | font-size: 12px; 5 | } -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /webapi/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /webapi/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /webapi/css/jquery-ui-redmond.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/jquery-ui-redmond.css -------------------------------------------------------------------------------- /webapi/css/style-vis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/css/style-vis.css -------------------------------------------------------------------------------- /webapi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/favicon.ico -------------------------------------------------------------------------------- /webapi/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /webapi/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /webapi/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /webapi/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /webapi/js/brat/annotation_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/annotation_log.js -------------------------------------------------------------------------------- /webapi/js/brat/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/configuration.js -------------------------------------------------------------------------------- /webapi/js/brat/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/dispatcher.js -------------------------------------------------------------------------------- /webapi/js/brat/url_monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/url_monitor.js -------------------------------------------------------------------------------- /webapi/js/brat/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/util.js -------------------------------------------------------------------------------- /webapi/js/brat/visualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/brat/visualizer.js -------------------------------------------------------------------------------- /webapi/js/ext/conllu.js/conllu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/conllu.js/conllu.js -------------------------------------------------------------------------------- /webapi/js/ext/head.load.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/head.load.min.js -------------------------------------------------------------------------------- /webapi/js/ext/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/jquery-ui.min.js -------------------------------------------------------------------------------- /webapi/js/ext/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/jquery.min.js -------------------------------------------------------------------------------- /webapi/js/ext/jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/jquery.svg.min.js -------------------------------------------------------------------------------- /webapi/js/ext/jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/jquery.svgdom.min.js -------------------------------------------------------------------------------- /webapi/js/ext/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/waypoints.min.js -------------------------------------------------------------------------------- /webapi/js/ext/webfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/ext/webfont.js -------------------------------------------------------------------------------- /webapi/js/local/annodoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/local/annodoc.js -------------------------------------------------------------------------------- /webapi/js/local/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/local/collections.js -------------------------------------------------------------------------------- /webapi/js/local/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/local/config.js -------------------------------------------------------------------------------- /webapi/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webapi/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /webapi/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /webapi/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /webapi/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js -------------------------------------------------------------------------------- /webapi/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/js/vendor/npm.js -------------------------------------------------------------------------------- /webapi/launch_webapi_via_uwsgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/launch_webapi_via_uwsgi.sh -------------------------------------------------------------------------------- /webapi/result.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/result.conllu -------------------------------------------------------------------------------- /webapi/serve_webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/serve_webapi.py -------------------------------------------------------------------------------- /webapi/static/fonts/Liberation_Sans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/static/fonts/Liberation_Sans-Regular.ttf -------------------------------------------------------------------------------- /webapi/static/fonts/PT_Sans-Caption-Web-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/webapi/static/fonts/PT_Sans-Caption-Web-Regular.ttf -------------------------------------------------------------------------------- /yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fginter/dep_search/HEAD/yacc.py --------------------------------------------------------------------------------