├── .dockerignore ├── .github └── workflows │ ├── phpmd.yml │ └── snyk-security.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── Announce.php ├── Api │ ├── Base.php │ ├── Better.php │ ├── BonusPoints.php │ ├── Collages.php │ ├── Creators.php │ ├── Friends.php │ ├── Groups.php │ ├── Internal.php │ ├── Meta.php │ ├── Requests.php │ ├── Top10.php │ ├── Torrents.php │ └── Wiki.php ├── App.php ├── Auth.php ├── AutoEnable.php ├── Autocomplete.php ├── Badges.php ├── Better.php ├── BonusPoints.php ├── Bookmarks.php ├── Cache.php ├── Crossref.php ├── Crypto.php ├── Database.php ├── DatabaseOld.php ├── Debug.php ├── Discourse.php ├── ENV.php ├── Escape.php ├── Exception.php ├── Feed.php ├── Format.php ├── Forums.php ├── Friends.php ├── Http.php ├── INVITE_TREE.php ├── Images.php ├── Inbox.php ├── LazyCollection.php ├── LockedAccounts.php ├── Manticore.php ├── Misc.php ├── Models │ ├── Collages.php │ ├── Conversations.php │ ├── Creators.php │ ├── Literature.php │ ├── Messages.php │ ├── ObjectCrud.php │ ├── Organizations.php │ ├── Publications.php │ ├── Requests.php │ ├── Roles.php │ ├── SiteLog.php │ ├── Tags.php │ ├── TorrentGroups.php │ ├── Torrents.php │ ├── Users.php │ └── Wiki.php ├── Ncbi.php ├── NotificationsManager.php ├── NotificationsManagerView.php ├── OpenAI.php ├── OpenAlex.php ├── Permissions.php ├── RecursiveCollection.php ├── Reports.php ├── ResearchOrganizationRegistry.php ├── RevisionHistory.php ├── RevisionHistoryView.php ├── SemanticScholar.php ├── Stats.php ├── Subscriptions.php ├── Text.php ├── Tools.php ├── Top10.php ├── TorrentFunctions.php ├── TorrentsDL.php ├── Tracker.php ├── TrackerOld.php ├── Twig.php ├── UserOld.php ├── UserRank.php ├── Validate.php ├── View.php ├── WebAuthn │ ├── Base.php │ ├── CredentialSourceRepository.php │ └── UserEntityRepository.php ├── Zip.php ├── bencode.class.php ├── bencodedecode.class.php ├── bencodetorrent.class.php └── torrent.class.php ├── bootstrap ├── api.php ├── autoload.php ├── cli.php ├── utilities.php └── web.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── badges.php ├── metadata.php ├── metadataOld.php ├── privateExample.php ├── public.php └── regex.php ├── cron ├── database ├── migrations │ ├── 20240522015737_database_cleanup.php │ ├── 20240522024536_reset_wiki_permissions.php │ ├── 20240522191136_json_tags.php │ ├── 20240522203651_chihaya_tables.php │ ├── 20240601175337_hydrate_slug_columns.php │ ├── 20240601191838_fill_zero_ids.php │ ├── 20240602161518_organizations_tables.php │ ├── 20240602205342_generic_linking_tables.php │ └── 20240603180418_hydrate_organizations_table.php └── migrationsOld │ ├── 20230513020218_web_authn.php │ ├── 20230919194636_reconstruct_badges_table.php │ ├── 20240221150928_hydrate_roles_permissions.php │ ├── 20240520211747_migrate_creators.php │ └── 20240522001652_short_uuid.php ├── design ├── privateheader.php └── views │ └── generic │ └── reply │ └── staffpm.php ├── docker-compose.yml ├── package.json ├── phinx.php ├── public ├── css │ └── vendor │ │ ├── easymde.min.css │ │ ├── highlight.min.css │ │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ │ ├── normalize.min.css │ │ ├── skeleton.min.css │ │ ├── sortable-theme-minimal.css │ │ └── tom-select.bootstrap5.min.css ├── feeds.php ├── image.php ├── images │ ├── avatars │ │ └── default.webp │ ├── forums │ │ ├── go_last_read.png │ │ ├── hide.png │ │ ├── locked_read.png │ │ ├── locked_sticky_read.png │ │ ├── locked_sticky_unread.png │ │ ├── locked_unread.png │ │ ├── read.png │ │ ├── show.png │ │ ├── sticky_read.png │ │ ├── sticky_unread.png │ │ └── unread.png │ ├── icons │ │ ├── archive.webp │ │ ├── externalLink.svg │ │ ├── fa-cloud.svg │ │ ├── rss.webp │ │ └── version.webp │ ├── logos │ │ ├── colorfulWaves-whiteShadow-2k.webp │ │ ├── doi.svg │ │ ├── grid.webp │ │ ├── openAccess.svg │ │ ├── openAlex.webp │ │ ├── orcid.webp │ │ ├── patreon.webp │ │ ├── ror.svg │ │ ├── sci-hub.webp │ │ ├── semanticScholar.webp │ │ ├── simpleFavicon-2k.webp │ │ └── torrents.bio.webp │ ├── mascot.webp │ ├── mascotFullVersion.webp │ ├── noartwork.webp │ ├── oink.webp │ └── plausibleOptOut.webp ├── index.php ├── js │ └── vendor │ │ ├── chart.min.js │ │ ├── chartjs-chart-geo.min.js │ │ ├── chartjs-chart-graph.min.js │ │ ├── chartjs-chart-wordcloud.js │ │ ├── easymde.min.js │ │ ├── highlight.min.js │ │ ├── instantpage.min.js │ │ ├── jquery.min.js │ │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ │ ├── lodash.core.min.js │ │ ├── lodash.min.js │ │ ├── noty │ │ ├── jquery.noty.js │ │ ├── layouts │ │ │ ├── bottom.js │ │ │ ├── bottomCenter.js │ │ │ ├── bottomLeft.js │ │ │ ├── bottomRight.js │ │ │ ├── center.js │ │ │ ├── centerLeft.js │ │ │ ├── centerRight.js │ │ │ ├── inline.js │ │ │ ├── top.js │ │ │ ├── topCenter.js │ │ │ ├── topLeft.js │ │ │ └── topRight.js │ │ ├── packaged │ │ │ ├── jquery.noty.packaged.js │ │ │ └── jquery.noty.packaged.min.js │ │ ├── promise.js │ │ └── themes │ │ │ ├── bootstrap.js │ │ │ ├── default.js │ │ │ ├── metroui.js │ │ │ ├── relax.js │ │ │ └── semanticUI.js │ │ ├── simplewebauthn.min.js │ │ ├── smartquotes.min.js │ │ ├── sortable.min.js │ │ ├── starboard-wrap.js │ │ ├── tom-select.base.min.js │ │ └── typeahead.bundle.min.js └── opensearch.xml ├── resources ├── buildAssets.sh ├── js │ ├── ajax.class.js │ ├── browse.js │ ├── collage.js │ ├── conversations.js │ ├── cover_art.js │ ├── enable_requests.js │ ├── global.js │ ├── literature.js │ ├── news_ajax.js │ ├── notifications.js │ ├── recommend.js │ ├── reports.js │ ├── reportsv2.js │ ├── requests.js │ ├── staffpm.js │ ├── subscriptions.js │ ├── torrent.js │ ├── upload.js │ ├── user.js │ ├── user_notifications.js │ ├── webAuthnAssert.js │ ├── webAuthnCreate.js │ └── wiki.js ├── php │ └── wordlist.php └── scss │ ├── assets.scss │ ├── assets │ ├── colors.scss │ ├── fonts.scss │ └── icons.scss │ ├── bookish.scss │ ├── bookish │ ├── bookish.scss │ ├── colors.scss │ ├── debug.scss │ ├── fonts.scss │ ├── images │ │ └── sam-komon.png │ ├── layout.scss │ ├── matcha.scss │ └── tables.scss │ ├── development.scss │ ├── development │ └── development.scss │ ├── global.scss │ ├── global │ ├── colors.scss │ ├── fonts.scss │ ├── footer.scss │ ├── forms.scss │ ├── layout.scss │ ├── mainMenu.scss │ ├── skeletonFixes.scss │ ├── tables.scss │ ├── torrents.scss │ └── user.scss │ ├── postmod.scss │ ├── postmod │ ├── colors.scss │ ├── images │ │ ├── Akzidenz.otf │ │ ├── Avant.otf │ │ ├── CorpidOffice.ttf │ │ ├── Officina.otf │ │ ├── alert-overlay.png │ │ ├── bg_footer.png │ │ ├── bg_header.png │ │ ├── bg_inputs.png │ │ ├── bg_menu.png │ │ ├── body.jpg │ │ ├── content.png │ │ ├── content_light.png │ │ ├── external.png │ │ ├── gazelle.png │ │ ├── go_last_read.png │ │ ├── hide.png │ │ ├── leechers.png │ │ ├── load.gif │ │ ├── locked_read.png │ │ ├── locked_sticky_read.png │ │ ├── locked_sticky_unread.png │ │ ├── locked_unread.png │ │ ├── logo.png │ │ ├── nav_matrix.png │ │ ├── nav_matrix_extended.png │ │ ├── nu_nav_matrix.png │ │ ├── poll_left.png │ │ ├── poll_middle.png │ │ ├── poll_right.png │ │ ├── read.png │ │ ├── seeders.png │ │ ├── show.png │ │ ├── snatched.png │ │ ├── sticky_read.png │ │ ├── sticky_unread.png │ │ ├── table_header.png │ │ ├── table_header_dark.png │ │ ├── unread.png │ │ ├── wood.jpg │ │ ├── woodlogo.png │ │ ├── woodlogo.png2 │ │ └── wrapper.png │ ├── layout.scss │ ├── menus.scss │ └── postmod.scss │ ├── public.scss │ ├── public │ └── public.scss │ └── sidebar.scss ├── routes ├── api.php ├── api │ ├── better.php │ ├── bonusPoints.php │ ├── collages.php │ ├── creators.php │ ├── discourse.php │ ├── friends.php │ ├── groups.php │ ├── meta.php │ ├── requests.php │ ├── top10.php │ ├── torrents.php │ └── wiki.php ├── apiAuthentication.php ├── internal.php ├── web.php └── web │ ├── better.php │ ├── bonusPoints.php │ ├── collages.php │ ├── conversations.php │ ├── creators.php │ ├── discourse.php │ ├── feeds.php │ ├── literature.php │ ├── organizations.php │ ├── publications.php │ ├── requests.php │ ├── rules.php │ ├── siteLog.php │ ├── siteText.php │ ├── stats.php │ ├── toolbox.php │ ├── top10.php │ ├── torrentGroups.php │ ├── torrents.php │ ├── user.php │ ├── userAuth.php │ └── wiki.php ├── sections ├── api │ ├── announcements.php │ ├── artist.php │ ├── bookmarks │ │ ├── artists.php │ │ ├── index.php │ │ └── torrents.php │ ├── clear_user_notification.php │ ├── collage.php │ ├── get_user_notifications.php │ ├── inbox │ │ ├── inbox.php │ │ ├── index.php │ │ └── viewconv.php │ ├── info.php │ ├── notifications.php │ ├── request.php │ ├── routerOld.php │ ├── subscriptions.php │ ├── tcomments.php │ ├── top10 │ │ ├── index.php │ │ ├── tags.php │ │ ├── torrents.php │ │ └── users.php │ ├── torrents │ │ ├── group.php │ │ └── torrent.php │ ├── user.php │ └── user_recents.php ├── artist │ ├── change_artistid.php │ ├── download.php │ ├── edit.php │ ├── notify.php │ ├── notifyremove.php │ ├── rename.php │ ├── router.php │ └── takeedit.php ├── better │ ├── badFolders.php │ ├── badTags.php │ ├── missingCitations.php │ ├── missingPictures.php │ └── singleSeeder.php ├── blog │ └── router.php ├── bonusPoints │ ├── checkout.php │ ├── confirm.php │ ├── freeleechpool.php │ ├── promotion.php │ └── store.php ├── bookmarks │ ├── add.php │ ├── artists.php │ ├── remove.php │ ├── router.php │ └── torrents.php ├── collages │ ├── add_torrent.php │ ├── artist_collage.php │ ├── browse.php │ ├── delete.php │ ├── details.php │ ├── download.php │ ├── edit.php │ ├── edit_handle.php │ ├── manage.php │ ├── manage_handle.php │ ├── new_handle.php │ └── updateOrCreate.php ├── comments │ └── router.php ├── commentsOld │ ├── comments.php │ ├── get.php │ ├── take_delete.php │ ├── take_edit.php │ ├── take_post.php │ ├── take_warn.php │ └── warn.php ├── conversations │ ├── createMessage.php │ └── user.php ├── creators │ ├── browse.php │ ├── delete.php │ └── details.php ├── discourse │ ├── boards │ │ ├── category.php │ │ ├── index.php │ │ ├── newEdit.php │ │ └── topic.php │ ├── connect │ │ └── connect.php │ ├── messages │ │ └── index.php │ └── wiki │ │ └── index.php ├── feeds │ └── index.php ├── forums │ └── router.php ├── forumsOld │ ├── add_poll_option.php │ ├── catchup.php │ ├── change_vote.php │ ├── delete.php │ ├── delete_poll_option.php │ ├── forum.php │ ├── get_post.php │ ├── main.php │ ├── mod_thread.php │ ├── newthread.php │ ├── poll_mod.php │ ├── poll_vote.php │ ├── search.php │ ├── sticky_post.php │ ├── take_new_thread.php │ ├── take_reply.php │ ├── take_topic_notes.php │ ├── take_warn.php │ ├── takeedit.php │ ├── thread.php │ └── warn.php ├── image │ ├── err_imgs │ │ ├── badprotocol.png │ │ ├── forbidden.png │ │ ├── invalid.png │ │ ├── invisible.png │ │ ├── nogd.png │ │ ├── small.png │ │ └── timeout.png │ └── router.php ├── inbox │ ├── compose.php │ ├── conversation.php │ ├── forward.php │ ├── get_post.php │ ├── inbox.php │ ├── massdelete_handle.php │ ├── takecompose.php │ └── takeedit.php ├── index │ └── private.php ├── literature │ ├── browse.php │ └── details.php ├── log │ ├── index.php │ ├── sphinx.php │ └── sql.php ├── organizations │ ├── browse.php │ └── details.php ├── publications │ ├── browse.php │ └── details.php ├── reports │ ├── ajax_add_notes.php │ ├── ajax_claim_report.php │ ├── ajax_resolve_report.php │ ├── ajax_unclaim_report.php │ ├── array.php │ ├── compose.php │ ├── report.php │ ├── reports.php │ ├── router.php │ ├── stats.php │ ├── takecompose.php │ ├── takereport.php │ └── takeresolve.php ├── reportsv2 │ ├── ajax_change_resolve.php │ ├── ajax_create_report.php │ ├── ajax_giveback_report.php │ ├── ajax_grab_report.php │ ├── ajax_new_report.php │ ├── ajax_report.php │ ├── ajax_take_pm.php │ ├── ajax_update_comment.php │ ├── ajax_update_resolve.php │ ├── array.php │ ├── header.php │ ├── report.php │ ├── reports.php │ ├── router.php │ ├── search.php │ ├── static.php │ ├── takereport.php │ ├── takeresolve.php │ └── views.php ├── requests │ ├── browse.php │ ├── details.php │ ├── take_delete.php │ ├── take_fill.php │ ├── take_new_edit.php │ ├── take_unfill.php │ └── updateOrCreate.php ├── snatchlist │ └── router.php ├── staffpm │ ├── ajax_delete_response.php │ ├── ajax_edit_response.php │ ├── ajax_get_response.php │ ├── ajax_preview_response.php │ ├── assign.php │ ├── common_responses.php │ ├── get_post.php │ ├── multiresolve.php │ ├── resolve.php │ ├── router.php │ ├── staff_inbox.php │ ├── takepost.php │ ├── unresolve.php │ ├── user_inbox.php │ └── viewconv.php ├── stats │ ├── torrents.php │ └── users.php ├── toolbox │ ├── clientWhitelist.php │ ├── collageRecovery.php │ ├── data │ │ ├── invite_pool.php │ │ ├── ocelot_info.php │ │ ├── registration_log.php │ │ └── upscale_pool.php │ ├── databaseKey.php │ ├── development │ │ ├── misc_values.php │ │ └── service_stats.php │ ├── managers │ │ ├── ajax_take_enable_request.php │ │ ├── bans.php │ │ ├── email_blacklist.php │ │ ├── email_blacklist_alter.php │ │ ├── email_blacklist_search.php │ │ ├── enable_requests.php │ │ ├── forum_alter.php │ │ ├── forum_list.php │ │ ├── global_notification.php │ │ ├── login_watch.php │ │ ├── mass_pm.php │ │ ├── multiple_freeleech.php │ │ ├── news.php │ │ ├── ocelot.php │ │ ├── official_tags.php │ │ ├── sitewide_freeleech.php │ │ ├── tag_aliases.php │ │ ├── take_global_notification.php │ │ ├── take_mass_pm.php │ │ ├── tokens.php │ │ └── whitelist_alter.php │ ├── misc │ │ ├── manipulate_tree.php │ │ ├── quick_ban.php │ │ └── tags.php │ ├── roles │ │ ├── createUpdate.php │ │ └── listAll.php │ └── routerOld.php ├── top10 │ ├── tags.php │ ├── torrents.php │ └── users.php ├── torrentGroups │ ├── add_alias.php │ ├── add_cover_art.php │ ├── browse.php │ ├── create.php │ ├── delete.php │ ├── delete_alias.php │ ├── details.php │ ├── downloadlist.php │ ├── editgroupid.php │ ├── history.php │ ├── manage_artists.php │ ├── merge.php │ ├── nonwikiedit.php │ ├── remove_cover_art.php │ ├── rename.php │ ├── screenshotedit.php │ ├── takedelete.php │ ├── takegroupedit.php │ └── update.php ├── torrents │ ├── delete.php │ ├── details.php │ ├── download.php │ ├── downloadlist.php │ ├── masspm.php │ ├── notify.php │ ├── notify_actions.php │ ├── peerlist.php │ ├── redownload.php │ ├── reseed.php │ ├── snatchlist.php │ ├── takechangecategory.php │ ├── takedelete.php │ ├── takeedit.php │ ├── takemasspm.php │ ├── update.php │ └── user.php ├── upload │ ├── router.php │ ├── upload.php │ └── upload_handle.php ├── user │ ├── advancedsearch.php │ ├── auth │ │ ├── confirm.php │ │ ├── disabled.php │ │ ├── login.php │ │ ├── recover.php │ │ ├── register.php │ │ └── resend.php │ ├── delete_invite.php │ ├── edit.php │ ├── friends.php │ ├── invite.php │ ├── invitetree.php │ ├── linkedfunctions.php │ ├── manage_linked.php │ ├── notify_edit.php │ ├── notify_handle.php │ ├── permissions.php │ ├── points.php │ ├── router.php │ ├── sessions.php │ ├── staff.php │ ├── take_invite.php │ ├── takemoderate.php │ └── user.php ├── userhistory │ ├── catchup.php │ ├── catchup_collages.php │ ├── collage_subscribe.php │ ├── comments_subscribe.php │ ├── ip_tracker_history.php │ ├── post_history.php │ ├── quote_notifications.php │ ├── router.php │ ├── subscribed_collages.php │ ├── subscriptions.php │ ├── thread_subscribe.php │ └── token_history.php └── wiki │ ├── article.php │ ├── browse.php │ ├── compare.php │ ├── create.php │ └── delete.php ├── shell ├── templates ├── _base │ ├── alertBars.twig │ ├── breadcrumbs.twig │ ├── conversation.twig │ ├── footer.twig │ ├── linkObjects.twig │ ├── mainMenu.twig │ ├── metaTags.twig │ ├── publicHeader.twig │ ├── starboardNotebook.twig │ ├── textarea.twig │ └── userInfo.twig ├── admin │ ├── advanced-user-search.twig │ ├── announcekey-history.twig │ ├── bonus-stats.twig │ ├── cache-management.twig │ ├── changelog.twig │ ├── clientWhitelist.twig │ ├── databaseKey.twig │ ├── duplicate-ipaddr.twig │ ├── emailBlacklist.twig │ ├── history-ip-tracker.twig │ ├── login-watch.twig │ ├── miscValues.twig │ ├── notification-sandbox.twig │ ├── ratio-watch.twig │ ├── registration.twig │ ├── roles │ │ ├── createUpdate.twig │ │ └── listAll.twig │ ├── sidebar.twig │ ├── site-info-userrank.twig │ ├── site-option.twig │ ├── siteNews.twig │ ├── staffpm-list.twig │ ├── tools.twig │ ├── tracker-info.twig │ ├── user-custom-permission.twig │ ├── user-info-ipv4.twig │ └── userflow.twig ├── artist │ └── similar.twig ├── base.twig ├── better │ ├── index.twig │ ├── list.twig │ └── sidebar.twig ├── bonusPoints │ ├── bonus-pool.twig │ ├── checkout.twig │ ├── confirm.twig │ ├── sidebar.twig │ └── store.twig ├── bookmark │ ├── body.twig │ ├── footer.twig │ ├── header.twig │ └── none.twig ├── collages │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ ├── sidebar.twig │ └── updateOrCreate.twig ├── collector.twig ├── comment │ ├── comment.twig │ └── warn.twig ├── creators │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ └── sidebar.twig ├── discourse │ ├── boards │ │ ├── category.twig │ │ ├── index.twig │ │ ├── newEdit.twig │ │ ├── sidebar.twig │ │ └── topic.twig │ ├── messages │ │ ├── index.twig │ │ └── sidebar.twig │ └── wiki │ │ └── index.twig ├── email │ ├── changeEmail.twig │ ├── disableWarning.twig │ ├── emailChanged.twig │ ├── enableAccepted.twig │ ├── enableDeclined.twig │ ├── hackedAccount.twig │ ├── inviteMember.twig │ ├── passphraseChanged.twig │ ├── passphraseReset.twig │ └── verifyRegistration.twig ├── error.twig ├── forum │ ├── header-thread.twig │ ├── header.twig │ ├── main.twig │ ├── new-thread.twig │ ├── request-edit.twig │ ├── toc.twig │ └── warn.twig ├── inbox │ └── compose.twig ├── index │ ├── private.twig │ └── sidebar.twig ├── literature │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ └── sidebar.twig ├── manticore │ ├── complexSearch.twig │ ├── dataSize.twig │ ├── files.twig │ ├── formControls.twig │ ├── formats.twig │ ├── misc.twig │ ├── numbers.twig │ ├── ordering.twig │ ├── organization.twig │ ├── pagination.twig │ ├── people.twig │ ├── places.twig │ ├── platforms.twig │ ├── relationships.twig │ ├── simpleSearch.twig │ └── tracker.twig ├── organizations │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ └── sidebar.twig ├── publications │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ └── sidebar.twig ├── reportsv2 │ └── new.twig ├── requests │ ├── browse.twig │ ├── details.twig │ ├── edit-bounty.twig │ ├── search.twig │ ├── sidebarDetails.twig │ ├── sidebarForm.twig │ ├── tableEntry.twig │ └── updateOrCreate.twig ├── siteLog │ ├── index.twig │ └── sidebar.twig ├── siteText │ ├── donate │ │ └── donate.md │ ├── legal │ │ ├── about.md │ │ ├── canary.txt │ │ ├── dmca.md │ │ ├── privacy.md │ │ └── pubkey.txt │ ├── rules.twig │ ├── rules │ │ ├── chat.md │ │ ├── clients.twig │ │ ├── collages.md │ │ ├── golden.md │ │ ├── ratio.twig │ │ ├── requests.md │ │ ├── sidebar.twig │ │ ├── tags.md │ │ └── upload.md │ └── tldr.twig ├── stats │ ├── concepts.twig │ ├── countsByYear.twig │ ├── torrents.twig │ └── users.twig ├── tables │ ├── collages.twig │ ├── creators.twig │ ├── literature.twig │ ├── organizations.twig │ ├── requests.twig │ ├── searchSemanticScholar.twig │ ├── torrentGroups.twig │ └── torrents.twig ├── tag │ ├── alias.twig │ ├── batch-editor.twig │ └── merged.twig ├── top10 │ ├── sidebar.twig │ ├── tags.twig │ ├── torrents.twig │ └── users.twig ├── torrentForm │ ├── announceSource.twig │ ├── archive.twig │ ├── booleans.twig │ ├── categoryId.twig │ ├── creatorList.twig │ ├── formats.twig │ ├── freeleech.twig │ ├── groupDescription.twig │ ├── identifier.twig │ ├── license.twig │ ├── literature.twig │ ├── location.twig │ ├── mirrors.twig │ ├── notice.twig │ ├── picture.twig │ ├── platforms.twig │ ├── scopes.twig │ ├── seqhash.twig │ ├── sidebar.twig │ ├── tagList.twig │ ├── titles.twig │ ├── torrentDescription.twig │ ├── torrentFile.twig │ ├── version.twig │ ├── workgroup.twig │ └── year.twig ├── torrentGroups │ ├── browse.twig │ ├── details.twig │ ├── search.twig │ ├── sidebar.twig │ └── update.twig ├── torrents │ ├── details.twig │ ├── peerlist.twig │ ├── sidebar.twig │ └── upload.twig ├── user │ ├── auth │ │ ├── confirm.twig │ │ ├── disabled.twig │ │ ├── login.twig │ │ ├── recover.twig │ │ └── register.twig │ ├── bonus-history.twig │ ├── edit-buffer.twig │ ├── edit-fltoken.twig │ ├── edit-invite.twig │ ├── edit-lock.twig │ ├── edit-peer-visibility.twig │ ├── edit-rate-limit.twig │ ├── edit-remark.twig │ ├── edit-reset.twig │ ├── edit-secondary-class.twig │ ├── edit-submit.twig │ ├── edit-title.twig │ ├── edit-warn.twig │ ├── friends.twig │ ├── history-freeleech.twig │ ├── invite-tree-bulkedit.twig │ ├── invite-tree.twig │ ├── invited.twig │ ├── linked.twig │ ├── post-history.twig │ ├── privilege-list.twig │ ├── profile │ │ ├── invites.twig │ │ ├── profile.twig │ │ └── sidebar.twig │ ├── quote-notification.twig │ ├── recent.twig │ ├── reset-avatar.twig │ ├── session.twig │ ├── settings │ │ ├── notification.twig │ │ ├── settings.twig │ │ └── sidebar.twig │ ├── sidebar.twig │ ├── staff.twig │ ├── tag-snatch.twig │ └── thread-history.twig └── wiki │ ├── article.twig │ ├── browse.twig │ ├── compare.twig │ └── sidebar.twig ├── tests ├── app │ └── AppTest.php └── go.php ├── utilities ├── config │ ├── crontab.txt │ ├── manticore.conf │ └── nginx.conf ├── crontab │ ├── daily │ │ ├── class_demotions.php │ │ ├── jwtKeyPair.php │ │ ├── openAi.php │ │ ├── ratioRequirements.php │ │ ├── ratioWatch.php │ │ ├── resolveStaffPMs.php │ │ └── semanticScholar.php │ ├── every │ │ ├── bonusPointFreeleeches.php │ │ ├── expireFreeleechTokens.php │ │ ├── lastCommit.php │ │ ├── peerUpdate.php │ │ └── sixHourFreeleeches.php │ ├── hourly │ │ ├── automatedBadges.php │ │ ├── bonusPoints.php │ │ ├── classPromotions.php │ │ ├── deleteDeadPeers.php │ │ ├── deleteDeadSessions.php │ │ ├── deleteExpiredInvites.php │ │ ├── deleteExpiredWarnings.php │ │ ├── disableLeechingPrivileges.php │ │ ├── recordSeedingStats.php │ │ ├── siteApiSecret.php │ │ └── updateSeedTimes.php │ ├── monthly │ │ ├── auctionBadge.php │ │ ├── remoteCreatorData.php │ │ ├── remoteLiteratureData.php │ │ ├── remoteOrganizationData.php │ │ └── updateTopSnatchers.php │ └── weekly │ │ ├── grantInvites.php │ │ └── updateSatis.php ├── docker │ ├── manticore │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── manticore.conf │ ├── nginx │ │ └── gazelle.conf │ └── php │ │ ├── php.ini │ │ └── snuffleupagus │ │ ├── default_php8.rules │ │ ├── detect_dangerous_extensions.rules │ │ └── ini_protection.rules ├── rootkit │ └── aptEverything ├── schema │ ├── authentication.sql │ ├── gazelle.sql │ └── slackManifest.json ├── scratchpad.php └── vault │ ├── cartalystSentinel │ └── Authentication.php │ ├── cssOnlyMenu │ ├── mainMenu.scss │ ├── mainMenu.twig │ ├── skeletonFixes.scss │ └── userInfo.twig │ ├── eloquentModels │ ├── Base.php │ ├── Collages.php │ ├── Requests.php │ ├── TorrentGroups.php │ ├── Torrents.php │ └── Wiki.php │ └── oldMainMenu │ ├── mainMenu.scss │ ├── mainMenu.twig │ └── menus.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/phpmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/.github/workflows/phpmd.yml -------------------------------------------------------------------------------- /.github/workflows/snyk-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/.github/workflows/snyk-security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/README.md -------------------------------------------------------------------------------- /app/Announce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Announce.php -------------------------------------------------------------------------------- /app/Api/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Base.php -------------------------------------------------------------------------------- /app/Api/Better.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Better.php -------------------------------------------------------------------------------- /app/Api/BonusPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/BonusPoints.php -------------------------------------------------------------------------------- /app/Api/Collages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Collages.php -------------------------------------------------------------------------------- /app/Api/Creators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Creators.php -------------------------------------------------------------------------------- /app/Api/Friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Friends.php -------------------------------------------------------------------------------- /app/Api/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Groups.php -------------------------------------------------------------------------------- /app/Api/Internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Internal.php -------------------------------------------------------------------------------- /app/Api/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Meta.php -------------------------------------------------------------------------------- /app/Api/Requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Requests.php -------------------------------------------------------------------------------- /app/Api/Top10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Top10.php -------------------------------------------------------------------------------- /app/Api/Torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Torrents.php -------------------------------------------------------------------------------- /app/Api/Wiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Api/Wiki.php -------------------------------------------------------------------------------- /app/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/App.php -------------------------------------------------------------------------------- /app/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Auth.php -------------------------------------------------------------------------------- /app/AutoEnable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/AutoEnable.php -------------------------------------------------------------------------------- /app/Autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Autocomplete.php -------------------------------------------------------------------------------- /app/Badges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Badges.php -------------------------------------------------------------------------------- /app/Better.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Better.php -------------------------------------------------------------------------------- /app/BonusPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/BonusPoints.php -------------------------------------------------------------------------------- /app/Bookmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Bookmarks.php -------------------------------------------------------------------------------- /app/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Cache.php -------------------------------------------------------------------------------- /app/Crossref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Crossref.php -------------------------------------------------------------------------------- /app/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Crypto.php -------------------------------------------------------------------------------- /app/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Database.php -------------------------------------------------------------------------------- /app/DatabaseOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/DatabaseOld.php -------------------------------------------------------------------------------- /app/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Debug.php -------------------------------------------------------------------------------- /app/Discourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Discourse.php -------------------------------------------------------------------------------- /app/ENV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/ENV.php -------------------------------------------------------------------------------- /app/Escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Escape.php -------------------------------------------------------------------------------- /app/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Exception.php -------------------------------------------------------------------------------- /app/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Feed.php -------------------------------------------------------------------------------- /app/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Format.php -------------------------------------------------------------------------------- /app/Forums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Forums.php -------------------------------------------------------------------------------- /app/Friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Friends.php -------------------------------------------------------------------------------- /app/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Http.php -------------------------------------------------------------------------------- /app/INVITE_TREE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/INVITE_TREE.php -------------------------------------------------------------------------------- /app/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Images.php -------------------------------------------------------------------------------- /app/Inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Inbox.php -------------------------------------------------------------------------------- /app/LazyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/LazyCollection.php -------------------------------------------------------------------------------- /app/LockedAccounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/LockedAccounts.php -------------------------------------------------------------------------------- /app/Manticore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Manticore.php -------------------------------------------------------------------------------- /app/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Misc.php -------------------------------------------------------------------------------- /app/Models/Collages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Collages.php -------------------------------------------------------------------------------- /app/Models/Conversations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Conversations.php -------------------------------------------------------------------------------- /app/Models/Creators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Creators.php -------------------------------------------------------------------------------- /app/Models/Literature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Literature.php -------------------------------------------------------------------------------- /app/Models/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Messages.php -------------------------------------------------------------------------------- /app/Models/ObjectCrud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/ObjectCrud.php -------------------------------------------------------------------------------- /app/Models/Organizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Organizations.php -------------------------------------------------------------------------------- /app/Models/Publications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Publications.php -------------------------------------------------------------------------------- /app/Models/Requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Requests.php -------------------------------------------------------------------------------- /app/Models/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Roles.php -------------------------------------------------------------------------------- /app/Models/SiteLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/SiteLog.php -------------------------------------------------------------------------------- /app/Models/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Tags.php -------------------------------------------------------------------------------- /app/Models/TorrentGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/TorrentGroups.php -------------------------------------------------------------------------------- /app/Models/Torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Torrents.php -------------------------------------------------------------------------------- /app/Models/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Users.php -------------------------------------------------------------------------------- /app/Models/Wiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Models/Wiki.php -------------------------------------------------------------------------------- /app/Ncbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Ncbi.php -------------------------------------------------------------------------------- /app/NotificationsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/NotificationsManager.php -------------------------------------------------------------------------------- /app/NotificationsManagerView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/NotificationsManagerView.php -------------------------------------------------------------------------------- /app/OpenAI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/OpenAI.php -------------------------------------------------------------------------------- /app/OpenAlex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/OpenAlex.php -------------------------------------------------------------------------------- /app/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Permissions.php -------------------------------------------------------------------------------- /app/RecursiveCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/RecursiveCollection.php -------------------------------------------------------------------------------- /app/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Reports.php -------------------------------------------------------------------------------- /app/ResearchOrganizationRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/ResearchOrganizationRegistry.php -------------------------------------------------------------------------------- /app/RevisionHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/RevisionHistory.php -------------------------------------------------------------------------------- /app/RevisionHistoryView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/RevisionHistoryView.php -------------------------------------------------------------------------------- /app/SemanticScholar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/SemanticScholar.php -------------------------------------------------------------------------------- /app/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Stats.php -------------------------------------------------------------------------------- /app/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Subscriptions.php -------------------------------------------------------------------------------- /app/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Text.php -------------------------------------------------------------------------------- /app/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Tools.php -------------------------------------------------------------------------------- /app/Top10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Top10.php -------------------------------------------------------------------------------- /app/TorrentFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/TorrentFunctions.php -------------------------------------------------------------------------------- /app/TorrentsDL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/TorrentsDL.php -------------------------------------------------------------------------------- /app/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Tracker.php -------------------------------------------------------------------------------- /app/TrackerOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/TrackerOld.php -------------------------------------------------------------------------------- /app/Twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Twig.php -------------------------------------------------------------------------------- /app/UserOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/UserOld.php -------------------------------------------------------------------------------- /app/UserRank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/UserRank.php -------------------------------------------------------------------------------- /app/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Validate.php -------------------------------------------------------------------------------- /app/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/View.php -------------------------------------------------------------------------------- /app/WebAuthn/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/WebAuthn/Base.php -------------------------------------------------------------------------------- /app/WebAuthn/CredentialSourceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/WebAuthn/CredentialSourceRepository.php -------------------------------------------------------------------------------- /app/WebAuthn/UserEntityRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/WebAuthn/UserEntityRepository.php -------------------------------------------------------------------------------- /app/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/Zip.php -------------------------------------------------------------------------------- /app/bencode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/bencode.class.php -------------------------------------------------------------------------------- /app/bencodedecode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/bencodedecode.class.php -------------------------------------------------------------------------------- /app/bencodetorrent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/bencodetorrent.class.php -------------------------------------------------------------------------------- /app/torrent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/app/torrent.class.php -------------------------------------------------------------------------------- /bootstrap/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/bootstrap/api.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/bootstrap/cli.php -------------------------------------------------------------------------------- /bootstrap/utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/bootstrap/utilities.php -------------------------------------------------------------------------------- /bootstrap/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/bootstrap/web.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/app.php -------------------------------------------------------------------------------- /config/badges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/badges.php -------------------------------------------------------------------------------- /config/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/metadata.php -------------------------------------------------------------------------------- /config/metadataOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/metadataOld.php -------------------------------------------------------------------------------- /config/privateExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/privateExample.php -------------------------------------------------------------------------------- /config/public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/public.php -------------------------------------------------------------------------------- /config/regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/config/regex.php -------------------------------------------------------------------------------- /cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/cron -------------------------------------------------------------------------------- /design/privateheader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/design/privateheader.php -------------------------------------------------------------------------------- /design/views/generic/reply/staffpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/design/views/generic/reply/staffpm.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/package.json -------------------------------------------------------------------------------- /phinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/phinx.php -------------------------------------------------------------------------------- /public/css/vendor/easymde.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/easymde.min.css -------------------------------------------------------------------------------- /public/css/vendor/highlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/highlight.min.css -------------------------------------------------------------------------------- /public/css/vendor/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/images/layers.png -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet.css -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet.js -------------------------------------------------------------------------------- /public/css/vendor/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /public/css/vendor/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/normalize.min.css -------------------------------------------------------------------------------- /public/css/vendor/skeleton.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/skeleton.min.css -------------------------------------------------------------------------------- /public/css/vendor/sortable-theme-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/css/vendor/sortable-theme-minimal.css -------------------------------------------------------------------------------- /public/feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/feeds.php -------------------------------------------------------------------------------- /public/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/image.php -------------------------------------------------------------------------------- /public/images/avatars/default.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/avatars/default.webp -------------------------------------------------------------------------------- /public/images/forums/go_last_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/go_last_read.png -------------------------------------------------------------------------------- /public/images/forums/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/hide.png -------------------------------------------------------------------------------- /public/images/forums/locked_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/locked_read.png -------------------------------------------------------------------------------- /public/images/forums/locked_sticky_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/locked_sticky_read.png -------------------------------------------------------------------------------- /public/images/forums/locked_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/locked_unread.png -------------------------------------------------------------------------------- /public/images/forums/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/read.png -------------------------------------------------------------------------------- /public/images/forums/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/show.png -------------------------------------------------------------------------------- /public/images/forums/sticky_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/sticky_read.png -------------------------------------------------------------------------------- /public/images/forums/sticky_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/sticky_unread.png -------------------------------------------------------------------------------- /public/images/forums/unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/forums/unread.png -------------------------------------------------------------------------------- /public/images/icons/archive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/icons/archive.webp -------------------------------------------------------------------------------- /public/images/icons/externalLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/icons/externalLink.svg -------------------------------------------------------------------------------- /public/images/icons/fa-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/icons/fa-cloud.svg -------------------------------------------------------------------------------- /public/images/icons/rss.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/icons/rss.webp -------------------------------------------------------------------------------- /public/images/icons/version.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/icons/version.webp -------------------------------------------------------------------------------- /public/images/logos/doi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/doi.svg -------------------------------------------------------------------------------- /public/images/logos/grid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/grid.webp -------------------------------------------------------------------------------- /public/images/logos/openAccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/openAccess.svg -------------------------------------------------------------------------------- /public/images/logos/openAlex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/openAlex.webp -------------------------------------------------------------------------------- /public/images/logos/orcid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/orcid.webp -------------------------------------------------------------------------------- /public/images/logos/patreon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/patreon.webp -------------------------------------------------------------------------------- /public/images/logos/ror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/ror.svg -------------------------------------------------------------------------------- /public/images/logos/sci-hub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/sci-hub.webp -------------------------------------------------------------------------------- /public/images/logos/semanticScholar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/semanticScholar.webp -------------------------------------------------------------------------------- /public/images/logos/simpleFavicon-2k.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/simpleFavicon-2k.webp -------------------------------------------------------------------------------- /public/images/logos/torrents.bio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/logos/torrents.bio.webp -------------------------------------------------------------------------------- /public/images/mascot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/mascot.webp -------------------------------------------------------------------------------- /public/images/mascotFullVersion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/mascotFullVersion.webp -------------------------------------------------------------------------------- /public/images/noartwork.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/noartwork.webp -------------------------------------------------------------------------------- /public/images/oink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/oink.webp -------------------------------------------------------------------------------- /public/images/plausibleOptOut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/images/plausibleOptOut.webp -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/vendor/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/chart.min.js -------------------------------------------------------------------------------- /public/js/vendor/chartjs-chart-geo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/chartjs-chart-geo.min.js -------------------------------------------------------------------------------- /public/js/vendor/chartjs-chart-graph.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/chartjs-chart-graph.min.js -------------------------------------------------------------------------------- /public/js/vendor/easymde.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/easymde.min.js -------------------------------------------------------------------------------- /public/js/vendor/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/highlight.min.js -------------------------------------------------------------------------------- /public/js/vendor/instantpage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/instantpage.min.js -------------------------------------------------------------------------------- /public/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /public/js/vendor/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /public/js/vendor/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/leaflet/leaflet.css -------------------------------------------------------------------------------- /public/js/vendor/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/leaflet/leaflet.js -------------------------------------------------------------------------------- /public/js/vendor/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /public/js/vendor/lodash.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/lodash.core.min.js -------------------------------------------------------------------------------- /public/js/vendor/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/lodash.min.js -------------------------------------------------------------------------------- /public/js/vendor/noty/jquery.noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/jquery.noty.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/bottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/bottom.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/center.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/inline.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/top.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/topLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/topLeft.js -------------------------------------------------------------------------------- /public/js/vendor/noty/layouts/topRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/layouts/topRight.js -------------------------------------------------------------------------------- /public/js/vendor/noty/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/promise.js -------------------------------------------------------------------------------- /public/js/vendor/noty/themes/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/themes/bootstrap.js -------------------------------------------------------------------------------- /public/js/vendor/noty/themes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/themes/default.js -------------------------------------------------------------------------------- /public/js/vendor/noty/themes/metroui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/themes/metroui.js -------------------------------------------------------------------------------- /public/js/vendor/noty/themes/relax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/noty/themes/relax.js -------------------------------------------------------------------------------- /public/js/vendor/simplewebauthn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/simplewebauthn.min.js -------------------------------------------------------------------------------- /public/js/vendor/smartquotes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/smartquotes.min.js -------------------------------------------------------------------------------- /public/js/vendor/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/sortable.min.js -------------------------------------------------------------------------------- /public/js/vendor/starboard-wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/starboard-wrap.js -------------------------------------------------------------------------------- /public/js/vendor/tom-select.base.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/tom-select.base.min.js -------------------------------------------------------------------------------- /public/js/vendor/typeahead.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/js/vendor/typeahead.bundle.min.js -------------------------------------------------------------------------------- /public/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/public/opensearch.xml -------------------------------------------------------------------------------- /resources/buildAssets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/buildAssets.sh -------------------------------------------------------------------------------- /resources/js/ajax.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/ajax.class.js -------------------------------------------------------------------------------- /resources/js/browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/browse.js -------------------------------------------------------------------------------- /resources/js/collage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/collage.js -------------------------------------------------------------------------------- /resources/js/conversations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/conversations.js -------------------------------------------------------------------------------- /resources/js/cover_art.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/cover_art.js -------------------------------------------------------------------------------- /resources/js/enable_requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/enable_requests.js -------------------------------------------------------------------------------- /resources/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/global.js -------------------------------------------------------------------------------- /resources/js/literature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/literature.js -------------------------------------------------------------------------------- /resources/js/news_ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/news_ajax.js -------------------------------------------------------------------------------- /resources/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/notifications.js -------------------------------------------------------------------------------- /resources/js/recommend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/recommend.js -------------------------------------------------------------------------------- /resources/js/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/reports.js -------------------------------------------------------------------------------- /resources/js/reportsv2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/reportsv2.js -------------------------------------------------------------------------------- /resources/js/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/requests.js -------------------------------------------------------------------------------- /resources/js/staffpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/staffpm.js -------------------------------------------------------------------------------- /resources/js/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/subscriptions.js -------------------------------------------------------------------------------- /resources/js/torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/torrent.js -------------------------------------------------------------------------------- /resources/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/upload.js -------------------------------------------------------------------------------- /resources/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/user.js -------------------------------------------------------------------------------- /resources/js/user_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/user_notifications.js -------------------------------------------------------------------------------- /resources/js/webAuthnAssert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/webAuthnAssert.js -------------------------------------------------------------------------------- /resources/js/webAuthnCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/webAuthnCreate.js -------------------------------------------------------------------------------- /resources/js/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/js/wiki.js -------------------------------------------------------------------------------- /resources/php/wordlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/php/wordlist.php -------------------------------------------------------------------------------- /resources/scss/assets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/assets.scss -------------------------------------------------------------------------------- /resources/scss/assets/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/assets/colors.scss -------------------------------------------------------------------------------- /resources/scss/assets/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/assets/fonts.scss -------------------------------------------------------------------------------- /resources/scss/assets/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/assets/icons.scss -------------------------------------------------------------------------------- /resources/scss/bookish.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish.scss -------------------------------------------------------------------------------- /resources/scss/bookish/bookish.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/bookish.scss -------------------------------------------------------------------------------- /resources/scss/bookish/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/colors.scss -------------------------------------------------------------------------------- /resources/scss/bookish/debug.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/debug.scss -------------------------------------------------------------------------------- /resources/scss/bookish/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/fonts.scss -------------------------------------------------------------------------------- /resources/scss/bookish/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/layout.scss -------------------------------------------------------------------------------- /resources/scss/bookish/matcha.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/matcha.scss -------------------------------------------------------------------------------- /resources/scss/bookish/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/bookish/tables.scss -------------------------------------------------------------------------------- /resources/scss/development.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/development.scss -------------------------------------------------------------------------------- /resources/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global.scss -------------------------------------------------------------------------------- /resources/scss/global/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/colors.scss -------------------------------------------------------------------------------- /resources/scss/global/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/fonts.scss -------------------------------------------------------------------------------- /resources/scss/global/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/footer.scss -------------------------------------------------------------------------------- /resources/scss/global/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/forms.scss -------------------------------------------------------------------------------- /resources/scss/global/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/layout.scss -------------------------------------------------------------------------------- /resources/scss/global/mainMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/mainMenu.scss -------------------------------------------------------------------------------- /resources/scss/global/skeletonFixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/skeletonFixes.scss -------------------------------------------------------------------------------- /resources/scss/global/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/tables.scss -------------------------------------------------------------------------------- /resources/scss/global/torrents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/torrents.scss -------------------------------------------------------------------------------- /resources/scss/global/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/global/user.scss -------------------------------------------------------------------------------- /resources/scss/postmod.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod.scss -------------------------------------------------------------------------------- /resources/scss/postmod/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/colors.scss -------------------------------------------------------------------------------- /resources/scss/postmod/images/Avant.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/Avant.otf -------------------------------------------------------------------------------- /resources/scss/postmod/images/bg_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/bg_menu.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/body.jpg -------------------------------------------------------------------------------- /resources/scss/postmod/images/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/content.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/gazelle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/gazelle.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/hide.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/load.gif -------------------------------------------------------------------------------- /resources/scss/postmod/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/logo.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/read.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/seeders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/seeders.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/show.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/unread.png -------------------------------------------------------------------------------- /resources/scss/postmod/images/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/wood.jpg -------------------------------------------------------------------------------- /resources/scss/postmod/images/wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/images/wrapper.png -------------------------------------------------------------------------------- /resources/scss/postmod/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/layout.scss -------------------------------------------------------------------------------- /resources/scss/postmod/menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/menus.scss -------------------------------------------------------------------------------- /resources/scss/postmod/postmod.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/postmod/postmod.scss -------------------------------------------------------------------------------- /resources/scss/public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/public.scss -------------------------------------------------------------------------------- /resources/scss/public/public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/public/public.scss -------------------------------------------------------------------------------- /resources/scss/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/resources/scss/sidebar.scss -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/api/better.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/better.php -------------------------------------------------------------------------------- /routes/api/bonusPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/bonusPoints.php -------------------------------------------------------------------------------- /routes/api/collages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/collages.php -------------------------------------------------------------------------------- /routes/api/creators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/creators.php -------------------------------------------------------------------------------- /routes/api/discourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/discourse.php -------------------------------------------------------------------------------- /routes/api/friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/friends.php -------------------------------------------------------------------------------- /routes/api/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/groups.php -------------------------------------------------------------------------------- /routes/api/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/meta.php -------------------------------------------------------------------------------- /routes/api/requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/requests.php -------------------------------------------------------------------------------- /routes/api/top10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/top10.php -------------------------------------------------------------------------------- /routes/api/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/torrents.php -------------------------------------------------------------------------------- /routes/api/wiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/api/wiki.php -------------------------------------------------------------------------------- /routes/apiAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/apiAuthentication.php -------------------------------------------------------------------------------- /routes/internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/internal.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web.php -------------------------------------------------------------------------------- /routes/web/better.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/better.php -------------------------------------------------------------------------------- /routes/web/bonusPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/bonusPoints.php -------------------------------------------------------------------------------- /routes/web/collages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/collages.php -------------------------------------------------------------------------------- /routes/web/conversations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/conversations.php -------------------------------------------------------------------------------- /routes/web/creators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/creators.php -------------------------------------------------------------------------------- /routes/web/discourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/discourse.php -------------------------------------------------------------------------------- /routes/web/feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/feeds.php -------------------------------------------------------------------------------- /routes/web/literature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/literature.php -------------------------------------------------------------------------------- /routes/web/organizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/organizations.php -------------------------------------------------------------------------------- /routes/web/publications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/publications.php -------------------------------------------------------------------------------- /routes/web/requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/requests.php -------------------------------------------------------------------------------- /routes/web/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/rules.php -------------------------------------------------------------------------------- /routes/web/siteLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/siteLog.php -------------------------------------------------------------------------------- /routes/web/siteText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/siteText.php -------------------------------------------------------------------------------- /routes/web/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/stats.php -------------------------------------------------------------------------------- /routes/web/toolbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/toolbox.php -------------------------------------------------------------------------------- /routes/web/top10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/top10.php -------------------------------------------------------------------------------- /routes/web/torrentGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/torrentGroups.php -------------------------------------------------------------------------------- /routes/web/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/torrents.php -------------------------------------------------------------------------------- /routes/web/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/user.php -------------------------------------------------------------------------------- /routes/web/userAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/userAuth.php -------------------------------------------------------------------------------- /routes/web/wiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/routes/web/wiki.php -------------------------------------------------------------------------------- /sections/api/announcements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/announcements.php -------------------------------------------------------------------------------- /sections/api/artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/artist.php -------------------------------------------------------------------------------- /sections/api/bookmarks/artists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/bookmarks/artists.php -------------------------------------------------------------------------------- /sections/api/bookmarks/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/bookmarks/index.php -------------------------------------------------------------------------------- /sections/api/bookmarks/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/bookmarks/torrents.php -------------------------------------------------------------------------------- /sections/api/clear_user_notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/clear_user_notification.php -------------------------------------------------------------------------------- /sections/api/collage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/collage.php -------------------------------------------------------------------------------- /sections/api/get_user_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/get_user_notifications.php -------------------------------------------------------------------------------- /sections/api/inbox/inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/inbox/inbox.php -------------------------------------------------------------------------------- /sections/api/inbox/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/inbox/index.php -------------------------------------------------------------------------------- /sections/api/inbox/viewconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/inbox/viewconv.php -------------------------------------------------------------------------------- /sections/api/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/info.php -------------------------------------------------------------------------------- /sections/api/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/notifications.php -------------------------------------------------------------------------------- /sections/api/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/request.php -------------------------------------------------------------------------------- /sections/api/routerOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/routerOld.php -------------------------------------------------------------------------------- /sections/api/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/subscriptions.php -------------------------------------------------------------------------------- /sections/api/tcomments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/tcomments.php -------------------------------------------------------------------------------- /sections/api/top10/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/top10/index.php -------------------------------------------------------------------------------- /sections/api/top10/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/top10/tags.php -------------------------------------------------------------------------------- /sections/api/top10/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/top10/torrents.php -------------------------------------------------------------------------------- /sections/api/top10/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/top10/users.php -------------------------------------------------------------------------------- /sections/api/torrents/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/torrents/group.php -------------------------------------------------------------------------------- /sections/api/torrents/torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/torrents/torrent.php -------------------------------------------------------------------------------- /sections/api/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/user.php -------------------------------------------------------------------------------- /sections/api/user_recents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/api/user_recents.php -------------------------------------------------------------------------------- /sections/artist/change_artistid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/change_artistid.php -------------------------------------------------------------------------------- /sections/artist/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/download.php -------------------------------------------------------------------------------- /sections/artist/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/edit.php -------------------------------------------------------------------------------- /sections/artist/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/notify.php -------------------------------------------------------------------------------- /sections/artist/notifyremove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/notifyremove.php -------------------------------------------------------------------------------- /sections/artist/rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/rename.php -------------------------------------------------------------------------------- /sections/artist/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/router.php -------------------------------------------------------------------------------- /sections/artist/takeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/artist/takeedit.php -------------------------------------------------------------------------------- /sections/better/badFolders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/better/badFolders.php -------------------------------------------------------------------------------- /sections/better/badTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/better/badTags.php -------------------------------------------------------------------------------- /sections/better/missingCitations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/better/missingCitations.php -------------------------------------------------------------------------------- /sections/better/missingPictures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/better/missingPictures.php -------------------------------------------------------------------------------- /sections/better/singleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/better/singleSeeder.php -------------------------------------------------------------------------------- /sections/blog/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/blog/router.php -------------------------------------------------------------------------------- /sections/bonusPoints/checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bonusPoints/checkout.php -------------------------------------------------------------------------------- /sections/bonusPoints/confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bonusPoints/confirm.php -------------------------------------------------------------------------------- /sections/bonusPoints/freeleechpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bonusPoints/freeleechpool.php -------------------------------------------------------------------------------- /sections/bonusPoints/promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bonusPoints/promotion.php -------------------------------------------------------------------------------- /sections/bonusPoints/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bonusPoints/store.php -------------------------------------------------------------------------------- /sections/bookmarks/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bookmarks/add.php -------------------------------------------------------------------------------- /sections/bookmarks/artists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bookmarks/artists.php -------------------------------------------------------------------------------- /sections/bookmarks/remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bookmarks/remove.php -------------------------------------------------------------------------------- /sections/bookmarks/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bookmarks/router.php -------------------------------------------------------------------------------- /sections/bookmarks/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/bookmarks/torrents.php -------------------------------------------------------------------------------- /sections/collages/add_torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/add_torrent.php -------------------------------------------------------------------------------- /sections/collages/artist_collage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/artist_collage.php -------------------------------------------------------------------------------- /sections/collages/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/browse.php -------------------------------------------------------------------------------- /sections/collages/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/delete.php -------------------------------------------------------------------------------- /sections/collages/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/details.php -------------------------------------------------------------------------------- /sections/collages/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/download.php -------------------------------------------------------------------------------- /sections/collages/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/edit.php -------------------------------------------------------------------------------- /sections/collages/edit_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/edit_handle.php -------------------------------------------------------------------------------- /sections/collages/manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/manage.php -------------------------------------------------------------------------------- /sections/collages/manage_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/manage_handle.php -------------------------------------------------------------------------------- /sections/collages/new_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/new_handle.php -------------------------------------------------------------------------------- /sections/collages/updateOrCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/collages/updateOrCreate.php -------------------------------------------------------------------------------- /sections/comments/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/comments/router.php -------------------------------------------------------------------------------- /sections/commentsOld/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/comments.php -------------------------------------------------------------------------------- /sections/commentsOld/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/get.php -------------------------------------------------------------------------------- /sections/commentsOld/take_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/take_delete.php -------------------------------------------------------------------------------- /sections/commentsOld/take_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/take_edit.php -------------------------------------------------------------------------------- /sections/commentsOld/take_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/take_post.php -------------------------------------------------------------------------------- /sections/commentsOld/take_warn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/take_warn.php -------------------------------------------------------------------------------- /sections/commentsOld/warn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/commentsOld/warn.php -------------------------------------------------------------------------------- /sections/conversations/createMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/conversations/createMessage.php -------------------------------------------------------------------------------- /sections/conversations/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/conversations/user.php -------------------------------------------------------------------------------- /sections/creators/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/creators/browse.php -------------------------------------------------------------------------------- /sections/creators/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/creators/delete.php -------------------------------------------------------------------------------- /sections/creators/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/creators/details.php -------------------------------------------------------------------------------- /sections/discourse/boards/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/boards/category.php -------------------------------------------------------------------------------- /sections/discourse/boards/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/boards/index.php -------------------------------------------------------------------------------- /sections/discourse/boards/newEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/boards/newEdit.php -------------------------------------------------------------------------------- /sections/discourse/boards/topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/boards/topic.php -------------------------------------------------------------------------------- /sections/discourse/connect/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/connect/connect.php -------------------------------------------------------------------------------- /sections/discourse/messages/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/messages/index.php -------------------------------------------------------------------------------- /sections/discourse/wiki/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/discourse/wiki/index.php -------------------------------------------------------------------------------- /sections/feeds/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/feeds/index.php -------------------------------------------------------------------------------- /sections/forums/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forums/router.php -------------------------------------------------------------------------------- /sections/forumsOld/add_poll_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/add_poll_option.php -------------------------------------------------------------------------------- /sections/forumsOld/catchup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/catchup.php -------------------------------------------------------------------------------- /sections/forumsOld/change_vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/change_vote.php -------------------------------------------------------------------------------- /sections/forumsOld/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/delete.php -------------------------------------------------------------------------------- /sections/forumsOld/delete_poll_option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/delete_poll_option.php -------------------------------------------------------------------------------- /sections/forumsOld/forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/forum.php -------------------------------------------------------------------------------- /sections/forumsOld/get_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/get_post.php -------------------------------------------------------------------------------- /sections/forumsOld/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/main.php -------------------------------------------------------------------------------- /sections/forumsOld/mod_thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/mod_thread.php -------------------------------------------------------------------------------- /sections/forumsOld/newthread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/newthread.php -------------------------------------------------------------------------------- /sections/forumsOld/poll_mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/poll_mod.php -------------------------------------------------------------------------------- /sections/forumsOld/poll_vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/poll_vote.php -------------------------------------------------------------------------------- /sections/forumsOld/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/search.php -------------------------------------------------------------------------------- /sections/forumsOld/sticky_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/sticky_post.php -------------------------------------------------------------------------------- /sections/forumsOld/take_new_thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/take_new_thread.php -------------------------------------------------------------------------------- /sections/forumsOld/take_reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/take_reply.php -------------------------------------------------------------------------------- /sections/forumsOld/take_topic_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/take_topic_notes.php -------------------------------------------------------------------------------- /sections/forumsOld/take_warn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/take_warn.php -------------------------------------------------------------------------------- /sections/forumsOld/takeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/takeedit.php -------------------------------------------------------------------------------- /sections/forumsOld/thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/thread.php -------------------------------------------------------------------------------- /sections/forumsOld/warn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/forumsOld/warn.php -------------------------------------------------------------------------------- /sections/image/err_imgs/badprotocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/badprotocol.png -------------------------------------------------------------------------------- /sections/image/err_imgs/forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/forbidden.png -------------------------------------------------------------------------------- /sections/image/err_imgs/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/invalid.png -------------------------------------------------------------------------------- /sections/image/err_imgs/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/invisible.png -------------------------------------------------------------------------------- /sections/image/err_imgs/nogd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/nogd.png -------------------------------------------------------------------------------- /sections/image/err_imgs/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/small.png -------------------------------------------------------------------------------- /sections/image/err_imgs/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/err_imgs/timeout.png -------------------------------------------------------------------------------- /sections/image/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/image/router.php -------------------------------------------------------------------------------- /sections/inbox/compose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/compose.php -------------------------------------------------------------------------------- /sections/inbox/conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/conversation.php -------------------------------------------------------------------------------- /sections/inbox/forward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/forward.php -------------------------------------------------------------------------------- /sections/inbox/get_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/get_post.php -------------------------------------------------------------------------------- /sections/inbox/inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/inbox.php -------------------------------------------------------------------------------- /sections/inbox/massdelete_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/massdelete_handle.php -------------------------------------------------------------------------------- /sections/inbox/takecompose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/takecompose.php -------------------------------------------------------------------------------- /sections/inbox/takeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/inbox/takeedit.php -------------------------------------------------------------------------------- /sections/index/private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/index/private.php -------------------------------------------------------------------------------- /sections/literature/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/literature/browse.php -------------------------------------------------------------------------------- /sections/literature/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/literature/details.php -------------------------------------------------------------------------------- /sections/log/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/log/index.php -------------------------------------------------------------------------------- /sections/log/sphinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/log/sphinx.php -------------------------------------------------------------------------------- /sections/log/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/log/sql.php -------------------------------------------------------------------------------- /sections/organizations/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/organizations/browse.php -------------------------------------------------------------------------------- /sections/organizations/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/organizations/details.php -------------------------------------------------------------------------------- /sections/publications/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/publications/browse.php -------------------------------------------------------------------------------- /sections/publications/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/publications/details.php -------------------------------------------------------------------------------- /sections/reports/ajax_add_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/ajax_add_notes.php -------------------------------------------------------------------------------- /sections/reports/ajax_claim_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/ajax_claim_report.php -------------------------------------------------------------------------------- /sections/reports/ajax_resolve_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/ajax_resolve_report.php -------------------------------------------------------------------------------- /sections/reports/ajax_unclaim_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/ajax_unclaim_report.php -------------------------------------------------------------------------------- /sections/reports/array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/array.php -------------------------------------------------------------------------------- /sections/reports/compose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/compose.php -------------------------------------------------------------------------------- /sections/reports/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/report.php -------------------------------------------------------------------------------- /sections/reports/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/reports.php -------------------------------------------------------------------------------- /sections/reports/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/router.php -------------------------------------------------------------------------------- /sections/reports/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/stats.php -------------------------------------------------------------------------------- /sections/reports/takecompose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/takecompose.php -------------------------------------------------------------------------------- /sections/reports/takereport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/takereport.php -------------------------------------------------------------------------------- /sections/reports/takeresolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reports/takeresolve.php -------------------------------------------------------------------------------- /sections/reportsv2/ajax_create_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/ajax_create_report.php -------------------------------------------------------------------------------- /sections/reportsv2/ajax_grab_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/ajax_grab_report.php -------------------------------------------------------------------------------- /sections/reportsv2/ajax_new_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/ajax_new_report.php -------------------------------------------------------------------------------- /sections/reportsv2/ajax_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/ajax_report.php -------------------------------------------------------------------------------- /sections/reportsv2/ajax_take_pm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/ajax_take_pm.php -------------------------------------------------------------------------------- /sections/reportsv2/array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/array.php -------------------------------------------------------------------------------- /sections/reportsv2/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/header.php -------------------------------------------------------------------------------- /sections/reportsv2/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/report.php -------------------------------------------------------------------------------- /sections/reportsv2/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/reports.php -------------------------------------------------------------------------------- /sections/reportsv2/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/router.php -------------------------------------------------------------------------------- /sections/reportsv2/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/search.php -------------------------------------------------------------------------------- /sections/reportsv2/static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/static.php -------------------------------------------------------------------------------- /sections/reportsv2/takereport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/takereport.php -------------------------------------------------------------------------------- /sections/reportsv2/takeresolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/takeresolve.php -------------------------------------------------------------------------------- /sections/reportsv2/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/reportsv2/views.php -------------------------------------------------------------------------------- /sections/requests/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/browse.php -------------------------------------------------------------------------------- /sections/requests/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/details.php -------------------------------------------------------------------------------- /sections/requests/take_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/take_delete.php -------------------------------------------------------------------------------- /sections/requests/take_fill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/take_fill.php -------------------------------------------------------------------------------- /sections/requests/take_new_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/take_new_edit.php -------------------------------------------------------------------------------- /sections/requests/take_unfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/take_unfill.php -------------------------------------------------------------------------------- /sections/requests/updateOrCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/requests/updateOrCreate.php -------------------------------------------------------------------------------- /sections/snatchlist/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/snatchlist/router.php -------------------------------------------------------------------------------- /sections/staffpm/ajax_delete_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/ajax_delete_response.php -------------------------------------------------------------------------------- /sections/staffpm/ajax_edit_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/ajax_edit_response.php -------------------------------------------------------------------------------- /sections/staffpm/ajax_get_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/ajax_get_response.php -------------------------------------------------------------------------------- /sections/staffpm/assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/assign.php -------------------------------------------------------------------------------- /sections/staffpm/common_responses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/common_responses.php -------------------------------------------------------------------------------- /sections/staffpm/get_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/get_post.php -------------------------------------------------------------------------------- /sections/staffpm/multiresolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/multiresolve.php -------------------------------------------------------------------------------- /sections/staffpm/resolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/resolve.php -------------------------------------------------------------------------------- /sections/staffpm/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/router.php -------------------------------------------------------------------------------- /sections/staffpm/staff_inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/staff_inbox.php -------------------------------------------------------------------------------- /sections/staffpm/takepost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/takepost.php -------------------------------------------------------------------------------- /sections/staffpm/unresolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/unresolve.php -------------------------------------------------------------------------------- /sections/staffpm/user_inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/user_inbox.php -------------------------------------------------------------------------------- /sections/staffpm/viewconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/staffpm/viewconv.php -------------------------------------------------------------------------------- /sections/stats/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/stats/torrents.php -------------------------------------------------------------------------------- /sections/stats/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/stats/users.php -------------------------------------------------------------------------------- /sections/toolbox/clientWhitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/clientWhitelist.php -------------------------------------------------------------------------------- /sections/toolbox/collageRecovery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/collageRecovery.php -------------------------------------------------------------------------------- /sections/toolbox/data/invite_pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/data/invite_pool.php -------------------------------------------------------------------------------- /sections/toolbox/data/ocelot_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/data/ocelot_info.php -------------------------------------------------------------------------------- /sections/toolbox/data/upscale_pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/data/upscale_pool.php -------------------------------------------------------------------------------- /sections/toolbox/databaseKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/databaseKey.php -------------------------------------------------------------------------------- /sections/toolbox/managers/bans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/bans.php -------------------------------------------------------------------------------- /sections/toolbox/managers/forum_alter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/forum_alter.php -------------------------------------------------------------------------------- /sections/toolbox/managers/forum_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/forum_list.php -------------------------------------------------------------------------------- /sections/toolbox/managers/login_watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/login_watch.php -------------------------------------------------------------------------------- /sections/toolbox/managers/mass_pm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/mass_pm.php -------------------------------------------------------------------------------- /sections/toolbox/managers/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/news.php -------------------------------------------------------------------------------- /sections/toolbox/managers/ocelot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/ocelot.php -------------------------------------------------------------------------------- /sections/toolbox/managers/tag_aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/tag_aliases.php -------------------------------------------------------------------------------- /sections/toolbox/managers/tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/managers/tokens.php -------------------------------------------------------------------------------- /sections/toolbox/misc/manipulate_tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/misc/manipulate_tree.php -------------------------------------------------------------------------------- /sections/toolbox/misc/quick_ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/misc/quick_ban.php -------------------------------------------------------------------------------- /sections/toolbox/misc/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/misc/tags.php -------------------------------------------------------------------------------- /sections/toolbox/roles/createUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/roles/createUpdate.php -------------------------------------------------------------------------------- /sections/toolbox/roles/listAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/roles/listAll.php -------------------------------------------------------------------------------- /sections/toolbox/routerOld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/toolbox/routerOld.php -------------------------------------------------------------------------------- /sections/top10/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/top10/tags.php -------------------------------------------------------------------------------- /sections/top10/torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/top10/torrents.php -------------------------------------------------------------------------------- /sections/top10/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/top10/users.php -------------------------------------------------------------------------------- /sections/torrentGroups/add_alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/add_alias.php -------------------------------------------------------------------------------- /sections/torrentGroups/add_cover_art.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/add_cover_art.php -------------------------------------------------------------------------------- /sections/torrentGroups/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/browse.php -------------------------------------------------------------------------------- /sections/torrentGroups/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/create.php -------------------------------------------------------------------------------- /sections/torrentGroups/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/delete.php -------------------------------------------------------------------------------- /sections/torrentGroups/delete_alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/delete_alias.php -------------------------------------------------------------------------------- /sections/torrentGroups/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/details.php -------------------------------------------------------------------------------- /sections/torrentGroups/downloadlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/downloadlist.php -------------------------------------------------------------------------------- /sections/torrentGroups/editgroupid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/editgroupid.php -------------------------------------------------------------------------------- /sections/torrentGroups/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/history.php -------------------------------------------------------------------------------- /sections/torrentGroups/manage_artists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/manage_artists.php -------------------------------------------------------------------------------- /sections/torrentGroups/merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/merge.php -------------------------------------------------------------------------------- /sections/torrentGroups/nonwikiedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/nonwikiedit.php -------------------------------------------------------------------------------- /sections/torrentGroups/rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/rename.php -------------------------------------------------------------------------------- /sections/torrentGroups/screenshotedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/screenshotedit.php -------------------------------------------------------------------------------- /sections/torrentGroups/takedelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/takedelete.php -------------------------------------------------------------------------------- /sections/torrentGroups/takegroupedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/takegroupedit.php -------------------------------------------------------------------------------- /sections/torrentGroups/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrentGroups/update.php -------------------------------------------------------------------------------- /sections/torrents/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/delete.php -------------------------------------------------------------------------------- /sections/torrents/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/details.php -------------------------------------------------------------------------------- /sections/torrents/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/download.php -------------------------------------------------------------------------------- /sections/torrents/downloadlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/downloadlist.php -------------------------------------------------------------------------------- /sections/torrents/masspm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/masspm.php -------------------------------------------------------------------------------- /sections/torrents/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/notify.php -------------------------------------------------------------------------------- /sections/torrents/notify_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/notify_actions.php -------------------------------------------------------------------------------- /sections/torrents/peerlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/peerlist.php -------------------------------------------------------------------------------- /sections/torrents/redownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/redownload.php -------------------------------------------------------------------------------- /sections/torrents/reseed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/reseed.php -------------------------------------------------------------------------------- /sections/torrents/snatchlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/snatchlist.php -------------------------------------------------------------------------------- /sections/torrents/takechangecategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/takechangecategory.php -------------------------------------------------------------------------------- /sections/torrents/takedelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/takedelete.php -------------------------------------------------------------------------------- /sections/torrents/takeedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/takeedit.php -------------------------------------------------------------------------------- /sections/torrents/takemasspm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/takemasspm.php -------------------------------------------------------------------------------- /sections/torrents/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/update.php -------------------------------------------------------------------------------- /sections/torrents/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/torrents/user.php -------------------------------------------------------------------------------- /sections/upload/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/upload/router.php -------------------------------------------------------------------------------- /sections/upload/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/upload/upload.php -------------------------------------------------------------------------------- /sections/upload/upload_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/upload/upload_handle.php -------------------------------------------------------------------------------- /sections/user/advancedsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/advancedsearch.php -------------------------------------------------------------------------------- /sections/user/auth/confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/confirm.php -------------------------------------------------------------------------------- /sections/user/auth/disabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/disabled.php -------------------------------------------------------------------------------- /sections/user/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/login.php -------------------------------------------------------------------------------- /sections/user/auth/recover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/recover.php -------------------------------------------------------------------------------- /sections/user/auth/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/register.php -------------------------------------------------------------------------------- /sections/user/auth/resend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/auth/resend.php -------------------------------------------------------------------------------- /sections/user/delete_invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/delete_invite.php -------------------------------------------------------------------------------- /sections/user/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/edit.php -------------------------------------------------------------------------------- /sections/user/friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/friends.php -------------------------------------------------------------------------------- /sections/user/invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/invite.php -------------------------------------------------------------------------------- /sections/user/invitetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/invitetree.php -------------------------------------------------------------------------------- /sections/user/linkedfunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/linkedfunctions.php -------------------------------------------------------------------------------- /sections/user/manage_linked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/manage_linked.php -------------------------------------------------------------------------------- /sections/user/notify_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/notify_edit.php -------------------------------------------------------------------------------- /sections/user/notify_handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/notify_handle.php -------------------------------------------------------------------------------- /sections/user/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/permissions.php -------------------------------------------------------------------------------- /sections/user/points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/points.php -------------------------------------------------------------------------------- /sections/user/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/router.php -------------------------------------------------------------------------------- /sections/user/sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/sessions.php -------------------------------------------------------------------------------- /sections/user/staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/staff.php -------------------------------------------------------------------------------- /sections/user/take_invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/take_invite.php -------------------------------------------------------------------------------- /sections/user/takemoderate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/takemoderate.php -------------------------------------------------------------------------------- /sections/user/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/user/user.php -------------------------------------------------------------------------------- /sections/userhistory/catchup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/catchup.php -------------------------------------------------------------------------------- /sections/userhistory/catchup_collages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/catchup_collages.php -------------------------------------------------------------------------------- /sections/userhistory/post_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/post_history.php -------------------------------------------------------------------------------- /sections/userhistory/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/router.php -------------------------------------------------------------------------------- /sections/userhistory/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/subscriptions.php -------------------------------------------------------------------------------- /sections/userhistory/thread_subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/thread_subscribe.php -------------------------------------------------------------------------------- /sections/userhistory/token_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/userhistory/token_history.php -------------------------------------------------------------------------------- /sections/wiki/article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/wiki/article.php -------------------------------------------------------------------------------- /sections/wiki/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/wiki/browse.php -------------------------------------------------------------------------------- /sections/wiki/compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/wiki/compare.php -------------------------------------------------------------------------------- /sections/wiki/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/wiki/create.php -------------------------------------------------------------------------------- /sections/wiki/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/sections/wiki/delete.php -------------------------------------------------------------------------------- /shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/shell -------------------------------------------------------------------------------- /templates/_base/alertBars.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/alertBars.twig -------------------------------------------------------------------------------- /templates/_base/breadcrumbs.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/breadcrumbs.twig -------------------------------------------------------------------------------- /templates/_base/conversation.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/conversation.twig -------------------------------------------------------------------------------- /templates/_base/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/footer.twig -------------------------------------------------------------------------------- /templates/_base/linkObjects.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/linkObjects.twig -------------------------------------------------------------------------------- /templates/_base/mainMenu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/mainMenu.twig -------------------------------------------------------------------------------- /templates/_base/metaTags.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/metaTags.twig -------------------------------------------------------------------------------- /templates/_base/publicHeader.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/publicHeader.twig -------------------------------------------------------------------------------- /templates/_base/starboardNotebook.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/starboardNotebook.twig -------------------------------------------------------------------------------- /templates/_base/textarea.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/textarea.twig -------------------------------------------------------------------------------- /templates/_base/userInfo.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/_base/userInfo.twig -------------------------------------------------------------------------------- /templates/admin/advanced-user-search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/advanced-user-search.twig -------------------------------------------------------------------------------- /templates/admin/announcekey-history.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/announcekey-history.twig -------------------------------------------------------------------------------- /templates/admin/bonus-stats.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/bonus-stats.twig -------------------------------------------------------------------------------- /templates/admin/cache-management.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/cache-management.twig -------------------------------------------------------------------------------- /templates/admin/changelog.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/changelog.twig -------------------------------------------------------------------------------- /templates/admin/clientWhitelist.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/clientWhitelist.twig -------------------------------------------------------------------------------- /templates/admin/databaseKey.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/databaseKey.twig -------------------------------------------------------------------------------- /templates/admin/duplicate-ipaddr.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/duplicate-ipaddr.twig -------------------------------------------------------------------------------- /templates/admin/emailBlacklist.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/emailBlacklist.twig -------------------------------------------------------------------------------- /templates/admin/history-ip-tracker.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/history-ip-tracker.twig -------------------------------------------------------------------------------- /templates/admin/login-watch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/login-watch.twig -------------------------------------------------------------------------------- /templates/admin/miscValues.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/miscValues.twig -------------------------------------------------------------------------------- /templates/admin/notification-sandbox.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/notification-sandbox.twig -------------------------------------------------------------------------------- /templates/admin/ratio-watch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/ratio-watch.twig -------------------------------------------------------------------------------- /templates/admin/registration.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/registration.twig -------------------------------------------------------------------------------- /templates/admin/roles/createUpdate.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/roles/createUpdate.twig -------------------------------------------------------------------------------- /templates/admin/roles/listAll.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/roles/listAll.twig -------------------------------------------------------------------------------- /templates/admin/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/sidebar.twig -------------------------------------------------------------------------------- /templates/admin/site-info-userrank.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/site-info-userrank.twig -------------------------------------------------------------------------------- /templates/admin/site-option.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/site-option.twig -------------------------------------------------------------------------------- /templates/admin/siteNews.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/siteNews.twig -------------------------------------------------------------------------------- /templates/admin/staffpm-list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/staffpm-list.twig -------------------------------------------------------------------------------- /templates/admin/tools.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/tools.twig -------------------------------------------------------------------------------- /templates/admin/tracker-info.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/tracker-info.twig -------------------------------------------------------------------------------- /templates/admin/user-info-ipv4.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/user-info-ipv4.twig -------------------------------------------------------------------------------- /templates/admin/userflow.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/admin/userflow.twig -------------------------------------------------------------------------------- /templates/artist/similar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/artist/similar.twig -------------------------------------------------------------------------------- /templates/base.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/base.twig -------------------------------------------------------------------------------- /templates/better/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/better/index.twig -------------------------------------------------------------------------------- /templates/better/list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/better/list.twig -------------------------------------------------------------------------------- /templates/better/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/better/sidebar.twig -------------------------------------------------------------------------------- /templates/bonusPoints/bonus-pool.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bonusPoints/bonus-pool.twig -------------------------------------------------------------------------------- /templates/bonusPoints/checkout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bonusPoints/checkout.twig -------------------------------------------------------------------------------- /templates/bonusPoints/confirm.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bonusPoints/confirm.twig -------------------------------------------------------------------------------- /templates/bonusPoints/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bonusPoints/sidebar.twig -------------------------------------------------------------------------------- /templates/bonusPoints/store.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bonusPoints/store.twig -------------------------------------------------------------------------------- /templates/bookmark/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bookmark/body.twig -------------------------------------------------------------------------------- /templates/bookmark/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bookmark/footer.twig -------------------------------------------------------------------------------- /templates/bookmark/header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bookmark/header.twig -------------------------------------------------------------------------------- /templates/bookmark/none.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/bookmark/none.twig -------------------------------------------------------------------------------- /templates/collages/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collages/browse.twig -------------------------------------------------------------------------------- /templates/collages/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collages/details.twig -------------------------------------------------------------------------------- /templates/collages/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collages/search.twig -------------------------------------------------------------------------------- /templates/collages/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collages/sidebar.twig -------------------------------------------------------------------------------- /templates/collages/updateOrCreate.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collages/updateOrCreate.twig -------------------------------------------------------------------------------- /templates/collector.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/collector.twig -------------------------------------------------------------------------------- /templates/comment/comment.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/comment/comment.twig -------------------------------------------------------------------------------- /templates/comment/warn.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/comment/warn.twig -------------------------------------------------------------------------------- /templates/creators/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/creators/browse.twig -------------------------------------------------------------------------------- /templates/creators/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/creators/details.twig -------------------------------------------------------------------------------- /templates/creators/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/creators/search.twig -------------------------------------------------------------------------------- /templates/creators/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/creators/sidebar.twig -------------------------------------------------------------------------------- /templates/discourse/boards/category.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/boards/category.twig -------------------------------------------------------------------------------- /templates/discourse/boards/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/boards/index.twig -------------------------------------------------------------------------------- /templates/discourse/boards/newEdit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/boards/newEdit.twig -------------------------------------------------------------------------------- /templates/discourse/boards/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/boards/sidebar.twig -------------------------------------------------------------------------------- /templates/discourse/boards/topic.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/boards/topic.twig -------------------------------------------------------------------------------- /templates/discourse/messages/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/messages/index.twig -------------------------------------------------------------------------------- /templates/discourse/messages/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/messages/sidebar.twig -------------------------------------------------------------------------------- /templates/discourse/wiki/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/discourse/wiki/index.twig -------------------------------------------------------------------------------- /templates/email/changeEmail.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/changeEmail.twig -------------------------------------------------------------------------------- /templates/email/disableWarning.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/disableWarning.twig -------------------------------------------------------------------------------- /templates/email/emailChanged.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/emailChanged.twig -------------------------------------------------------------------------------- /templates/email/enableAccepted.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/enableAccepted.twig -------------------------------------------------------------------------------- /templates/email/enableDeclined.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/enableDeclined.twig -------------------------------------------------------------------------------- /templates/email/hackedAccount.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/hackedAccount.twig -------------------------------------------------------------------------------- /templates/email/inviteMember.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/inviteMember.twig -------------------------------------------------------------------------------- /templates/email/passphraseChanged.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/passphraseChanged.twig -------------------------------------------------------------------------------- /templates/email/passphraseReset.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/passphraseReset.twig -------------------------------------------------------------------------------- /templates/email/verifyRegistration.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/email/verifyRegistration.twig -------------------------------------------------------------------------------- /templates/error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/error.twig -------------------------------------------------------------------------------- /templates/forum/header-thread.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/header-thread.twig -------------------------------------------------------------------------------- /templates/forum/header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/header.twig -------------------------------------------------------------------------------- /templates/forum/main.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/main.twig -------------------------------------------------------------------------------- /templates/forum/new-thread.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/new-thread.twig -------------------------------------------------------------------------------- /templates/forum/request-edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/request-edit.twig -------------------------------------------------------------------------------- /templates/forum/toc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/toc.twig -------------------------------------------------------------------------------- /templates/forum/warn.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/forum/warn.twig -------------------------------------------------------------------------------- /templates/inbox/compose.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/inbox/compose.twig -------------------------------------------------------------------------------- /templates/index/private.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/index/private.twig -------------------------------------------------------------------------------- /templates/index/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/index/sidebar.twig -------------------------------------------------------------------------------- /templates/literature/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/literature/browse.twig -------------------------------------------------------------------------------- /templates/literature/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/literature/details.twig -------------------------------------------------------------------------------- /templates/literature/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/literature/search.twig -------------------------------------------------------------------------------- /templates/literature/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/literature/sidebar.twig -------------------------------------------------------------------------------- /templates/manticore/complexSearch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/complexSearch.twig -------------------------------------------------------------------------------- /templates/manticore/dataSize.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/dataSize.twig -------------------------------------------------------------------------------- /templates/manticore/files.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/files.twig -------------------------------------------------------------------------------- /templates/manticore/formControls.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/formControls.twig -------------------------------------------------------------------------------- /templates/manticore/formats.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/formats.twig -------------------------------------------------------------------------------- /templates/manticore/misc.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/misc.twig -------------------------------------------------------------------------------- /templates/manticore/numbers.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/numbers.twig -------------------------------------------------------------------------------- /templates/manticore/ordering.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/ordering.twig -------------------------------------------------------------------------------- /templates/manticore/organization.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/organization.twig -------------------------------------------------------------------------------- /templates/manticore/pagination.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/pagination.twig -------------------------------------------------------------------------------- /templates/manticore/people.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/people.twig -------------------------------------------------------------------------------- /templates/manticore/places.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/places.twig -------------------------------------------------------------------------------- /templates/manticore/platforms.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/platforms.twig -------------------------------------------------------------------------------- /templates/manticore/relationships.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/relationships.twig -------------------------------------------------------------------------------- /templates/manticore/simpleSearch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/simpleSearch.twig -------------------------------------------------------------------------------- /templates/manticore/tracker.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/manticore/tracker.twig -------------------------------------------------------------------------------- /templates/organizations/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/organizations/browse.twig -------------------------------------------------------------------------------- /templates/organizations/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/organizations/details.twig -------------------------------------------------------------------------------- /templates/organizations/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/organizations/search.twig -------------------------------------------------------------------------------- /templates/organizations/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/organizations/sidebar.twig -------------------------------------------------------------------------------- /templates/publications/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/publications/browse.twig -------------------------------------------------------------------------------- /templates/publications/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/publications/details.twig -------------------------------------------------------------------------------- /templates/publications/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/publications/search.twig -------------------------------------------------------------------------------- /templates/publications/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/publications/sidebar.twig -------------------------------------------------------------------------------- /templates/reportsv2/new.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/reportsv2/new.twig -------------------------------------------------------------------------------- /templates/requests/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/browse.twig -------------------------------------------------------------------------------- /templates/requests/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/details.twig -------------------------------------------------------------------------------- /templates/requests/edit-bounty.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/edit-bounty.twig -------------------------------------------------------------------------------- /templates/requests/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/search.twig -------------------------------------------------------------------------------- /templates/requests/sidebarDetails.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/sidebarDetails.twig -------------------------------------------------------------------------------- /templates/requests/sidebarForm.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/sidebarForm.twig -------------------------------------------------------------------------------- /templates/requests/tableEntry.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/tableEntry.twig -------------------------------------------------------------------------------- /templates/requests/updateOrCreate.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/requests/updateOrCreate.twig -------------------------------------------------------------------------------- /templates/siteLog/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteLog/index.twig -------------------------------------------------------------------------------- /templates/siteLog/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteLog/sidebar.twig -------------------------------------------------------------------------------- /templates/siteText/donate/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/donate/donate.md -------------------------------------------------------------------------------- /templates/siteText/legal/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/legal/about.md -------------------------------------------------------------------------------- /templates/siteText/legal/canary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/legal/canary.txt -------------------------------------------------------------------------------- /templates/siteText/legal/dmca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/legal/dmca.md -------------------------------------------------------------------------------- /templates/siteText/legal/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/legal/privacy.md -------------------------------------------------------------------------------- /templates/siteText/legal/pubkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/legal/pubkey.txt -------------------------------------------------------------------------------- /templates/siteText/rules.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules.twig -------------------------------------------------------------------------------- /templates/siteText/rules/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/chat.md -------------------------------------------------------------------------------- /templates/siteText/rules/clients.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/clients.twig -------------------------------------------------------------------------------- /templates/siteText/rules/collages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/collages.md -------------------------------------------------------------------------------- /templates/siteText/rules/golden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/golden.md -------------------------------------------------------------------------------- /templates/siteText/rules/ratio.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/ratio.twig -------------------------------------------------------------------------------- /templates/siteText/rules/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/requests.md -------------------------------------------------------------------------------- /templates/siteText/rules/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/sidebar.twig -------------------------------------------------------------------------------- /templates/siteText/rules/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/tags.md -------------------------------------------------------------------------------- /templates/siteText/rules/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/rules/upload.md -------------------------------------------------------------------------------- /templates/siteText/tldr.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/siteText/tldr.twig -------------------------------------------------------------------------------- /templates/stats/concepts.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/stats/concepts.twig -------------------------------------------------------------------------------- /templates/stats/countsByYear.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/stats/countsByYear.twig -------------------------------------------------------------------------------- /templates/stats/torrents.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/stats/torrents.twig -------------------------------------------------------------------------------- /templates/stats/users.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/stats/users.twig -------------------------------------------------------------------------------- /templates/tables/collages.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/collages.twig -------------------------------------------------------------------------------- /templates/tables/creators.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/creators.twig -------------------------------------------------------------------------------- /templates/tables/literature.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/literature.twig -------------------------------------------------------------------------------- /templates/tables/organizations.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/organizations.twig -------------------------------------------------------------------------------- /templates/tables/requests.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/requests.twig -------------------------------------------------------------------------------- /templates/tables/torrentGroups.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/torrentGroups.twig -------------------------------------------------------------------------------- /templates/tables/torrents.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tables/torrents.twig -------------------------------------------------------------------------------- /templates/tag/alias.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tag/alias.twig -------------------------------------------------------------------------------- /templates/tag/batch-editor.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tag/batch-editor.twig -------------------------------------------------------------------------------- /templates/tag/merged.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/tag/merged.twig -------------------------------------------------------------------------------- /templates/top10/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/top10/sidebar.twig -------------------------------------------------------------------------------- /templates/top10/tags.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/top10/tags.twig -------------------------------------------------------------------------------- /templates/top10/torrents.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/top10/torrents.twig -------------------------------------------------------------------------------- /templates/top10/users.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/top10/users.twig -------------------------------------------------------------------------------- /templates/torrentForm/announceSource.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/announceSource.twig -------------------------------------------------------------------------------- /templates/torrentForm/archive.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/archive.twig -------------------------------------------------------------------------------- /templates/torrentForm/booleans.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/booleans.twig -------------------------------------------------------------------------------- /templates/torrentForm/categoryId.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/categoryId.twig -------------------------------------------------------------------------------- /templates/torrentForm/creatorList.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/creatorList.twig -------------------------------------------------------------------------------- /templates/torrentForm/formats.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/formats.twig -------------------------------------------------------------------------------- /templates/torrentForm/freeleech.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/freeleech.twig -------------------------------------------------------------------------------- /templates/torrentForm/identifier.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/identifier.twig -------------------------------------------------------------------------------- /templates/torrentForm/license.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/license.twig -------------------------------------------------------------------------------- /templates/torrentForm/literature.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/literature.twig -------------------------------------------------------------------------------- /templates/torrentForm/location.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/location.twig -------------------------------------------------------------------------------- /templates/torrentForm/mirrors.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/mirrors.twig -------------------------------------------------------------------------------- /templates/torrentForm/notice.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/notice.twig -------------------------------------------------------------------------------- /templates/torrentForm/picture.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/picture.twig -------------------------------------------------------------------------------- /templates/torrentForm/platforms.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/platforms.twig -------------------------------------------------------------------------------- /templates/torrentForm/scopes.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/scopes.twig -------------------------------------------------------------------------------- /templates/torrentForm/seqhash.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/seqhash.twig -------------------------------------------------------------------------------- /templates/torrentForm/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/sidebar.twig -------------------------------------------------------------------------------- /templates/torrentForm/tagList.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/tagList.twig -------------------------------------------------------------------------------- /templates/torrentForm/titles.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/titles.twig -------------------------------------------------------------------------------- /templates/torrentForm/torrentFile.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/torrentFile.twig -------------------------------------------------------------------------------- /templates/torrentForm/version.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/version.twig -------------------------------------------------------------------------------- /templates/torrentForm/workgroup.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/workgroup.twig -------------------------------------------------------------------------------- /templates/torrentForm/year.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentForm/year.twig -------------------------------------------------------------------------------- /templates/torrentGroups/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentGroups/browse.twig -------------------------------------------------------------------------------- /templates/torrentGroups/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentGroups/details.twig -------------------------------------------------------------------------------- /templates/torrentGroups/search.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentGroups/search.twig -------------------------------------------------------------------------------- /templates/torrentGroups/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentGroups/sidebar.twig -------------------------------------------------------------------------------- /templates/torrentGroups/update.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrentGroups/update.twig -------------------------------------------------------------------------------- /templates/torrents/details.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrents/details.twig -------------------------------------------------------------------------------- /templates/torrents/peerlist.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrents/peerlist.twig -------------------------------------------------------------------------------- /templates/torrents/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrents/sidebar.twig -------------------------------------------------------------------------------- /templates/torrents/upload.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/torrents/upload.twig -------------------------------------------------------------------------------- /templates/user/auth/confirm.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/auth/confirm.twig -------------------------------------------------------------------------------- /templates/user/auth/disabled.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/auth/disabled.twig -------------------------------------------------------------------------------- /templates/user/auth/login.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/auth/login.twig -------------------------------------------------------------------------------- /templates/user/auth/recover.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/auth/recover.twig -------------------------------------------------------------------------------- /templates/user/auth/register.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/auth/register.twig -------------------------------------------------------------------------------- /templates/user/bonus-history.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/bonus-history.twig -------------------------------------------------------------------------------- /templates/user/edit-buffer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-buffer.twig -------------------------------------------------------------------------------- /templates/user/edit-fltoken.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-fltoken.twig -------------------------------------------------------------------------------- /templates/user/edit-invite.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-invite.twig -------------------------------------------------------------------------------- /templates/user/edit-lock.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-lock.twig -------------------------------------------------------------------------------- /templates/user/edit-peer-visibility.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-peer-visibility.twig -------------------------------------------------------------------------------- /templates/user/edit-rate-limit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-rate-limit.twig -------------------------------------------------------------------------------- /templates/user/edit-remark.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-remark.twig -------------------------------------------------------------------------------- /templates/user/edit-reset.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-reset.twig -------------------------------------------------------------------------------- /templates/user/edit-secondary-class.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-secondary-class.twig -------------------------------------------------------------------------------- /templates/user/edit-submit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-submit.twig -------------------------------------------------------------------------------- /templates/user/edit-title.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-title.twig -------------------------------------------------------------------------------- /templates/user/edit-warn.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/edit-warn.twig -------------------------------------------------------------------------------- /templates/user/friends.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/friends.twig -------------------------------------------------------------------------------- /templates/user/history-freeleech.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/history-freeleech.twig -------------------------------------------------------------------------------- /templates/user/invite-tree-bulkedit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/invite-tree-bulkedit.twig -------------------------------------------------------------------------------- /templates/user/invite-tree.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/invite-tree.twig -------------------------------------------------------------------------------- /templates/user/invited.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/invited.twig -------------------------------------------------------------------------------- /templates/user/linked.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/linked.twig -------------------------------------------------------------------------------- /templates/user/post-history.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/post-history.twig -------------------------------------------------------------------------------- /templates/user/privilege-list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/privilege-list.twig -------------------------------------------------------------------------------- /templates/user/profile/invites.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/profile/invites.twig -------------------------------------------------------------------------------- /templates/user/profile/profile.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/profile/profile.twig -------------------------------------------------------------------------------- /templates/user/profile/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/profile/sidebar.twig -------------------------------------------------------------------------------- /templates/user/quote-notification.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/quote-notification.twig -------------------------------------------------------------------------------- /templates/user/recent.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/recent.twig -------------------------------------------------------------------------------- /templates/user/reset-avatar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/reset-avatar.twig -------------------------------------------------------------------------------- /templates/user/session.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/session.twig -------------------------------------------------------------------------------- /templates/user/settings/notification.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/settings/notification.twig -------------------------------------------------------------------------------- /templates/user/settings/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/settings/settings.twig -------------------------------------------------------------------------------- /templates/user/settings/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/settings/sidebar.twig -------------------------------------------------------------------------------- /templates/user/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/sidebar.twig -------------------------------------------------------------------------------- /templates/user/staff.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/staff.twig -------------------------------------------------------------------------------- /templates/user/tag-snatch.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/tag-snatch.twig -------------------------------------------------------------------------------- /templates/user/thread-history.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/user/thread-history.twig -------------------------------------------------------------------------------- /templates/wiki/article.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/wiki/article.twig -------------------------------------------------------------------------------- /templates/wiki/browse.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/wiki/browse.twig -------------------------------------------------------------------------------- /templates/wiki/compare.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/wiki/compare.twig -------------------------------------------------------------------------------- /templates/wiki/sidebar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/templates/wiki/sidebar.twig -------------------------------------------------------------------------------- /tests/app/AppTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/tests/app/AppTest.php -------------------------------------------------------------------------------- /tests/go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/tests/go.php -------------------------------------------------------------------------------- /utilities/config/crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/config/crontab.txt -------------------------------------------------------------------------------- /utilities/config/manticore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/config/manticore.conf -------------------------------------------------------------------------------- /utilities/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/config/nginx.conf -------------------------------------------------------------------------------- /utilities/crontab/daily/jwtKeyPair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/daily/jwtKeyPair.php -------------------------------------------------------------------------------- /utilities/crontab/daily/openAi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/daily/openAi.php -------------------------------------------------------------------------------- /utilities/crontab/daily/ratioWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/daily/ratioWatch.php -------------------------------------------------------------------------------- /utilities/crontab/every/lastCommit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/every/lastCommit.php -------------------------------------------------------------------------------- /utilities/crontab/every/peerUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/every/peerUpdate.php -------------------------------------------------------------------------------- /utilities/crontab/hourly/bonusPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/hourly/bonusPoints.php -------------------------------------------------------------------------------- /utilities/crontab/weekly/grantInvites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/weekly/grantInvites.php -------------------------------------------------------------------------------- /utilities/crontab/weekly/updateSatis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/crontab/weekly/updateSatis.php -------------------------------------------------------------------------------- /utilities/docker/manticore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/docker/manticore/Dockerfile -------------------------------------------------------------------------------- /utilities/docker/manticore/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/docker/manticore/entrypoint.sh -------------------------------------------------------------------------------- /utilities/docker/manticore/manticore.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/docker/nginx/gazelle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/docker/nginx/gazelle.conf -------------------------------------------------------------------------------- /utilities/docker/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/docker/php/php.ini -------------------------------------------------------------------------------- /utilities/rootkit/aptEverything: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/rootkit/aptEverything -------------------------------------------------------------------------------- /utilities/schema/authentication.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/schema/authentication.sql -------------------------------------------------------------------------------- /utilities/schema/gazelle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/schema/gazelle.sql -------------------------------------------------------------------------------- /utilities/schema/slackManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/schema/slackManifest.json -------------------------------------------------------------------------------- /utilities/scratchpad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/scratchpad.php -------------------------------------------------------------------------------- /utilities/vault/cssOnlyMenu/mainMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/cssOnlyMenu/mainMenu.scss -------------------------------------------------------------------------------- /utilities/vault/cssOnlyMenu/mainMenu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/cssOnlyMenu/mainMenu.twig -------------------------------------------------------------------------------- /utilities/vault/cssOnlyMenu/userInfo.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/cssOnlyMenu/userInfo.twig -------------------------------------------------------------------------------- /utilities/vault/eloquentModels/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/eloquentModels/Base.php -------------------------------------------------------------------------------- /utilities/vault/eloquentModels/Wiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/eloquentModels/Wiki.php -------------------------------------------------------------------------------- /utilities/vault/oldMainMenu/mainMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/oldMainMenu/mainMenu.scss -------------------------------------------------------------------------------- /utilities/vault/oldMainMenu/mainMenu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/oldMainMenu/mainMenu.twig -------------------------------------------------------------------------------- /utilities/vault/oldMainMenu/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/utilities/vault/oldMainMenu/menus.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biotorrents/gazelle/HEAD/yarn.lock --------------------------------------------------------------------------------