├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE.md ├── Makefile ├── README.md ├── ansible ├── ansible.cfg ├── inventory.yml └── playbooks │ ├── backup.yml │ ├── deploy.yml │ ├── fetch-logs.yml │ ├── restart.yml │ └── templates │ ├── .bashrc.d │ └── setup.sh.j2 │ ├── Makefile.j2 │ ├── bin │ ├── certbot-create.j2 │ ├── certbot-renew.j2 │ ├── certbot-revoke.j2 │ ├── db-backup-to-s3.j2 │ ├── db-dump-to-file.j2 │ ├── fetch-prerelease-empty.j2 │ └── view-cert.j2 │ ├── docker │ ├── config │ │ └── settings_local.yml.j2 │ └── nginx-conf │ │ ├── nginx.conf.j2 │ │ └── server-common.conf.j2 │ └── etc │ └── init.d │ └── thost.j2 ├── bin ├── backup-search.sh ├── cache-info ├── cache-list-items ├── create-build-info.sh ├── create-local-ssl-cert.sh ├── db-migrate.sh ├── fetch-empties.sh ├── nginx-crawler-block-test.sh ├── nginx-fast-404-test.sh └── pin-digest.sh ├── docker-compose-prod.yml ├── docker-compose.yml ├── docker ├── .bash_aliases ├── .irbrc ├── Dockerfile.base ├── Dockerfile.prod ├── nginx-html │ └── custom502.html ├── start-delayed-job.sh └── start-rails.sh ├── examples ├── thost-download-all ├── thost-downloader └── thost-uploader ├── hack ├── nginx-log-parser.rb └── save-time-stats.rb ├── rails ├── .browserslistrc ├── .haml-lint.yml ├── .haml-lint_todo.yml ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Makefile ├── Procfile.dev ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ ├── classic-icon.ico │ │ │ ├── coffee.svg │ │ │ ├── email-banner.png │ │ │ ├── favicon-green.ico │ │ │ ├── favicon-tiddlyspot.ico │ │ │ ├── favicon.ico │ │ │ ├── feather-icon.svg │ │ │ ├── home-screen.png │ │ │ ├── logo-2400.png │ │ │ ├── logo-800-square.png │ │ │ ├── logo-800.png │ │ │ ├── logo.svg │ │ │ ├── psql-logo-sml.png │ │ │ ├── rails-logo-sml.png │ │ │ ├── ruby-logo-sml.png │ │ │ ├── siteleteer-logo.svg │ │ │ ├── tiddlyspot-banner-logo.png │ │ │ ├── tw5-icon.ico │ │ │ └── tw5x-icon.ico │ │ └── stylesheets │ │ │ ├── application.scss │ │ │ └── imports │ │ │ ├── _nice_radio.scss │ │ │ ├── _type_chooser.scss │ │ │ ├── admin.scss │ │ │ ├── home.scss │ │ │ ├── hub.scss │ │ │ ├── layout.scss │ │ │ ├── plans.scss │ │ │ ├── scaffolds.scss │ │ │ ├── sites.scss │ │ │ └── text.scss │ ├── controllers │ │ ├── admin_controller.rb │ │ ├── application_controller.rb │ │ ├── browse_controller.rb │ │ ├── concerns │ │ │ ├── admin_chart_data.rb │ │ │ ├── site_history.rb │ │ │ ├── subdomain_common.rb │ │ │ └── zip_download_all.rb │ │ ├── explore_controller.rb │ │ ├── home_controller.rb │ │ ├── hub_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ ├── sites_controller.rb │ │ ├── subscription_controller.rb │ │ ├── templates_controller.rb │ │ ├── tiddlyspot_controller.rb │ │ ├── tiddlywiki_controller.rb │ │ └── tspot_sites_controller.rb │ ├── helpers │ │ ├── admin_helper.rb │ │ ├── application_helper.rb │ │ ├── home_helper.rb │ │ ├── hub_helper.rb │ │ ├── sites_helper.rb │ │ ├── sort_and_filter_link_helper.rb │ │ ├── subscription_helper.rb │ │ └── theme_mode_helper.rb │ ├── javascript │ │ └── application.js │ ├── jobs │ │ ├── application_job.rb │ │ ├── generate_thumbnail_job.rb │ │ └── prune_attachments_job.rb │ ├── mailers │ │ ├── application_mailer.rb │ │ ├── devise_bootstrap_mailer.rb │ │ └── pay_bootstrap_user_mailer.rb │ ├── middleware │ │ └── logger_with_domain.rb │ ├── models │ │ ├── application_record.rb │ │ ├── attachment_label.rb │ │ ├── concerns │ │ │ ├── admin_searchable.rb │ │ │ ├── safe_mode_urls.rb │ │ │ ├── site_common.rb │ │ │ ├── subscriber.rb │ │ │ ├── with_access_count.rb │ │ │ ├── with_default.rb │ │ │ ├── with_preferences.rb │ │ │ ├── with_saved_content.rb │ │ │ └── with_thumbnail.rb │ │ ├── empty.rb │ │ ├── plan.rb │ │ ├── site.rb │ │ ├── tspot_site.rb │ │ ├── user.rb │ │ └── user_type.rb │ └── views │ │ ├── admin │ │ ├── _chart_menu.html.haml │ │ ├── _line_chart.html.haml │ │ ├── _radio_filter_links.html.haml │ │ ├── _radio_filter_multi_links.html.haml │ │ ├── _running_job_site_links.html.haml │ │ ├── _sites_filter.html.haml │ │ ├── _sites_table.html.haml │ │ ├── _stat_card.html.haml │ │ ├── _tabs.html.haml │ │ ├── _thumbnail_link.html.haml │ │ ├── _tspot_sites_filter.html.haml │ │ ├── _tspot_sites_table.html.haml │ │ ├── _user_info.html.haml │ │ ├── _users_filter.html.haml │ │ ├── _users_table.html.haml │ │ ├── _versions_dropdown.html.haml │ │ ├── charts.html.haml │ │ ├── etc.html.haml │ │ ├── index.html.haml │ │ ├── paginated_records.html.haml │ │ └── storage.html.haml │ │ ├── application │ │ ├── _advanced_wrapper.html.haml │ │ ├── _field_wrapper.html.haml │ │ ├── _form_wrapper.html.haml │ │ ├── _modal_open.js.erb │ │ ├── _modal_wrapper.html.haml │ │ ├── _popover_help.html.haml │ │ ├── _search_box.html.haml │ │ ├── _site_kind_info.html.haml │ │ ├── _site_owner.html.haml │ │ ├── _site_tile.html.haml │ │ └── _site_tile_clone.html.haml │ │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.haml │ │ ├── mailer │ │ │ ├── _button_link.html.haml │ │ │ ├── _salutation.html.haml │ │ │ ├── _show_email.html.haml │ │ │ ├── confirmation_instructions.html.haml │ │ │ ├── email_changed.html.haml │ │ │ ├── password_change.html.haml │ │ │ ├── reset_password_instructions.html.haml │ │ │ └── unlock_instructions.html.haml │ │ ├── passwords │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── after_registration.html.haml │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── sessions │ │ │ └── new.html.haml │ │ ├── shared │ │ │ ├── _error_messages.html.haml │ │ │ └── _links.html.erb │ │ └── unlocks │ │ │ └── new.html.haml │ │ ├── home │ │ ├── _admin_about.html.haml │ │ ├── _github_sponsor_button.html.erb │ │ ├── _paypal_donate_button.html.erb │ │ ├── _policy_tabs.html.haml │ │ ├── _signed_in.html.haml │ │ ├── _signed_out.html.haml │ │ ├── about.html.haml │ │ ├── donate.html.haml │ │ ├── error_page.html.haml │ │ ├── index.html.erb │ │ ├── privacy_policy.html.haml │ │ ├── support.html.haml │ │ └── terms_of_use.html.haml │ │ ├── hub │ │ ├── _templates_switch.html.haml │ │ └── index.html.haml │ │ ├── layouts │ │ ├── _banner_message.html.haml │ │ ├── _footer.html.haml │ │ ├── _header.html.haml │ │ ├── _mail_footer.html.haml │ │ ├── _user_menu_items.html.haml │ │ ├── application.html.erb │ │ ├── bootstrap-mailer.html.erb │ │ ├── mailer.html.erb │ │ ├── mailer.text.erb │ │ ├── simple.html.erb │ │ └── tiddlyspot.html.haml │ │ ├── pay │ │ ├── stripe │ │ │ └── _checkout_button.html.haml │ │ └── user_mailer │ │ │ ├── _salutation.html.haml │ │ │ ├── _show_email.html.haml │ │ │ ├── payment_action_required.html.haml │ │ │ ├── payment_failed.html.haml │ │ │ ├── receipt.html.haml │ │ │ ├── refund.html.haml │ │ │ ├── subscription_renewing.html.haml │ │ │ ├── subscription_trial_ended.html.haml │ │ │ └── subscription_trial_will_end.html.haml │ │ ├── site_common │ │ └── _allow_in_iframe.html.haml │ │ ├── sites │ │ ├── _access_chooser.html.haml │ │ ├── _actions_menu.html.haml │ │ ├── _filter_and_sort.html.haml │ │ ├── _form.html.haml │ │ ├── _grid_view.html.haml │ │ ├── _history_actions_menu.html.haml │ │ ├── _history_label.html.haml │ │ ├── _list_view.html.haml │ │ ├── _public_clone.html.haml │ │ ├── _save_method_prefs.html.haml │ │ ├── _site.json.jbuilder │ │ ├── _skip_etag_check.html.haml │ │ ├── _type_chooser.html.haml │ │ ├── _version_label_form.html.haml │ │ ├── edit.html.haml │ │ ├── history.html.haml │ │ ├── index.html.haml │ │ ├── index.json.jbuilder │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ ├── show.json.jbuilder │ │ └── upload_form.html.haml │ │ ├── subscription │ │ ├── _plans.html.haml │ │ ├── _pricing_card.html.haml │ │ ├── _stripe_logo.html.erb │ │ ├── _subscription_info.html.haml │ │ ├── plans.html.haml │ │ ├── show.html.haml │ │ └── success.html.haml │ │ ├── tiddlyspot │ │ ├── home.html.haml │ │ └── site_not_found.html.haml │ │ ├── tiddlywiki │ │ └── site_not_available.html.haml │ │ └── tspot_sites │ │ ├── _claim_form.html.haml │ │ ├── _form.html.haml │ │ ├── change_password.html.haml │ │ ├── claim.html.haml │ │ ├── claim_form.html.haml │ │ ├── edit.html.haml │ │ └── show.html.haml ├── bin │ ├── brakeman │ ├── bundle │ ├── delayed_job │ ├── dev │ ├── rails │ ├── rake │ ├── rubocop │ ├── setup │ ├── webpack │ ├── webpack-dev-server │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── active_job_delayed_job_param_fix.rb │ │ ├── active_storage_extensions.rb │ │ ├── acts_as_taggable_on.rb │ │ ├── app_version.rb │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── delayed_job_config.rb │ │ ├── devise.rb │ │ ├── devise_security.rb │ │ ├── filter_parameter_logging.rb │ │ ├── grover.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── pay.rb │ │ ├── permissions_policy.rb │ │ ├── recaptcha.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── devise.en.yml │ │ ├── devise.security_extension.by.yml │ │ ├── devise.security_extension.cs.yml │ │ ├── devise.security_extension.de.yml │ │ ├── devise.security_extension.en.yml │ │ ├── devise.security_extension.es.yml │ │ ├── devise.security_extension.fa.yml │ │ ├── devise.security_extension.fr.yml │ │ ├── devise.security_extension.hi.yml │ │ ├── devise.security_extension.it.yml │ │ ├── devise.security_extension.ja.yml │ │ ├── devise.security_extension.nl.yml │ │ ├── devise.security_extension.pt.yml │ │ ├── devise.security_extension.ru.yml │ │ ├── devise.security_extension.tr.yml │ │ ├── devise.security_extension.uk.yml │ │ ├── devise.security_extension.zh_CN.yml │ │ ├── devise.security_extension.zh_TW.yml │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── settings.yml │ ├── settings_local.yml │ ├── spring.rb │ ├── storage.yml │ └── webpack │ │ ├── development.js │ │ ├── environment.js │ │ ├── production.js │ │ └── test.js ├── db │ ├── migrate │ │ ├── 20210106213413_devise_create_users.rb │ │ ├── 20210112034502_create_sites.rb │ │ ├── 20210117160255_create_active_storage_tables.active_storage.rb │ │ ├── 20210121220312_add_site_name_uniqueness_constraint.rb │ │ ├── 20210212235629_add_plans.rb │ │ ├── 20210213000411_populate_plans.rb │ │ ├── 20210215132550_add_site_search_fields.rb │ │ ├── 20210216004641_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ │ ├── 20210216004642_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ │ ├── 20210216004643_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ │ ├── 20210216004644_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ │ ├── 20210216004645_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ │ ├── 20210216004646_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb │ │ ├── 20210218130754_add_view_count_to_sites.rb │ │ ├── 20210219140429_add_access_timestamp_to_sites.rb │ │ ├── 20210222211144_add_use_gravatar_to_user.rb │ │ ├── 20210222220346_add_username_to_users.rb │ │ ├── 20210306155527_add_empties.rb │ │ ├── 20210310065945_add_access_count_to_sites.rb │ │ ├── 20210320155909_create_tspot_sites.rb │ │ ├── 20210331020304_add_created_ip_to_tspots.rb │ │ ├── 20210402132027_fix_tspot_defaults.rb │ │ ├── 20210430023050_add_site_save_count.rb │ │ ├── 20210430211506_remove_tspot_exists.rb │ │ ├── 20210514142828_add_site_size.rb │ │ ├── 20210607022644_add_pre_merge_json_store_empty.rb │ │ ├── 20210616224832_add_password_digest_to_tspot_site.rb │ │ ├── 20210715193956_add_5_2_empty.rb │ │ ├── 20211004141356_rename_prerelease_empty.rb │ │ ├── 20211012032237_create_pay_tables.pay.rb │ │ ├── 20220327041056_add_tw_version_to_site.rb │ │ ├── 20220330234401_add_allow_in_iframe_to_site.rb │ │ ├── 20220404022507_add_put_saver_option_to_sites.rb │ │ ├── 20220517175446_add_featherwiki_empty.rb │ │ ├── 20220517185011_add_tw_kind_to_site.rb │ │ ├── 20221103223233_new_empty_schema_and_updates.rb │ │ ├── 20221111180352_add_cloned_from_to_sites.rb │ │ ├── 20221116150741_add_put_saver_fields.rb │ │ ├── 20221117184152_add_publicly_cloneable_to_sites.rb │ │ ├── 20221119172021_add_clone_count.rb │ │ ├── 20221207032722_add_external_js_empty.rb │ │ ├── 20221209202016_bless_tw5x_empty.rb │ │ ├── 20221227033448_add_deleted_to_tspot_sites.rb │ │ ├── 20221227045129_add_redirect_to_tspot_sites.rb │ │ ├── 20230204192052_rename_user_plan.rb │ │ ├── 20230215032721_update_pay_schema.rb │ │ ├── 20230216155655_create_delayed_jobs.rb │ │ ├── 20230409161215_add_use_libravatar_to_users.rb │ │ ├── 20230528230535_add_alt_subscribed_to_user.rb │ │ ├── 20230714154640_revise_classic_empty_description.rb │ │ ├── 20230715143347_revise_featherwiki_description.rb │ │ ├── 20240222170425_set_classic_empty_to_primary.rb │ │ ├── 20240707224037_create_attachment_labels.rb │ │ ├── 20240720143120_add_storage_to_sites.rb │ │ ├── 20241211163231_skip_etag_check.rb │ │ ├── 20250317132410_add_external_js_feather_wiki_empty.rb │ │ ├── 20250322145214_empty_description_punctuation.rb │ │ ├── 20250721025139_add_siteleteer_empty.rb │ │ ├── 20250813141307_upgrade_to_pay7.rb │ │ ├── 20250827164510_add_user_prefs.rb │ │ ├── 20251120162020_add_pay_sti_columns.pay.rb │ │ └── 20251123200738_add_object_to_pay_models.pay.rb │ ├── schema.rb │ ├── seeds.rb │ └── seeds │ │ ├── empties.yml │ │ └── user_types.yml ├── lib │ ├── assets │ │ └── .keep │ ├── bootstrap_paginate_renderer.rb │ ├── cycle_helper.rb │ ├── empty_migration_helper.rb │ ├── hub_query.rb │ ├── random_name.rb │ ├── settings.rb │ ├── settings │ │ └── features.rb │ ├── tasks │ │ ├── .keep │ │ └── bootstrap_email.rake │ ├── th_file.rb │ ├── thost_logger.rb │ └── tw_file.rb ├── log │ └── .keep ├── package.json ├── public │ ├── FeatherWiki-bones_Meadowlark.js │ ├── FeatherWiki-plumage_Meadowlark.css │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── robots.txt │ ├── tiddlywikicore-5.2.3.js │ ├── tiddlywikicore-5.2.4.js │ ├── tiddlywikicore-5.2.5.js │ ├── tiddlywikicore-5.2.6.js │ ├── tiddlywikicore-5.2.7.js │ ├── tiddlywikicore-5.3.0.js │ ├── tiddlywikicore-5.3.1.js │ ├── tiddlywikicore-5.3.2.js │ ├── tiddlywikicore-5.3.3.js │ ├── tiddlywikicore-5.3.4.js │ ├── tiddlywikicore-5.3.5.js │ ├── tiddlywikicore-5.3.6.js │ ├── tiddlywikicore-5.3.7.js │ └── tiddlywikicore-5.3.8.js ├── scripts │ ├── email_test.rb │ ├── recover_missing_blobs.rb │ └── thumbnail_migrate.rb ├── storage │ └── .keep ├── test │ ├── controllers │ │ ├── admin_controller_test.rb │ │ ├── devise_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── hub_controller_test.rb │ │ ├── sites_controller_test.rb │ │ ├── subscription_controller_test.rb │ │ ├── tiddlyspot_controller_test.rb │ │ └── tiddlywiki_controller_test.rb │ ├── data │ │ ├── minimal_classic.html │ │ ├── minimal_encrypted.html │ │ ├── minimal_tw5.html │ │ └── minimal_tw5_json.html │ ├── fixtures │ │ ├── empties.yml │ │ ├── files │ │ │ └── .keep │ │ ├── pay_charges.yml │ │ ├── pay_customers.yml │ │ ├── sites.yml │ │ ├── tspot_sites.yml │ │ ├── user_types.yml │ │ └── users.yml │ ├── helpers │ │ ├── application_helper_test.rb │ │ └── theme_mode_helper_test.rb │ ├── integration │ │ ├── claim_sites_test.rb │ │ ├── sites_test.rb │ │ ├── subscription_flow_test.rb │ │ └── user_signup_test.rb │ ├── mailers │ │ ├── devise_bootstrap_mailer_test.rb │ │ ├── pay_bootstrap_user_mailer_test.rb │ │ └── previews │ │ │ ├── devise_bootstrap_mailer_preview.rb │ │ │ └── pay_bootstrap_user_mailer_preview.rb │ ├── models │ │ ├── attachment_label_test.rb │ │ ├── concerns │ │ │ └── subscriber_test.rb │ │ ├── empty_test.rb │ │ ├── hub_query_test.rb │ │ ├── pay_gem_integration_test.rb │ │ ├── settings_test.rb │ │ ├── site_test.rb │ │ ├── subscription_state_test.rb │ │ ├── tspot_site_test.rb │ │ ├── tw_file_test.rb │ │ ├── user_subscription_integration_test.rb │ │ ├── user_test.rb │ │ └── user_type_test.rb │ ├── support │ │ └── subscription_test_helpers.rb │ └── test_helper.rb ├── tmp │ ├── pids │ │ └── .keep │ └── storage │ │ └── .keep ├── tw_content │ ├── empties │ │ ├── classic.html │ │ ├── classic │ │ │ ├── 2.10.0.html │ │ │ ├── 2.10.1.html │ │ │ ├── 2.10.2.html │ │ │ ├── 2.9.2.html │ │ │ ├── 2.9.3.html │ │ │ └── 2.9.4.html │ │ ├── feather.html │ │ ├── feather │ │ │ ├── 1.8.0.html │ │ │ ├── 1.8.1.html │ │ │ ├── 1.8.2.html │ │ │ ├── Dove_1.2.1.html │ │ │ ├── Tern_1.3.0.html │ │ │ ├── Tern_1.3.1.html │ │ │ ├── Tern_1.4.2.html │ │ │ ├── Warbler_1.5.0.html │ │ │ ├── Warbler_1.5.2.html │ │ │ ├── Warbler_1.5.3.html │ │ │ ├── Warbler_1.6.0.html │ │ │ ├── Warbler_1.6.1.html │ │ │ ├── Warbler_1.6.2.html │ │ │ └── Warbler_1.7.1.html │ │ ├── featherx.html │ │ ├── featherx │ │ │ └── 1.8.1.html │ │ ├── sitelet.html │ │ ├── sitelet │ │ │ └── 1.0.2.html │ │ ├── tw5.html │ │ ├── tw5 │ │ │ ├── 5.1.24-prerelease.html │ │ │ ├── 5.2.0.html │ │ │ ├── 5.2.1.html │ │ │ ├── 5.2.2.html │ │ │ ├── 5.2.3.html │ │ │ ├── 5.2.4.html │ │ │ ├── 5.2.5.html │ │ │ ├── 5.2.6.html │ │ │ ├── 5.2.7.html │ │ │ ├── 5.3.0.html │ │ │ ├── 5.3.1.html │ │ │ ├── 5.3.2.html │ │ │ ├── 5.3.3.html │ │ │ ├── 5.3.4.html │ │ │ ├── 5.3.5.html │ │ │ ├── 5.3.6.html │ │ │ ├── 5.3.7.html │ │ │ └── 5.3.8.html │ │ ├── tw5x.html │ │ └── tw5x │ │ │ ├── 5.2.3.html │ │ │ ├── 5.2.4.html │ │ │ ├── 5.2.5.html │ │ │ ├── 5.2.6.html │ │ │ ├── 5.2.7.html │ │ │ ├── 5.3.0.html │ │ │ ├── 5.3.1.html │ │ │ ├── 5.3.2.html │ │ │ ├── 5.3.3.html │ │ │ ├── 5.3.4.html │ │ │ ├── 5.3.5.html │ │ │ ├── 5.3.6.html │ │ │ ├── 5.3.7.html │ │ │ └── 5.3.8.html │ └── plugins │ │ └── thost_upload_plugin.js.erb └── yarn.lock └── renovate.json5 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 2 | - simonbaird 3 | custom: 4 | - "https://tiddlyhost.com/donate" 5 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/inventory.yml -------------------------------------------------------------------------------- /ansible/playbooks/backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/backup.yml -------------------------------------------------------------------------------- /ansible/playbooks/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/deploy.yml -------------------------------------------------------------------------------- /ansible/playbooks/fetch-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/fetch-logs.yml -------------------------------------------------------------------------------- /ansible/playbooks/restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/restart.yml -------------------------------------------------------------------------------- /ansible/playbooks/templates/.bashrc.d/setup.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/.bashrc.d/setup.sh.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/Makefile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/Makefile.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/certbot-create.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/certbot-create.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/certbot-renew.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/certbot-renew.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/certbot-revoke.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/certbot-revoke.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/db-backup-to-s3.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/db-backup-to-s3.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/db-dump-to-file.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/db-dump-to-file.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/fetch-prerelease-empty.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/fetch-prerelease-empty.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/bin/view-cert.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/bin/view-cert.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/docker/config/settings_local.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/docker/config/settings_local.yml.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/docker/nginx-conf/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/docker/nginx-conf/nginx.conf.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/docker/nginx-conf/server-common.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/docker/nginx-conf/server-common.conf.j2 -------------------------------------------------------------------------------- /ansible/playbooks/templates/etc/init.d/thost.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/ansible/playbooks/templates/etc/init.d/thost.j2 -------------------------------------------------------------------------------- /bin/backup-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/backup-search.sh -------------------------------------------------------------------------------- /bin/cache-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/cache-info -------------------------------------------------------------------------------- /bin/cache-list-items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/cache-list-items -------------------------------------------------------------------------------- /bin/create-build-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/create-build-info.sh -------------------------------------------------------------------------------- /bin/create-local-ssl-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/create-local-ssl-cert.sh -------------------------------------------------------------------------------- /bin/db-migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/db-migrate.sh -------------------------------------------------------------------------------- /bin/fetch-empties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/fetch-empties.sh -------------------------------------------------------------------------------- /bin/nginx-crawler-block-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/nginx-crawler-block-test.sh -------------------------------------------------------------------------------- /bin/nginx-fast-404-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/nginx-fast-404-test.sh -------------------------------------------------------------------------------- /bin/pin-digest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/bin/pin-digest.sh -------------------------------------------------------------------------------- /docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker-compose-prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/.bash_aliases -------------------------------------------------------------------------------- /docker/.irbrc: -------------------------------------------------------------------------------- 1 | IRB.conf[:USE_AUTOCOMPLETE] = false 2 | -------------------------------------------------------------------------------- /docker/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/Dockerfile.base -------------------------------------------------------------------------------- /docker/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/Dockerfile.prod -------------------------------------------------------------------------------- /docker/nginx-html/custom502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/nginx-html/custom502.html -------------------------------------------------------------------------------- /docker/start-delayed-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/start-delayed-job.sh -------------------------------------------------------------------------------- /docker/start-rails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/docker/start-rails.sh -------------------------------------------------------------------------------- /examples/thost-download-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/examples/thost-download-all -------------------------------------------------------------------------------- /examples/thost-downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/examples/thost-downloader -------------------------------------------------------------------------------- /examples/thost-uploader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/examples/thost-uploader -------------------------------------------------------------------------------- /hack/nginx-log-parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/hack/nginx-log-parser.rb -------------------------------------------------------------------------------- /hack/save-time-stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/hack/save-time-stats.rb -------------------------------------------------------------------------------- /rails/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /rails/.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/.haml-lint.yml -------------------------------------------------------------------------------- /rails/.haml-lint_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/.haml-lint_todo.yml -------------------------------------------------------------------------------- /rails/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/.rubocop.yml -------------------------------------------------------------------------------- /rails/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.2.0 2 | -------------------------------------------------------------------------------- /rails/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/Gemfile -------------------------------------------------------------------------------- /rails/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/Gemfile.lock -------------------------------------------------------------------------------- /rails/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/Makefile -------------------------------------------------------------------------------- /rails/Procfile.dev: -------------------------------------------------------------------------------- 1 | web: env RUBY_DEBUG_OPEN=true bin/rails server 2 | js: yarn build --watch 3 | -------------------------------------------------------------------------------- /rails/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/Rakefile -------------------------------------------------------------------------------- /rails/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/config/manifest.js -------------------------------------------------------------------------------- /rails/app/assets/images/classic-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/classic-icon.ico -------------------------------------------------------------------------------- /rails/app/assets/images/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/coffee.svg -------------------------------------------------------------------------------- /rails/app/assets/images/email-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/email-banner.png -------------------------------------------------------------------------------- /rails/app/assets/images/favicon-green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/favicon-green.ico -------------------------------------------------------------------------------- /rails/app/assets/images/favicon-tiddlyspot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/favicon-tiddlyspot.ico -------------------------------------------------------------------------------- /rails/app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /rails/app/assets/images/feather-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/feather-icon.svg -------------------------------------------------------------------------------- /rails/app/assets/images/home-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/home-screen.png -------------------------------------------------------------------------------- /rails/app/assets/images/logo-2400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/logo-2400.png -------------------------------------------------------------------------------- /rails/app/assets/images/logo-800-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/logo-800-square.png -------------------------------------------------------------------------------- /rails/app/assets/images/logo-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/logo-800.png -------------------------------------------------------------------------------- /rails/app/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/logo.svg -------------------------------------------------------------------------------- /rails/app/assets/images/psql-logo-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/psql-logo-sml.png -------------------------------------------------------------------------------- /rails/app/assets/images/rails-logo-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/rails-logo-sml.png -------------------------------------------------------------------------------- /rails/app/assets/images/ruby-logo-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/ruby-logo-sml.png -------------------------------------------------------------------------------- /rails/app/assets/images/siteleteer-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/siteleteer-logo.svg -------------------------------------------------------------------------------- /rails/app/assets/images/tiddlyspot-banner-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/tiddlyspot-banner-logo.png -------------------------------------------------------------------------------- /rails/app/assets/images/tw5-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/tw5-icon.ico -------------------------------------------------------------------------------- /rails/app/assets/images/tw5x-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/images/tw5x-icon.ico -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/_nice_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/_nice_radio.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/_type_chooser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/_type_chooser.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/admin.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/home.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/hub.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/hub.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/layout.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/plans.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/plans.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/scaffolds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/scaffolds.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/sites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/sites.scss -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/imports/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/assets/stylesheets/imports/text.scss -------------------------------------------------------------------------------- /rails/app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/browse_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/browse_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/concerns/admin_chart_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/concerns/admin_chart_data.rb -------------------------------------------------------------------------------- /rails/app/controllers/concerns/site_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/concerns/site_history.rb -------------------------------------------------------------------------------- /rails/app/controllers/concerns/subdomain_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/concerns/subdomain_common.rb -------------------------------------------------------------------------------- /rails/app/controllers/concerns/zip_download_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/concerns/zip_download_all.rb -------------------------------------------------------------------------------- /rails/app/controllers/explore_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/explore_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/hub_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/hub_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/sites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/sites_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/subscription_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/subscription_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/templates_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/tiddlyspot_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/tiddlyspot_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/tiddlywiki_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/tiddlywiki_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/tspot_sites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/controllers/tspot_sites_controller.rb -------------------------------------------------------------------------------- /rails/app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/home_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/hub_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/hub_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/sites_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/sites_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/sort_and_filter_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/sort_and_filter_link_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/subscription_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/subscription_helper.rb -------------------------------------------------------------------------------- /rails/app/helpers/theme_mode_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/helpers/theme_mode_helper.rb -------------------------------------------------------------------------------- /rails/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/javascript/application.js -------------------------------------------------------------------------------- /rails/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/jobs/application_job.rb -------------------------------------------------------------------------------- /rails/app/jobs/generate_thumbnail_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/jobs/generate_thumbnail_job.rb -------------------------------------------------------------------------------- /rails/app/jobs/prune_attachments_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/jobs/prune_attachments_job.rb -------------------------------------------------------------------------------- /rails/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /rails/app/mailers/devise_bootstrap_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/mailers/devise_bootstrap_mailer.rb -------------------------------------------------------------------------------- /rails/app/mailers/pay_bootstrap_user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/mailers/pay_bootstrap_user_mailer.rb -------------------------------------------------------------------------------- /rails/app/middleware/logger_with_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/middleware/logger_with_domain.rb -------------------------------------------------------------------------------- /rails/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/application_record.rb -------------------------------------------------------------------------------- /rails/app/models/attachment_label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/attachment_label.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/admin_searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/admin_searchable.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/safe_mode_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/safe_mode_urls.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/site_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/site_common.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/subscriber.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/with_access_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/with_access_count.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/with_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/with_default.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/with_preferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/with_preferences.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/with_saved_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/with_saved_content.rb -------------------------------------------------------------------------------- /rails/app/models/concerns/with_thumbnail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/concerns/with_thumbnail.rb -------------------------------------------------------------------------------- /rails/app/models/empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/empty.rb -------------------------------------------------------------------------------- /rails/app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/plan.rb -------------------------------------------------------------------------------- /rails/app/models/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/site.rb -------------------------------------------------------------------------------- /rails/app/models/tspot_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/tspot_site.rb -------------------------------------------------------------------------------- /rails/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/user.rb -------------------------------------------------------------------------------- /rails/app/models/user_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/models/user_type.rb -------------------------------------------------------------------------------- /rails/app/views/admin/_chart_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_chart_menu.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_line_chart.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_line_chart.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_radio_filter_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_radio_filter_links.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_radio_filter_multi_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_radio_filter_multi_links.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_running_job_site_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_running_job_site_links.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_sites_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_sites_filter.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_sites_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_sites_table.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_stat_card.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_stat_card.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_tabs.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_thumbnail_link.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_thumbnail_link.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_tspot_sites_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_tspot_sites_filter.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_tspot_sites_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_tspot_sites_table.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_user_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_user_info.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_users_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_users_filter.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_users_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_users_table.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/_versions_dropdown.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/_versions_dropdown.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/charts.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/charts.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/etc.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/etc.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/paginated_records.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/paginated_records.html.haml -------------------------------------------------------------------------------- /rails/app/views/admin/storage.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/admin/storage.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_advanced_wrapper.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_advanced_wrapper.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_field_wrapper.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_field_wrapper.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_form_wrapper.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_form_wrapper.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_modal_open.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_modal_open.js.erb -------------------------------------------------------------------------------- /rails/app/views/application/_modal_wrapper.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_modal_wrapper.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_popover_help.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_popover_help.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_search_box.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_search_box.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_site_kind_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_site_kind_info.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_site_owner.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_site_owner.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_site_tile.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_site_tile.html.haml -------------------------------------------------------------------------------- /rails/app/views/application/_site_tile_clone.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/application/_site_tile_clone.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/confirmations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/confirmations/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/_button_link.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/_button_link.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/_salutation.html.haml: -------------------------------------------------------------------------------- 1 | %p 2 | Hi #{user.short_name}, 3 | -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/_show_email.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/_show_email.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/confirmation_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/confirmation_instructions.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/email_changed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/email_changed.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/password_change.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/password_change.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/reset_password_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/reset_password_instructions.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/mailer/unlock_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/mailer/unlock_instructions.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/registrations/after_registration.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/registrations/after_registration.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/registrations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/registrations/edit.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/registrations/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/sessions/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/shared/_error_messages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/shared/_error_messages.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /rails/app/views/devise/unlocks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/devise/unlocks/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/_admin_about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_admin_about.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/_github_sponsor_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_github_sponsor_button.html.erb -------------------------------------------------------------------------------- /rails/app/views/home/_paypal_donate_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_paypal_donate_button.html.erb -------------------------------------------------------------------------------- /rails/app/views/home/_policy_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_policy_tabs.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/_signed_in.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_signed_in.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/_signed_out.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/_signed_out.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/about.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/donate.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/donate.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/error_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/error_page.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/index.html.erb -------------------------------------------------------------------------------- /rails/app/views/home/privacy_policy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/privacy_policy.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/support.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/support.html.haml -------------------------------------------------------------------------------- /rails/app/views/home/terms_of_use.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/home/terms_of_use.html.haml -------------------------------------------------------------------------------- /rails/app/views/hub/_templates_switch.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/hub/_templates_switch.html.haml -------------------------------------------------------------------------------- /rails/app/views/hub/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/hub/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/_banner_message.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/_banner_message.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/_footer.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/_header.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/_mail_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/_mail_footer.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/_user_menu_items.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/_user_menu_items.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /rails/app/views/layouts/bootstrap-mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/bootstrap-mailer.html.erb -------------------------------------------------------------------------------- /rails/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /rails/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /rails/app/views/layouts/simple.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/simple.html.erb -------------------------------------------------------------------------------- /rails/app/views/layouts/tiddlyspot.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/layouts/tiddlyspot.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/stripe/_checkout_button.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/stripe/_checkout_button.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/_salutation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/_salutation.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/_show_email.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/_show_email.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/payment_action_required.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/payment_action_required.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/payment_failed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/payment_failed.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/receipt.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/receipt.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/refund.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/refund.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/subscription_renewing.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/subscription_renewing.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/subscription_trial_ended.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/subscription_trial_ended.html.haml -------------------------------------------------------------------------------- /rails/app/views/pay/user_mailer/subscription_trial_will_end.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/pay/user_mailer/subscription_trial_will_end.html.haml -------------------------------------------------------------------------------- /rails/app/views/site_common/_allow_in_iframe.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/site_common/_allow_in_iframe.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_access_chooser.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_access_chooser.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_actions_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_actions_menu.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_filter_and_sort.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_filter_and_sort.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_grid_view.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_grid_view.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_history_actions_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_history_actions_menu.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_history_label.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_history_label.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_list_view.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_list_view.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_public_clone.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_public_clone.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_save_method_prefs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_save_method_prefs.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_site.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_site.json.jbuilder -------------------------------------------------------------------------------- /rails/app/views/sites/_skip_etag_check.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_skip_etag_check.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_type_chooser.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_type_chooser.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/_version_label_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/_version_label_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/edit.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/history.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/history.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/index.json.jbuilder -------------------------------------------------------------------------------- /rails/app/views/sites/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/sites/show.html.haml: -------------------------------------------------------------------------------- 1 | -# Not used 2 | -------------------------------------------------------------------------------- /rails/app/views/sites/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/show.json.jbuilder -------------------------------------------------------------------------------- /rails/app/views/sites/upload_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/sites/upload_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/subscription/_plans.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/_plans.html.haml -------------------------------------------------------------------------------- /rails/app/views/subscription/_pricing_card.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/_pricing_card.html.haml -------------------------------------------------------------------------------- /rails/app/views/subscription/_stripe_logo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/_stripe_logo.html.erb -------------------------------------------------------------------------------- /rails/app/views/subscription/_subscription_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/_subscription_info.html.haml -------------------------------------------------------------------------------- /rails/app/views/subscription/plans.html.haml: -------------------------------------------------------------------------------- 1 | = render "plans" 2 | -------------------------------------------------------------------------------- /rails/app/views/subscription/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/subscription/success.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/subscription/success.html.haml -------------------------------------------------------------------------------- /rails/app/views/tiddlyspot/home.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tiddlyspot/home.html.haml -------------------------------------------------------------------------------- /rails/app/views/tiddlyspot/site_not_found.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tiddlyspot/site_not_found.html.haml -------------------------------------------------------------------------------- /rails/app/views/tiddlywiki/site_not_available.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tiddlywiki/site_not_available.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/_claim_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tspot_sites/_claim_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tspot_sites/_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/change_password.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tspot_sites/change_password.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/claim.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tspot_sites/claim.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/claim_form.html.haml: -------------------------------------------------------------------------------- 1 | = render 'claim_form' 2 | -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/app/views/tspot_sites/edit.html.haml -------------------------------------------------------------------------------- /rails/app/views/tspot_sites/show.html.haml: -------------------------------------------------------------------------------- 1 | -# Not used 2 | -------------------------------------------------------------------------------- /rails/bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/brakeman -------------------------------------------------------------------------------- /rails/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/bundle -------------------------------------------------------------------------------- /rails/bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/delayed_job -------------------------------------------------------------------------------- /rails/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/dev -------------------------------------------------------------------------------- /rails/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/rails -------------------------------------------------------------------------------- /rails/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/rake -------------------------------------------------------------------------------- /rails/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/rubocop -------------------------------------------------------------------------------- /rails/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/setup -------------------------------------------------------------------------------- /rails/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/webpack -------------------------------------------------------------------------------- /rails/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/webpack-dev-server -------------------------------------------------------------------------------- /rails/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/bin/yarn -------------------------------------------------------------------------------- /rails/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config.ru -------------------------------------------------------------------------------- /rails/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/application.rb -------------------------------------------------------------------------------- /rails/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/boot.rb -------------------------------------------------------------------------------- /rails/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/database.yml -------------------------------------------------------------------------------- /rails/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/environment.rb -------------------------------------------------------------------------------- /rails/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/environments/development.rb -------------------------------------------------------------------------------- /rails/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/environments/production.rb -------------------------------------------------------------------------------- /rails/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/environments/test.rb -------------------------------------------------------------------------------- /rails/config/initializers/active_job_delayed_job_param_fix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/active_job_delayed_job_param_fix.rb -------------------------------------------------------------------------------- /rails/config/initializers/active_storage_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/active_storage_extensions.rb -------------------------------------------------------------------------------- /rails/config/initializers/acts_as_taggable_on.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/acts_as_taggable_on.rb -------------------------------------------------------------------------------- /rails/config/initializers/app_version.rb: -------------------------------------------------------------------------------- 1 | App::VERSION = Settings.app_version 2 | -------------------------------------------------------------------------------- /rails/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /rails/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/assets.rb -------------------------------------------------------------------------------- /rails/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /rails/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /rails/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /rails/config/initializers/delayed_job_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/delayed_job_config.rb -------------------------------------------------------------------------------- /rails/config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/devise.rb -------------------------------------------------------------------------------- /rails/config/initializers/devise_security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/devise_security.rb -------------------------------------------------------------------------------- /rails/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /rails/config/initializers/grover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/grover.rb -------------------------------------------------------------------------------- /rails/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/inflections.rb -------------------------------------------------------------------------------- /rails/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /rails/config/initializers/pay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/pay.rb -------------------------------------------------------------------------------- /rails/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /rails/config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /rails/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /rails/config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.en.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.by.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.by.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.cs.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.de.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.en.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.es.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.fa.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.fr.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.hi.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.it.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.ja.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.nl.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.pt.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.ru.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.tr.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.uk.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.zh_CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.zh_CN.yml -------------------------------------------------------------------------------- /rails/config/locales/devise.security_extension.zh_TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/devise.security_extension.zh_TW.yml -------------------------------------------------------------------------------- /rails/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/locales/en.yml -------------------------------------------------------------------------------- /rails/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/puma.rb -------------------------------------------------------------------------------- /rails/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/routes.rb -------------------------------------------------------------------------------- /rails/config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/settings.yml -------------------------------------------------------------------------------- /rails/config/settings_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/settings_local.yml -------------------------------------------------------------------------------- /rails/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/spring.rb -------------------------------------------------------------------------------- /rails/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/storage.yml -------------------------------------------------------------------------------- /rails/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/webpack/development.js -------------------------------------------------------------------------------- /rails/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/webpack/environment.js -------------------------------------------------------------------------------- /rails/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/webpack/production.js -------------------------------------------------------------------------------- /rails/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/config/webpack/test.js -------------------------------------------------------------------------------- /rails/db/migrate/20210106213413_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210106213413_devise_create_users.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210112034502_create_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210112034502_create_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210117160255_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210117160255_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210121220312_add_site_name_uniqueness_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210121220312_add_site_name_uniqueness_constraint.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210212235629_add_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210212235629_add_plans.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210213000411_populate_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210213000411_populate_plans.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210215132550_add_site_search_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210215132550_add_site_search_fields.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004641_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004641_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004642_add_missing_unique_indices.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004642_add_missing_unique_indices.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004643_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004643_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004644_add_missing_taggable_index.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004644_add_missing_taggable_index.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004645_change_collation_for_tag_names.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004645_change_collation_for_tag_names.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210216004646_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210216004646_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210218130754_add_view_count_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210218130754_add_view_count_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210219140429_add_access_timestamp_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210219140429_add_access_timestamp_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210222211144_add_use_gravatar_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210222211144_add_use_gravatar_to_user.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210222220346_add_username_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210222220346_add_username_to_users.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210306155527_add_empties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210306155527_add_empties.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210310065945_add_access_count_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210310065945_add_access_count_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210320155909_create_tspot_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210320155909_create_tspot_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210331020304_add_created_ip_to_tspots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210331020304_add_created_ip_to_tspots.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210402132027_fix_tspot_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210402132027_fix_tspot_defaults.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210430023050_add_site_save_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210430023050_add_site_save_count.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210430211506_remove_tspot_exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210430211506_remove_tspot_exists.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210514142828_add_site_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210514142828_add_site_size.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210607022644_add_pre_merge_json_store_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210607022644_add_pre_merge_json_store_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210616224832_add_password_digest_to_tspot_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210616224832_add_password_digest_to_tspot_site.rb -------------------------------------------------------------------------------- /rails/db/migrate/20210715193956_add_5_2_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20210715193956_add_5_2_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20211004141356_rename_prerelease_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20211004141356_rename_prerelease_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20211012032237_create_pay_tables.pay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20211012032237_create_pay_tables.pay.rb -------------------------------------------------------------------------------- /rails/db/migrate/20220327041056_add_tw_version_to_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20220327041056_add_tw_version_to_site.rb -------------------------------------------------------------------------------- /rails/db/migrate/20220330234401_add_allow_in_iframe_to_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20220330234401_add_allow_in_iframe_to_site.rb -------------------------------------------------------------------------------- /rails/db/migrate/20220404022507_add_put_saver_option_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20220404022507_add_put_saver_option_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20220517175446_add_featherwiki_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20220517175446_add_featherwiki_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20220517185011_add_tw_kind_to_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20220517185011_add_tw_kind_to_site.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221103223233_new_empty_schema_and_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221103223233_new_empty_schema_and_updates.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221111180352_add_cloned_from_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221111180352_add_cloned_from_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221116150741_add_put_saver_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221116150741_add_put_saver_fields.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221117184152_add_publicly_cloneable_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221117184152_add_publicly_cloneable_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221119172021_add_clone_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221119172021_add_clone_count.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221207032722_add_external_js_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221207032722_add_external_js_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221209202016_bless_tw5x_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221209202016_bless_tw5x_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221227033448_add_deleted_to_tspot_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221227033448_add_deleted_to_tspot_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20221227045129_add_redirect_to_tspot_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20221227045129_add_redirect_to_tspot_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230204192052_rename_user_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230204192052_rename_user_plan.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230215032721_update_pay_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230215032721_update_pay_schema.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230216155655_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230216155655_create_delayed_jobs.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230409161215_add_use_libravatar_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230409161215_add_use_libravatar_to_users.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230528230535_add_alt_subscribed_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230528230535_add_alt_subscribed_to_user.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230714154640_revise_classic_empty_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230714154640_revise_classic_empty_description.rb -------------------------------------------------------------------------------- /rails/db/migrate/20230715143347_revise_featherwiki_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20230715143347_revise_featherwiki_description.rb -------------------------------------------------------------------------------- /rails/db/migrate/20240222170425_set_classic_empty_to_primary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20240222170425_set_classic_empty_to_primary.rb -------------------------------------------------------------------------------- /rails/db/migrate/20240707224037_create_attachment_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20240707224037_create_attachment_labels.rb -------------------------------------------------------------------------------- /rails/db/migrate/20240720143120_add_storage_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20240720143120_add_storage_to_sites.rb -------------------------------------------------------------------------------- /rails/db/migrate/20241211163231_skip_etag_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20241211163231_skip_etag_check.rb -------------------------------------------------------------------------------- /rails/db/migrate/20250317132410_add_external_js_feather_wiki_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20250317132410_add_external_js_feather_wiki_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20250322145214_empty_description_punctuation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20250322145214_empty_description_punctuation.rb -------------------------------------------------------------------------------- /rails/db/migrate/20250721025139_add_siteleteer_empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20250721025139_add_siteleteer_empty.rb -------------------------------------------------------------------------------- /rails/db/migrate/20250813141307_upgrade_to_pay7.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20250813141307_upgrade_to_pay7.rb -------------------------------------------------------------------------------- /rails/db/migrate/20250827164510_add_user_prefs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20250827164510_add_user_prefs.rb -------------------------------------------------------------------------------- /rails/db/migrate/20251120162020_add_pay_sti_columns.pay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20251120162020_add_pay_sti_columns.pay.rb -------------------------------------------------------------------------------- /rails/db/migrate/20251123200738_add_object_to_pay_models.pay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/migrate/20251123200738_add_object_to_pay_models.pay.rb -------------------------------------------------------------------------------- /rails/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/schema.rb -------------------------------------------------------------------------------- /rails/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/seeds.rb -------------------------------------------------------------------------------- /rails/db/seeds/empties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/seeds/empties.yml -------------------------------------------------------------------------------- /rails/db/seeds/user_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/db/seeds/user_types.yml -------------------------------------------------------------------------------- /rails/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/lib/bootstrap_paginate_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/bootstrap_paginate_renderer.rb -------------------------------------------------------------------------------- /rails/lib/cycle_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/cycle_helper.rb -------------------------------------------------------------------------------- /rails/lib/empty_migration_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/empty_migration_helper.rb -------------------------------------------------------------------------------- /rails/lib/hub_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/hub_query.rb -------------------------------------------------------------------------------- /rails/lib/random_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/random_name.rb -------------------------------------------------------------------------------- /rails/lib/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/settings.rb -------------------------------------------------------------------------------- /rails/lib/settings/features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/settings/features.rb -------------------------------------------------------------------------------- /rails/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/lib/tasks/bootstrap_email.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/tasks/bootstrap_email.rake -------------------------------------------------------------------------------- /rails/lib/th_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/th_file.rb -------------------------------------------------------------------------------- /rails/lib/thost_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/thost_logger.rb -------------------------------------------------------------------------------- /rails/lib/tw_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/lib/tw_file.rb -------------------------------------------------------------------------------- /rails/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/package.json -------------------------------------------------------------------------------- /rails/public/FeatherWiki-bones_Meadowlark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/FeatherWiki-bones_Meadowlark.js -------------------------------------------------------------------------------- /rails/public/FeatherWiki-plumage_Meadowlark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/FeatherWiki-plumage_Meadowlark.css -------------------------------------------------------------------------------- /rails/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/robots.txt -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.2.3.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.2.4.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.2.5.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.2.6.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.2.7.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.0.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.1.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.2.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.3.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.4.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.5.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.6.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.7.js -------------------------------------------------------------------------------- /rails/public/tiddlywikicore-5.3.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/public/tiddlywikicore-5.3.8.js -------------------------------------------------------------------------------- /rails/scripts/email_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/scripts/email_test.rb -------------------------------------------------------------------------------- /rails/scripts/recover_missing_blobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/scripts/recover_missing_blobs.rb -------------------------------------------------------------------------------- /rails/scripts/thumbnail_migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/scripts/thumbnail_migrate.rb -------------------------------------------------------------------------------- /rails/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/test/controllers/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/admin_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/devise_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/devise_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/home_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/hub_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/hub_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/sites_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/sites_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/subscription_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/subscription_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/tiddlyspot_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/tiddlyspot_controller_test.rb -------------------------------------------------------------------------------- /rails/test/controllers/tiddlywiki_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/controllers/tiddlywiki_controller_test.rb -------------------------------------------------------------------------------- /rails/test/data/minimal_classic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/data/minimal_classic.html -------------------------------------------------------------------------------- /rails/test/data/minimal_encrypted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/data/minimal_encrypted.html -------------------------------------------------------------------------------- /rails/test/data/minimal_tw5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/data/minimal_tw5.html -------------------------------------------------------------------------------- /rails/test/data/minimal_tw5_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/data/minimal_tw5_json.html -------------------------------------------------------------------------------- /rails/test/fixtures/empties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/empties.yml -------------------------------------------------------------------------------- /rails/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/test/fixtures/pay_charges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/pay_charges.yml -------------------------------------------------------------------------------- /rails/test/fixtures/pay_customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/pay_customers.yml -------------------------------------------------------------------------------- /rails/test/fixtures/sites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/sites.yml -------------------------------------------------------------------------------- /rails/test/fixtures/tspot_sites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/tspot_sites.yml -------------------------------------------------------------------------------- /rails/test/fixtures/user_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/user_types.yml -------------------------------------------------------------------------------- /rails/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/fixtures/users.yml -------------------------------------------------------------------------------- /rails/test/helpers/application_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/helpers/application_helper_test.rb -------------------------------------------------------------------------------- /rails/test/helpers/theme_mode_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/helpers/theme_mode_helper_test.rb -------------------------------------------------------------------------------- /rails/test/integration/claim_sites_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/integration/claim_sites_test.rb -------------------------------------------------------------------------------- /rails/test/integration/sites_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/integration/sites_test.rb -------------------------------------------------------------------------------- /rails/test/integration/subscription_flow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/integration/subscription_flow_test.rb -------------------------------------------------------------------------------- /rails/test/integration/user_signup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/integration/user_signup_test.rb -------------------------------------------------------------------------------- /rails/test/mailers/devise_bootstrap_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/mailers/devise_bootstrap_mailer_test.rb -------------------------------------------------------------------------------- /rails/test/mailers/pay_bootstrap_user_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/mailers/pay_bootstrap_user_mailer_test.rb -------------------------------------------------------------------------------- /rails/test/mailers/previews/devise_bootstrap_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/mailers/previews/devise_bootstrap_mailer_preview.rb -------------------------------------------------------------------------------- /rails/test/mailers/previews/pay_bootstrap_user_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/mailers/previews/pay_bootstrap_user_mailer_preview.rb -------------------------------------------------------------------------------- /rails/test/models/attachment_label_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/attachment_label_test.rb -------------------------------------------------------------------------------- /rails/test/models/concerns/subscriber_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/concerns/subscriber_test.rb -------------------------------------------------------------------------------- /rails/test/models/empty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/empty_test.rb -------------------------------------------------------------------------------- /rails/test/models/hub_query_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/hub_query_test.rb -------------------------------------------------------------------------------- /rails/test/models/pay_gem_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/pay_gem_integration_test.rb -------------------------------------------------------------------------------- /rails/test/models/settings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/settings_test.rb -------------------------------------------------------------------------------- /rails/test/models/site_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/site_test.rb -------------------------------------------------------------------------------- /rails/test/models/subscription_state_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/subscription_state_test.rb -------------------------------------------------------------------------------- /rails/test/models/tspot_site_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/tspot_site_test.rb -------------------------------------------------------------------------------- /rails/test/models/tw_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/tw_file_test.rb -------------------------------------------------------------------------------- /rails/test/models/user_subscription_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/user_subscription_integration_test.rb -------------------------------------------------------------------------------- /rails/test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/user_test.rb -------------------------------------------------------------------------------- /rails/test/models/user_type_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/models/user_type_test.rb -------------------------------------------------------------------------------- /rails/test/support/subscription_test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/support/subscription_test_helpers.rb -------------------------------------------------------------------------------- /rails/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/test/test_helper.rb -------------------------------------------------------------------------------- /rails/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/tw_content/empties/classic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.10.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.10.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.10.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.10.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.10.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.10.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.9.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.9.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.9.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/classic/2.9.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/classic/2.9.4.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/1.8.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/1.8.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/1.8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/1.8.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/1.8.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/1.8.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Dove_1.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Dove_1.2.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Tern_1.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Tern_1.3.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Tern_1.3.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Tern_1.3.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Tern_1.4.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Tern_1.4.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.5.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.5.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.5.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.5.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.5.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.5.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.6.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.6.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.6.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.6.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.6.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/feather/Warbler_1.7.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/feather/Warbler_1.7.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/featherx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/featherx.html -------------------------------------------------------------------------------- /rails/tw_content/empties/featherx/1.8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/featherx/1.8.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/sitelet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/sitelet.html -------------------------------------------------------------------------------- /rails/tw_content/empties/sitelet/1.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/sitelet/1.0.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.1.24-prerelease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.1.24-prerelease.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.4.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.5.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.6.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.2.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.2.7.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.4.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.5.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.6.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.7.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5/5.3.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5/5.3.8.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.2.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.2.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.2.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.2.4.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.2.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.2.5.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.2.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.2.6.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.2.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.2.7.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.0.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.1.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.2.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.3.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.4.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.5.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.6.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.7.html -------------------------------------------------------------------------------- /rails/tw_content/empties/tw5x/5.3.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/empties/tw5x/5.3.8.html -------------------------------------------------------------------------------- /rails/tw_content/plugins/thost_upload_plugin.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/tw_content/plugins/thost_upload_plugin.js.erb -------------------------------------------------------------------------------- /rails/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/rails/yarn.lock -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiddlyhost/tiddlyhost-com/HEAD/renovate.json5 --------------------------------------------------------------------------------