├── .dockerignore ├── .github └── workflows │ ├── django.yml │ └── docker.yml ├── .gitignore ├── .gitlab-ci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── ci-requirements.txt ├── core ├── __init__.py ├── base │ ├── __init__.py │ ├── comparison.py │ ├── hashing.py │ ├── image_ops.py │ ├── matchers.py │ ├── parsers.py │ ├── providers.py │ ├── setup.py │ ├── setup_utilities.py │ ├── tag_logic.py │ ├── types.py │ └── utilities.py ├── downloaders │ ├── __init__.py │ ├── handlers.py │ ├── postdownload.py │ └── torrent │ │ ├── __init__.py │ │ ├── transmission.py │ │ └── utorrent.py ├── libs │ ├── __init__.py │ └── bencoding.py ├── local │ ├── __init__.py │ ├── foldercrawler.py │ └── foldercrawlerthread.py ├── providers │ ├── __init__.py │ ├── chaika │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── fakku │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ ├── utilities.py │ │ └── wanted.py │ ├── generic │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── irodori │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── j18 │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── mega │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── parsers.py │ │ └── settings.py │ ├── mugimugi │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ ├── utilities.py │ │ └── wanted.py │ ├── nexus │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── nhentai │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── nyaa │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── panda │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ ├── twitter │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── handles │ │ │ ├── __init__.py │ │ │ └── wanimagazine.py │ │ ├── settings.py │ │ ├── utilities.py │ │ └── wanted.py │ ├── twodmarket │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── downloaders.py │ │ ├── matchers.py │ │ ├── parsers.py │ │ ├── settings.py │ │ └── utilities.py │ └── wanimagazine │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── settings.py │ │ ├── utilities.py │ │ └── wanted.py ├── web │ ├── __init__.py │ ├── crawler.py │ └── crawlerthread.py └── workers │ ├── __init__.py │ ├── archive_work.py │ ├── auto_wanted.py │ ├── autoupdate.py │ ├── download_progress.py │ ├── holder.py │ ├── link_monitor.py │ ├── schedulers.py │ └── webqueue.py ├── crawlerrun.py ├── default.yaml ├── dev-requirements.txt ├── docker-compose.build.yml ├── docker-compose.yml ├── docker └── nginx │ └── conf.d │ └── nginx.conf ├── dockerentry.sh ├── docs └── DOCKER.md ├── foldercrawlerrun.py ├── httplogger.py ├── init ├── ecosystem.config.js ├── freebsd └── systemd ├── manage.py ├── mypy.ini ├── pandabackup ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── pyproject.toml ├── requirements-win.txt ├── requirements.txt ├── sample.env ├── server.py ├── set_db_engine.sh ├── templates ├── 404.html ├── 500.html └── viewer │ ├── about.html │ ├── accounts │ ├── change_password.html │ ├── login.html │ └── user_profile.html │ ├── archive.html │ ├── archive_change_log.html │ ├── archive_display_clone_plus.html │ ├── archive_display_delete.html │ ├── archive_display_split.html │ ├── archive_display_tool.html │ ├── archive_group.html │ ├── archive_group_display_tool.html │ ├── archive_group_edit.html │ ├── archive_groups.html │ ├── archive_image_data_list.html │ ├── archive_search.html │ ├── archives_different_filesize.html │ ├── archives_missing_for_galleries.html │ ├── archives_not_matched.html │ ├── archives_not_present.html │ ├── archives_repeated.html │ ├── archives_similar_by_fields.html │ ├── base.html │ ├── collaborators │ ├── activity_event_log.html │ ├── add_archive.html │ ├── add_gallery.html │ ├── add_wanted_galleries_from_command.html │ ├── add_wanted_gallery.html │ ├── archive_group_editor.html │ ├── archives_missing_for_galleries.html │ ├── compare_archives.html │ ├── compare_archives_public.html │ ├── download_history.html │ ├── event_log.html │ ├── gallery_crawler.html │ ├── gallery_match_group_tool.html │ ├── manage_archives.html │ ├── manage_galleries.html │ ├── monitored_links.html │ ├── submit_queue.html │ ├── unmatched_archives.html │ ├── wanted_galleries.html │ └── wanted_gallery.html │ ├── crawler.html │ ├── elasticsearch.html │ ├── elasticsearch_gallery.html │ ├── foldercrawler.html │ ├── found_galleries.html │ ├── galleries_repeated_by_fields.html │ ├── gallery.html │ ├── gallery_change_log.html │ ├── gallery_display_tool.html │ ├── gallery_match_group.html │ ├── gallery_match_group_display_tool.html │ ├── gallery_match_group_edit.html │ ├── gallery_match_groups.html │ ├── gallery_search.html │ ├── include │ ├── archive_add.html │ ├── archive_clone_plus.html │ ├── archive_col_match.html │ ├── archive_cover.html │ ├── archive_edit.html │ ├── archive_group_edit.html │ ├── archive_group_entry.html │ ├── archive_manage.html │ ├── archive_match.html │ ├── archive_split.html │ ├── delete_archive.html │ ├── gallery_add.html │ ├── gallery_col_match.html │ ├── gallery_cover.html │ ├── gallery_match_cover.html │ ├── gallery_match_group_edit.html │ ├── gallery_match_group_entry.html │ ├── gallery_search │ │ ├── advanced_panel.html │ │ └── main_search.html │ ├── messages.html │ ├── modals │ │ ├── archive_group_tool_reason.html │ │ ├── archive_tool_reason.html │ │ ├── gallery_match_group_tool_reason.html │ │ └── gallery_tool_reason.html │ ├── search_archive_form.html │ ├── search_gallery_form.html │ ├── viewer_modal.html │ └── wanted_gallery_edit.html │ ├── logs.html │ ├── message.html │ ├── new_image_viewer.html │ ├── panda.user.js │ ├── public_stats.html │ ├── settings.html │ ├── static_public_stats.html │ ├── stats_collection.html │ ├── stats_settings.html │ ├── stats_workers.html │ ├── tools.html │ ├── url_submit.html │ ├── wanted_galleries.html │ └── wanted_gallery.html ├── uv.lock └── viewer ├── __init__.py ├── admin.py ├── apps.py ├── assets ├── archive-groups │ ├── .vite │ │ └── manifest.json │ └── assets │ │ ├── main-CX7jbNNa.js │ │ ├── main-CyoxNMCT.css │ │ └── no_cover-eEdCbnFG.png ├── compare-archives-lite │ ├── .vite │ │ └── manifest.json │ └── assets │ │ ├── main-Uy0h26jO.js │ │ └── main-cXz8PrLd.css ├── compare-archives │ ├── .vite │ │ └── manifest.json │ └── assets │ │ ├── main-DpcyC6WE.js │ │ └── main-cXz8PrLd.css └── image-viewer │ ├── .vite │ └── manifest.json │ └── assets │ ├── ajax-loader-BcnMEykj.gif │ ├── main-B1CoUROd.js │ ├── main-BVmoCmGW.css │ ├── no_cover-eEdCbnFG.png │ └── slick-BlzDm7g2.svg ├── feeds.py ├── forms.py ├── handlers.py ├── management └── commands │ ├── archive_matcher.py │ ├── archive_processing.py │ ├── generate_pages.py │ ├── image_hashing.py │ ├── providers.py │ ├── push-to-index.py │ ├── remotesite.py │ ├── twitter.py │ ├── update_provider_wanted.py │ └── user-management.py ├── middleware.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20151029_0104.py ├── 0003_announce_type.py ├── 0004_auto_20151029_0228.py ├── 0005_auto_20151029_0233.py ├── 0006_auto_20151029_0745.py ├── 0007_auto_20151029_1128.py ├── 0008_auto_20151029_1513.py ├── 0009_auto_20151029_1514.py ├── 0010_tweetpost.py ├── 0011_auto_20151104_1644.py ├── 0012_gallery_public.py ├── 0013_auto_20151113_1101.py ├── 0014_gallery_comment.py ├── 0015_auto_20151118_0020.py ├── 0016_auto_20151124_1215.py ├── 0017_auto_20151124_1218.py ├── 0018_auto_20151124_1421.py ├── 0019_auto_20151209_1131.py ├── 0020_wantedgallery_add_as_hidden.py ├── 0021_auto_20160516_1603.py ├── 0022_auto_20160517_0149.py ├── 0023_archive_tags.py ├── 0024_auto_20170116_1417.py ├── 0025_auto_20170116_1910.py ├── 0026_auto_20170117_0933.py ├── 0027_auto_20170329_1035.py ├── 0028_scheduler.py ├── 0029_auto_20170418_1852.py ├── 0030_remove_wantedgallery_matched_gallery.py ├── 0031_archive_public_date.py ├── 0032_archive_reason.py ├── 0033_wantedgallery_reason.py ├── 0034_auto_20170712_1557.py ├── 0035_wantedgallery_provider.py ├── 0036_wantedgallery_notify_when_found.py ├── 0037_gallery_provider.py ├── 0038_auto_20170720_1225.py ├── 0039_auto_20170722_2245.py ├── 0040_auto_20170727_0910.py ├── 0041_auto_20170728_2236.py ├── 0042_auto_20170729_0448.py ├── 0043_auto_20170729_0501.py ├── 0044_auto_20170806_0129.py ├── 0045_auto_20170806_0226.py ├── 0046_auto_20170806_0230.py ├── 0047_auto_20170806_0232.py ├── 0048_auto_20170806_0251.py ├── 0049_auto_20170806_2015.py ├── 0050_wantedgallery_public.py ├── 0051_gallery_status.py ├── 0052_wantedgallery_category.py ├── 0053_wantedgallery_wanted_tags_exclusive_scope.py ├── 0054_auto_20171212_2053.py ├── 0055_auto_20180805_1902.py ├── 0056_gallery_gallery_container.py ├── 0057_auto_20180807_1027.py ├── 0058_auto_20180807_1030.py ├── 0059_gallery_origin.py ├── 0060_gallery_reason.py ├── 0061_auto_20180811_2222.py ├── 0062_auto_20180814_0054.py ├── 0063_profile.py ├── 0064_auto_20180815_0053.py ├── 0065_auto_20180822_1112.py ├── 0066_auto_20180903_0006.py ├── 0067_auto_20181003_1058.py ├── 0068_auto_20181003_1128.py ├── 0069_auto_20181003_1134.py ├── 0070_auto_20181003_1426.py ├── 0071_archive_alternative_sources.py ├── 0072_auto_20181210_1420.py ├── 0073_auto_20190105_1736.py ├── 0074_auto_20190402_1152.py ├── 0075_archivematches_match_type.py ├── 0076_auto_20190417_1524.py ├── 0077_auto_20190418_1914.py ├── 0078_wantedgallery_wanted_providers.py ├── 0079_archive_original_filename.py ├── 0080_auto_20190711_1912.py ├── 0081_auto_20190712_2135.py ├── 0082_auto_20190712_2323.py ├── 0083_auto_20190715_1247.py ├── 0084_auto_20190729_1516.py ├── 0085_auto_20191218_2100.py ├── 0086_auto_20191218_2102.py ├── 0087_auto_20191218_2107.py ├── 0088_auto_20191219_1018.py ├── 0089_auto_20191220_1641.py ├── 0090_artist_twitter_handle.py ├── 0091_auto_20200805_1731.py ├── 0092_auto_20200806_1939.py ├── 0093_wantedgallery_unwanted_providers.py ├── 0094_auto_20201006_1525.py ├── 0095_gallery_magazine.py ├── 0096_gallerysubmitentry.py ├── 0097_auto_20210309_1633.py ├── 0098_auto_20210309_2205.py ├── 0099_auto_20210329_1722.py ├── 0100_alter_gallery_options.py ├── 0101_wantedgallery_wait_for_time.py ├── 0102_wantedgallery_exclusive_scope_name.py ├── 0103_remove_wantedgallery_look_for_duration.py ├── 0104_wantedgallery_wanted_tags_accept_if_none_scope.py ├── 0105_alter_eventlog_data.py ├── 0106_alter_archive_options.py ├── 0107_alter_archive_options.py ├── 0108_wantedgallery_add_to_archive_group.py ├── 0109_gallerysubmitentry_similar_galleries.py ├── 0110_userarchiveprefs_unique_user_archive.py ├── 0111_archivemanageentry.py ├── 0112_remove_archivemanageentry_archive.py ├── 0113_auto_20210805_1754.py ├── 0114_rename_mark_result_archivemanageentry_mark_extra.py ├── 0115_alter_eventlog_options.py ├── 0116_auto_20210816_1930.py ├── 0117_archivemanageentry.py ├── 0118_alter_archivemanageentry_options.py ├── 0119_archivemanageentry_mark_date.py ├── 0120_auto_20210816_2114.py ├── 0121_alter_archivemanageentry_mark_extra.py ├── 0122_alter_archive_options.py ├── 0123_archive_origin.py ├── 0124_alter_archive_origin.py ├── 0125_remove_wantedgallery_provider.py ├── 0126_alter_archivemanageentry_options.py ├── 0127_alter_archivemanageentry_mark_user.py ├── 0128_alter_archivemanageentry_resolve_user.py ├── 0129_alter_profile_options.py ├── 0130_remove_wantedgallery_add_as_hidden.py ├── 0131_archivemanageentry_origin.py ├── 0132_alter_archivemanageentry_origin.py ├── 0133_alter_gallery_options.py ├── 0134_monitoredlink.py ├── 0135_monitoredlink_user.py ├── 0136_alter_monitoredlink_options.py ├── 0137_alter_archive_options.py ├── 0138_auto_20220330_1418.py ├── 0139_auto_20220519_2015.py ├── 0140_alter_archive_options.py ├── 0141_archive_binned.py ├── 0142_archive_archive_pub_binned.py ├── 0143_archive_archive_binned.py ├── 0144_archive_archive_pub2_binned.py ├── 0145_auto_20220606_0005.py ├── 0146_alter_galleryproviderdata_origin.py ├── 0147_auto_20220607_1725.py ├── 0148_alter_gallerysubmitentry_similar_galleries.py ├── 0149_gallery_provider_metadata.py ├── 0150_alter_eventlog_data.py ├── 0151_image_image_format_image_image_mode.py ├── 0152_image_image_size.py ├── 0153_image_image_name.py ├── 0154_historicalgallery_alter_archive_options_and_more.py ├── 0155_remove_historicalarchive_original_filename.py ├── 0156_archive_archive_binned_only.py ├── 0157_remove_historicalgallery_provider.py ├── 0158_alter_eventlog_options.py ├── 0159_alter_eventlog_options.py ├── 0160_archivetag_archive_new_tags.py ├── 0161_image_original_height_image_original_width.py ├── 0162_alter_archive_options.py ├── 0163_alter_tag_unique_together_tag_unique_scope_name.py ├── 0164_userlonglivedtoken.py ├── 0165_alter_profile_options_and_more.py ├── 0166_processedlinks.py ├── 0167_processedlinks_title.py ├── 0168_archivesizeentry.py ├── 0169_archivefileentry_delete_archivesizeentry.py ├── 0170_archiveoption.py ├── 0171_wantedimage.py ├── 0172_wantedimage_match_height_wantedimage_match_width.py ├── 0173_alter_wantedimage_match_method.py ├── 0174_alter_wantedimage_active.py ├── 0175_wantedimage_mark_priority_and_more.py ├── 0176_remove_wantedimage_match_method_and_more.py ├── 0177_alter_gallery_options.py ├── 0178_gallery_disowned_historicalgallery_disowned.py ├── 0179_foundwantedimageonarchive.py ├── 0180_wantedimage_restrict_by_homogeneity.py ├── 0181_gallerysubmitentry_submit_group.py ├── 0182_downloadevent.py ├── 0183_downloadevent_gallery.py ├── 0184_alter_gallery_options.py ├── 0185_monitoredlink_limited_wanted_galleries_and_more.py ├── 0186_alter_image_image_height_alter_image_image_width.py ├── 0187_image_image_sha1.py ├── 0188_category_wantedgallery_categories.py ├── 0189_alter_category_options.py ├── 0190_alter_category_options.py ├── 0191_archive_file_deleted_historicalarchive_file_deleted.py ├── 0192_archivestatistics.py ├── 0193_archivestatistics_file_type_mode.py ├── 0194_archivestatistics_height_stddev_and_more.py ├── 0195_archivestatistics_file_type_match.py ├── 0196_alter_archive_possible_matches_alter_archive_tags_and_more.py ├── 0197_gallerymatchgroup_gallerymatchgroupentry_and_more.py ├── 0198_alter_gallerymatchgroupentry_options.py ├── 0199_alter_gallerymatchgroupentry_options_and_more.py ├── 0200_gallerymatchgroup_title.py ├── 0201_gallerygrouppossiblematches_and_more.py ├── 0202_alter_archive_options_archivemanageentry_status.py ├── 0203_alter_archivemanageentry_status.py ├── 0204_gallery_gallery_pub_norm_create_date_and_more.py └── __init__.py ├── models.py ├── services.py ├── signals.py ├── static ├── browserconfig.xml ├── css │ ├── dashboard.css │ ├── main.css │ ├── vendor │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── fontawesome-all.css │ │ ├── fontawesome-all.min.css │ │ └── jal │ │ │ ├── style.css │ │ │ └── xhr-pending.gif │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── favicon-114.png ├── favicon-120.png ├── favicon-144.png ├── favicon-150.png ├── favicon-152.png ├── favicon-16.png ├── favicon-160.png ├── favicon-196.png ├── favicon-310.png ├── favicon-32.png ├── favicon-57.png ├── favicon-64.png ├── favicon-70.png ├── favicon-72.png ├── favicon-76.png ├── favicon-96.png ├── favicon.ico ├── imgs │ └── no_cover.png ├── js │ ├── admin.js │ ├── archnav.js │ ├── dirbrowser.js │ ├── list_operations.js │ ├── main.js │ └── vendor │ │ ├── ace │ │ ├── ace.js │ │ ├── ext-searchbox.js │ │ ├── mode-yaml.js │ │ └── theme-dracula.js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── d3.min.js │ │ ├── d3.tip.0.6.7.js │ │ ├── htmx.min.js │ │ ├── jquery.autocomplete-light.min.js │ │ └── keys.min.js └── media │ ├── no_cover.8e25d57e.png │ ├── slick.b7c9e1e4.woff │ ├── slick.ced611da.eot │ ├── slick.d41f55a7.ttf │ └── slick.f97e3bbf.svg ├── templates └── viewer │ └── forms │ └── errors_as_div.html ├── templatetags ├── __init__.py ├── dict_key.py └── viewer_extras.py ├── tests ├── __init__.py ├── test_core.py ├── test_internal.py └── test_web.py ├── urls.py ├── utils ├── __init__.py ├── actions.py ├── dirbrowser.py ├── functions.py ├── general.py ├── image_processing.py ├── matching.py ├── requests.py ├── tags.py └── types.py └── views ├── __init__.py ├── admin.py ├── admin_api.py ├── api.py ├── archive.py ├── archive_groups.py ├── browser.py ├── collaborators.py ├── complete.py ├── elasticsearch.py ├── exp.py ├── gallery.py ├── gallery_match_groups.py ├── groups.py ├── head.py ├── manager.py ├── tools.py └── wanted.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/README.md -------------------------------------------------------------------------------- /ci-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/ci-requirements.txt -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/base/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/comparison.py -------------------------------------------------------------------------------- /core/base/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/hashing.py -------------------------------------------------------------------------------- /core/base/image_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/image_ops.py -------------------------------------------------------------------------------- /core/base/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/matchers.py -------------------------------------------------------------------------------- /core/base/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/parsers.py -------------------------------------------------------------------------------- /core/base/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/providers.py -------------------------------------------------------------------------------- /core/base/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/setup.py -------------------------------------------------------------------------------- /core/base/setup_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/setup_utilities.py -------------------------------------------------------------------------------- /core/base/tag_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/tag_logic.py -------------------------------------------------------------------------------- /core/base/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/types.py -------------------------------------------------------------------------------- /core/base/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/base/utilities.py -------------------------------------------------------------------------------- /core/downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/downloaders/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/downloaders/handlers.py -------------------------------------------------------------------------------- /core/downloaders/postdownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/downloaders/postdownload.py -------------------------------------------------------------------------------- /core/downloaders/torrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/downloaders/torrent/__init__.py -------------------------------------------------------------------------------- /core/downloaders/torrent/transmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/downloaders/torrent/transmission.py -------------------------------------------------------------------------------- /core/downloaders/torrent/utorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/downloaders/torrent/utorrent.py -------------------------------------------------------------------------------- /core/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/libs/bencoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/libs/bencoding.py -------------------------------------------------------------------------------- /core/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/local/foldercrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/local/foldercrawler.py -------------------------------------------------------------------------------- /core/local/foldercrawlerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/local/foldercrawlerthread.py -------------------------------------------------------------------------------- /core/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/chaika/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/chaika/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/constants.py -------------------------------------------------------------------------------- /core/providers/chaika/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/downloaders.py -------------------------------------------------------------------------------- /core/providers/chaika/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/matchers.py -------------------------------------------------------------------------------- /core/providers/chaika/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/parsers.py -------------------------------------------------------------------------------- /core/providers/chaika/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/settings.py -------------------------------------------------------------------------------- /core/providers/chaika/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/chaika/utilities.py -------------------------------------------------------------------------------- /core/providers/fakku/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/fakku/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/constants.py -------------------------------------------------------------------------------- /core/providers/fakku/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/downloaders.py -------------------------------------------------------------------------------- /core/providers/fakku/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/matchers.py -------------------------------------------------------------------------------- /core/providers/fakku/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/parsers.py -------------------------------------------------------------------------------- /core/providers/fakku/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/settings.py -------------------------------------------------------------------------------- /core/providers/fakku/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/utilities.py -------------------------------------------------------------------------------- /core/providers/fakku/wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/fakku/wanted.py -------------------------------------------------------------------------------- /core/providers/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/generic/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/generic/constants.py -------------------------------------------------------------------------------- /core/providers/generic/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/generic/downloaders.py -------------------------------------------------------------------------------- /core/providers/generic/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/generic/parsers.py -------------------------------------------------------------------------------- /core/providers/generic/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/generic/settings.py -------------------------------------------------------------------------------- /core/providers/generic/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/generic/utilities.py -------------------------------------------------------------------------------- /core/providers/irodori/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/irodori/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/constants.py -------------------------------------------------------------------------------- /core/providers/irodori/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/downloaders.py -------------------------------------------------------------------------------- /core/providers/irodori/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/matchers.py -------------------------------------------------------------------------------- /core/providers/irodori/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/parsers.py -------------------------------------------------------------------------------- /core/providers/irodori/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/settings.py -------------------------------------------------------------------------------- /core/providers/irodori/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/irodori/utilities.py -------------------------------------------------------------------------------- /core/providers/j18/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/j18/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/constants.py -------------------------------------------------------------------------------- /core/providers/j18/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/downloaders.py -------------------------------------------------------------------------------- /core/providers/j18/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/matchers.py -------------------------------------------------------------------------------- /core/providers/j18/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/parsers.py -------------------------------------------------------------------------------- /core/providers/j18/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/settings.py -------------------------------------------------------------------------------- /core/providers/j18/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/j18/utilities.py -------------------------------------------------------------------------------- /core/providers/mega/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/mega/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mega/constants.py -------------------------------------------------------------------------------- /core/providers/mega/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mega/downloaders.py -------------------------------------------------------------------------------- /core/providers/mega/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mega/parsers.py -------------------------------------------------------------------------------- /core/providers/mega/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mega/settings.py -------------------------------------------------------------------------------- /core/providers/mugimugi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/__init__.py -------------------------------------------------------------------------------- /core/providers/mugimugi/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/constants.py -------------------------------------------------------------------------------- /core/providers/mugimugi/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/downloaders.py -------------------------------------------------------------------------------- /core/providers/mugimugi/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/matchers.py -------------------------------------------------------------------------------- /core/providers/mugimugi/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/parsers.py -------------------------------------------------------------------------------- /core/providers/mugimugi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/settings.py -------------------------------------------------------------------------------- /core/providers/mugimugi/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/utilities.py -------------------------------------------------------------------------------- /core/providers/mugimugi/wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/mugimugi/wanted.py -------------------------------------------------------------------------------- /core/providers/nexus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/nexus/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/constants.py -------------------------------------------------------------------------------- /core/providers/nexus/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/downloaders.py -------------------------------------------------------------------------------- /core/providers/nexus/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/matchers.py -------------------------------------------------------------------------------- /core/providers/nexus/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/parsers.py -------------------------------------------------------------------------------- /core/providers/nexus/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/settings.py -------------------------------------------------------------------------------- /core/providers/nexus/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nexus/utilities.py -------------------------------------------------------------------------------- /core/providers/nhentai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/nhentai/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/constants.py -------------------------------------------------------------------------------- /core/providers/nhentai/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/downloaders.py -------------------------------------------------------------------------------- /core/providers/nhentai/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/matchers.py -------------------------------------------------------------------------------- /core/providers/nhentai/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/parsers.py -------------------------------------------------------------------------------- /core/providers/nhentai/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/settings.py -------------------------------------------------------------------------------- /core/providers/nhentai/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nhentai/utilities.py -------------------------------------------------------------------------------- /core/providers/nyaa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/nyaa/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nyaa/constants.py -------------------------------------------------------------------------------- /core/providers/nyaa/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nyaa/downloaders.py -------------------------------------------------------------------------------- /core/providers/nyaa/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nyaa/parsers.py -------------------------------------------------------------------------------- /core/providers/nyaa/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nyaa/settings.py -------------------------------------------------------------------------------- /core/providers/nyaa/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/nyaa/utilities.py -------------------------------------------------------------------------------- /core/providers/panda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/panda/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/constants.py -------------------------------------------------------------------------------- /core/providers/panda/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/downloaders.py -------------------------------------------------------------------------------- /core/providers/panda/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/matchers.py -------------------------------------------------------------------------------- /core/providers/panda/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/parsers.py -------------------------------------------------------------------------------- /core/providers/panda/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/settings.py -------------------------------------------------------------------------------- /core/providers/panda/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/panda/utilities.py -------------------------------------------------------------------------------- /core/providers/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/twitter/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twitter/constants.py -------------------------------------------------------------------------------- /core/providers/twitter/handles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/twitter/handles/wanimagazine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twitter/handles/wanimagazine.py -------------------------------------------------------------------------------- /core/providers/twitter/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twitter/settings.py -------------------------------------------------------------------------------- /core/providers/twitter/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twitter/utilities.py -------------------------------------------------------------------------------- /core/providers/twitter/wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twitter/wanted.py -------------------------------------------------------------------------------- /core/providers/twodmarket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/twodmarket/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/constants.py -------------------------------------------------------------------------------- /core/providers/twodmarket/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/downloaders.py -------------------------------------------------------------------------------- /core/providers/twodmarket/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/matchers.py -------------------------------------------------------------------------------- /core/providers/twodmarket/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/parsers.py -------------------------------------------------------------------------------- /core/providers/twodmarket/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/settings.py -------------------------------------------------------------------------------- /core/providers/twodmarket/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/twodmarket/utilities.py -------------------------------------------------------------------------------- /core/providers/wanimagazine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/providers/wanimagazine/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/wanimagazine/constants.py -------------------------------------------------------------------------------- /core/providers/wanimagazine/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/wanimagazine/settings.py -------------------------------------------------------------------------------- /core/providers/wanimagazine/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/wanimagazine/utilities.py -------------------------------------------------------------------------------- /core/providers/wanimagazine/wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/providers/wanimagazine/wanted.py -------------------------------------------------------------------------------- /core/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/web/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/web/crawler.py -------------------------------------------------------------------------------- /core/web/crawlerthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/web/crawlerthread.py -------------------------------------------------------------------------------- /core/workers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/workers/archive_work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/archive_work.py -------------------------------------------------------------------------------- /core/workers/auto_wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/auto_wanted.py -------------------------------------------------------------------------------- /core/workers/autoupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/autoupdate.py -------------------------------------------------------------------------------- /core/workers/download_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/download_progress.py -------------------------------------------------------------------------------- /core/workers/holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/holder.py -------------------------------------------------------------------------------- /core/workers/link_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/link_monitor.py -------------------------------------------------------------------------------- /core/workers/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/schedulers.py -------------------------------------------------------------------------------- /core/workers/webqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/core/workers/webqueue.py -------------------------------------------------------------------------------- /crawlerrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/crawlerrun.py -------------------------------------------------------------------------------- /default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/default.yaml -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docker-compose.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/docker-compose.build.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/conf.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/docker/nginx/conf.d/nginx.conf -------------------------------------------------------------------------------- /dockerentry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/dockerentry.sh -------------------------------------------------------------------------------- /docs/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/docs/DOCKER.md -------------------------------------------------------------------------------- /foldercrawlerrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/foldercrawlerrun.py -------------------------------------------------------------------------------- /httplogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/httplogger.py -------------------------------------------------------------------------------- /init/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/init/ecosystem.config.js -------------------------------------------------------------------------------- /init/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/init/freebsd -------------------------------------------------------------------------------- /init/systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/init/systemd -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/manage.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/mypy.ini -------------------------------------------------------------------------------- /pandabackup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pandabackup/__init__.py -------------------------------------------------------------------------------- /pandabackup/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pandabackup/asgi.py -------------------------------------------------------------------------------- /pandabackup/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pandabackup/settings.py -------------------------------------------------------------------------------- /pandabackup/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pandabackup/urls.py -------------------------------------------------------------------------------- /pandabackup/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pandabackup/wsgi.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-win.txt: -------------------------------------------------------------------------------- 1 | psycopg-binary==3.2.11 ; sys_platform == 'win32' -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/sample.env -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/server.py -------------------------------------------------------------------------------- /set_db_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/set_db_engine.sh -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/viewer/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/about.html -------------------------------------------------------------------------------- /templates/viewer/accounts/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/accounts/change_password.html -------------------------------------------------------------------------------- /templates/viewer/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/accounts/login.html -------------------------------------------------------------------------------- /templates/viewer/accounts/user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/accounts/user_profile.html -------------------------------------------------------------------------------- /templates/viewer/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive.html -------------------------------------------------------------------------------- /templates/viewer/archive_change_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_change_log.html -------------------------------------------------------------------------------- /templates/viewer/archive_display_clone_plus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_display_clone_plus.html -------------------------------------------------------------------------------- /templates/viewer/archive_display_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_display_delete.html -------------------------------------------------------------------------------- /templates/viewer/archive_display_split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_display_split.html -------------------------------------------------------------------------------- /templates/viewer/archive_display_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_display_tool.html -------------------------------------------------------------------------------- /templates/viewer/archive_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_group.html -------------------------------------------------------------------------------- /templates/viewer/archive_group_display_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_group_display_tool.html -------------------------------------------------------------------------------- /templates/viewer/archive_group_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_group_edit.html -------------------------------------------------------------------------------- /templates/viewer/archive_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_groups.html -------------------------------------------------------------------------------- /templates/viewer/archive_image_data_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_image_data_list.html -------------------------------------------------------------------------------- /templates/viewer/archive_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archive_search.html -------------------------------------------------------------------------------- /templates/viewer/archives_different_filesize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_different_filesize.html -------------------------------------------------------------------------------- /templates/viewer/archives_missing_for_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_missing_for_galleries.html -------------------------------------------------------------------------------- /templates/viewer/archives_not_matched.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_not_matched.html -------------------------------------------------------------------------------- /templates/viewer/archives_not_present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_not_present.html -------------------------------------------------------------------------------- /templates/viewer/archives_repeated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_repeated.html -------------------------------------------------------------------------------- /templates/viewer/archives_similar_by_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/archives_similar_by_fields.html -------------------------------------------------------------------------------- /templates/viewer/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/base.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/activity_event_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/activity_event_log.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/add_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/add_archive.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/add_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/add_gallery.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/add_wanted_galleries_from_command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/add_wanted_galleries_from_command.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/add_wanted_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/add_wanted_gallery.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/archive_group_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/archive_group_editor.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/archives_missing_for_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/archives_missing_for_galleries.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/compare_archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/compare_archives.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/compare_archives_public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/compare_archives_public.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/download_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/download_history.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/event_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/event_log.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/gallery_crawler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/gallery_crawler.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/gallery_match_group_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/gallery_match_group_tool.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/manage_archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/manage_archives.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/manage_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/manage_galleries.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/monitored_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/monitored_links.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/submit_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/submit_queue.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/unmatched_archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/unmatched_archives.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/wanted_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/wanted_galleries.html -------------------------------------------------------------------------------- /templates/viewer/collaborators/wanted_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/collaborators/wanted_gallery.html -------------------------------------------------------------------------------- /templates/viewer/crawler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/crawler.html -------------------------------------------------------------------------------- /templates/viewer/elasticsearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/elasticsearch.html -------------------------------------------------------------------------------- /templates/viewer/elasticsearch_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/elasticsearch_gallery.html -------------------------------------------------------------------------------- /templates/viewer/foldercrawler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/foldercrawler.html -------------------------------------------------------------------------------- /templates/viewer/found_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/found_galleries.html -------------------------------------------------------------------------------- /templates/viewer/galleries_repeated_by_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/galleries_repeated_by_fields.html -------------------------------------------------------------------------------- /templates/viewer/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery.html -------------------------------------------------------------------------------- /templates/viewer/gallery_change_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_change_log.html -------------------------------------------------------------------------------- /templates/viewer/gallery_display_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_display_tool.html -------------------------------------------------------------------------------- /templates/viewer/gallery_match_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_match_group.html -------------------------------------------------------------------------------- /templates/viewer/gallery_match_group_display_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_match_group_display_tool.html -------------------------------------------------------------------------------- /templates/viewer/gallery_match_group_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_match_group_edit.html -------------------------------------------------------------------------------- /templates/viewer/gallery_match_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_match_groups.html -------------------------------------------------------------------------------- /templates/viewer/gallery_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/gallery_search.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_add.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_clone_plus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_clone_plus.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_col_match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_col_match.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_cover.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_edit.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_group_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_group_edit.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_group_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_group_entry.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_manage.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_match.html -------------------------------------------------------------------------------- /templates/viewer/include/archive_split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/archive_split.html -------------------------------------------------------------------------------- /templates/viewer/include/delete_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/delete_archive.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_add.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_col_match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_col_match.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_cover.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_match_cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_match_cover.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_match_group_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_match_group_edit.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_match_group_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_match_group_entry.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_search/advanced_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_search/advanced_panel.html -------------------------------------------------------------------------------- /templates/viewer/include/gallery_search/main_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/gallery_search/main_search.html -------------------------------------------------------------------------------- /templates/viewer/include/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/messages.html -------------------------------------------------------------------------------- /templates/viewer/include/modals/archive_group_tool_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/modals/archive_group_tool_reason.html -------------------------------------------------------------------------------- /templates/viewer/include/modals/archive_tool_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/modals/archive_tool_reason.html -------------------------------------------------------------------------------- /templates/viewer/include/modals/gallery_match_group_tool_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/modals/gallery_match_group_tool_reason.html -------------------------------------------------------------------------------- /templates/viewer/include/modals/gallery_tool_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/modals/gallery_tool_reason.html -------------------------------------------------------------------------------- /templates/viewer/include/search_archive_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/search_archive_form.html -------------------------------------------------------------------------------- /templates/viewer/include/search_gallery_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/search_gallery_form.html -------------------------------------------------------------------------------- /templates/viewer/include/viewer_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/viewer_modal.html -------------------------------------------------------------------------------- /templates/viewer/include/wanted_gallery_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/include/wanted_gallery_edit.html -------------------------------------------------------------------------------- /templates/viewer/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/logs.html -------------------------------------------------------------------------------- /templates/viewer/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/message.html -------------------------------------------------------------------------------- /templates/viewer/new_image_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/new_image_viewer.html -------------------------------------------------------------------------------- /templates/viewer/panda.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/panda.user.js -------------------------------------------------------------------------------- /templates/viewer/public_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/public_stats.html -------------------------------------------------------------------------------- /templates/viewer/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/settings.html -------------------------------------------------------------------------------- /templates/viewer/static_public_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/static_public_stats.html -------------------------------------------------------------------------------- /templates/viewer/stats_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/stats_collection.html -------------------------------------------------------------------------------- /templates/viewer/stats_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/stats_settings.html -------------------------------------------------------------------------------- /templates/viewer/stats_workers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/stats_workers.html -------------------------------------------------------------------------------- /templates/viewer/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/tools.html -------------------------------------------------------------------------------- /templates/viewer/url_submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/url_submit.html -------------------------------------------------------------------------------- /templates/viewer/wanted_galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/wanted_galleries.html -------------------------------------------------------------------------------- /templates/viewer/wanted_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/templates/viewer/wanted_gallery.html -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/uv.lock -------------------------------------------------------------------------------- /viewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/admin.py -------------------------------------------------------------------------------- /viewer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/apps.py -------------------------------------------------------------------------------- /viewer/assets/archive-groups/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/archive-groups/.vite/manifest.json -------------------------------------------------------------------------------- /viewer/assets/archive-groups/assets/main-CX7jbNNa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/archive-groups/assets/main-CX7jbNNa.js -------------------------------------------------------------------------------- /viewer/assets/archive-groups/assets/main-CyoxNMCT.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/archive-groups/assets/main-CyoxNMCT.css -------------------------------------------------------------------------------- /viewer/assets/archive-groups/assets/no_cover-eEdCbnFG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/archive-groups/assets/no_cover-eEdCbnFG.png -------------------------------------------------------------------------------- /viewer/assets/compare-archives-lite/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives-lite/.vite/manifest.json -------------------------------------------------------------------------------- /viewer/assets/compare-archives-lite/assets/main-Uy0h26jO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives-lite/assets/main-Uy0h26jO.js -------------------------------------------------------------------------------- /viewer/assets/compare-archives-lite/assets/main-cXz8PrLd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives-lite/assets/main-cXz8PrLd.css -------------------------------------------------------------------------------- /viewer/assets/compare-archives/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives/.vite/manifest.json -------------------------------------------------------------------------------- /viewer/assets/compare-archives/assets/main-DpcyC6WE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives/assets/main-DpcyC6WE.js -------------------------------------------------------------------------------- /viewer/assets/compare-archives/assets/main-cXz8PrLd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/compare-archives/assets/main-cXz8PrLd.css -------------------------------------------------------------------------------- /viewer/assets/image-viewer/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/.vite/manifest.json -------------------------------------------------------------------------------- /viewer/assets/image-viewer/assets/ajax-loader-BcnMEykj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/assets/ajax-loader-BcnMEykj.gif -------------------------------------------------------------------------------- /viewer/assets/image-viewer/assets/main-B1CoUROd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/assets/main-B1CoUROd.js -------------------------------------------------------------------------------- /viewer/assets/image-viewer/assets/main-BVmoCmGW.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/assets/main-BVmoCmGW.css -------------------------------------------------------------------------------- /viewer/assets/image-viewer/assets/no_cover-eEdCbnFG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/assets/no_cover-eEdCbnFG.png -------------------------------------------------------------------------------- /viewer/assets/image-viewer/assets/slick-BlzDm7g2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/assets/image-viewer/assets/slick-BlzDm7g2.svg -------------------------------------------------------------------------------- /viewer/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/feeds.py -------------------------------------------------------------------------------- /viewer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/forms.py -------------------------------------------------------------------------------- /viewer/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/handlers.py -------------------------------------------------------------------------------- /viewer/management/commands/archive_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/archive_matcher.py -------------------------------------------------------------------------------- /viewer/management/commands/archive_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/archive_processing.py -------------------------------------------------------------------------------- /viewer/management/commands/generate_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/generate_pages.py -------------------------------------------------------------------------------- /viewer/management/commands/image_hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/image_hashing.py -------------------------------------------------------------------------------- /viewer/management/commands/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/providers.py -------------------------------------------------------------------------------- /viewer/management/commands/push-to-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/push-to-index.py -------------------------------------------------------------------------------- /viewer/management/commands/remotesite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/remotesite.py -------------------------------------------------------------------------------- /viewer/management/commands/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/twitter.py -------------------------------------------------------------------------------- /viewer/management/commands/update_provider_wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/update_provider_wanted.py -------------------------------------------------------------------------------- /viewer/management/commands/user-management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/management/commands/user-management.py -------------------------------------------------------------------------------- /viewer/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/middleware.py -------------------------------------------------------------------------------- /viewer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewer/migrations/0002_auto_20151029_0104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0002_auto_20151029_0104.py -------------------------------------------------------------------------------- /viewer/migrations/0003_announce_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0003_announce_type.py -------------------------------------------------------------------------------- /viewer/migrations/0004_auto_20151029_0228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0004_auto_20151029_0228.py -------------------------------------------------------------------------------- /viewer/migrations/0005_auto_20151029_0233.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0005_auto_20151029_0233.py -------------------------------------------------------------------------------- /viewer/migrations/0006_auto_20151029_0745.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0006_auto_20151029_0745.py -------------------------------------------------------------------------------- /viewer/migrations/0007_auto_20151029_1128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0007_auto_20151029_1128.py -------------------------------------------------------------------------------- /viewer/migrations/0008_auto_20151029_1513.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0008_auto_20151029_1513.py -------------------------------------------------------------------------------- /viewer/migrations/0009_auto_20151029_1514.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0009_auto_20151029_1514.py -------------------------------------------------------------------------------- /viewer/migrations/0010_tweetpost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0010_tweetpost.py -------------------------------------------------------------------------------- /viewer/migrations/0011_auto_20151104_1644.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0011_auto_20151104_1644.py -------------------------------------------------------------------------------- /viewer/migrations/0012_gallery_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0012_gallery_public.py -------------------------------------------------------------------------------- /viewer/migrations/0013_auto_20151113_1101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0013_auto_20151113_1101.py -------------------------------------------------------------------------------- /viewer/migrations/0014_gallery_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0014_gallery_comment.py -------------------------------------------------------------------------------- /viewer/migrations/0015_auto_20151118_0020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0015_auto_20151118_0020.py -------------------------------------------------------------------------------- /viewer/migrations/0016_auto_20151124_1215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0016_auto_20151124_1215.py -------------------------------------------------------------------------------- /viewer/migrations/0017_auto_20151124_1218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0017_auto_20151124_1218.py -------------------------------------------------------------------------------- /viewer/migrations/0018_auto_20151124_1421.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0018_auto_20151124_1421.py -------------------------------------------------------------------------------- /viewer/migrations/0019_auto_20151209_1131.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0019_auto_20151209_1131.py -------------------------------------------------------------------------------- /viewer/migrations/0020_wantedgallery_add_as_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0020_wantedgallery_add_as_hidden.py -------------------------------------------------------------------------------- /viewer/migrations/0021_auto_20160516_1603.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0021_auto_20160516_1603.py -------------------------------------------------------------------------------- /viewer/migrations/0022_auto_20160517_0149.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0022_auto_20160517_0149.py -------------------------------------------------------------------------------- /viewer/migrations/0023_archive_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0023_archive_tags.py -------------------------------------------------------------------------------- /viewer/migrations/0024_auto_20170116_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0024_auto_20170116_1417.py -------------------------------------------------------------------------------- /viewer/migrations/0025_auto_20170116_1910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0025_auto_20170116_1910.py -------------------------------------------------------------------------------- /viewer/migrations/0026_auto_20170117_0933.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0026_auto_20170117_0933.py -------------------------------------------------------------------------------- /viewer/migrations/0027_auto_20170329_1035.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0027_auto_20170329_1035.py -------------------------------------------------------------------------------- /viewer/migrations/0028_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0028_scheduler.py -------------------------------------------------------------------------------- /viewer/migrations/0029_auto_20170418_1852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0029_auto_20170418_1852.py -------------------------------------------------------------------------------- /viewer/migrations/0030_remove_wantedgallery_matched_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0030_remove_wantedgallery_matched_gallery.py -------------------------------------------------------------------------------- /viewer/migrations/0031_archive_public_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0031_archive_public_date.py -------------------------------------------------------------------------------- /viewer/migrations/0032_archive_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0032_archive_reason.py -------------------------------------------------------------------------------- /viewer/migrations/0033_wantedgallery_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0033_wantedgallery_reason.py -------------------------------------------------------------------------------- /viewer/migrations/0034_auto_20170712_1557.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0034_auto_20170712_1557.py -------------------------------------------------------------------------------- /viewer/migrations/0035_wantedgallery_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0035_wantedgallery_provider.py -------------------------------------------------------------------------------- /viewer/migrations/0036_wantedgallery_notify_when_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0036_wantedgallery_notify_when_found.py -------------------------------------------------------------------------------- /viewer/migrations/0037_gallery_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0037_gallery_provider.py -------------------------------------------------------------------------------- /viewer/migrations/0038_auto_20170720_1225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0038_auto_20170720_1225.py -------------------------------------------------------------------------------- /viewer/migrations/0039_auto_20170722_2245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0039_auto_20170722_2245.py -------------------------------------------------------------------------------- /viewer/migrations/0040_auto_20170727_0910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0040_auto_20170727_0910.py -------------------------------------------------------------------------------- /viewer/migrations/0041_auto_20170728_2236.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0041_auto_20170728_2236.py -------------------------------------------------------------------------------- /viewer/migrations/0042_auto_20170729_0448.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0042_auto_20170729_0448.py -------------------------------------------------------------------------------- /viewer/migrations/0043_auto_20170729_0501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0043_auto_20170729_0501.py -------------------------------------------------------------------------------- /viewer/migrations/0044_auto_20170806_0129.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0044_auto_20170806_0129.py -------------------------------------------------------------------------------- /viewer/migrations/0045_auto_20170806_0226.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0045_auto_20170806_0226.py -------------------------------------------------------------------------------- /viewer/migrations/0046_auto_20170806_0230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0046_auto_20170806_0230.py -------------------------------------------------------------------------------- /viewer/migrations/0047_auto_20170806_0232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0047_auto_20170806_0232.py -------------------------------------------------------------------------------- /viewer/migrations/0048_auto_20170806_0251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0048_auto_20170806_0251.py -------------------------------------------------------------------------------- /viewer/migrations/0049_auto_20170806_2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0049_auto_20170806_2015.py -------------------------------------------------------------------------------- /viewer/migrations/0050_wantedgallery_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0050_wantedgallery_public.py -------------------------------------------------------------------------------- /viewer/migrations/0051_gallery_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0051_gallery_status.py -------------------------------------------------------------------------------- /viewer/migrations/0052_wantedgallery_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0052_wantedgallery_category.py -------------------------------------------------------------------------------- /viewer/migrations/0053_wantedgallery_wanted_tags_exclusive_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0053_wantedgallery_wanted_tags_exclusive_scope.py -------------------------------------------------------------------------------- /viewer/migrations/0054_auto_20171212_2053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0054_auto_20171212_2053.py -------------------------------------------------------------------------------- /viewer/migrations/0055_auto_20180805_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0055_auto_20180805_1902.py -------------------------------------------------------------------------------- /viewer/migrations/0056_gallery_gallery_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0056_gallery_gallery_container.py -------------------------------------------------------------------------------- /viewer/migrations/0057_auto_20180807_1027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0057_auto_20180807_1027.py -------------------------------------------------------------------------------- /viewer/migrations/0058_auto_20180807_1030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0058_auto_20180807_1030.py -------------------------------------------------------------------------------- /viewer/migrations/0059_gallery_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0059_gallery_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0060_gallery_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0060_gallery_reason.py -------------------------------------------------------------------------------- /viewer/migrations/0061_auto_20180811_2222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0061_auto_20180811_2222.py -------------------------------------------------------------------------------- /viewer/migrations/0062_auto_20180814_0054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0062_auto_20180814_0054.py -------------------------------------------------------------------------------- /viewer/migrations/0063_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0063_profile.py -------------------------------------------------------------------------------- /viewer/migrations/0064_auto_20180815_0053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0064_auto_20180815_0053.py -------------------------------------------------------------------------------- /viewer/migrations/0065_auto_20180822_1112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0065_auto_20180822_1112.py -------------------------------------------------------------------------------- /viewer/migrations/0066_auto_20180903_0006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0066_auto_20180903_0006.py -------------------------------------------------------------------------------- /viewer/migrations/0067_auto_20181003_1058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0067_auto_20181003_1058.py -------------------------------------------------------------------------------- /viewer/migrations/0068_auto_20181003_1128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0068_auto_20181003_1128.py -------------------------------------------------------------------------------- /viewer/migrations/0069_auto_20181003_1134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0069_auto_20181003_1134.py -------------------------------------------------------------------------------- /viewer/migrations/0070_auto_20181003_1426.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0070_auto_20181003_1426.py -------------------------------------------------------------------------------- /viewer/migrations/0071_archive_alternative_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0071_archive_alternative_sources.py -------------------------------------------------------------------------------- /viewer/migrations/0072_auto_20181210_1420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0072_auto_20181210_1420.py -------------------------------------------------------------------------------- /viewer/migrations/0073_auto_20190105_1736.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0073_auto_20190105_1736.py -------------------------------------------------------------------------------- /viewer/migrations/0074_auto_20190402_1152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0074_auto_20190402_1152.py -------------------------------------------------------------------------------- /viewer/migrations/0075_archivematches_match_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0075_archivematches_match_type.py -------------------------------------------------------------------------------- /viewer/migrations/0076_auto_20190417_1524.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0076_auto_20190417_1524.py -------------------------------------------------------------------------------- /viewer/migrations/0077_auto_20190418_1914.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0077_auto_20190418_1914.py -------------------------------------------------------------------------------- /viewer/migrations/0078_wantedgallery_wanted_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0078_wantedgallery_wanted_providers.py -------------------------------------------------------------------------------- /viewer/migrations/0079_archive_original_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0079_archive_original_filename.py -------------------------------------------------------------------------------- /viewer/migrations/0080_auto_20190711_1912.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0080_auto_20190711_1912.py -------------------------------------------------------------------------------- /viewer/migrations/0081_auto_20190712_2135.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0081_auto_20190712_2135.py -------------------------------------------------------------------------------- /viewer/migrations/0082_auto_20190712_2323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0082_auto_20190712_2323.py -------------------------------------------------------------------------------- /viewer/migrations/0083_auto_20190715_1247.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0083_auto_20190715_1247.py -------------------------------------------------------------------------------- /viewer/migrations/0084_auto_20190729_1516.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0084_auto_20190729_1516.py -------------------------------------------------------------------------------- /viewer/migrations/0085_auto_20191218_2100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0085_auto_20191218_2100.py -------------------------------------------------------------------------------- /viewer/migrations/0086_auto_20191218_2102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0086_auto_20191218_2102.py -------------------------------------------------------------------------------- /viewer/migrations/0087_auto_20191218_2107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0087_auto_20191218_2107.py -------------------------------------------------------------------------------- /viewer/migrations/0088_auto_20191219_1018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0088_auto_20191219_1018.py -------------------------------------------------------------------------------- /viewer/migrations/0089_auto_20191220_1641.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0089_auto_20191220_1641.py -------------------------------------------------------------------------------- /viewer/migrations/0090_artist_twitter_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0090_artist_twitter_handle.py -------------------------------------------------------------------------------- /viewer/migrations/0091_auto_20200805_1731.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0091_auto_20200805_1731.py -------------------------------------------------------------------------------- /viewer/migrations/0092_auto_20200806_1939.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0092_auto_20200806_1939.py -------------------------------------------------------------------------------- /viewer/migrations/0093_wantedgallery_unwanted_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0093_wantedgallery_unwanted_providers.py -------------------------------------------------------------------------------- /viewer/migrations/0094_auto_20201006_1525.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0094_auto_20201006_1525.py -------------------------------------------------------------------------------- /viewer/migrations/0095_gallery_magazine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0095_gallery_magazine.py -------------------------------------------------------------------------------- /viewer/migrations/0096_gallerysubmitentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0096_gallerysubmitentry.py -------------------------------------------------------------------------------- /viewer/migrations/0097_auto_20210309_1633.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0097_auto_20210309_1633.py -------------------------------------------------------------------------------- /viewer/migrations/0098_auto_20210309_2205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0098_auto_20210309_2205.py -------------------------------------------------------------------------------- /viewer/migrations/0099_auto_20210329_1722.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0099_auto_20210329_1722.py -------------------------------------------------------------------------------- /viewer/migrations/0100_alter_gallery_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0100_alter_gallery_options.py -------------------------------------------------------------------------------- /viewer/migrations/0101_wantedgallery_wait_for_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0101_wantedgallery_wait_for_time.py -------------------------------------------------------------------------------- /viewer/migrations/0102_wantedgallery_exclusive_scope_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0102_wantedgallery_exclusive_scope_name.py -------------------------------------------------------------------------------- /viewer/migrations/0103_remove_wantedgallery_look_for_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0103_remove_wantedgallery_look_for_duration.py -------------------------------------------------------------------------------- /viewer/migrations/0104_wantedgallery_wanted_tags_accept_if_none_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0104_wantedgallery_wanted_tags_accept_if_none_scope.py -------------------------------------------------------------------------------- /viewer/migrations/0105_alter_eventlog_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0105_alter_eventlog_data.py -------------------------------------------------------------------------------- /viewer/migrations/0106_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0106_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0107_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0107_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0108_wantedgallery_add_to_archive_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0108_wantedgallery_add_to_archive_group.py -------------------------------------------------------------------------------- /viewer/migrations/0109_gallerysubmitentry_similar_galleries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0109_gallerysubmitentry_similar_galleries.py -------------------------------------------------------------------------------- /viewer/migrations/0110_userarchiveprefs_unique_user_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0110_userarchiveprefs_unique_user_archive.py -------------------------------------------------------------------------------- /viewer/migrations/0111_archivemanageentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0111_archivemanageentry.py -------------------------------------------------------------------------------- /viewer/migrations/0112_remove_archivemanageentry_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0112_remove_archivemanageentry_archive.py -------------------------------------------------------------------------------- /viewer/migrations/0113_auto_20210805_1754.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0113_auto_20210805_1754.py -------------------------------------------------------------------------------- /viewer/migrations/0114_rename_mark_result_archivemanageentry_mark_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0114_rename_mark_result_archivemanageentry_mark_extra.py -------------------------------------------------------------------------------- /viewer/migrations/0115_alter_eventlog_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0115_alter_eventlog_options.py -------------------------------------------------------------------------------- /viewer/migrations/0116_auto_20210816_1930.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0116_auto_20210816_1930.py -------------------------------------------------------------------------------- /viewer/migrations/0117_archivemanageentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0117_archivemanageentry.py -------------------------------------------------------------------------------- /viewer/migrations/0118_alter_archivemanageentry_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0118_alter_archivemanageentry_options.py -------------------------------------------------------------------------------- /viewer/migrations/0119_archivemanageentry_mark_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0119_archivemanageentry_mark_date.py -------------------------------------------------------------------------------- /viewer/migrations/0120_auto_20210816_2114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0120_auto_20210816_2114.py -------------------------------------------------------------------------------- /viewer/migrations/0121_alter_archivemanageentry_mark_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0121_alter_archivemanageentry_mark_extra.py -------------------------------------------------------------------------------- /viewer/migrations/0122_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0122_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0123_archive_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0123_archive_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0124_alter_archive_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0124_alter_archive_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0125_remove_wantedgallery_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0125_remove_wantedgallery_provider.py -------------------------------------------------------------------------------- /viewer/migrations/0126_alter_archivemanageentry_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0126_alter_archivemanageentry_options.py -------------------------------------------------------------------------------- /viewer/migrations/0127_alter_archivemanageentry_mark_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0127_alter_archivemanageentry_mark_user.py -------------------------------------------------------------------------------- /viewer/migrations/0128_alter_archivemanageentry_resolve_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0128_alter_archivemanageentry_resolve_user.py -------------------------------------------------------------------------------- /viewer/migrations/0129_alter_profile_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0129_alter_profile_options.py -------------------------------------------------------------------------------- /viewer/migrations/0130_remove_wantedgallery_add_as_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0130_remove_wantedgallery_add_as_hidden.py -------------------------------------------------------------------------------- /viewer/migrations/0131_archivemanageentry_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0131_archivemanageentry_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0132_alter_archivemanageentry_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0132_alter_archivemanageentry_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0133_alter_gallery_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0133_alter_gallery_options.py -------------------------------------------------------------------------------- /viewer/migrations/0134_monitoredlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0134_monitoredlink.py -------------------------------------------------------------------------------- /viewer/migrations/0135_monitoredlink_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0135_monitoredlink_user.py -------------------------------------------------------------------------------- /viewer/migrations/0136_alter_monitoredlink_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0136_alter_monitoredlink_options.py -------------------------------------------------------------------------------- /viewer/migrations/0137_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0137_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0138_auto_20220330_1418.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0138_auto_20220330_1418.py -------------------------------------------------------------------------------- /viewer/migrations/0139_auto_20220519_2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0139_auto_20220519_2015.py -------------------------------------------------------------------------------- /viewer/migrations/0140_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0140_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0141_archive_binned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0141_archive_binned.py -------------------------------------------------------------------------------- /viewer/migrations/0142_archive_archive_pub_binned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0142_archive_archive_pub_binned.py -------------------------------------------------------------------------------- /viewer/migrations/0143_archive_archive_binned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0143_archive_archive_binned.py -------------------------------------------------------------------------------- /viewer/migrations/0144_archive_archive_pub2_binned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0144_archive_archive_pub2_binned.py -------------------------------------------------------------------------------- /viewer/migrations/0145_auto_20220606_0005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0145_auto_20220606_0005.py -------------------------------------------------------------------------------- /viewer/migrations/0146_alter_galleryproviderdata_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0146_alter_galleryproviderdata_origin.py -------------------------------------------------------------------------------- /viewer/migrations/0147_auto_20220607_1725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0147_auto_20220607_1725.py -------------------------------------------------------------------------------- /viewer/migrations/0148_alter_gallerysubmitentry_similar_galleries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0148_alter_gallerysubmitentry_similar_galleries.py -------------------------------------------------------------------------------- /viewer/migrations/0149_gallery_provider_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0149_gallery_provider_metadata.py -------------------------------------------------------------------------------- /viewer/migrations/0150_alter_eventlog_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0150_alter_eventlog_data.py -------------------------------------------------------------------------------- /viewer/migrations/0151_image_image_format_image_image_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0151_image_image_format_image_image_mode.py -------------------------------------------------------------------------------- /viewer/migrations/0152_image_image_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0152_image_image_size.py -------------------------------------------------------------------------------- /viewer/migrations/0153_image_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0153_image_image_name.py -------------------------------------------------------------------------------- /viewer/migrations/0154_historicalgallery_alter_archive_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0154_historicalgallery_alter_archive_options_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0155_remove_historicalarchive_original_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0155_remove_historicalarchive_original_filename.py -------------------------------------------------------------------------------- /viewer/migrations/0156_archive_archive_binned_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0156_archive_archive_binned_only.py -------------------------------------------------------------------------------- /viewer/migrations/0157_remove_historicalgallery_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0157_remove_historicalgallery_provider.py -------------------------------------------------------------------------------- /viewer/migrations/0158_alter_eventlog_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0158_alter_eventlog_options.py -------------------------------------------------------------------------------- /viewer/migrations/0159_alter_eventlog_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0159_alter_eventlog_options.py -------------------------------------------------------------------------------- /viewer/migrations/0160_archivetag_archive_new_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0160_archivetag_archive_new_tags.py -------------------------------------------------------------------------------- /viewer/migrations/0161_image_original_height_image_original_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0161_image_original_height_image_original_width.py -------------------------------------------------------------------------------- /viewer/migrations/0162_alter_archive_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0162_alter_archive_options.py -------------------------------------------------------------------------------- /viewer/migrations/0163_alter_tag_unique_together_tag_unique_scope_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0163_alter_tag_unique_together_tag_unique_scope_name.py -------------------------------------------------------------------------------- /viewer/migrations/0164_userlonglivedtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0164_userlonglivedtoken.py -------------------------------------------------------------------------------- /viewer/migrations/0165_alter_profile_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0165_alter_profile_options_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0166_processedlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0166_processedlinks.py -------------------------------------------------------------------------------- /viewer/migrations/0167_processedlinks_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0167_processedlinks_title.py -------------------------------------------------------------------------------- /viewer/migrations/0168_archivesizeentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0168_archivesizeentry.py -------------------------------------------------------------------------------- /viewer/migrations/0169_archivefileentry_delete_archivesizeentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0169_archivefileentry_delete_archivesizeentry.py -------------------------------------------------------------------------------- /viewer/migrations/0170_archiveoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0170_archiveoption.py -------------------------------------------------------------------------------- /viewer/migrations/0171_wantedimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0171_wantedimage.py -------------------------------------------------------------------------------- /viewer/migrations/0172_wantedimage_match_height_wantedimage_match_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0172_wantedimage_match_height_wantedimage_match_width.py -------------------------------------------------------------------------------- /viewer/migrations/0173_alter_wantedimage_match_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0173_alter_wantedimage_match_method.py -------------------------------------------------------------------------------- /viewer/migrations/0174_alter_wantedimage_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0174_alter_wantedimage_active.py -------------------------------------------------------------------------------- /viewer/migrations/0175_wantedimage_mark_priority_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0175_wantedimage_mark_priority_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0176_remove_wantedimage_match_method_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0176_remove_wantedimage_match_method_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0177_alter_gallery_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0177_alter_gallery_options.py -------------------------------------------------------------------------------- /viewer/migrations/0178_gallery_disowned_historicalgallery_disowned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0178_gallery_disowned_historicalgallery_disowned.py -------------------------------------------------------------------------------- /viewer/migrations/0179_foundwantedimageonarchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0179_foundwantedimageonarchive.py -------------------------------------------------------------------------------- /viewer/migrations/0180_wantedimage_restrict_by_homogeneity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0180_wantedimage_restrict_by_homogeneity.py -------------------------------------------------------------------------------- /viewer/migrations/0181_gallerysubmitentry_submit_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0181_gallerysubmitentry_submit_group.py -------------------------------------------------------------------------------- /viewer/migrations/0182_downloadevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0182_downloadevent.py -------------------------------------------------------------------------------- /viewer/migrations/0183_downloadevent_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0183_downloadevent_gallery.py -------------------------------------------------------------------------------- /viewer/migrations/0184_alter_gallery_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0184_alter_gallery_options.py -------------------------------------------------------------------------------- /viewer/migrations/0185_monitoredlink_limited_wanted_galleries_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0185_monitoredlink_limited_wanted_galleries_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0186_alter_image_image_height_alter_image_image_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0186_alter_image_image_height_alter_image_image_width.py -------------------------------------------------------------------------------- /viewer/migrations/0187_image_image_sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0187_image_image_sha1.py -------------------------------------------------------------------------------- /viewer/migrations/0188_category_wantedgallery_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0188_category_wantedgallery_categories.py -------------------------------------------------------------------------------- /viewer/migrations/0189_alter_category_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0189_alter_category_options.py -------------------------------------------------------------------------------- /viewer/migrations/0190_alter_category_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0190_alter_category_options.py -------------------------------------------------------------------------------- /viewer/migrations/0191_archive_file_deleted_historicalarchive_file_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0191_archive_file_deleted_historicalarchive_file_deleted.py -------------------------------------------------------------------------------- /viewer/migrations/0192_archivestatistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0192_archivestatistics.py -------------------------------------------------------------------------------- /viewer/migrations/0193_archivestatistics_file_type_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0193_archivestatistics_file_type_mode.py -------------------------------------------------------------------------------- /viewer/migrations/0194_archivestatistics_height_stddev_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0194_archivestatistics_height_stddev_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0195_archivestatistics_file_type_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0195_archivestatistics_file_type_match.py -------------------------------------------------------------------------------- /viewer/migrations/0196_alter_archive_possible_matches_alter_archive_tags_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0196_alter_archive_possible_matches_alter_archive_tags_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0197_gallerymatchgroup_gallerymatchgroupentry_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0197_gallerymatchgroup_gallerymatchgroupentry_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0198_alter_gallerymatchgroupentry_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0198_alter_gallerymatchgroupentry_options.py -------------------------------------------------------------------------------- /viewer/migrations/0199_alter_gallerymatchgroupentry_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0199_alter_gallerymatchgroupentry_options_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0200_gallerymatchgroup_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0200_gallerymatchgroup_title.py -------------------------------------------------------------------------------- /viewer/migrations/0201_gallerygrouppossiblematches_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0201_gallerygrouppossiblematches_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/0202_alter_archive_options_archivemanageentry_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0202_alter_archive_options_archivemanageentry_status.py -------------------------------------------------------------------------------- /viewer/migrations/0203_alter_archivemanageentry_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0203_alter_archivemanageentry_status.py -------------------------------------------------------------------------------- /viewer/migrations/0204_gallery_gallery_pub_norm_create_date_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/migrations/0204_gallery_gallery_pub_norm_create_date_and_more.py -------------------------------------------------------------------------------- /viewer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/models.py -------------------------------------------------------------------------------- /viewer/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/services.py -------------------------------------------------------------------------------- /viewer/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/signals.py -------------------------------------------------------------------------------- /viewer/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/browserconfig.xml -------------------------------------------------------------------------------- /viewer/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/dashboard.css -------------------------------------------------------------------------------- /viewer/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/main.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/bootstrap.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/bootstrap.css.map -------------------------------------------------------------------------------- /viewer/static/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/bootstrap.min.css.map -------------------------------------------------------------------------------- /viewer/static/css/vendor/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/fontawesome-all.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/fontawesome-all.min.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/jal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/jal/style.css -------------------------------------------------------------------------------- /viewer/static/css/vendor/jal/xhr-pending.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/vendor/jal/xhr-pending.gif -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /viewer/static/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /viewer/static/favicon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-114.png -------------------------------------------------------------------------------- /viewer/static/favicon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-120.png -------------------------------------------------------------------------------- /viewer/static/favicon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-144.png -------------------------------------------------------------------------------- /viewer/static/favicon-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-150.png -------------------------------------------------------------------------------- /viewer/static/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-152.png -------------------------------------------------------------------------------- /viewer/static/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-16.png -------------------------------------------------------------------------------- /viewer/static/favicon-160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-160.png -------------------------------------------------------------------------------- /viewer/static/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-196.png -------------------------------------------------------------------------------- /viewer/static/favicon-310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-310.png -------------------------------------------------------------------------------- /viewer/static/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-32.png -------------------------------------------------------------------------------- /viewer/static/favicon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-57.png -------------------------------------------------------------------------------- /viewer/static/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-64.png -------------------------------------------------------------------------------- /viewer/static/favicon-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-70.png -------------------------------------------------------------------------------- /viewer/static/favicon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-72.png -------------------------------------------------------------------------------- /viewer/static/favicon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-76.png -------------------------------------------------------------------------------- /viewer/static/favicon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon-96.png -------------------------------------------------------------------------------- /viewer/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/favicon.ico -------------------------------------------------------------------------------- /viewer/static/imgs/no_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/imgs/no_cover.png -------------------------------------------------------------------------------- /viewer/static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/admin.js -------------------------------------------------------------------------------- /viewer/static/js/archnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/archnav.js -------------------------------------------------------------------------------- /viewer/static/js/dirbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/dirbrowser.js -------------------------------------------------------------------------------- /viewer/static/js/list_operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/list_operations.js -------------------------------------------------------------------------------- /viewer/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/main.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/ace/ace.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/ace/ext-searchbox.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/ace/mode-yaml.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/ace/theme-dracula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/ace/theme-dracula.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/bootstrap.bundle.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /viewer/static/js/vendor/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /viewer/static/js/vendor/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/d3.min.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/d3.tip.0.6.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/d3.tip.0.6.7.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/htmx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/htmx.min.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/jquery.autocomplete-light.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/jquery.autocomplete-light.min.js -------------------------------------------------------------------------------- /viewer/static/js/vendor/keys.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/js/vendor/keys.min.js -------------------------------------------------------------------------------- /viewer/static/media/no_cover.8e25d57e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/media/no_cover.8e25d57e.png -------------------------------------------------------------------------------- /viewer/static/media/slick.b7c9e1e4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/media/slick.b7c9e1e4.woff -------------------------------------------------------------------------------- /viewer/static/media/slick.ced611da.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/media/slick.ced611da.eot -------------------------------------------------------------------------------- /viewer/static/media/slick.d41f55a7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/media/slick.d41f55a7.ttf -------------------------------------------------------------------------------- /viewer/static/media/slick.f97e3bbf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/static/media/slick.f97e3bbf.svg -------------------------------------------------------------------------------- /viewer/templates/viewer/forms/errors_as_div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/templates/viewer/forms/errors_as_div.html -------------------------------------------------------------------------------- /viewer/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/templatetags/dict_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/templatetags/dict_key.py -------------------------------------------------------------------------------- /viewer/templatetags/viewer_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/templatetags/viewer_extras.py -------------------------------------------------------------------------------- /viewer/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/tests/test_core.py -------------------------------------------------------------------------------- /viewer/tests/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/tests/test_internal.py -------------------------------------------------------------------------------- /viewer/tests/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/tests/test_web.py -------------------------------------------------------------------------------- /viewer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/urls.py -------------------------------------------------------------------------------- /viewer/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/utils/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/actions.py -------------------------------------------------------------------------------- /viewer/utils/dirbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/dirbrowser.py -------------------------------------------------------------------------------- /viewer/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/functions.py -------------------------------------------------------------------------------- /viewer/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/general.py -------------------------------------------------------------------------------- /viewer/utils/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/image_processing.py -------------------------------------------------------------------------------- /viewer/utils/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/matching.py -------------------------------------------------------------------------------- /viewer/utils/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/requests.py -------------------------------------------------------------------------------- /viewer/utils/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/tags.py -------------------------------------------------------------------------------- /viewer/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/utils/types.py -------------------------------------------------------------------------------- /viewer/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer/views/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/admin.py -------------------------------------------------------------------------------- /viewer/views/admin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/admin_api.py -------------------------------------------------------------------------------- /viewer/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/api.py -------------------------------------------------------------------------------- /viewer/views/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/archive.py -------------------------------------------------------------------------------- /viewer/views/archive_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/archive_groups.py -------------------------------------------------------------------------------- /viewer/views/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/browser.py -------------------------------------------------------------------------------- /viewer/views/collaborators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/collaborators.py -------------------------------------------------------------------------------- /viewer/views/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/complete.py -------------------------------------------------------------------------------- /viewer/views/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/elasticsearch.py -------------------------------------------------------------------------------- /viewer/views/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/exp.py -------------------------------------------------------------------------------- /viewer/views/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/gallery.py -------------------------------------------------------------------------------- /viewer/views/gallery_match_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/gallery_match_groups.py -------------------------------------------------------------------------------- /viewer/views/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/groups.py -------------------------------------------------------------------------------- /viewer/views/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/head.py -------------------------------------------------------------------------------- /viewer/views/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/manager.py -------------------------------------------------------------------------------- /viewer/views/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/tools.py -------------------------------------------------------------------------------- /viewer/views/wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandabuilder/pandachaika/HEAD/viewer/views/wanted.py --------------------------------------------------------------------------------