├── apps ├── __init__.py ├── echo ├── init ├── dataset ├── welcome └── admin ├── dataset_src ├── __init__.py ├── models ├── modules ├── static ├── data │ └── test2 │ │ ├── corpus.db │ │ ├── f59798ca7fca12b4213e7cc224f7c7be_options.table │ │ ├── f59798ca7fca12b4213e7cc224f7c7be_models.table │ │ ├── f59798ca7fca12b4213e7cc224f7c7be_metadata.table │ │ ├── f59798ca7fca12b4213e7cc224f7c7be_fields.table │ │ └── f59798ca7fca12b4213e7cc224f7c7be_corpus.table ├── views │ ├── download │ │ └── index.html │ ├── upload │ │ ├── index.html │ │ ├── plaintext.html │ │ └── spreadsheet.html │ └── default │ │ └── index.html └── controllers │ ├── default.py │ └── download.py ├── home_src ├── __init__.py ├── models ├── modules ├── static ├── views │ ├── server.html │ ├── js_functions.js │ ├── py_functions.py │ ├── js_functions.html │ ├── py_functions.html │ ├── select_dataset.html │ └── select_server.html └── controllers │ └── default.py ├── web2py ├── tools ├── applications ├── gluon │ ├── contrib │ │ ├── __init__.py │ │ ├── minify │ │ │ ├── __init__.py │ │ │ └── htmlmin.py │ │ ├── gateways │ │ │ └── __init__.py │ │ ├── login_methods │ │ │ ├── __init__.py │ │ │ ├── pam_auth.py │ │ │ └── basic_auth.py │ │ ├── markmin │ │ │ ├── __init__.py │ │ │ └── markmin.pdf │ │ ├── plural_rules │ │ │ ├── __init__.py │ │ │ ├── ja.py │ │ │ ├── tr.py │ │ │ ├── zh.py │ │ │ ├── hi.py │ │ │ ├── ro.py │ │ │ ├── de.py │ │ │ ├── fr.py │ │ │ ├── he.py │ │ │ ├── my.py │ │ │ ├── pt.py │ │ │ ├── bg.py │ │ │ ├── hu.py │ │ │ ├── it.py │ │ │ ├── nl.py │ │ │ ├── id.py │ │ │ ├── af.py │ │ │ ├── pl.py │ │ │ ├── cs.py │ │ │ ├── lt.py │ │ │ ├── en.py │ │ │ ├── sl.py │ │ │ ├── es.py │ │ │ ├── ru.py │ │ │ ├── sk.py │ │ │ └── uk.py │ │ ├── pymysql │ │ │ ├── constants │ │ │ │ ├── __init__.py │ │ │ │ ├── FLAG.py │ │ │ │ ├── SERVER_STATUS.py │ │ │ │ ├── FIELD_TYPE.py │ │ │ │ ├── CLIENT.py │ │ │ │ └── COMMAND.py │ │ │ ├── util.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── test_example.py │ │ │ └── times.py │ │ ├── markdown │ │ │ ├── LICENSE │ │ │ └── __init__.py │ │ ├── pyuca │ │ │ └── __init__.py │ │ ├── pyrtf │ │ │ ├── __init__.py │ │ │ └── README │ │ ├── pysimplesoap │ │ │ └── __init__.py │ │ ├── fpdf │ │ │ └── __init__.py │ │ ├── memcache │ │ │ ├── PKG-INFO │ │ │ └── README │ │ ├── pyfpdf.py │ │ ├── pg8000 │ │ │ └── util.py │ │ └── heroku.py │ ├── tests │ │ ├── tests_markmin.py │ │ └── __init__.py │ ├── sql.py │ ├── xmlrpc.py │ └── myregex.py ├── site-packages │ └── __init__.py ├── MANIFEST.in ├── applications-original │ ├── __init__.py │ └── admin │ │ ├── __init__.py │ │ ├── private │ │ └── hosts.deny │ │ ├── modules │ │ └── __init__.py │ │ ├── cron │ │ ├── crontab │ │ └── expire_sessions.py │ │ ├── views │ │ ├── default │ │ │ ├── files_menu.html │ │ │ ├── uninstall.html │ │ │ ├── git_push.html │ │ │ ├── edit_plurals.html │ │ │ ├── git_pull.html │ │ │ ├── delete.html │ │ │ ├── editor_sessions.html │ │ │ ├── install_plugin.html │ │ │ ├── delete_plugin.html │ │ │ ├── peek.html │ │ │ ├── bulk_register.html │ │ │ ├── upgrade_web2py.html │ │ │ ├── change_password.html │ │ │ └── resolve.html │ │ ├── default.mobile │ │ │ ├── change_password.html │ │ │ ├── delete_plugin.html │ │ │ ├── uninstall.html │ │ │ ├── about.html │ │ │ ├── peek.html │ │ │ ├── edit_language.html │ │ │ ├── delete.html │ │ │ ├── git_push.html │ │ │ ├── git_pull.html │ │ │ ├── upgrade_web2py.html │ │ │ ├── downgrade_web2py.html │ │ │ ├── user.html │ │ │ ├── resolve.html │ │ │ └── index.html │ │ ├── mercurial │ │ │ └── revision.html │ │ ├── generic.html │ │ ├── wizard │ │ │ └── generated.html │ │ ├── toolbar │ │ │ └── index.html │ │ └── web2py_ajax.html │ │ ├── static │ │ ├── images │ │ │ ├── chat.png │ │ │ ├── help.png │ │ │ ├── menu.png │ │ │ ├── folder.png │ │ │ ├── search.png │ │ │ ├── start.png │ │ │ ├── embossed.png │ │ │ ├── folder_sm.png │ │ │ ├── header_bg.png │ │ │ ├── questions.png │ │ │ ├── save_icon.png │ │ │ ├── spinner.gif │ │ │ ├── test_icon.png │ │ │ ├── delete_icon.png │ │ │ ├── dim_bullet.gif │ │ │ ├── red_bullet.gif │ │ │ ├── files_toggle.png │ │ │ ├── folder_locked.png │ │ │ ├── header_shadow.png │ │ │ ├── section_bullet.png │ │ │ ├── sidebar_bullet.gif │ │ │ ├── small_button.png │ │ │ ├── ticket_section.png │ │ │ ├── menu_responsive.png │ │ │ ├── sidebar_background.jpg │ │ │ ├── glyphicons-halflings.png │ │ │ ├── small_special_button.png │ │ │ └── glyphicons-halflings-white.png │ │ ├── codemirror │ │ │ ├── theme │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── neat.css │ │ │ │ └── elegant.css │ │ │ ├── addon │ │ │ │ ├── display │ │ │ │ │ └── fullscreen.css │ │ │ │ ├── fold │ │ │ │ │ └── foldgutter.css │ │ │ │ ├── edit │ │ │ │ │ ├── trailingspace.js │ │ │ │ │ └── continuelist.js │ │ │ │ ├── lint │ │ │ │ │ └── json-lint.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialog.css │ │ │ │ ├── mode │ │ │ │ │ └── multiplex_test.js │ │ │ │ └── hint │ │ │ │ │ └── show-hint.css │ │ │ ├── bin │ │ │ │ └── lint │ │ │ └── README.md │ │ ├── plugin_multiselect │ │ │ ├── switch.png │ │ │ └── start.js │ │ └── plugin_jqmobile │ │ │ └── images │ │ │ ├── iphone.jpg │ │ │ ├── ajax-loader.png │ │ │ ├── icons-18-black.png │ │ │ ├── icons-18-white.png │ │ │ ├── icons-36-black.png │ │ │ └── icons-36-white.png │ │ ├── languages │ │ ├── plural-en.py │ │ ├── plural-ru.py │ │ └── plural-uk.py │ │ ├── controllers │ │ ├── plugin_jqmobile.py │ │ └── toolbar.py │ │ ├── ABOUT │ │ ├── settings.cfg │ │ └── models │ │ ├── plugin_multiselect.py │ │ ├── plugin_statebutton.py │ │ └── 0_imports.py ├── robots.txt ├── VERSION ├── extras │ ├── icons │ │ ├── web2py.gif │ │ ├── web2py.icns │ │ ├── web2py.ico │ │ └── splashlogo.gif │ └── build_web2py │ │ └── README ├── .htaccess ├── scripts │ ├── bench.py │ ├── setup-shared-hosting-2.4.sh │ ├── web2py-lock.sh │ ├── cleanjs.py │ ├── setup-web2py-heroku.sh │ ├── fixws.py │ └── rmorphans.py └── web2py.fcgi ├── bin ├── db ├── apps ├── utils ├── handlers ├── readers ├── modellers ├── setup_stm.sh └── export_corpus.py ├── server_src ├── models │ ├── __init__.py │ └── 000_track_changes.py ├── modules │ ├── __init__.py │ ├── db │ │ ├── __init__.py │ │ ├── ITM_ComputeStats.py │ │ └── MultipleLDA_ComputeStats.py │ ├── apps │ │ ├── __init__.py │ │ └── SplitSentences.py │ ├── readers │ │ └── __init__.py │ ├── utils │ │ └── __init__.py │ ├── vis │ │ ├── __init__.py │ │ └── ScatterPlot1.py │ ├── handlers │ │ ├── __init__.py │ │ └── ITM_Core.py │ └── modellers │ │ └── __init__.py ├── static │ ├── js │ │ ├── d3.js │ │ ├── vega.js │ │ ├── d3.min.js │ │ ├── jquery.js │ │ ├── backbone.js │ │ ├── jquery.min.js │ │ ├── underscore.js │ │ ├── vega.min.js │ │ ├── backbone.min.js │ │ └── underscore.min.js │ ├── GroupInBox │ │ ├── img │ │ │ └── .gitkeep │ │ ├── partials │ │ │ ├── .gitkeep │ │ │ ├── partial1.html │ │ │ └── partial2.html │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ ├── src │ │ │ │ │ ├── outro.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── var │ │ │ │ │ │ ├── arr.js │ │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ │ ├── strundefined.js │ │ │ │ │ │ ├── concat.js │ │ │ │ │ │ ├── push.js │ │ │ │ │ │ ├── slice.js │ │ │ │ │ │ ├── class2type.js │ │ │ │ │ │ ├── indexOf.js │ │ │ │ │ │ ├── pnum.js │ │ │ │ │ │ ├── toString.js │ │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ │ └── support.js │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ ├── rquery.js │ │ │ │ │ │ │ └── nonce.js │ │ │ │ │ │ ├── parseJSON.js │ │ │ │ │ │ └── parseXML.js │ │ │ │ │ ├── css │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ │ │ ├── getStyles.js │ │ │ │ │ │ │ └── isHidden.js │ │ │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ │ │ ├── swap.js │ │ │ │ │ │ └── addGetHookIf.js │ │ │ │ │ ├── manipulation │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ └── rcheckableType.js │ │ │ │ │ │ └── _evalUrl.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ ├── data_priv.js │ │ │ │ │ │ │ └── data_user.js │ │ │ │ │ │ └── accepts.js │ │ │ │ │ ├── core │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── traversing │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── rneedsContext.js │ │ │ │ │ ├── event │ │ │ │ │ │ └── support.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── deprecated.js │ │ │ │ │ ├── effects │ │ │ │ │ │ └── animatedSelector.js │ │ │ │ │ ├── selector-sizzle.js │ │ │ │ │ ├── queue │ │ │ │ │ │ └── delay.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── exports │ │ │ │ │ │ └── global.js │ │ │ │ ├── bower.json │ │ │ │ └── .bower.json │ │ │ ├── underscore │ │ │ │ ├── .gitignore │ │ │ │ ├── bower.json │ │ │ │ ├── .editorconfig │ │ │ │ ├── component.json │ │ │ │ └── .bower.json │ │ │ ├── angular │ │ │ │ ├── bower.json │ │ │ │ ├── angular.min.js.gzip │ │ │ │ ├── angular-csp.css │ │ │ │ └── .bower.json │ │ │ ├── angular-mocks │ │ │ │ ├── bower.json │ │ │ │ └── .bower.json │ │ │ ├── angular-route │ │ │ │ ├── bower.json │ │ │ │ └── .bower.json │ │ │ ├── angular-loader │ │ │ │ ├── bower.json │ │ │ │ └── .bower.json │ │ │ └── d3 │ │ │ │ ├── bower.json │ │ │ │ ├── composer.json │ │ │ │ ├── README.md │ │ │ │ └── .bower.json │ │ ├── js │ │ │ ├── topic-model-viewer │ │ │ │ └── topic-model-viewer.html │ │ │ ├── data-manager │ │ │ │ ├── data-manager.html │ │ │ │ └── controller.js │ │ │ ├── app.js │ │ │ └── services │ │ │ │ └── topic-model.js │ │ ├── libs │ │ │ ├── fonts │ │ │ │ ├── fluxweed.eot │ │ │ │ ├── fluxweed.ttf │ │ │ │ ├── fluxweed.woff │ │ │ │ └── lato-kit │ │ │ │ │ ├── lato-black-webfont.eot │ │ │ │ │ ├── lato-black-webfont.ttf │ │ │ │ │ ├── lato-black-webfont.woff │ │ │ │ │ ├── lato-bold-webfont.eot │ │ │ │ │ ├── lato-bold-webfont.ttf │ │ │ │ │ ├── lato-bold-webfont.woff │ │ │ │ │ ├── lato-italic-webfont.eot │ │ │ │ │ ├── lato-italic-webfont.ttf │ │ │ │ │ ├── lato-light-webfont.eot │ │ │ │ │ ├── lato-light-webfont.ttf │ │ │ │ │ ├── lato-light-webfont.woff │ │ │ │ │ ├── lato-hairline-webfont.eot │ │ │ │ │ ├── lato-hairline-webfont.ttf │ │ │ │ │ ├── lato-italic-webfont.woff │ │ │ │ │ ├── lato-regular-webfont.eot │ │ │ │ │ ├── lato-regular-webfont.ttf │ │ │ │ │ ├── lato-regular-webfont.woff │ │ │ │ │ ├── lato-blackitalic-webfont.eot │ │ │ │ │ ├── lato-blackitalic-webfont.ttf │ │ │ │ │ ├── lato-bolditalic-webfont.eot │ │ │ │ │ ├── lato-bolditalic-webfont.ttf │ │ │ │ │ ├── lato-bolditalic-webfont.woff │ │ │ │ │ ├── lato-hairline-webfont.woff │ │ │ │ │ ├── lato-lightitalic-webfont.eot │ │ │ │ │ ├── lato-lightitalic-webfont.ttf │ │ │ │ │ ├── lato-blackitalic-webfont.woff │ │ │ │ │ ├── lato-lightitalic-webfont.woff │ │ │ │ │ ├── lato-hairlineitalic-webfont.eot │ │ │ │ │ ├── lato-hairlineitalic-webfont.ttf │ │ │ │ │ └── lato-hairlineitalic-webfont.woff │ │ │ └── fluxweed │ │ │ │ ├── fonts │ │ │ │ ├── fluxweed.eot │ │ │ │ ├── fluxweed.ttf │ │ │ │ └── fluxweed.woff │ │ │ │ └── Read Me.txt │ │ └── css │ │ │ └── app.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── TermTopicMatrix2 │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── css │ │ │ ├── MatrixView.css │ │ │ └── NavigationView.css │ │ └── less │ │ │ └── path.less │ ├── TermTopicMatrix3 │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── model │ │ │ └── topic-index.txt │ │ ├── css │ │ │ └── MatrixView.css │ │ ├── less │ │ │ └── path.less │ │ └── scss │ │ │ └── _path.scss │ ├── less │ │ ├── fixed-width.less │ │ ├── core.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── font-awesome.less │ │ ├── stacked.less │ │ ├── path.less │ │ ├── mixins.less │ │ └── spinning.less │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _core.scss │ │ ├── _bordered-pulled.scss │ │ ├── _larger.scss │ │ ├── _rotated-flipped.scss │ │ ├── _list.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _path.scss │ │ ├── _mixins.scss │ │ └── _spinning.scss │ ├── ScatterPlot1 │ │ └── css │ │ │ ├── textbox.css │ │ │ ├── tip.css │ │ │ ├── controls.css │ │ │ └── scatter.css │ └── TermTopicMatrix1 │ │ └── js │ │ └── FullTermTopicProbabilityModel.js ├── views │ ├── insert_response.html │ ├── select_server.html │ ├── insert_request.html │ ├── select_attribute.html │ ├── default │ │ └── index.html │ ├── corpus │ │ ├── index.html │ │ ├── MetadataFields.html │ │ ├── DocumentById.html │ │ └── DocumentByIndex.html │ ├── lda │ │ ├── index.html │ │ ├── TopicList.html │ │ ├── Vocab.html │ │ └── TopicCovariance.html │ ├── bow │ │ └── index.html │ ├── itm │ │ ├── index.html │ │ ├── Inspect.html │ │ └── GroupInBox.html │ ├── select_model.html │ └── select_dataset.html └── controllers │ ├── default.py │ └── TermTopicMatrix2.py ├── web2py_src ├── robots.txt ├── .htaccess └── web2py.fcgi ├── utils ├── mallet │ ├── lib │ │ ├── mallet.jar │ │ └── mallet-deps.jar │ ├── CorpusWriter.jar │ ├── Manifest.CorpusWriter.txt │ ├── mallet_helpers │ │ └── CorpusWriter.class │ └── Makefile └── corenlp │ ├── lib │ ├── stanford-corenlp-3.3.1.jar │ └── stanford-corenlp-3.3.1-models.jar │ ├── SentenceSplitter.jar │ ├── corenlp_helpers │ └── SentenceSplitter.class │ ├── Manifest.SentenceSplitter.txt │ └── Makefile ├── start_server.sh └── .gitignore /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/echo: -------------------------------------------------------------------------------- 1 | ../echo_src/ -------------------------------------------------------------------------------- /apps/init: -------------------------------------------------------------------------------- 1 | ../home_src/ -------------------------------------------------------------------------------- /dataset_src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home_src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web2py/tools: -------------------------------------------------------------------------------- 1 | ../tools -------------------------------------------------------------------------------- /apps/dataset: -------------------------------------------------------------------------------- 1 | ../dataset_src/ -------------------------------------------------------------------------------- /apps/welcome: -------------------------------------------------------------------------------- 1 | ../home_src/ -------------------------------------------------------------------------------- /web2py/applications: -------------------------------------------------------------------------------- 1 | ../apps/ -------------------------------------------------------------------------------- /bin/db: -------------------------------------------------------------------------------- 1 | ../server_src/modules/db -------------------------------------------------------------------------------- /server_src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/apps: -------------------------------------------------------------------------------- 1 | ../server_src/modules/apps -------------------------------------------------------------------------------- /bin/utils: -------------------------------------------------------------------------------- 1 | ../server_src/modules/utils -------------------------------------------------------------------------------- /home_src/models: -------------------------------------------------------------------------------- 1 | ../server_src/models/ -------------------------------------------------------------------------------- /home_src/modules: -------------------------------------------------------------------------------- 1 | ../server_src/modules/ -------------------------------------------------------------------------------- /home_src/static: -------------------------------------------------------------------------------- 1 | ../server_src/static/ -------------------------------------------------------------------------------- /server_src/modules/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/readers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/vis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/static/js/d3.js: -------------------------------------------------------------------------------- 1 | d3-3.4.4.js -------------------------------------------------------------------------------- /web2py/gluon/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web2py/site-packages/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/handlers: -------------------------------------------------------------------------------- 1 | ../server_src/modules/handlers -------------------------------------------------------------------------------- /bin/readers: -------------------------------------------------------------------------------- 1 | ../server_src/modules/readers -------------------------------------------------------------------------------- /dataset_src/models: -------------------------------------------------------------------------------- 1 | ../server_src/models/ -------------------------------------------------------------------------------- /dataset_src/modules: -------------------------------------------------------------------------------- 1 | ../server_src/modules/ -------------------------------------------------------------------------------- /dataset_src/static: -------------------------------------------------------------------------------- 1 | ../server_src/static/ -------------------------------------------------------------------------------- /server_src/modules/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/modules/modellers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/static/js/vega.js: -------------------------------------------------------------------------------- 1 | vega-1.3.3.js -------------------------------------------------------------------------------- /web2py/gluon/contrib/minify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web2py/gluon/tests/tests_markmin.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/admin: -------------------------------------------------------------------------------- 1 | ../web2py/applications-original/admin/ -------------------------------------------------------------------------------- /bin/modellers: -------------------------------------------------------------------------------- 1 | ../server_src/modules/modellers -------------------------------------------------------------------------------- /server_src/static/GroupInBox/partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_src/static/js/d3.min.js: -------------------------------------------------------------------------------- 1 | d3-3.4.4.min.js -------------------------------------------------------------------------------- /server_src/static/js/jquery.js: -------------------------------------------------------------------------------- 1 | jquery-2.0.3.js -------------------------------------------------------------------------------- /web2py/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include VERSION LICENSE 2 | -------------------------------------------------------------------------------- /web2py/applications-original/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server_src/static/js/backbone.js: -------------------------------------------------------------------------------- 1 | backbone-1.1.2.js -------------------------------------------------------------------------------- /server_src/static/js/jquery.min.js: -------------------------------------------------------------------------------- 1 | jquery-2.0.3.min.js -------------------------------------------------------------------------------- /server_src/static/js/underscore.js: -------------------------------------------------------------------------------- 1 | underscore-1.5.2.js -------------------------------------------------------------------------------- /server_src/static/js/vega.min.js: -------------------------------------------------------------------------------- 1 | vega-1.3.3.min.js -------------------------------------------------------------------------------- /web2py/applications-original/admin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/private/hosts.deny: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web2py/gluon/contrib/gateways/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /web2py/gluon/contrib/login_methods/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web2py/gluon/contrib/markmin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /web2py/gluon/contrib/plural_rules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web2py/gluon/contrib/pymysql/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web2py/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: * 3 | -------------------------------------------------------------------------------- /server_src/static/js/backbone.min.js: -------------------------------------------------------------------------------- 1 | backbone-1.1.2.min.js -------------------------------------------------------------------------------- /web2py_src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: * 3 | -------------------------------------------------------------------------------- /home_src/views/server.html: -------------------------------------------------------------------------------- 1 | ../../server_src/views/server.html -------------------------------------------------------------------------------- /server_src/static/js/underscore.min.js: -------------------------------------------------------------------------------- 1 | underscore-1.5.2.min.js -------------------------------------------------------------------------------- /web2py/applications-original/admin/modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /home_src/views/js_functions.js: -------------------------------------------------------------------------------- 1 | ../../server_src/views/js_functions.js -------------------------------------------------------------------------------- /home_src/views/py_functions.py: -------------------------------------------------------------------------------- 1 | ../../server_src/views/py_functions.py -------------------------------------------------------------------------------- /utils/mallet/lib/mallet.jar: -------------------------------------------------------------------------------- 1 | ../../../tools/mallet/dist/mallet.jar -------------------------------------------------------------------------------- /home_src/views/js_functions.html: -------------------------------------------------------------------------------- 1 | ../../server_src/views/js_functions.html -------------------------------------------------------------------------------- /home_src/views/py_functions.html: -------------------------------------------------------------------------------- 1 | ../../server_src/views/py_functions.html -------------------------------------------------------------------------------- /web2py/VERSION: -------------------------------------------------------------------------------- 1 | Version 2.9.5-stable+timestamp.2014.03.16.02.35.39 2 | -------------------------------------------------------------------------------- /home_src/views/select_dataset.html: -------------------------------------------------------------------------------- 1 | ../../server_src/views/select_dataset.html -------------------------------------------------------------------------------- /home_src/views/select_server.html: -------------------------------------------------------------------------------- 1 | ../../server_src/views/select_server.html -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /utils/mallet/lib/mallet-deps.jar: -------------------------------------------------------------------------------- 1 | ../../../tools/mallet/dist/mallet-deps.jar -------------------------------------------------------------------------------- /web2py/gluon/contrib/markdown/LICENSE: -------------------------------------------------------------------------------- 1 | markdown2.py is released under MIT license. -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/underscore/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | node_modules 3 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/partials/partial1.html: -------------------------------------------------------------------------------- 1 |
This is the partial for view 1.
2 | -------------------------------------------------------------------------------- /utils/corenlp/lib/stanford-corenlp-3.3.1.jar: -------------------------------------------------------------------------------- 1 | ../../../tools/corenlp-3.3.1/stanford-corenlp-3.3.1.jar -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /utils/corenlp/lib/stanford-corenlp-3.3.1-models.jar: -------------------------------------------------------------------------------- 1 | ../../../tools/corenlp-3.3.1/stanford-corenlp-3.3.1-models.jar -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "python web2py/web2py.py -p 8075" 4 | python web2py/web2py.py -p 8075 5 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/cron/crontab: -------------------------------------------------------------------------------- 1 | 10 * * * * root **applications/admin/cron/expire_sessions.py 2 | 3 | -------------------------------------------------------------------------------- /utils/mallet/CorpusWriter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/utils/mallet/CorpusWriter.jar -------------------------------------------------------------------------------- /web2py/applications-original/admin/views/default/files_menu.html: -------------------------------------------------------------------------------- 1 | {{for files in result_files:}} 2 | {{=files}} 3 | {{pass}} -------------------------------------------------------------------------------- /dataset_src/data/test2/corpus.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/dataset_src/data/test2/corpus.db -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /web2py/extras/icons/web2py.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/extras/icons/web2py.gif -------------------------------------------------------------------------------- /web2py/extras/icons/web2py.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/extras/icons/web2py.icns -------------------------------------------------------------------------------- /web2py/extras/icons/web2py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/extras/icons/web2py.ico -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /utils/corenlp/SentenceSplitter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/utils/corenlp/SentenceSplitter.jar -------------------------------------------------------------------------------- /utils/mallet/Manifest.CorpusWriter.txt: -------------------------------------------------------------------------------- 1 | Main-Class: mallet_helpers.CorpusWriter 2 | Class-Path: lib/mallet.jar lib/mallet-deps.jar 3 | -------------------------------------------------------------------------------- /web2py/extras/icons/splashlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/extras/icons/splashlogo.gif -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /server_src/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /server_src/views/insert_response.html: -------------------------------------------------------------------------------- 1 |4 | Download csv 5 | Download plain text 6 |
7 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.eot -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.ttf -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fluxweed/fonts/fluxweed.woff -------------------------------------------------------------------------------- /server_src/static/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/embossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/embossed.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/folder_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/folder_sm.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/header_bg.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/questions.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/save_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/save_icon.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/spinner.gif -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/test_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/test_icon.png -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.2.16", 4 | "main": "./angular.js", 5 | "dependencies": { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix2/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix2/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix2/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix2/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix2/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix2/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix3/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix3/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix3/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix3/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/TermTopicMatrix3/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/TermTopicMatrix3/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /server_src/views/insert_request.html: -------------------------------------------------------------------------------- 1 |This is the partial for view 2.
2 |3 | Showing of 'interpolate' filter: 4 | {{ 'Current version is v%VERSION%.' | interpolate }} 5 |
6 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/languages/plural-ru.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | { 3 | # "singular form (0)": ["first plural form (1)", "second plural form (2)", ...], 4 | 'файл': ['файла','файлов'], 5 | } 6 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/small_special_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/small_special_button.png -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.eot -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.eot -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-bolditalic-webfont.woff -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairline-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairline-webfont.woff -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.eot -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/ScatterPlot1/css/textbox.css: -------------------------------------------------------------------------------- 1 | .textbox { 2 | display:inline-block; 3 | position:absolute; 4 | overflow:auto; 5 | background: white; 6 | padding:5px; 7 | border-left:1px solid #d3d3d3; 8 | } 9 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/iphone.jpg -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_multiselect/start.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){jQuery('[multiple]').multiSelect({selectableHeader:'Options',selectedHeader:'Selected'});}); 2 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-blackitalic-webfont.woff -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-lightitalic-webfont.woff -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return function( elem ) { 3 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); 4 | }; 5 | }); 6 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.eot -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.ttf -------------------------------------------------------------------------------- /server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/server_src/static/GroupInBox/libs/fonts/lato-kit/lato-hairlineitalic-webfont.woff -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/ajax-loader.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/icons-18-black.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/icons-18-white.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/icons-36-black.png -------------------------------------------------------------------------------- /web2py/applications-original/admin/static/plugin_jqmobile/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwdata/termite-data-server/master/web2py/applications-original/admin/static/plugin_jqmobile/images/icons-36-white.png -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-mocks", 3 | "version": "1.2.16", 4 | "main": "./angular-mocks.js", 5 | "dependencies": { 6 | "angular": "1.2.16" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-route", 3 | "version": "1.2.16", 4 | "main": "./angular-route.js", 5 | "dependencies": { 6 | "angular": "1.2.16" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /server_src/controllers/default.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | from handlers.Home_Core import Home_Core 5 | 6 | def index(): 7 | handler = Home_Core(request, response) 8 | return handler.GenerateResponse() 9 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/angular-loader/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-loader", 3 | "version": "1.2.16", 4 | "main": "./angular-loader.js", 5 | "dependencies": { 6 | "angular": "1.2.16" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /server_src/static/GroupInBox/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/controllers/plugin_jqmobile.py: -------------------------------------------------------------------------------- 1 | response.files = response.files[:3] 2 | response.menu = [] 3 | 4 | 5 | def index(): 6 | return locals() 7 | 8 | 9 | def about(): 10 | return locals() 11 | -------------------------------------------------------------------------------- /dataset_src/controllers/default.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import utils.uploads as uploads 4 | 5 | def index(): 6 | corpora = [fname[:-len(".csv")] for fname in os.listdir(uploads.spreadsheet_dir(request))] 7 | return {"corpora": corpora} 8 | -------------------------------------------------------------------------------- /dataset_src/views/upload/index.html: -------------------------------------------------------------------------------- 1 | {{extend 'template.html'}} 2 | 3 |4 | This webpage allows users to upload a new dataset as a spreadsheet or a block of plain text. 5 |
6 | -------------------------------------------------------------------------------- /dataset_src/views/upload/plaintext.html: -------------------------------------------------------------------------------- 1 | {{extend 'template.html'}} 2 | 3 |8 | Copy-and-paste a block of plain text (one document per line). 9 | {{=flash}} 10 | {{=form}} 11 |
12 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/views/default.mobile/change_password.html: -------------------------------------------------------------------------------- 1 | {{extend 'default.mobile/layout.html'}} 2 | 3 | {{block sectionclass}}change_password{{end}} 4 | 5 |{{=FORM(INPUT(_type='submit',_name='nodelete',_value=T('NO')))}}
8 |{{=FORM(INPUT(_type='submit',_name='delete',_value=T('YES')))}}
9 || {{=FORM(INPUT(_type='submit',_name='nodelete',_value=T('Abort')))}} | 7 |{{=FORM(INPUT(_type='submit',_name='delete',_value=T('Uninstall')))}} | 8 |
{{=button(URL('edit/%s/ABOUT' % (app)), T('Edit'))}}
8 |{{=button(URL('edit/%s/LICENSE' % (app)), T('Edit'))}}
11 |8 | The spreadsheet must be in csv format. 9 | The csv must have columns for unique document ids and document content, and a header row with column/field names (e.g., "doc_id,doc_content"). 10 | You may include any metadata you want in additional columns. 11 | {{=flash}} 12 | {{=form}} 13 |
14 | -------------------------------------------------------------------------------- /server_src/static/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /server_src/static/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/views/default.mobile/peek.html: -------------------------------------------------------------------------------- 1 | {{extend 'default.mobile/layout.html'}} 2 | 3 | {{block sectionclass}}peek{{end}} 4 | 5 |8 | {{=button(URL('design',args=request.args[0]), T('back'))}} 9 | {{=button(URL('edit',args=request.args), T('Edit'))}} 10 |
11 | 12 | {{ 13 | if filename[-3:]=='.py': language='python' 14 | else: language='html' 15 | }} 16 | {{=CODE(data,language=language,link='/examples/global/vars/')}} 17 | 18 | -------------------------------------------------------------------------------- /web2py/applications-original/admin/views/default/git_push.html: -------------------------------------------------------------------------------- 1 | {{extend 'layout.html'}} 2 | {{ 3 | frm = form 4 | smt_button = frm.element(_type="submit") 5 | smt_button['_class'] = 'btn' 6 | smt_button['_style'] = 'margin-right:4px;' 7 | ccl_button = frm.element(_type="button") 8 | ccl_button['_class'] = 'btn' 9 | }} 10 | 11 |{{=FORM(INPUT(_type='submit',_name='nodelete',_value=T('Abort')),INPUT(_type='hidden',_name='sender',_value=sender), _class="inline")}}{{=FORM(INPUT(_type='submit',_name='delete',_value=T('Delete')),INPUT(_type='hidden',_name='sender',_value=sender), _class="inline")}}
8 |,