├── .gitignore ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── README ├── __init__.py ├── api_examples ├── .gitignore ├── couchdb.py ├── google_docs.py ├── scraperwiki.py ├── scraperwiki_twitter.py └── socrata.py ├── application.py ├── application_jumpstart.py ├── client ├── __init__.py ├── static │ ├── css │ │ ├── bootstrap.css │ │ ├── fileuploader.css │ │ ├── loading.gif │ │ ├── panda.css │ │ └── reset.css │ ├── img │ │ ├── ajax-loader.gif │ │ ├── asc.gif │ │ ├── desc.gif │ │ ├── favicon.ico │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── highfive.jpg │ │ ├── no-sort.gif │ │ ├── panda_and_ire.png │ │ └── progress.png │ ├── js │ │ ├── SpecRunner.html │ │ ├── application.js │ │ ├── errors.js │ │ ├── lib │ │ │ ├── backbone-tastypie.js │ │ │ ├── backbone.js │ │ │ ├── bootbox.js │ │ │ ├── bootstrap.js │ │ │ ├── excanvas.min.js │ │ │ ├── fileuploader.js │ │ │ ├── jasmine-1.1.0 │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ └── jasmine_favicon.png │ │ │ ├── jasmine-jquery.js │ │ │ ├── jasmine-sinon.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.tablesorter.js │ │ │ ├── json2.js │ │ │ ├── moment.js │ │ │ ├── moment │ │ │ │ ├── ca.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── es.js │ │ │ │ ├── eu.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── jp.js │ │ │ │ ├── kr.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── sinon-1.2.0.js │ │ │ └── underscore.js │ │ ├── models │ │ │ ├── activity_log.js │ │ │ ├── categories.js │ │ │ ├── data.js │ │ │ ├── data_uploads.js │ │ │ ├── datasets.js │ │ │ ├── exports.js │ │ │ ├── notifications.js │ │ │ ├── related_uploads.js │ │ │ ├── search_subscriptions.js │ │ │ ├── tasks.js │ │ │ └── users.js │ │ ├── routers │ │ │ └── index.js │ │ ├── spec │ │ │ ├── mock_xhr_responses.js │ │ │ ├── models │ │ │ │ ├── datasets.js │ │ │ │ └── tasks.js │ │ │ ├── routers │ │ │ │ └── index.js │ │ │ └── views │ │ │ │ ├── not_found.js │ │ │ │ └── root.js │ │ ├── text │ │ │ ├── activate.js │ │ │ ├── data_upload.js │ │ │ ├── dataset_results.js │ │ │ ├── dataset_search.js │ │ │ ├── dataset_view.js │ │ │ ├── datasets_results.js │ │ │ ├── datasets_search.js │ │ │ ├── fetch_export.js │ │ │ ├── home.js │ │ │ ├── inline_search_filters.js │ │ │ ├── inlines.js │ │ │ ├── login.js │ │ │ ├── modal_change_password.js │ │ │ ├── modal_dataset_edit.js │ │ │ ├── modal_related_links.js │ │ │ ├── modal_user_edit.js │ │ │ ├── not_found.js │ │ │ ├── notifications.js │ │ │ ├── reset_password.js │ │ │ ├── search.js │ │ │ ├── search_results.js │ │ │ ├── server_error.js │ │ │ └── user.js │ │ ├── utils.js │ │ └── views │ │ │ ├── activate.js │ │ │ ├── dashboard.js │ │ │ ├── data_upload.js │ │ │ ├── dataset_results.js │ │ │ ├── dataset_search.js │ │ │ ├── dataset_view.js │ │ │ ├── datasets_results.js │ │ │ ├── datasets_search.js │ │ │ ├── fetch_export.js │ │ │ ├── home.js │ │ │ ├── inline_search_filters.js │ │ │ ├── login.js │ │ │ ├── modal_change_password.js │ │ │ ├── modal_dataset_edit.js │ │ │ ├── modal_related_links.js │ │ │ ├── modal_user_edit.js │ │ │ ├── not_found.js │ │ │ ├── notifications.js │ │ │ ├── reset_password.js │ │ │ ├── root.js │ │ │ ├── search.js │ │ │ ├── search_results.js │ │ │ ├── server_error.js │ │ │ └── user.js │ └── templates │ │ ├── activate.jst │ │ ├── data_upload.jst │ │ ├── dataset_results.jst │ │ ├── dataset_search.jst │ │ ├── dataset_view.jst │ │ ├── datasets_results.jst │ │ ├── datasets_search.jst │ │ ├── fetch_export.jst │ │ ├── home.jst │ │ ├── inline_advanced_search_tooltip.jst │ │ ├── inline_pager.jst │ │ ├── inline_sample_data.jst │ │ ├── inline_search_filter.jst │ │ ├── inline_search_filters.jst │ │ ├── inline_timestamp.jst │ │ ├── inline_upload_item.jst │ │ ├── inline_user.jst │ │ ├── inline_widget_bool_selector.jst │ │ ├── inline_widget_double_input.jst │ │ ├── inline_widget_single_input.jst │ │ ├── login.jst │ │ ├── modal_change_password.jst │ │ ├── modal_dataset_edit.jst │ │ ├── modal_related_links.jst │ │ ├── modal_upload_edit.jst │ │ ├── modal_user_edit.jst │ │ ├── not_found.jst │ │ ├── notifications.jst │ │ ├── reset_password.jst │ │ ├── search.jst │ │ ├── search_results.jst │ │ ├── server_error.jst │ │ └── user.jst ├── templates │ ├── dashboard.html │ └── index.html ├── urls.py ├── utils.py └── views.py ├── config ├── __init__.py ├── deployed │ ├── __init__.py │ └── settings.py ├── jumpstart │ ├── __init__.py │ └── settings.py ├── settings.py └── urls.py ├── docs ├── Makefile ├── amazon.rst ├── api.rst ├── api_keys.rst ├── api_tutorial.rst ├── backups.rst ├── categories.rst ├── conf.py ├── dns.rst ├── email.rst ├── faq.rst ├── i18n.rst ├── images │ ├── amazon-connect-dialog.png │ ├── amazon-create-ssh-key.png │ ├── amazon-security-groups.png │ ├── amazon-select-ami.png │ ├── amazon-ssh-client.png │ ├── high-five.jpg │ ├── panda-column-search.png │ ├── panda-dataset-search.png │ ├── panda-dataset.png │ ├── panda-enable-column-search.png │ ├── panda-enable-column-search2.png │ ├── panda-find-dataset.png │ ├── panda-importing.png │ ├── panda-preview.png │ ├── panda-search.png │ ├── panda-subscribe-all.png │ ├── panda-subscribe-dataset.png │ └── panda-upload.png ├── index.rst ├── local_development.rst ├── manual_imports.rst ├── ops.rst ├── performance.rst ├── production.rst ├── self-install.rst ├── ssh.rst ├── ssl.rst ├── storage.rst ├── upgrades.rst ├── users.rst └── what_is_panda.rst ├── fabfile.py ├── jumpstart ├── __init__.py ├── daemon.py ├── restart-uwsgi.sh ├── static │ └── css │ │ └── jumpstart.css ├── templates │ └── jumpstart │ │ ├── base.html │ │ ├── index.html │ │ └── wait.html ├── urls.py └── views.py ├── locale ├── de │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── es │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po └── it │ └── LC_MESSAGES │ ├── django.mo │ ├── django.po │ ├── djangojs.mo │ └── djangojs.po ├── loghandlers.py ├── manage.py ├── panda ├── __init__.py ├── admin.py ├── api │ ├── __init__.py │ ├── activity_log.py │ ├── category.py │ ├── data.py │ ├── data_uploads.py │ ├── datasets.py │ ├── exports.py │ ├── notifications.py │ ├── related_uploads.py │ ├── search_subscriptions.py │ ├── tasks.py │ ├── users.py │ └── utils.py ├── config.py ├── exceptions.py ├── fields.py ├── fixtures │ ├── init_panda.json │ └── test_users.json ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── manual_import.py │ │ ├── purge_orphaned_uploads.py │ │ └── reindex_datasets.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_field_dataset_locked__add_field_dataset_locked_at.py │ ├── 0003_auto__add_field_dataupload_guessed_types.py │ ├── 0004_auto__add_field_dataset_column_types__add_field_dataset_typed_column_n.py │ ├── 0005_auto__add_field_dataset_typed_columns.py │ ├── 0006_auto__add_field_dataset_column_schema.py │ ├── 0007_auto__del_field_dataset_typed_columns__del_field_dataset_column_types_.py │ ├── 0008_unlock_datasets.py │ ├── 0009_auto__add_activitylog__add_unique_activitylog_user_when.py │ ├── 0010_auto__add_searchlog.py │ ├── 0011_add_activitylog_permissions.py │ ├── 0012_auto__chg_field_export_dataset.py │ ├── 0013_auto__chg_field_userprofile_activation_key.py │ ├── 0014_delete_used_activation_keys.py │ ├── 0015_lowercase_emails.py │ ├── 0016_auto__add_field_notification_related_export.py │ ├── 0017_auto__add_field_userprofile_activation_key_expiration.py │ ├── 0018_auto__add_field_taskstatus_task_description.py │ ├── 0019_auto__add_searchsubscription.py │ ├── 0020_auto__add_field_searchsubscription_query_url__chg_field_searchsubscrip.py │ ├── 0021_auto__add_field_notification_url.py │ ├── 0022_create_notification_urls.py │ ├── 0023_auto__del_field_notification_related_export__del_field_notification_re.py │ ├── 0024_auto__add_field_searchsubscription_query_human.py │ ├── 0025_add_subscription_permissions.py │ ├── 0026_auto__add_field_userprofile_show_login_help.py │ ├── 0027_auto__add_field_searchsubscription_category.py │ ├── 0028_auto__add_field_relatedupload_title__add_field_export_title__add_field.py │ ├── 0029_populate_upload_titles.py │ ├── 0030_auto__add_field_dataset_related_stories.py │ ├── 0031_rename_dataset_related_stories.py │ ├── 0032_auto__add_field_dataupload_deletable.py │ ├── 0033_auto__chg_field_searchlog_query.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── activity_log.py │ ├── base_upload.py │ ├── category.py │ ├── data_upload.py │ ├── dataset.py │ ├── export.py │ ├── notification.py │ ├── related_upload.py │ ├── search_log.py │ ├── search_subscription.py │ ├── slugged_model.py │ ├── task_status.py │ ├── user_profile.py │ └── user_proxy.py ├── solr.py ├── static │ └── panda_user_change_form.js ├── storage.py ├── tasks │ ├── __init__.py │ ├── base.py │ ├── export_csv.py │ ├── export_file.py │ ├── export_search.py │ ├── import_csv.py │ ├── import_file.py │ ├── import_xls.py │ ├── import_xlsx.py │ ├── purge_data.py │ ├── purge_orphaned_uploads.py │ ├── reindex.py │ ├── run_admin_alerts.py │ └── run_subscriptions.py ├── templates │ ├── admin │ │ └── panda │ │ │ ├── taskstatus │ │ │ └── change_form.html │ │ │ └── userproxy │ │ │ ├── add_form.html │ │ │ ├── add_many_form.html │ │ │ ├── change_form.html │ │ │ └── change_list.html │ └── notifications │ │ ├── disk_space_alert │ │ ├── email_body.txt │ │ └── email_subject.txt │ │ ├── export_aborted │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── export_complete │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── export_failed │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── export_search_aborted │ │ └── message.html │ │ ├── export_search_complete │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── export_search_failed │ │ ├── email_body.txt │ │ └── message.html │ │ ├── import_aborted │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── import_complete │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── import_failed │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── reindex_aborted │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── reindex_complete │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ ├── reindex_failed │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html │ │ └── subscription_results │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ └── message.html ├── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_api_category.py │ ├── test_api_data.py │ ├── test_api_data_upload.py │ ├── test_api_dataset.py │ ├── test_api_export.py │ ├── test_api_notification.py │ ├── test_api_related_upload.py │ ├── test_api_search_subscriptions.py │ ├── test_api_task_status.py │ ├── test_api_user.py │ ├── test_data_upload.py │ ├── test_dataset.py │ ├── test_export_search.py │ ├── test_purge_orphaned_uploads.py │ ├── test_related_upload.py │ ├── test_search_subscriptions.py │ ├── test_solr.py │ ├── test_user.py │ ├── test_utils.py │ ├── test_views.py │ └── utils.py ├── urls.py ├── utils │ ├── __init__.py │ ├── column_schema.py │ ├── csvdata.py │ ├── mail.py │ ├── notifications.py │ ├── solr.py │ ├── typecoercion.py │ ├── xls.py │ └── xlsx.py └── views.py ├── requirements.txt ├── scripts ├── audit_uploads.py ├── backup_volumes.py ├── check_po.py ├── migrate_files_volume.py ├── migrate_solr_volume.py └── migrations │ ├── 0.1.0-to-0.1.1.sh │ ├── 0.1.1-to-0.1.2.sh │ ├── 0.1.2-to-0.1.3.sh │ ├── 0.1.3-to-0.1.4.sh │ ├── 0.1.4-to-0.2.0.sh │ ├── 0.2.0-to-1.0.0.sh │ ├── 1.0.0-to-1.0.1.sh │ ├── 1.0.1-to-1.0.2.sh │ ├── 1.0.2-to-1.1.0.sh │ └── 1.1.0-to-1.1.1.sh ├── setup_panda.sh ├── setup_panda ├── 10periodic ├── celeryd.conf ├── data_schema.xml ├── datasets_schema.xml ├── english_names.txt ├── nginx ├── nginx_ssl ├── panda.jar ├── pg_hba.conf ├── solr.conf ├── solr.xml ├── solrconfig.xml ├── uwsgi.conf └── uwsgi_jumpstart.conf ├── solr_plugin └── panda │ ├── CustomSimilarity.class │ └── CustomSimilarity.java ├── templates ├── 404.html ├── 500.html ├── admin │ ├── base_site.html │ └── panda_index.html ├── base.html └── livesettings │ └── site_settings.html └── test_data ├── contributors.csv ├── contributors.excel.xlsx ├── contributors.oo.xlsx ├── contributors.xls ├── test_cell_too_long.csv ├── test_money.csv ├── test_multiline_header.csv ├── test_not_unicode_data.csv ├── test_not_unicode_sample.csv ├── test_tab_delimited.csv ├── test_types.csv ├── test_types.xls ├── test_types.xlsx └── test_uneven_rows.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/README -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_examples/.gitignore: -------------------------------------------------------------------------------- 1 | last_seq 2 | -------------------------------------------------------------------------------- /api_examples/couchdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/api_examples/couchdb.py -------------------------------------------------------------------------------- /api_examples/google_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/api_examples/google_docs.py -------------------------------------------------------------------------------- /api_examples/scraperwiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/api_examples/scraperwiki.py -------------------------------------------------------------------------------- /api_examples/scraperwiki_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/api_examples/scraperwiki_twitter.py -------------------------------------------------------------------------------- /api_examples/socrata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/api_examples/socrata.py -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/application.py -------------------------------------------------------------------------------- /application_jumpstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/application_jumpstart.py -------------------------------------------------------------------------------- /client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/css/bootstrap.css -------------------------------------------------------------------------------- /client/static/css/fileuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/css/fileuploader.css -------------------------------------------------------------------------------- /client/static/css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/css/loading.gif -------------------------------------------------------------------------------- /client/static/css/panda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/css/panda.css -------------------------------------------------------------------------------- /client/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/css/reset.css -------------------------------------------------------------------------------- /client/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /client/static/img/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/asc.gif -------------------------------------------------------------------------------- /client/static/img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/desc.gif -------------------------------------------------------------------------------- /client/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/favicon.ico -------------------------------------------------------------------------------- /client/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /client/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /client/static/img/highfive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/highfive.jpg -------------------------------------------------------------------------------- /client/static/img/no-sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/no-sort.gif -------------------------------------------------------------------------------- /client/static/img/panda_and_ire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/panda_and_ire.png -------------------------------------------------------------------------------- /client/static/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/img/progress.png -------------------------------------------------------------------------------- /client/static/js/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/SpecRunner.html -------------------------------------------------------------------------------- /client/static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/application.js -------------------------------------------------------------------------------- /client/static/js/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/errors.js -------------------------------------------------------------------------------- /client/static/js/lib/backbone-tastypie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/backbone-tastypie.js -------------------------------------------------------------------------------- /client/static/js/lib/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/backbone.js -------------------------------------------------------------------------------- /client/static/js/lib/bootbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/bootbox.js -------------------------------------------------------------------------------- /client/static/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/bootstrap.js -------------------------------------------------------------------------------- /client/static/js/lib/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/excanvas.min.js -------------------------------------------------------------------------------- /client/static/js/lib/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/fileuploader.js -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-1.1.0/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-1.1.0/MIT.LICENSE -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-1.1.0/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-1.1.0/jasmine-html.js -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-1.1.0/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-1.1.0/jasmine.css -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-1.1.0/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-1.1.0/jasmine.js -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-1.1.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-1.1.0/jasmine_favicon.png -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-jquery.js -------------------------------------------------------------------------------- /client/static/js/lib/jasmine-sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jasmine-sinon.js -------------------------------------------------------------------------------- /client/static/js/lib/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jquery-1.7.1.js -------------------------------------------------------------------------------- /client/static/js/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jquery.cookie.js -------------------------------------------------------------------------------- /client/static/js/lib/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jquery.flot.js -------------------------------------------------------------------------------- /client/static/js/lib/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/jquery.tablesorter.js -------------------------------------------------------------------------------- /client/static/js/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/json2.js -------------------------------------------------------------------------------- /client/static/js/lib/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/ca.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/da.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/de.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/en-gb.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/es.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/eu.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/fi.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/fr.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/gl.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/is.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/it.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/jp.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/kr.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/nb.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/nl.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/pl.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/pt.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/ru.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/sv.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/tr.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/zh-cn.js -------------------------------------------------------------------------------- /client/static/js/lib/moment/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/moment/zh-tw.js -------------------------------------------------------------------------------- /client/static/js/lib/sinon-1.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/sinon-1.2.0.js -------------------------------------------------------------------------------- /client/static/js/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/lib/underscore.js -------------------------------------------------------------------------------- /client/static/js/models/activity_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/activity_log.js -------------------------------------------------------------------------------- /client/static/js/models/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/categories.js -------------------------------------------------------------------------------- /client/static/js/models/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/data.js -------------------------------------------------------------------------------- /client/static/js/models/data_uploads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/data_uploads.js -------------------------------------------------------------------------------- /client/static/js/models/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/datasets.js -------------------------------------------------------------------------------- /client/static/js/models/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/exports.js -------------------------------------------------------------------------------- /client/static/js/models/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/notifications.js -------------------------------------------------------------------------------- /client/static/js/models/related_uploads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/related_uploads.js -------------------------------------------------------------------------------- /client/static/js/models/search_subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/search_subscriptions.js -------------------------------------------------------------------------------- /client/static/js/models/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/tasks.js -------------------------------------------------------------------------------- /client/static/js/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/models/users.js -------------------------------------------------------------------------------- /client/static/js/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/routers/index.js -------------------------------------------------------------------------------- /client/static/js/spec/mock_xhr_responses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/mock_xhr_responses.js -------------------------------------------------------------------------------- /client/static/js/spec/models/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/models/datasets.js -------------------------------------------------------------------------------- /client/static/js/spec/models/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/models/tasks.js -------------------------------------------------------------------------------- /client/static/js/spec/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/routers/index.js -------------------------------------------------------------------------------- /client/static/js/spec/views/not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/views/not_found.js -------------------------------------------------------------------------------- /client/static/js/spec/views/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/spec/views/root.js -------------------------------------------------------------------------------- /client/static/js/text/activate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/activate.js -------------------------------------------------------------------------------- /client/static/js/text/data_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/data_upload.js -------------------------------------------------------------------------------- /client/static/js/text/dataset_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/dataset_results.js -------------------------------------------------------------------------------- /client/static/js/text/dataset_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/dataset_search.js -------------------------------------------------------------------------------- /client/static/js/text/dataset_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/dataset_view.js -------------------------------------------------------------------------------- /client/static/js/text/datasets_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/datasets_results.js -------------------------------------------------------------------------------- /client/static/js/text/datasets_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/datasets_search.js -------------------------------------------------------------------------------- /client/static/js/text/fetch_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/fetch_export.js -------------------------------------------------------------------------------- /client/static/js/text/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/home.js -------------------------------------------------------------------------------- /client/static/js/text/inline_search_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/inline_search_filters.js -------------------------------------------------------------------------------- /client/static/js/text/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/inlines.js -------------------------------------------------------------------------------- /client/static/js/text/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/login.js -------------------------------------------------------------------------------- /client/static/js/text/modal_change_password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/modal_change_password.js -------------------------------------------------------------------------------- /client/static/js/text/modal_dataset_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/modal_dataset_edit.js -------------------------------------------------------------------------------- /client/static/js/text/modal_related_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/modal_related_links.js -------------------------------------------------------------------------------- /client/static/js/text/modal_user_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/modal_user_edit.js -------------------------------------------------------------------------------- /client/static/js/text/not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/not_found.js -------------------------------------------------------------------------------- /client/static/js/text/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/notifications.js -------------------------------------------------------------------------------- /client/static/js/text/reset_password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/reset_password.js -------------------------------------------------------------------------------- /client/static/js/text/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/search.js -------------------------------------------------------------------------------- /client/static/js/text/search_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/search_results.js -------------------------------------------------------------------------------- /client/static/js/text/server_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/server_error.js -------------------------------------------------------------------------------- /client/static/js/text/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/text/user.js -------------------------------------------------------------------------------- /client/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/utils.js -------------------------------------------------------------------------------- /client/static/js/views/activate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/activate.js -------------------------------------------------------------------------------- /client/static/js/views/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/dashboard.js -------------------------------------------------------------------------------- /client/static/js/views/data_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/data_upload.js -------------------------------------------------------------------------------- /client/static/js/views/dataset_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/dataset_results.js -------------------------------------------------------------------------------- /client/static/js/views/dataset_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/dataset_search.js -------------------------------------------------------------------------------- /client/static/js/views/dataset_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/dataset_view.js -------------------------------------------------------------------------------- /client/static/js/views/datasets_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/datasets_results.js -------------------------------------------------------------------------------- /client/static/js/views/datasets_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/datasets_search.js -------------------------------------------------------------------------------- /client/static/js/views/fetch_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/fetch_export.js -------------------------------------------------------------------------------- /client/static/js/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/home.js -------------------------------------------------------------------------------- /client/static/js/views/inline_search_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/inline_search_filters.js -------------------------------------------------------------------------------- /client/static/js/views/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/login.js -------------------------------------------------------------------------------- /client/static/js/views/modal_change_password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/modal_change_password.js -------------------------------------------------------------------------------- /client/static/js/views/modal_dataset_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/modal_dataset_edit.js -------------------------------------------------------------------------------- /client/static/js/views/modal_related_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/modal_related_links.js -------------------------------------------------------------------------------- /client/static/js/views/modal_user_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/modal_user_edit.js -------------------------------------------------------------------------------- /client/static/js/views/not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/not_found.js -------------------------------------------------------------------------------- /client/static/js/views/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/notifications.js -------------------------------------------------------------------------------- /client/static/js/views/reset_password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/reset_password.js -------------------------------------------------------------------------------- /client/static/js/views/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/root.js -------------------------------------------------------------------------------- /client/static/js/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/search.js -------------------------------------------------------------------------------- /client/static/js/views/search_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/search_results.js -------------------------------------------------------------------------------- /client/static/js/views/server_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/server_error.js -------------------------------------------------------------------------------- /client/static/js/views/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/js/views/user.js -------------------------------------------------------------------------------- /client/static/templates/activate.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/activate.jst -------------------------------------------------------------------------------- /client/static/templates/data_upload.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/data_upload.jst -------------------------------------------------------------------------------- /client/static/templates/dataset_results.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/dataset_results.jst -------------------------------------------------------------------------------- /client/static/templates/dataset_search.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/dataset_search.jst -------------------------------------------------------------------------------- /client/static/templates/dataset_view.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/dataset_view.jst -------------------------------------------------------------------------------- /client/static/templates/datasets_results.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/datasets_results.jst -------------------------------------------------------------------------------- /client/static/templates/datasets_search.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/datasets_search.jst -------------------------------------------------------------------------------- /client/static/templates/fetch_export.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/fetch_export.jst -------------------------------------------------------------------------------- /client/static/templates/home.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/home.jst -------------------------------------------------------------------------------- /client/static/templates/inline_advanced_search_tooltip.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_advanced_search_tooltip.jst -------------------------------------------------------------------------------- /client/static/templates/inline_pager.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_pager.jst -------------------------------------------------------------------------------- /client/static/templates/inline_sample_data.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_sample_data.jst -------------------------------------------------------------------------------- /client/static/templates/inline_search_filter.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_search_filter.jst -------------------------------------------------------------------------------- /client/static/templates/inline_search_filters.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_search_filters.jst -------------------------------------------------------------------------------- /client/static/templates/inline_timestamp.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_timestamp.jst -------------------------------------------------------------------------------- /client/static/templates/inline_upload_item.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_upload_item.jst -------------------------------------------------------------------------------- /client/static/templates/inline_user.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_user.jst -------------------------------------------------------------------------------- /client/static/templates/inline_widget_bool_selector.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_widget_bool_selector.jst -------------------------------------------------------------------------------- /client/static/templates/inline_widget_double_input.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_widget_double_input.jst -------------------------------------------------------------------------------- /client/static/templates/inline_widget_single_input.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/inline_widget_single_input.jst -------------------------------------------------------------------------------- /client/static/templates/login.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/login.jst -------------------------------------------------------------------------------- /client/static/templates/modal_change_password.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/modal_change_password.jst -------------------------------------------------------------------------------- /client/static/templates/modal_dataset_edit.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/modal_dataset_edit.jst -------------------------------------------------------------------------------- /client/static/templates/modal_related_links.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/modal_related_links.jst -------------------------------------------------------------------------------- /client/static/templates/modal_upload_edit.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/modal_upload_edit.jst -------------------------------------------------------------------------------- /client/static/templates/modal_user_edit.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/modal_user_edit.jst -------------------------------------------------------------------------------- /client/static/templates/not_found.jst: -------------------------------------------------------------------------------- 1 |

<%= text.not_found %>

2 | -------------------------------------------------------------------------------- /client/static/templates/notifications.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/notifications.jst -------------------------------------------------------------------------------- /client/static/templates/reset_password.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/reset_password.jst -------------------------------------------------------------------------------- /client/static/templates/search.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/search.jst -------------------------------------------------------------------------------- /client/static/templates/search_results.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/search_results.jst -------------------------------------------------------------------------------- /client/static/templates/server_error.jst: -------------------------------------------------------------------------------- 1 |

<%= text.server_error %>

2 | -------------------------------------------------------------------------------- /client/static/templates/user.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/static/templates/user.jst -------------------------------------------------------------------------------- /client/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/templates/dashboard.html -------------------------------------------------------------------------------- /client/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/templates/index.html -------------------------------------------------------------------------------- /client/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/urls.py -------------------------------------------------------------------------------- /client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/utils.py -------------------------------------------------------------------------------- /client/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/client/views.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/deployed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/deployed/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/config/deployed/settings.py -------------------------------------------------------------------------------- /config/jumpstart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/jumpstart/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/config/jumpstart/settings.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/config/urls.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/amazon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/amazon.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api_keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/api_keys.rst -------------------------------------------------------------------------------- /docs/api_tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/api_tutorial.rst -------------------------------------------------------------------------------- /docs/backups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/backups.rst -------------------------------------------------------------------------------- /docs/categories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/categories.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/dns.rst -------------------------------------------------------------------------------- /docs/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/email.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/i18n.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/i18n.rst -------------------------------------------------------------------------------- /docs/images/amazon-connect-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/amazon-connect-dialog.png -------------------------------------------------------------------------------- /docs/images/amazon-create-ssh-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/amazon-create-ssh-key.png -------------------------------------------------------------------------------- /docs/images/amazon-security-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/amazon-security-groups.png -------------------------------------------------------------------------------- /docs/images/amazon-select-ami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/amazon-select-ami.png -------------------------------------------------------------------------------- /docs/images/amazon-ssh-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/amazon-ssh-client.png -------------------------------------------------------------------------------- /docs/images/high-five.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/high-five.jpg -------------------------------------------------------------------------------- /docs/images/panda-column-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-column-search.png -------------------------------------------------------------------------------- /docs/images/panda-dataset-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-dataset-search.png -------------------------------------------------------------------------------- /docs/images/panda-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-dataset.png -------------------------------------------------------------------------------- /docs/images/panda-enable-column-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-enable-column-search.png -------------------------------------------------------------------------------- /docs/images/panda-enable-column-search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-enable-column-search2.png -------------------------------------------------------------------------------- /docs/images/panda-find-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-find-dataset.png -------------------------------------------------------------------------------- /docs/images/panda-importing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-importing.png -------------------------------------------------------------------------------- /docs/images/panda-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-preview.png -------------------------------------------------------------------------------- /docs/images/panda-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-search.png -------------------------------------------------------------------------------- /docs/images/panda-subscribe-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-subscribe-all.png -------------------------------------------------------------------------------- /docs/images/panda-subscribe-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-subscribe-dataset.png -------------------------------------------------------------------------------- /docs/images/panda-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/images/panda-upload.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/local_development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/local_development.rst -------------------------------------------------------------------------------- /docs/manual_imports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/manual_imports.rst -------------------------------------------------------------------------------- /docs/ops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/ops.rst -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/production.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/production.rst -------------------------------------------------------------------------------- /docs/self-install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/self-install.rst -------------------------------------------------------------------------------- /docs/ssh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/ssh.rst -------------------------------------------------------------------------------- /docs/ssl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/ssl.rst -------------------------------------------------------------------------------- /docs/storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/storage.rst -------------------------------------------------------------------------------- /docs/upgrades.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/upgrades.rst -------------------------------------------------------------------------------- /docs/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/users.rst -------------------------------------------------------------------------------- /docs/what_is_panda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/docs/what_is_panda.rst -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/fabfile.py -------------------------------------------------------------------------------- /jumpstart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jumpstart/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/daemon.py -------------------------------------------------------------------------------- /jumpstart/restart-uwsgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/restart-uwsgi.sh -------------------------------------------------------------------------------- /jumpstart/static/css/jumpstart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/static/css/jumpstart.css -------------------------------------------------------------------------------- /jumpstart/templates/jumpstart/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/templates/jumpstart/base.html -------------------------------------------------------------------------------- /jumpstart/templates/jumpstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/templates/jumpstart/index.html -------------------------------------------------------------------------------- /jumpstart/templates/jumpstart/wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/templates/jumpstart/wait.html -------------------------------------------------------------------------------- /jumpstart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/urls.py -------------------------------------------------------------------------------- /jumpstart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/jumpstart/views.py -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/de/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/de/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/es/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/es/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/it/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/locale/it/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /loghandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/loghandlers.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/manage.py -------------------------------------------------------------------------------- /panda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panda/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/admin.py -------------------------------------------------------------------------------- /panda/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/__init__.py -------------------------------------------------------------------------------- /panda/api/activity_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/activity_log.py -------------------------------------------------------------------------------- /panda/api/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/category.py -------------------------------------------------------------------------------- /panda/api/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/data.py -------------------------------------------------------------------------------- /panda/api/data_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/data_uploads.py -------------------------------------------------------------------------------- /panda/api/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/datasets.py -------------------------------------------------------------------------------- /panda/api/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/exports.py -------------------------------------------------------------------------------- /panda/api/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/notifications.py -------------------------------------------------------------------------------- /panda/api/related_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/related_uploads.py -------------------------------------------------------------------------------- /panda/api/search_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/search_subscriptions.py -------------------------------------------------------------------------------- /panda/api/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/tasks.py -------------------------------------------------------------------------------- /panda/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/users.py -------------------------------------------------------------------------------- /panda/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/api/utils.py -------------------------------------------------------------------------------- /panda/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/config.py -------------------------------------------------------------------------------- /panda/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/exceptions.py -------------------------------------------------------------------------------- /panda/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/fields.py -------------------------------------------------------------------------------- /panda/fixtures/init_panda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/fixtures/init_panda.json -------------------------------------------------------------------------------- /panda/fixtures/test_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/fixtures/test_users.json -------------------------------------------------------------------------------- /panda/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panda/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panda/management/commands/manual_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/management/commands/manual_import.py -------------------------------------------------------------------------------- /panda/management/commands/purge_orphaned_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/management/commands/purge_orphaned_uploads.py -------------------------------------------------------------------------------- /panda/management/commands/reindex_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/management/commands/reindex_datasets.py -------------------------------------------------------------------------------- /panda/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/middleware.py -------------------------------------------------------------------------------- /panda/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0001_initial.py -------------------------------------------------------------------------------- /panda/migrations/0002_auto__add_field_dataset_locked__add_field_dataset_locked_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0002_auto__add_field_dataset_locked__add_field_dataset_locked_at.py -------------------------------------------------------------------------------- /panda/migrations/0003_auto__add_field_dataupload_guessed_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0003_auto__add_field_dataupload_guessed_types.py -------------------------------------------------------------------------------- /panda/migrations/0004_auto__add_field_dataset_column_types__add_field_dataset_typed_column_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0004_auto__add_field_dataset_column_types__add_field_dataset_typed_column_n.py -------------------------------------------------------------------------------- /panda/migrations/0005_auto__add_field_dataset_typed_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0005_auto__add_field_dataset_typed_columns.py -------------------------------------------------------------------------------- /panda/migrations/0006_auto__add_field_dataset_column_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0006_auto__add_field_dataset_column_schema.py -------------------------------------------------------------------------------- /panda/migrations/0007_auto__del_field_dataset_typed_columns__del_field_dataset_column_types_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0007_auto__del_field_dataset_typed_columns__del_field_dataset_column_types_.py -------------------------------------------------------------------------------- /panda/migrations/0008_unlock_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0008_unlock_datasets.py -------------------------------------------------------------------------------- /panda/migrations/0009_auto__add_activitylog__add_unique_activitylog_user_when.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0009_auto__add_activitylog__add_unique_activitylog_user_when.py -------------------------------------------------------------------------------- /panda/migrations/0010_auto__add_searchlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0010_auto__add_searchlog.py -------------------------------------------------------------------------------- /panda/migrations/0011_add_activitylog_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0011_add_activitylog_permissions.py -------------------------------------------------------------------------------- /panda/migrations/0012_auto__chg_field_export_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0012_auto__chg_field_export_dataset.py -------------------------------------------------------------------------------- /panda/migrations/0013_auto__chg_field_userprofile_activation_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0013_auto__chg_field_userprofile_activation_key.py -------------------------------------------------------------------------------- /panda/migrations/0014_delete_used_activation_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0014_delete_used_activation_keys.py -------------------------------------------------------------------------------- /panda/migrations/0015_lowercase_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0015_lowercase_emails.py -------------------------------------------------------------------------------- /panda/migrations/0016_auto__add_field_notification_related_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0016_auto__add_field_notification_related_export.py -------------------------------------------------------------------------------- /panda/migrations/0017_auto__add_field_userprofile_activation_key_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0017_auto__add_field_userprofile_activation_key_expiration.py -------------------------------------------------------------------------------- /panda/migrations/0018_auto__add_field_taskstatus_task_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0018_auto__add_field_taskstatus_task_description.py -------------------------------------------------------------------------------- /panda/migrations/0019_auto__add_searchsubscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0019_auto__add_searchsubscription.py -------------------------------------------------------------------------------- /panda/migrations/0020_auto__add_field_searchsubscription_query_url__chg_field_searchsubscrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0020_auto__add_field_searchsubscription_query_url__chg_field_searchsubscrip.py -------------------------------------------------------------------------------- /panda/migrations/0021_auto__add_field_notification_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0021_auto__add_field_notification_url.py -------------------------------------------------------------------------------- /panda/migrations/0022_create_notification_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0022_create_notification_urls.py -------------------------------------------------------------------------------- /panda/migrations/0023_auto__del_field_notification_related_export__del_field_notification_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0023_auto__del_field_notification_related_export__del_field_notification_re.py -------------------------------------------------------------------------------- /panda/migrations/0024_auto__add_field_searchsubscription_query_human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0024_auto__add_field_searchsubscription_query_human.py -------------------------------------------------------------------------------- /panda/migrations/0025_add_subscription_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0025_add_subscription_permissions.py -------------------------------------------------------------------------------- /panda/migrations/0026_auto__add_field_userprofile_show_login_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0026_auto__add_field_userprofile_show_login_help.py -------------------------------------------------------------------------------- /panda/migrations/0027_auto__add_field_searchsubscription_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0027_auto__add_field_searchsubscription_category.py -------------------------------------------------------------------------------- /panda/migrations/0028_auto__add_field_relatedupload_title__add_field_export_title__add_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0028_auto__add_field_relatedupload_title__add_field_export_title__add_field.py -------------------------------------------------------------------------------- /panda/migrations/0029_populate_upload_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0029_populate_upload_titles.py -------------------------------------------------------------------------------- /panda/migrations/0030_auto__add_field_dataset_related_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0030_auto__add_field_dataset_related_stories.py -------------------------------------------------------------------------------- /panda/migrations/0031_rename_dataset_related_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0031_rename_dataset_related_stories.py -------------------------------------------------------------------------------- /panda/migrations/0032_auto__add_field_dataupload_deletable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0032_auto__add_field_dataupload_deletable.py -------------------------------------------------------------------------------- /panda/migrations/0033_auto__chg_field_searchlog_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/migrations/0033_auto__chg_field_searchlog_query.py -------------------------------------------------------------------------------- /panda/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panda/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/__init__.py -------------------------------------------------------------------------------- /panda/models/activity_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/activity_log.py -------------------------------------------------------------------------------- /panda/models/base_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/base_upload.py -------------------------------------------------------------------------------- /panda/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/category.py -------------------------------------------------------------------------------- /panda/models/data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/data_upload.py -------------------------------------------------------------------------------- /panda/models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/dataset.py -------------------------------------------------------------------------------- /panda/models/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/export.py -------------------------------------------------------------------------------- /panda/models/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/notification.py -------------------------------------------------------------------------------- /panda/models/related_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/related_upload.py -------------------------------------------------------------------------------- /panda/models/search_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/search_log.py -------------------------------------------------------------------------------- /panda/models/search_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/search_subscription.py -------------------------------------------------------------------------------- /panda/models/slugged_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/slugged_model.py -------------------------------------------------------------------------------- /panda/models/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/task_status.py -------------------------------------------------------------------------------- /panda/models/user_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/user_profile.py -------------------------------------------------------------------------------- /panda/models/user_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/models/user_proxy.py -------------------------------------------------------------------------------- /panda/solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/solr.py -------------------------------------------------------------------------------- /panda/static/panda_user_change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/static/panda_user_change_form.js -------------------------------------------------------------------------------- /panda/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/storage.py -------------------------------------------------------------------------------- /panda/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/__init__.py -------------------------------------------------------------------------------- /panda/tasks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/base.py -------------------------------------------------------------------------------- /panda/tasks/export_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/export_csv.py -------------------------------------------------------------------------------- /panda/tasks/export_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/export_file.py -------------------------------------------------------------------------------- /panda/tasks/export_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/export_search.py -------------------------------------------------------------------------------- /panda/tasks/import_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/import_csv.py -------------------------------------------------------------------------------- /panda/tasks/import_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/import_file.py -------------------------------------------------------------------------------- /panda/tasks/import_xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/import_xls.py -------------------------------------------------------------------------------- /panda/tasks/import_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/import_xlsx.py -------------------------------------------------------------------------------- /panda/tasks/purge_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/purge_data.py -------------------------------------------------------------------------------- /panda/tasks/purge_orphaned_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/purge_orphaned_uploads.py -------------------------------------------------------------------------------- /panda/tasks/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/reindex.py -------------------------------------------------------------------------------- /panda/tasks/run_admin_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/run_admin_alerts.py -------------------------------------------------------------------------------- /panda/tasks/run_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tasks/run_subscriptions.py -------------------------------------------------------------------------------- /panda/templates/admin/panda/taskstatus/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/admin/panda/taskstatus/change_form.html -------------------------------------------------------------------------------- /panda/templates/admin/panda/userproxy/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/admin/panda/userproxy/add_form.html -------------------------------------------------------------------------------- /panda/templates/admin/panda/userproxy/add_many_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/admin/panda/userproxy/add_many_form.html -------------------------------------------------------------------------------- /panda/templates/admin/panda/userproxy/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/admin/panda/userproxy/change_form.html -------------------------------------------------------------------------------- /panda/templates/admin/panda/userproxy/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/admin/panda/userproxy/change_list.html -------------------------------------------------------------------------------- /panda/templates/notifications/disk_space_alert/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/disk_space_alert/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/disk_space_alert/email_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "Low disk space!" %} 2 | -------------------------------------------------------------------------------- /panda/templates/notifications/export_aborted/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_aborted/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_aborted/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_aborted/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_aborted/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_aborted/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/export_complete/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_complete/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_complete/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_complete/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_complete/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_complete/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/export_failed/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_failed/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_failed/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_failed/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_failed/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_failed/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_aborted/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_aborted/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_complete/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_complete/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_complete/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_complete/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_complete/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_complete/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_failed/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_failed/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/export_search_failed/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/export_search_failed/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/import_aborted/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_aborted/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_aborted/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_aborted/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_aborted/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_aborted/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/import_complete/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_complete/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_complete/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_complete/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_complete/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_complete/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/import_failed/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_failed/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_failed/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_failed/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/import_failed/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/import_failed/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_aborted/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_aborted/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_aborted/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_aborted/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_aborted/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_aborted/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_complete/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_complete/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_complete/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_complete/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_complete/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_complete/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_failed/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_failed/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_failed/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_failed/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/reindex_failed/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/reindex_failed/message.html -------------------------------------------------------------------------------- /panda/templates/notifications/subscription_results/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/subscription_results/email_body.txt -------------------------------------------------------------------------------- /panda/templates/notifications/subscription_results/email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/subscription_results/email_subject.txt -------------------------------------------------------------------------------- /panda/templates/notifications/subscription_results/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/templates/notifications/subscription_results/message.html -------------------------------------------------------------------------------- /panda/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/__init__.py -------------------------------------------------------------------------------- /panda/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_admin.py -------------------------------------------------------------------------------- /panda/tests/test_api_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_category.py -------------------------------------------------------------------------------- /panda/tests/test_api_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_data.py -------------------------------------------------------------------------------- /panda/tests/test_api_data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_data_upload.py -------------------------------------------------------------------------------- /panda/tests/test_api_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_dataset.py -------------------------------------------------------------------------------- /panda/tests/test_api_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_export.py -------------------------------------------------------------------------------- /panda/tests/test_api_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_notification.py -------------------------------------------------------------------------------- /panda/tests/test_api_related_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_related_upload.py -------------------------------------------------------------------------------- /panda/tests/test_api_search_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_search_subscriptions.py -------------------------------------------------------------------------------- /panda/tests/test_api_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_task_status.py -------------------------------------------------------------------------------- /panda/tests/test_api_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_api_user.py -------------------------------------------------------------------------------- /panda/tests/test_data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_data_upload.py -------------------------------------------------------------------------------- /panda/tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_dataset.py -------------------------------------------------------------------------------- /panda/tests/test_export_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_export_search.py -------------------------------------------------------------------------------- /panda/tests/test_purge_orphaned_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_purge_orphaned_uploads.py -------------------------------------------------------------------------------- /panda/tests/test_related_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_related_upload.py -------------------------------------------------------------------------------- /panda/tests/test_search_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_search_subscriptions.py -------------------------------------------------------------------------------- /panda/tests/test_solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_solr.py -------------------------------------------------------------------------------- /panda/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_user.py -------------------------------------------------------------------------------- /panda/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_utils.py -------------------------------------------------------------------------------- /panda/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/test_views.py -------------------------------------------------------------------------------- /panda/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/tests/utils.py -------------------------------------------------------------------------------- /panda/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/urls.py -------------------------------------------------------------------------------- /panda/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/__init__.py -------------------------------------------------------------------------------- /panda/utils/column_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/column_schema.py -------------------------------------------------------------------------------- /panda/utils/csvdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/csvdata.py -------------------------------------------------------------------------------- /panda/utils/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/mail.py -------------------------------------------------------------------------------- /panda/utils/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/notifications.py -------------------------------------------------------------------------------- /panda/utils/solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/solr.py -------------------------------------------------------------------------------- /panda/utils/typecoercion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/typecoercion.py -------------------------------------------------------------------------------- /panda/utils/xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/xls.py -------------------------------------------------------------------------------- /panda/utils/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/utils/xlsx.py -------------------------------------------------------------------------------- /panda/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/panda/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/audit_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/audit_uploads.py -------------------------------------------------------------------------------- /scripts/backup_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/backup_volumes.py -------------------------------------------------------------------------------- /scripts/check_po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/check_po.py -------------------------------------------------------------------------------- /scripts/migrate_files_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrate_files_volume.py -------------------------------------------------------------------------------- /scripts/migrate_solr_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrate_solr_volume.py -------------------------------------------------------------------------------- /scripts/migrations/0.1.0-to-0.1.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.1.0-to-0.1.1.sh -------------------------------------------------------------------------------- /scripts/migrations/0.1.1-to-0.1.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.1.1-to-0.1.2.sh -------------------------------------------------------------------------------- /scripts/migrations/0.1.2-to-0.1.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.1.2-to-0.1.3.sh -------------------------------------------------------------------------------- /scripts/migrations/0.1.3-to-0.1.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.1.3-to-0.1.4.sh -------------------------------------------------------------------------------- /scripts/migrations/0.1.4-to-0.2.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.1.4-to-0.2.0.sh -------------------------------------------------------------------------------- /scripts/migrations/0.2.0-to-1.0.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/0.2.0-to-1.0.0.sh -------------------------------------------------------------------------------- /scripts/migrations/1.0.0-to-1.0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/1.0.0-to-1.0.1.sh -------------------------------------------------------------------------------- /scripts/migrations/1.0.1-to-1.0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/1.0.1-to-1.0.2.sh -------------------------------------------------------------------------------- /scripts/migrations/1.0.2-to-1.1.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/1.0.2-to-1.1.0.sh -------------------------------------------------------------------------------- /scripts/migrations/1.1.0-to-1.1.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/scripts/migrations/1.1.0-to-1.1.1.sh -------------------------------------------------------------------------------- /setup_panda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda.sh -------------------------------------------------------------------------------- /setup_panda/10periodic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/10periodic -------------------------------------------------------------------------------- /setup_panda/celeryd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/celeryd.conf -------------------------------------------------------------------------------- /setup_panda/data_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/data_schema.xml -------------------------------------------------------------------------------- /setup_panda/datasets_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/datasets_schema.xml -------------------------------------------------------------------------------- /setup_panda/english_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/english_names.txt -------------------------------------------------------------------------------- /setup_panda/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/nginx -------------------------------------------------------------------------------- /setup_panda/nginx_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/nginx_ssl -------------------------------------------------------------------------------- /setup_panda/panda.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/panda.jar -------------------------------------------------------------------------------- /setup_panda/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/pg_hba.conf -------------------------------------------------------------------------------- /setup_panda/solr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/solr.conf -------------------------------------------------------------------------------- /setup_panda/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/solr.xml -------------------------------------------------------------------------------- /setup_panda/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/solrconfig.xml -------------------------------------------------------------------------------- /setup_panda/uwsgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/uwsgi.conf -------------------------------------------------------------------------------- /setup_panda/uwsgi_jumpstart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/setup_panda/uwsgi_jumpstart.conf -------------------------------------------------------------------------------- /solr_plugin/panda/CustomSimilarity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/solr_plugin/panda/CustomSimilarity.class -------------------------------------------------------------------------------- /solr_plugin/panda/CustomSimilarity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/solr_plugin/panda/CustomSimilarity.java -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/admin/panda_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/admin/panda_index.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/livesettings/site_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/templates/livesettings/site_settings.html -------------------------------------------------------------------------------- /test_data/contributors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/contributors.csv -------------------------------------------------------------------------------- /test_data/contributors.excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/contributors.excel.xlsx -------------------------------------------------------------------------------- /test_data/contributors.oo.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/contributors.oo.xlsx -------------------------------------------------------------------------------- /test_data/contributors.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/contributors.xls -------------------------------------------------------------------------------- /test_data/test_cell_too_long.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_cell_too_long.csv -------------------------------------------------------------------------------- /test_data/test_money.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_money.csv -------------------------------------------------------------------------------- /test_data/test_multiline_header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_multiline_header.csv -------------------------------------------------------------------------------- /test_data/test_not_unicode_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_not_unicode_data.csv -------------------------------------------------------------------------------- /test_data/test_not_unicode_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_not_unicode_sample.csv -------------------------------------------------------------------------------- /test_data/test_tab_delimited.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_tab_delimited.csv -------------------------------------------------------------------------------- /test_data/test_types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_types.csv -------------------------------------------------------------------------------- /test_data/test_types.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_types.xls -------------------------------------------------------------------------------- /test_data/test_types.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandaproject/panda/HEAD/test_data/test_types.xlsx -------------------------------------------------------------------------------- /test_data/test_uneven_rows.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,"3 4" 3 | 4,5,6 4 | 7,"8",9, 5 | 10,11,12 6 | --------------------------------------------------------------------------------