├── .backportrc.json ├── .codeclimate.yml ├── .editorconfig ├── .gem_release.yml ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── backport.yml │ ├── brakeman-analysis.yml │ ├── build_test.yml │ ├── lint.yml │ ├── post-release.yml │ ├── prepare-release.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .hound.yml ├── .localeapp └── config.rb ├── .prettierignore ├── .prettierrc ├── .rspec ├── .rubocop.yml ├── .standard.yml ├── .yardopts ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── alchemy_cms.gemspec ├── app ├── assets │ ├── builds │ │ ├── alchemy │ │ │ ├── admin.css │ │ │ ├── admin │ │ │ │ ├── page-select.css │ │ │ │ └── print.css │ │ │ ├── dark-theme.css │ │ │ ├── light-theme.css │ │ │ ├── preview.min.js │ │ │ ├── theme.css │ │ │ └── welcome.css │ │ └── tinymce │ │ │ └── skins │ │ │ ├── content │ │ │ ├── alchemy-dark │ │ │ │ └── content.min.css │ │ │ └── alchemy │ │ │ │ └── content.min.css │ │ │ └── ui │ │ │ ├── alchemy-dark │ │ │ ├── content.min.css │ │ │ └── skin.min.css │ │ │ └── alchemy │ │ │ ├── content.min.css │ │ │ └── skin.min.css │ ├── config │ │ └── alchemy_manifest.js │ └── images │ │ └── alchemy │ │ ├── alchemy-logo.png │ │ ├── alchemy-logo.svg │ │ ├── element_icons │ │ └── layout-bottom-2-line.svg │ │ ├── favicon.ico │ │ ├── icon-white.svg │ │ ├── icon.svg │ │ ├── icons-sprite.svg │ │ └── missing-image.svg ├── components │ ├── alchemy │ │ ├── admin │ │ │ ├── attachment_select.rb │ │ │ ├── element_select.rb │ │ │ ├── icon.rb │ │ │ ├── link_dialog │ │ │ │ ├── anchor_tab.rb │ │ │ │ ├── base_tab.rb │ │ │ │ ├── external_tab.rb │ │ │ │ ├── file_tab.rb │ │ │ │ ├── internal_tab.rb │ │ │ │ └── tabs.rb │ │ │ ├── list_filter.rb │ │ │ ├── locale_select.rb │ │ │ ├── message.rb │ │ │ ├── node_select.rb │ │ │ ├── page_select.rb │ │ │ ├── picture_thumbnail.rb │ │ │ ├── resource │ │ │ │ ├── action.rb │ │ │ │ ├── applied_filter.rb │ │ │ │ ├── cell.rb │ │ │ │ ├── checkbox_filter.rb │ │ │ │ ├── datepicker_filter.rb │ │ │ │ ├── header.rb │ │ │ │ ├── select_filter.rb │ │ │ │ └── table.rb │ │ │ ├── tags_autocomplete.rb │ │ │ ├── tags_list.rb │ │ │ ├── toolbar_button.rb │ │ │ └── update_check.rb │ │ └── ingredients │ │ │ ├── audio_view.rb │ │ │ ├── base_view.rb │ │ │ ├── boolean_view.rb │ │ │ ├── datetime_view.rb │ │ │ ├── file_view.rb │ │ │ ├── headline_view.rb │ │ │ ├── html_view.rb │ │ │ ├── link_view.rb │ │ │ ├── node_view.rb │ │ │ ├── number_view.rb │ │ │ ├── page_view.rb │ │ │ ├── picture_view.rb │ │ │ ├── richtext_view.rb │ │ │ ├── select_view.rb │ │ │ ├── text_view.rb │ │ │ └── video_view.rb │ └── concerns │ │ └── alchemy │ │ └── ingredients │ │ └── link_target.rb ├── controllers │ ├── alchemy │ │ ├── admin │ │ │ ├── attachments_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── clipboard_controller.rb │ │ │ ├── dashboard_controller.rb │ │ │ ├── elements_controller.rb │ │ │ ├── ingredients_controller.rb │ │ │ ├── languages_controller.rb │ │ │ ├── layoutpages_controller.rb │ │ │ ├── legacy_page_urls_controller.rb │ │ │ ├── nodes_controller.rb │ │ │ ├── pages_controller.rb │ │ │ ├── picture_descriptions_controller.rb │ │ │ ├── pictures_controller.rb │ │ │ ├── resources_controller.rb │ │ │ ├── sites_controller.rb │ │ │ ├── styleguide_controller.rb │ │ │ ├── tags_controller.rb │ │ │ └── update_checks_controller.rb │ │ ├── api │ │ │ ├── attachments_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── elements_controller.rb │ │ │ ├── ingredients_controller.rb │ │ │ ├── nodes_controller.rb │ │ │ └── pages_controller.rb │ │ ├── attachments_controller.rb │ │ ├── base_controller.rb │ │ ├── messages_controller.rb │ │ └── pages_controller.rb │ └── concerns │ │ └── alchemy │ │ ├── admin │ │ ├── archive_overlay.rb │ │ ├── crop_action.rb │ │ ├── current_language.rb │ │ ├── picture_descriptions_form_helper.rb │ │ ├── resource_filter.rb │ │ └── uploader_responses.rb │ │ ├── legacy_page_redirects.rb │ │ └── site_redirects.rb ├── decorators │ └── alchemy │ │ ├── element_editor.rb │ │ └── ingredient_editor.rb ├── helpers │ └── alchemy │ │ ├── admin │ │ ├── attachments_helper.rb │ │ ├── base_helper.rb │ │ ├── form_helper.rb │ │ ├── ingredients_helper.rb │ │ ├── navigation_helper.rb │ │ └── pages_helper.rb │ │ ├── base_helper.rb │ │ ├── elements_block_helper.rb │ │ ├── elements_helper.rb │ │ ├── pages_helper.rb │ │ ├── resources_helper.rb │ │ └── url_helper.rb ├── javascript │ ├── alchemy_admin.js │ ├── alchemy_admin │ │ ├── components │ │ │ ├── action.js │ │ │ ├── alchemy_html_element.js │ │ │ ├── attachment_select.js │ │ │ ├── auto_submit.js │ │ │ ├── button.js │ │ │ ├── char_counter.js │ │ │ ├── clipboard_button.js │ │ │ ├── datepicker.js │ │ │ ├── dialog_link.js │ │ │ ├── dom_id_select.js │ │ │ ├── element_editor.js │ │ │ ├── element_editor │ │ │ │ ├── delete_element_button.js │ │ │ │ └── publish_element_button.js │ │ │ ├── element_select.js │ │ │ ├── elements_window.js │ │ │ ├── elements_window_handle.js │ │ │ ├── growl.js │ │ │ ├── icon.js │ │ │ ├── index.js │ │ │ ├── ingredient_group.js │ │ │ ├── link_buttons.js │ │ │ ├── link_buttons │ │ │ │ ├── link_button.js │ │ │ │ └── unlink_button.js │ │ │ ├── list_filter.js │ │ │ ├── message.js │ │ │ ├── node_select.js │ │ │ ├── overlay.js │ │ │ ├── page_publication_fields.js │ │ │ ├── page_select.js │ │ │ ├── picture_thumbnail.js │ │ │ ├── preview_window.js │ │ │ ├── remote_select.js │ │ │ ├── select.js │ │ │ ├── spinner.js │ │ │ ├── tags_autocomplete.js │ │ │ ├── tinymce.js │ │ │ ├── update_check.js │ │ │ ├── uploader.js │ │ │ └── uploader │ │ │ │ ├── file_upload.js │ │ │ │ └── progress.js │ │ ├── confirm_dialog.js │ │ ├── dialog.js │ │ ├── dirty.js │ │ ├── file_editors.js │ │ ├── fixed_elements.js │ │ ├── growler.js │ │ ├── hotkeys.js │ │ ├── i18n.js │ │ ├── image_cropper.js │ │ ├── image_overlay.js │ │ ├── ingredient_anchor_link.js │ │ ├── initializer.js │ │ ├── link_dialog.js │ │ ├── node_tree.js │ │ ├── page_sorter.js │ │ ├── picture_editors.js │ │ ├── picture_selector.js │ │ ├── please_wait_overlay.js │ │ ├── shoelace_theme.js │ │ ├── sitemap.js │ │ ├── sortable_elements.js │ │ ├── spinner.js │ │ ├── templates │ │ │ ├── compiled.js │ │ │ ├── node_folder.hbs │ │ │ └── page_folder.hbs │ │ └── utils │ │ │ ├── ajax.js │ │ │ ├── debounce.js │ │ │ ├── dom_helpers.js │ │ │ ├── events.js │ │ │ ├── format.js │ │ │ ├── max.js │ │ │ └── string_conversions.js │ ├── preview.js │ └── tinymce │ │ ├── icons │ │ └── remixicons │ │ │ └── index.js │ │ └── plugins │ │ └── alchemy_link │ │ └── index.js ├── jobs │ └── alchemy │ │ ├── base_job.rb │ │ ├── delete_picture_job.rb │ │ ├── publish_page_job.rb │ │ └── storage_adapter │ │ └── active_storage │ │ └── sanitize_svg_job.rb ├── mailers │ └── alchemy │ │ ├── base_mailer.rb │ │ └── messages_mailer.rb ├── models │ ├── alchemy │ │ ├── admin │ │ │ ├── filters │ │ │ │ ├── base.rb │ │ │ │ ├── checkbox.rb │ │ │ │ ├── datepicker.rb │ │ │ │ └── select.rb │ │ │ └── resource_name.rb │ │ ├── attachment.rb │ │ ├── base_record.rb │ │ ├── current.rb │ │ ├── eager_loading.rb │ │ ├── element.rb │ │ ├── element │ │ │ ├── definitions.rb │ │ │ ├── element_ingredients.rb │ │ │ └── presenters.rb │ │ ├── element_definition.rb │ │ ├── element_to_page.rb │ │ ├── elements_repository.rb │ │ ├── folded_page.rb │ │ ├── image_cropper_settings.rb │ │ ├── ingredient.rb │ │ ├── ingredient_definition.rb │ │ ├── ingredient_validator.rb │ │ ├── ingredients │ │ │ ├── audio.rb │ │ │ ├── boolean.rb │ │ │ ├── datetime.rb │ │ │ ├── file.rb │ │ │ ├── headline.rb │ │ │ ├── html.rb │ │ │ ├── link.rb │ │ │ ├── node.rb │ │ │ ├── number.rb │ │ │ ├── page.rb │ │ │ ├── picture.rb │ │ │ ├── richtext.rb │ │ │ ├── select.rb │ │ │ ├── text.rb │ │ │ └── video.rb │ │ ├── language.rb │ │ ├── language │ │ │ └── code.rb │ │ ├── legacy_page_url.rb │ │ ├── message.rb │ │ ├── node.rb │ │ ├── page.rb │ │ ├── page │ │ │ ├── definitions.rb │ │ │ ├── fixed_attributes.rb │ │ │ ├── page_elements.rb │ │ │ ├── page_naming.rb │ │ │ ├── page_natures.rb │ │ │ ├── page_scopes.rb │ │ │ ├── publisher.rb │ │ │ └── url_path.rb │ │ ├── page_definition.rb │ │ ├── page_mutex.rb │ │ ├── page_version.rb │ │ ├── permissions.rb │ │ ├── picture.rb │ │ ├── picture_description.rb │ │ ├── picture_thumb.rb │ │ ├── picture_thumb │ │ │ ├── create.rb │ │ │ ├── file_store.rb │ │ │ ├── signature.rb │ │ │ └── uid.rb │ │ ├── picture_variant.rb │ │ ├── resource.rb │ │ ├── searchable_resource.rb │ │ ├── site.rb │ │ ├── site │ │ │ └── layout.rb │ │ ├── storage_adapter.rb │ │ ├── storage_adapter │ │ │ ├── active_storage.rb │ │ │ ├── active_storage │ │ │ │ ├── attachment_url.rb │ │ │ │ ├── picture_url.rb │ │ │ │ └── preprocessor.rb │ │ │ ├── dragonfly.rb │ │ │ └── dragonfly │ │ │ │ ├── attachment_url.rb │ │ │ │ ├── picture_url.rb │ │ │ │ └── preprocessor.rb │ │ └── tag.rb │ └── concerns │ │ └── alchemy │ │ ├── dom_ids.rb │ │ ├── picture_thumbnails.rb │ │ ├── relatable_resource.rb │ │ └── touch_elements.rb ├── serializers │ └── alchemy │ │ ├── attachment_serializer.rb │ │ ├── base_serializer.rb │ │ ├── element_serializer.rb │ │ ├── ingredient_serializer.rb │ │ ├── language_serializer.rb │ │ ├── node_serializer.rb │ │ ├── page_node_serializer.rb │ │ ├── page_serializer.rb │ │ ├── page_tree_serializer.rb │ │ ├── picture_serializer.rb │ │ └── site_serializer.rb ├── services │ └── alchemy │ │ ├── copy_page.rb │ │ ├── delete_elements.rb │ │ ├── dragonfly_to_image_processing.rb │ │ ├── duplicate_element.rb │ │ ├── tag_validations.rb │ │ ├── update_checker.rb │ │ └── update_checks │ │ ├── alchemy_app.rb │ │ └── ruby_gems.rb ├── stylesheets │ ├── alchemy │ │ ├── _custom-properties.scss │ │ ├── _defaults.scss │ │ ├── _extends.scss │ │ ├── _fonts.scss │ │ ├── _mixins.scss │ │ ├── _themes.scss │ │ ├── _variables.scss │ │ ├── admin.scss │ │ ├── admin │ │ │ ├── archive.scss │ │ │ ├── attachment-select.scss │ │ │ ├── attachments.scss │ │ │ ├── base.scss │ │ │ ├── buttons.scss │ │ │ ├── clipboard.scss │ │ │ ├── dashboard.scss │ │ │ ├── dialogs.scss │ │ │ ├── element-select.scss │ │ │ ├── elements.scss │ │ │ ├── errors.scss │ │ │ ├── filters.scss │ │ │ ├── flash.scss │ │ │ ├── flatpickr.scss │ │ │ ├── form_fields.scss │ │ │ ├── forms.scss │ │ │ ├── frame.scss │ │ │ ├── hints.scss │ │ │ ├── icons.scss │ │ │ ├── image_library.scss │ │ │ ├── images.scss │ │ │ ├── labels.scss │ │ │ ├── list_filter.scss │ │ │ ├── lists.scss │ │ │ ├── navigation.scss │ │ │ ├── node-select.scss │ │ │ ├── nodes.scss │ │ │ ├── notices.scss │ │ │ ├── page-select.scss │ │ │ ├── pagination.scss │ │ │ ├── preview_window.scss │ │ │ ├── print.scss │ │ │ ├── resource_info.scss │ │ │ ├── search.scss │ │ │ ├── selects.scss │ │ │ ├── shoelace.scss │ │ │ ├── sitemap.scss │ │ │ ├── spinner.scss │ │ │ ├── tables.scss │ │ │ ├── tags.scss │ │ │ ├── toolbar.scss │ │ │ ├── typography.scss │ │ │ └── upload.scss │ │ ├── dark-theme.scss │ │ ├── light-theme.scss │ │ ├── theme.scss │ │ └── welcome.scss │ └── tinymce │ │ └── skins │ │ ├── content │ │ ├── alchemy-dark │ │ │ └── content.scss │ │ └── alchemy │ │ │ └── content.scss │ │ ├── skintool.json │ │ └── ui │ │ ├── alchemy-dark │ │ ├── content.scss │ │ └── skin.scss │ │ └── alchemy │ │ ├── content.scss │ │ ├── fonts │ │ └── tinymce-mobile.woff │ │ └── skin.scss └── views │ ├── alchemy │ ├── _edit_mode.html.erb │ ├── _menubar.html.erb │ ├── _preview_mode_code.html.erb │ ├── admin │ │ ├── attachments │ │ │ ├── _archive_overlay.html.erb │ │ │ ├── _file_to_assign.html.erb │ │ │ ├── _files_list.html.erb │ │ │ ├── _library_sidebar.html.erb │ │ │ ├── _overlay_file_list.html.erb │ │ │ ├── _replace_button.html.erb │ │ │ ├── _sorting_select.html.erb │ │ │ ├── _tag_list.html.erb │ │ │ ├── assign.js.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ │ ├── clipboard │ │ │ ├── _button.html.erb │ │ │ ├── _update_nested_element_button.turbo_stream.erb │ │ │ ├── clear.turbo_stream.erb │ │ │ ├── index.html.erb │ │ │ ├── insert.turbo_stream.erb │ │ │ └── remove.turbo_stream.erb │ │ ├── crop.html.erb │ │ ├── dashboard │ │ │ ├── _dashboard.html.erb │ │ │ ├── _left_column.html.erb │ │ │ ├── _right_column.html.erb │ │ │ ├── _top.html.erb │ │ │ ├── help.html.erb │ │ │ ├── index.html.erb │ │ │ ├── info.html.erb │ │ │ └── widgets │ │ │ │ ├── _locked_pages.html.erb │ │ │ │ ├── _recent_pages.html.erb │ │ │ │ ├── _sites.html.erb │ │ │ │ └── _users.html.erb │ │ ├── elements │ │ │ ├── _add_nested_element_form.html.erb │ │ │ ├── _element.html.erb │ │ │ ├── _footer.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _header.html.erb │ │ │ ├── _toolbar.html.erb │ │ │ ├── create.turbo_stream.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── ingredients │ │ │ ├── _audio_fields.html.erb │ │ │ ├── _dom_id_fields.html.erb │ │ │ ├── _file_fields.html.erb │ │ │ ├── _headline_fields.html.erb │ │ │ ├── _picture_fields.html.erb │ │ │ ├── _text_fields.html.erb │ │ │ ├── _video_fields.html.erb │ │ │ ├── edit.html.erb │ │ │ └── update.turbo_stream.erb │ │ ├── languages │ │ │ ├── _form.html.erb │ │ │ ├── _table.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── layoutpages │ │ │ ├── _layoutpage.html.erb │ │ │ ├── edit.html.erb │ │ │ └── index.html.erb │ │ ├── leave.html.erb │ │ ├── legacy_page_urls │ │ │ ├── _label.html.erb │ │ │ ├── _legacy_page_url.html.erb │ │ │ ├── _new.html.erb │ │ │ ├── _table.html.erb │ │ │ ├── _update.turbo_stream.erb │ │ │ ├── create.turbo_stream.erb │ │ │ ├── destroy.turbo_stream.erb │ │ │ ├── edit.html.erb │ │ │ ├── show.html.erb │ │ │ └── update.turbo_stream.erb │ │ ├── nodes │ │ │ ├── _form.html.erb │ │ │ ├── _label.html.erb │ │ │ ├── _node.html.erb │ │ │ ├── _page_nodes.html.erb │ │ │ ├── _update.turbo_stream.erb │ │ │ ├── create.turbo_stream.erb │ │ │ ├── destroy.turbo_stream.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── pages │ │ │ ├── _create_language_form.html.erb │ │ │ ├── _current_page.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _legacy_urls.html.erb │ │ │ ├── _locked_page.html.erb │ │ │ ├── _new_page_form.html.erb │ │ │ ├── _page.html.erb │ │ │ ├── _page_infos.html.erb │ │ │ ├── _page_layout_filter.html.erb │ │ │ ├── _page_status.html.erb │ │ │ ├── _publication_fields.html.erb │ │ │ ├── _sitemap.html.erb │ │ │ ├── _table.html.erb │ │ │ ├── _toolbar.html.erb │ │ │ ├── configure.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── flush.turbo_stream.erb │ │ │ ├── index.html.erb │ │ │ ├── info.html.erb │ │ │ ├── locked.html.erb │ │ │ ├── new.html.erb │ │ │ ├── show.html.erb │ │ │ ├── unlock.js.erb │ │ │ └── update.turbo_stream.erb │ │ ├── partials │ │ │ ├── _autocomplete_tag_list.html.erb │ │ │ ├── _flash_notices.html.erb │ │ │ ├── _language_tree_select.html.erb │ │ │ ├── _main_navigation_entry.html.erb │ │ │ ├── _overlay_search_form.html.erb │ │ │ ├── _routes.html.erb │ │ │ ├── _search_form.html.erb │ │ │ ├── _site_select.html.erb │ │ │ └── _sub_navigation.html.erb │ │ ├── picture_descriptions │ │ │ ├── _form.html.erb │ │ │ └── edit.html.erb │ │ ├── pictures │ │ │ ├── _archive.html.erb │ │ │ ├── _archive_overlay.html.erb │ │ │ ├── _filter_and_size_bar.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _infos.html.erb │ │ │ ├── _library_sidebar.html.erb │ │ │ ├── _picture.html.erb │ │ │ ├── _picture_description_field.html.erb │ │ │ ├── _picture_to_assign.html.erb │ │ │ ├── _sorting_select.html.erb │ │ │ ├── _tag_list.html.erb │ │ │ ├── assign.js.erb │ │ │ ├── edit_multiple.html.erb │ │ │ ├── index.html.erb │ │ │ ├── show.html.erb │ │ │ └── update.turbo_stream.erb │ │ ├── resources │ │ │ ├── _applied_filters.html.erb │ │ │ ├── _filter_bar.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _pagination.html.erb │ │ │ ├── _per_page_select.html.erb │ │ │ ├── _resource_table.html.erb │ │ │ ├── _resource_usage_info.html.erb │ │ │ ├── _table_header.html.erb │ │ │ ├── _tag_list.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.csv.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── sites │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── styleguide │ │ │ └── index.html.erb │ │ ├── tags │ │ │ ├── _radio_tag.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── tinymce │ │ │ └── _setup.html.erb │ │ ├── translations │ │ │ └── _en.js │ │ └── uploader │ │ │ ├── _button.html.erb │ │ │ └── _setup.html.erb │ ├── attachments │ │ └── show.html.erb │ ├── base │ │ ├── 403.html.erb │ │ ├── 500.html.erb │ │ ├── 500.turbo_stream.erb │ │ ├── error_notice.html.erb │ │ ├── error_notice.js.erb │ │ ├── permission_denied.js.erb │ │ └── redirect.js.erb │ ├── breadcrumb │ │ ├── _page.html.erb │ │ ├── _separator.html.erb │ │ └── _wrapper.html.erb │ ├── elements │ │ └── _view_not_found.html.erb │ ├── ingredients │ │ ├── _audio_editor.html.erb │ │ ├── _boolean_editor.html.erb │ │ ├── _datetime_editor.html.erb │ │ ├── _file_editor.html.erb │ │ ├── _headline_editor.html.erb │ │ ├── _html_editor.html.erb │ │ ├── _link_editor.html.erb │ │ ├── _node_editor.html.erb │ │ ├── _number_editor.html.erb │ │ ├── _page_editor.html.erb │ │ ├── _picture_editor.html.erb │ │ ├── _richtext_editor.html.erb │ │ ├── _select_editor.html.erb │ │ ├── _text_editor.html.erb │ │ ├── _video_editor.html.erb │ │ └── shared │ │ │ ├── _anchor.html.erb │ │ │ ├── _link_tools.html.erb │ │ │ ├── _picture_css_class.html.erb │ │ │ └── _picture_tools.html.erb │ ├── language_links │ │ ├── _language.html.erb │ │ └── _spacer.html.erb │ ├── messages_mailer │ │ ├── contact_form_mail.de.text.erb │ │ ├── contact_form_mail.en.text.erb │ │ ├── contact_form_mail.es.text.erb │ │ └── new.html.erb │ ├── no_index.html.erb │ ├── pages │ │ ├── _meta_data.html.erb │ │ ├── show.html.erb │ │ └── sitemap.xml.erb │ └── welcome.html.erb │ ├── kaminari │ └── alchemy │ │ ├── _first_page.html.erb │ │ ├── _gap.html.erb │ │ ├── _last_page.html.erb │ │ ├── _next_page.html.erb │ │ ├── _page.html.erb │ │ ├── _paginator.html.erb │ │ └── _prev_page.html.erb │ └── layouts │ └── alchemy │ ├── admin.html.erb │ └── sitemap.xml.erb ├── bin ├── importmap ├── rails ├── rspec ├── setup └── start ├── bun.lockb ├── bundles ├── remixicon.mjs ├── shoelace.js └── tinymce.js ├── config ├── alchemy │ ├── config.yml │ └── modules.yml ├── brakeman.ignore ├── importmap.rb ├── initializers │ ├── dragonfly.rb │ ├── mime_types.rb │ ├── mini_profiler.rb │ ├── rails_live_reload.rb │ └── simple_form.rb ├── locales │ └── alchemy.en.yml ├── routes.rb └── spring.rb ├── db └── migrate │ ├── 20230121212637_alchemy_six_point_one.rb │ ├── 20230123112425_add_searchable_to_alchemy_pages.rb │ ├── 20230505132743_add_indexes_to_alchemy_pictures.rb │ ├── 20231113104432_create_page_mutexes.rb │ ├── 20240314105244_create_alchemy_picture_descriptions.rb │ ├── 20250626160259_add_unique_index_to_picture_descriptions.rb │ └── 20250905140323_add_created_at_index_to_pictures_and_attachments.rb ├── eslint.config.js ├── lib ├── alchemy.rb ├── alchemy │ ├── ability_helper.rb │ ├── admin │ │ ├── locale.rb │ │ └── preview_url.rb │ ├── auth_accessors.rb │ ├── cache_digests │ │ └── template_tracker.rb │ ├── config_missing.rb │ ├── configuration.rb │ ├── configuration │ │ ├── base_option.rb │ │ ├── boolean_option.rb │ │ ├── class_option.rb │ │ ├── collection_option.rb │ │ ├── configuration_option.rb │ │ ├── integer_option.rb │ │ ├── pathname_option.rb │ │ ├── regexp_option.rb │ │ ├── string_option.rb │ │ └── symbol_option.rb │ ├── configuration_methods.rb │ ├── configurations │ │ ├── default_language.rb │ │ ├── default_site.rb │ │ ├── format_matchers.rb │ │ ├── importmap.rb │ │ ├── mailer.rb │ │ ├── main.rb │ │ ├── page_cache.rb │ │ ├── preview.rb │ │ ├── sitemap.rb │ │ └── uploader.rb │ ├── controller_actions.rb │ ├── deprecation.rb │ ├── dev_support │ │ └── live_reload_watcher.rb │ ├── dragonfly │ │ └── processors │ │ │ ├── auto_orient.rb │ │ │ ├── crop_resize.rb │ │ │ └── thumbnail.rb │ ├── elements_finder.rb │ ├── engine.rb │ ├── error_tracking.rb │ ├── error_tracking │ │ └── error_logger.rb │ ├── errors.rb │ ├── filetypes.rb │ ├── forms │ │ └── builder.rb │ ├── hints.rb │ ├── i18n.rb │ ├── install │ │ └── tasks.rb │ ├── logger.rb │ ├── modules.rb │ ├── name_conversions.rb │ ├── on_page_layout.rb │ ├── on_page_layout │ │ └── callbacks_runner.rb │ ├── paths.rb │ ├── propshaft │ │ └── tinymce_asset.rb │ ├── routing_constraints.rb │ ├── seeder.rb │ ├── shell.rb │ ├── svg_scrubber.rb │ ├── taggable.rb │ ├── tasks │ │ ├── tidy.rb │ │ └── usage.rb │ ├── test_support.rb │ ├── test_support │ │ ├── capybara_helpers.rb │ │ ├── config_stubbing.rb │ │ ├── current_language_shared_examples.rb │ │ ├── factories │ │ │ ├── attachment_factory.rb │ │ │ ├── dummy_user_factory.rb │ │ │ ├── element_factory.rb │ │ │ ├── ingredient_factory.rb │ │ │ ├── language_factory.rb │ │ │ ├── node_factory.rb │ │ │ ├── page_factory.rb │ │ │ ├── page_version_factory.rb │ │ │ ├── picture_factory.rb │ │ │ ├── picture_thumb_factory.rb │ │ │ └── site_factory.rb │ │ ├── fixtures │ │ │ └── image.png │ │ ├── having_crop_action_examples.rb │ │ ├── having_picture_thumbnails_examples.rb │ │ ├── integration_helpers.rb │ │ ├── relatable_resource_examples.rb │ │ ├── rspec_matchers.rb │ │ ├── shared_contexts.rb │ │ ├── shared_dom_ids_examples.rb │ │ ├── shared_ingredient_editor_examples.rb │ │ ├── shared_ingredient_examples.rb │ │ ├── shared_link_tab_examples.rb │ │ └── shared_uploader_examples.rb │ ├── tinymce.rb │ ├── upgrader.rb │ ├── upgrader │ │ ├── .keep │ │ ├── eight_zero.rb │ │ └── tasks │ │ │ └── .keep │ └── version.rb ├── alchemy_cms.rb ├── generators │ └── alchemy │ │ ├── base.rb │ │ ├── elements │ │ ├── elements_generator.rb │ │ └── templates │ │ │ ├── view.html.erb │ │ │ ├── view.html.haml │ │ │ └── view.html.slim │ │ ├── ingredient │ │ ├── ingredient_generator.rb │ │ └── templates │ │ │ ├── editor.html.erb │ │ │ ├── model.rb.tt │ │ │ └── view_component.rb.tt │ │ ├── install │ │ ├── files │ │ │ ├── _article.html.erb │ │ │ ├── _standard.html.erb │ │ │ ├── alchemy.en.yml │ │ │ ├── application.html.erb │ │ │ └── custom.css │ │ ├── install_generator.rb │ │ └── templates │ │ │ ├── alchemy.rb.tt │ │ │ ├── dragonfly.rb.tt │ │ │ ├── elements.yml.tt │ │ │ ├── menus.yml.tt │ │ │ └── page_layouts.yml.tt │ │ ├── menus │ │ ├── menus_generator.rb │ │ └── templates │ │ │ ├── node.html.erb │ │ │ ├── node.html.haml │ │ │ ├── node.html.slim │ │ │ ├── wrapper.html.erb │ │ │ ├── wrapper.html.haml │ │ │ └── wrapper.html.slim │ │ ├── module │ │ ├── module_generator.rb │ │ └── templates │ │ │ ├── ability.rb.tt │ │ │ ├── controller.rb.tt │ │ │ └── module_config.rb.tt │ │ ├── page_layouts │ │ ├── page_layouts_generator.rb │ │ └── templates │ │ │ ├── layout.html.erb │ │ │ ├── layout.html.haml │ │ │ └── layout.html.slim │ │ ├── site_layouts │ │ ├── site_layouts_generator.rb │ │ └── templates │ │ │ ├── layout.html.erb │ │ │ ├── layout.html.haml │ │ │ └── layout.html.slim │ │ └── views │ │ └── views_generator.rb ├── non_stupid_digest_assets.rb └── tasks │ └── alchemy │ ├── assets.rake │ ├── db.rake │ ├── install.rake │ ├── sitemap.rake │ ├── thumbnails.rake │ ├── tidy.rake │ ├── upgrade.rake │ └── usage.rake ├── package.json ├── rollup.config.mjs ├── spec ├── components │ └── alchemy │ │ ├── admin │ │ ├── element_select_spec.rb │ │ ├── icon_spec.rb │ │ ├── link_dialog │ │ │ ├── anchor_tab_spec.rb │ │ │ ├── base_tab_spec.rb │ │ │ ├── external_tab_spec.rb │ │ │ ├── file_tab_spec.rb │ │ │ ├── internal_tab_spec.rb │ │ │ └── tabs_spec.rb │ │ ├── locale_select_spec.rb │ │ ├── message_spec.rb │ │ ├── node_select_spec.rb │ │ ├── page_select_spec.rb │ │ ├── picture_thumbnail_spec.rb │ │ ├── resource │ │ │ ├── action_spec.rb │ │ │ ├── applied_filter_spec.rb │ │ │ ├── cell_spec.rb │ │ │ ├── checkbox_filter_spec.rb │ │ │ ├── datepicker_filter_spec.rb │ │ │ ├── header_spec.rb │ │ │ ├── select_filter_spec.rb │ │ │ └── table_spec.rb │ │ ├── tags_autocomplete_spec.rb │ │ ├── tags_list_spec.rb │ │ └── toolbar_button_spec.rb │ │ └── ingredients │ │ ├── audio_view_spec.rb │ │ ├── base_view_spec.rb │ │ ├── boolean_view_spec.rb │ │ ├── datetime_view_spec.rb │ │ ├── file_view_spec.rb │ │ ├── headline_view_spec.rb │ │ ├── html_view_spec.rb │ │ ├── link_view_spec.rb │ │ ├── node_view_spec.rb │ │ ├── number_view_spec.rb │ │ ├── page_view_spec.rb │ │ ├── picture_view_spec.rb │ │ ├── richtext_view_spec.rb │ │ ├── select_view_spec.rb │ │ ├── text_view_spec.rb │ │ └── video_view_spec.rb ├── controllers │ └── alchemy │ │ ├── admin │ │ ├── attachments_controller_spec.rb │ │ ├── base_controller_spec.rb │ │ ├── clipboard_controller_spec.rb │ │ ├── dashboard_controller_spec.rb │ │ ├── elements_controller_spec.rb │ │ ├── ingredients_controller_spec.rb │ │ ├── languages_controller_spec.rb │ │ ├── layoutpages_controller_spec.rb │ │ ├── legacy_page_urls_controller_spec.rb │ │ ├── nodes_controller_spec.rb │ │ ├── pages_controller_spec.rb │ │ ├── pictures_controller_spec.rb │ │ ├── resources_controller_spec.rb │ │ ├── sites_controller_spec.rb │ │ ├── tags_controller_spec.rb │ │ ├── translations_spec.rb │ │ └── update_checks_controller_spec.rb │ │ ├── api │ │ ├── elements_controller_spec.rb │ │ ├── ingredients_controller_spec.rb │ │ └── pages_controller_spec.rb │ │ ├── attachments_controller_spec.rb │ │ ├── base_controller_spec.rb │ │ ├── messages_controller_spec.rb │ │ ├── on_page_layout_mixin_spec.rb │ │ └── pages_controller_spec.rb ├── decorators │ └── alchemy │ │ ├── element_editor_spec.rb │ │ └── ingredient_editor_spec.rb ├── dummy │ ├── Gemfile │ ├── Procfile.dev │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── builds │ │ │ │ └── .keep │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ ├── alchemy │ │ │ │ │ └── element_icons │ │ │ │ │ │ ├── article.svg │ │ │ │ │ │ ├── download-2-line.svg │ │ │ │ │ │ ├── font-size.svg │ │ │ │ │ │ ├── gallery-view.svg │ │ │ │ │ │ ├── image-2-line.svg │ │ │ │ │ │ ├── infinity-line.svg │ │ │ │ │ │ ├── layout-column-line.svg │ │ │ │ │ │ ├── mail-line.svg │ │ │ │ │ │ ├── news-line.svg │ │ │ │ │ │ ├── slideshow-view.svg │ │ │ │ │ │ ├── text-block.svg │ │ │ │ │ │ └── text-snippet.svg │ │ │ │ └── missing-image.png │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ ├── alchemy │ │ │ │ ├── admin │ │ │ │ │ └── custom.css │ │ │ │ └── elements │ │ │ │ │ ├── _all_you_can_eat.scss │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _index.scss │ │ │ │ │ └── _slider.scss │ │ │ │ └── application.scss │ │ ├── controllers │ │ │ ├── admin │ │ │ │ ├── bookings_controller.rb │ │ │ │ ├── events_controller.rb │ │ │ │ ├── locations_controller.rb │ │ │ │ └── series_controller.rb │ │ │ ├── application_controller.rb │ │ │ ├── login_controller.rb │ │ │ └── ns │ │ │ │ └── locations_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── mailers │ │ │ └── .gitkeep │ │ ├── models │ │ │ ├── ability.rb │ │ │ ├── booking.rb │ │ │ ├── dummy_user.rb │ │ │ ├── event.rb │ │ │ ├── location.rb │ │ │ └── series.rb │ │ └── views │ │ │ ├── alchemy │ │ │ ├── elements │ │ │ │ ├── _all_you_can_eat.html.erb │ │ │ │ ├── _article.html.erb │ │ │ │ ├── _bild.html.erb │ │ │ │ ├── _contactform.html.erb │ │ │ │ ├── _download.html.erb │ │ │ │ ├── _erb_element.html.erb │ │ │ │ ├── _gallery.html.erb │ │ │ │ ├── _gallery_picture.html.erb │ │ │ │ ├── _header.html.erb │ │ │ │ ├── _headline.html.erb │ │ │ │ ├── _left_column.html.erb │ │ │ │ ├── _menu.html.erb │ │ │ │ ├── _news.html.erb │ │ │ │ ├── _other_headline.html.erb │ │ │ │ ├── _right_column.html.erb │ │ │ │ ├── _search.html.erb │ │ │ │ ├── _slide.html.erb │ │ │ │ ├── _slider.html.erb │ │ │ │ └── _text.html.erb │ │ │ ├── menus │ │ │ │ ├── footer_navigation │ │ │ │ │ ├── _node.html.erb │ │ │ │ │ └── _wrapper.html.erb │ │ │ │ └── main_menu │ │ │ │ │ ├── _node.html.erb │ │ │ │ │ └── _wrapper.html.erb │ │ │ └── page_layouts │ │ │ │ ├── _everything.html.erb │ │ │ │ └── _standard.html.erb │ │ │ ├── layouts │ │ │ ├── application.html.erb │ │ │ └── custom.html.erb │ │ │ └── ns │ │ │ └── locations │ │ │ └── index.html │ ├── bin │ │ ├── bundle │ │ ├── dev │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ └── update │ ├── config.ru │ ├── config │ │ ├── alchemy │ │ │ ├── config.yml │ │ │ ├── elements.yml │ │ │ ├── menus.yml │ │ │ ├── page_layouts.yml │ │ │ └── test.config.yml │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── active_record_query_trace.rb │ │ │ ├── alchemy.rb │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── dragonfly.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── permissions_policy.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ ├── alchemy.de.yml │ │ │ ├── alchemy.en.yml │ │ │ ├── alchemy.kl.yml │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20121026104128_create_events.rb │ │ │ ├── 20130328101418_create_locations.rb │ │ │ ├── 20131209225243_create_dummy_users.rb │ │ │ ├── 20180409171801_create_series.rb │ │ │ ├── 20190417070726_create_bookings.rb │ │ │ ├── 20211105175532_add_event_type_to_events.rb │ │ │ ├── 20230119091654_gutentag_tables.gutentag.rb │ │ │ ├── 20230119091655_gutentag_cache_counter.gutentag.rb │ │ │ ├── 20230119091656_no_null_counters.gutentag.rb │ │ │ ├── 20230123105255_alchemy_six_point_one.alchemy.rb │ │ │ ├── 20230123105660_add_searchable_to_alchemy_pages.alchemy.rb │ │ │ ├── 20230505132743_add_indexes_to_alchemy_pictures.rb │ │ │ ├── 20231113104432_create_page_mutexes.rb │ │ │ ├── 20240411155901_create_alchemy_picture_descriptions.alchemy.rb │ │ │ ├── 20240611151253_create_active_storage_tables.active_storage.rb │ │ │ ├── 20250626160417_add_unique_index_to_picture_descriptions.alchemy.rb │ │ │ └── 20250905140502_add_created_at_index_to_pictures_and_attachments.alchemy.rb │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib │ │ └── assets │ │ │ └── .gitkeep │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico ├── factories.rb ├── features │ ├── admin │ │ ├── admin_layout_spec.rb │ │ ├── attachment_library_spec.rb │ │ ├── dashboard_spec.rb │ │ ├── edit_elements_feature_spec.rb │ │ ├── ingredient_pictures_feature_spec.rb │ │ ├── language_tree_feature_spec.rb │ │ ├── languages_features_spec.rb │ │ ├── legacy_page_url_management_spec.rb │ │ ├── link_overlay_spec.rb │ │ ├── locale_select_feature_spec.rb │ │ ├── locked_page_feature_spec.rb │ │ ├── menus_features_spec.rb │ │ ├── modules_integration_spec.rb │ │ ├── navigation_feature_spec.rb │ │ ├── node_select_feature_spec.rb │ │ ├── nodes_management_spec.rb │ │ ├── page_creation_feature_spec.rb │ │ ├── page_destroy_feature_spec.rb │ │ ├── page_editing_feature_spec.rb │ │ ├── page_info_feature_spec.rb │ │ ├── page_list_feature_spec.rb │ │ ├── picture_assignment_overlay_spec.rb │ │ ├── picture_library_integration_spec.rb │ │ ├── resources_integration_spec.rb │ │ ├── site_editing_spec.rb │ │ ├── site_select_feature_spec.rb │ │ ├── tags_integration_spec.rb │ │ └── tinymce_feature_spec.rb │ ├── navigation_spec.rb │ ├── page_feature_spec.rb │ ├── page_redirects_spec.rb │ ├── page_seeder_spec.rb │ ├── security_spec.rb │ └── user_seeder_spec.rb ├── fixtures │ ├── animated.png │ ├── config.yml │ ├── files │ │ ├── 500x500.png │ │ ├── 80x60.png │ │ ├── animated.gif │ │ ├── archive.zip │ │ ├── bad.svg │ │ ├── bad_fragment.svg │ │ ├── file.pdf │ │ ├── icon.svg │ │ ├── image with spaces.png │ │ ├── image.png │ │ ├── image2.PNG │ │ ├── image3.jpeg │ │ ├── image4.jpg │ │ ├── image5.webp │ │ └── my FileNämü.png │ ├── pages.yml │ ├── pages_with_two_roots.yml │ └── users.yml ├── helpers │ └── alchemy │ │ ├── admin │ │ ├── attachments_helper_spec.rb │ │ ├── base_helper_spec.rb │ │ ├── form_helper_spec.rb │ │ ├── ingredients_helper_spec.rb │ │ ├── navigation_helper_spec.rb │ │ └── pages_helper_spec.rb │ │ ├── base_helper_spec.rb │ │ ├── elements_block_helper_spec.rb │ │ ├── elements_helper_spec.rb │ │ ├── pages_helper_spec.rb │ │ ├── resources_helper_spec.rb │ │ └── url_helper_spec.rb ├── javascript │ └── alchemy_admin │ │ ├── components │ │ ├── action.spec.js │ │ ├── alchemy_html_element.spec.js │ │ ├── button.spec.js │ │ ├── char_counter.spec.js │ │ ├── component.helper.js │ │ ├── datepicker.spec.js │ │ ├── dialog_link.spec.js │ │ ├── element_editor.spec.js │ │ ├── element_editor │ │ │ └── publish_element_button.spec.js │ │ ├── growl.spec.js │ │ ├── icon.spec.js │ │ ├── ingredient_group.spec.js │ │ ├── link_buttons │ │ │ ├── link_button.spec.js │ │ │ └── unlink_button.spec.js │ │ ├── message.spec.js │ │ ├── node_select.spec.js │ │ ├── overlay.spec.js │ │ ├── page_publication_fields.spec.js │ │ ├── page_select.spec.js │ │ ├── picture_thumbnail.spec.js │ │ ├── preview_window.spec.js │ │ ├── select.spec.js │ │ ├── spinner.spec.js │ │ ├── tags_autocomplete.spec.js │ │ ├── tinymce.spec.js │ │ ├── update_check.spec.js │ │ ├── uploader.spec.js │ │ └── uploader │ │ │ ├── file_upload.spec.js │ │ │ └── progress.spec.js │ │ ├── i18n.spec.js │ │ ├── image_cropper.spec.js │ │ ├── ingredient_anchor_link.spec.js │ │ ├── mocks │ │ └── matchMedia.js │ │ ├── picture_editors.spec.js │ │ ├── picture_selector.spec.js │ │ ├── setup.js │ │ ├── translations.helper.js │ │ └── utils │ │ ├── ajax.spec.js │ │ ├── debounce.spec.js │ │ ├── events.spec.js │ │ ├── format.spec.js │ │ ├── max.spec.js │ │ └── string_conversions.spec.js ├── jobs │ └── alchemy │ │ ├── delete_picture_job_spec.rb │ │ ├── publish_page_job_spec.rb │ │ └── storage_adapter │ │ └── active_storage │ │ └── sanitize_svg_job_spec.rb ├── lib │ └── alchemy │ │ └── svg_scrubber_spec.rb ├── libraries │ ├── admin │ │ └── preview_url_spec.rb │ ├── alchemy │ │ ├── configuration │ │ │ ├── boolean_option_spec.rb │ │ │ ├── collection_option_spec.rb │ │ │ ├── configuration_option_spec.rb │ │ │ ├── pathname_option_spec.rb │ │ │ └── symbol_option_spec.rb │ │ ├── configuration_spec.rb │ │ ├── configurations │ │ │ └── main_spec.rb │ │ ├── engine_spec.rb │ │ ├── error_tracking │ │ │ └── error_logger_spec.rb │ │ ├── install │ │ │ └── tasks_spec.rb │ │ └── tasks │ │ │ └── usage_spec.rb │ ├── alchemy_spec.rb │ ├── auth_accessors_spec.rb │ ├── configuration_methods_spec.rb │ ├── controller_actions_spec.rb │ ├── dragonfly │ │ └── processors │ │ │ ├── auto_orient_spec.rb │ │ │ ├── crop_resize_spec.rb │ │ │ └── thumbnail_spec.rb │ ├── elements_finder_spec.rb │ ├── forms │ │ └── builder_spec.rb │ ├── i18n_spec.rb │ ├── logger_spec.rb │ ├── modules_spec.rb │ ├── non_stupid_digest_assets_spec.rb │ ├── paths_spec.rb │ ├── permissions_spec.rb │ ├── shell_spec.rb │ ├── template_tracker_spec.rb │ ├── tinymce_spec.rb │ └── userstamp_spec.rb ├── mailers │ └── alchemy │ │ └── messages_mailer_spec.rb ├── models │ ├── alchemy │ │ ├── admin │ │ │ ├── filters │ │ │ │ ├── checkbox_spec.rb │ │ │ │ ├── datepicker_spec.rb │ │ │ │ └── select_spec.rb │ │ │ └── resource_name_spec.rb │ │ ├── attachment_spec.rb │ │ ├── current_spec.rb │ │ ├── eager_loading_spec.rb │ │ ├── element_definition_spec.rb │ │ ├── element_ingredients_spec.rb │ │ ├── element_spec.rb │ │ ├── element_to_page_spec.rb │ │ ├── elements_repository_spec.rb │ │ ├── folded_page_spec.rb │ │ ├── image_cropper_settings_spec.rb │ │ ├── ingredient_definition_spec.rb │ │ ├── ingredient_spec.rb │ │ ├── ingredient_validator_spec.rb │ │ ├── ingredients │ │ │ ├── audio_spec.rb │ │ │ ├── boolean_spec.rb │ │ │ ├── datetime_spec.rb │ │ │ ├── file_spec.rb │ │ │ ├── headline_spec.rb │ │ │ ├── html_spec.rb │ │ │ ├── link_spec.rb │ │ │ ├── node_spec.rb │ │ │ ├── number_spec.rb │ │ │ ├── page_spec.rb │ │ │ ├── picture_spec.rb │ │ │ ├── richtext_spec.rb │ │ │ ├── select_spec.rb │ │ │ ├── text_spec.rb │ │ │ └── video_spec.rb │ │ ├── language_spec.rb │ │ ├── legacy_page_url_spec.rb │ │ ├── message_spec.rb │ │ ├── node_spec.rb │ │ ├── page │ │ │ ├── definitions_spec.rb │ │ │ ├── fixed_attributes_spec.rb │ │ │ ├── publisher_spec.rb │ │ │ └── url_path_spec.rb │ │ ├── page_definition_spec.rb │ │ ├── page_mutex_spec.rb │ │ ├── page_spec.rb │ │ ├── page_version_spec.rb │ │ ├── picture_description_spec.rb │ │ ├── picture_spec.rb │ │ ├── picture_thumb │ │ │ ├── create_spec.rb │ │ │ ├── file_store_spec.rb │ │ │ └── uid_spec.rb │ │ ├── picture_thumb_spec.rb │ │ ├── picture_variant_spec.rb │ │ ├── resource_spec.rb │ │ ├── searchable_resource_spec.rb │ │ ├── site_spec.rb │ │ ├── storage_adapter │ │ │ ├── active_storage │ │ │ │ ├── attachment_url_spec.rb │ │ │ │ ├── picture_url_spec.rb │ │ │ │ └── preprocessor_spec.rb │ │ │ ├── active_storage_spec.rb │ │ │ ├── dragonfly │ │ │ │ ├── attachment_url_spec.rb │ │ │ │ ├── picture_url_spec.rb │ │ │ │ └── preprocessor_spec.rb │ │ │ └── dragonfly_spec.rb │ │ ├── storage_adapter_spec.rb │ │ └── tag_spec.rb │ └── gutentag │ │ └── tag_spec.rb ├── rails_helper.rb ├── requests │ └── alchemy │ │ ├── admin │ │ ├── elements_controller_spec.rb │ │ ├── pages_controller_spec.rb │ │ ├── pictures_controller_spec.rb │ │ ├── resources_requests_spec.rb │ │ └── site_requests_spec.rb │ │ ├── api │ │ ├── nodes_controller_spec.rb │ │ └── pages_controller_spec.rb │ │ ├── legacy_page_redirecting_spec.rb │ │ ├── page_request_caching_spec.rb │ │ ├── site_requests_spec.rb │ │ └── sitemap_spec.rb ├── routing │ ├── api_routing_spec.rb │ └── routing_spec.rb ├── serializers │ └── alchemy │ │ ├── attachment_serializer_spec.rb │ │ ├── element_serializer_spec.rb │ │ ├── language_serializer_spec.rb │ │ ├── node_serializer_spec.rb │ │ ├── page_serializer_spec.rb │ │ └── site_serializer_spec.rb ├── services │ └── alchemy │ │ ├── copy_page_spec.rb │ │ ├── delete_elements_spec.rb │ │ ├── dragonfly_to_image_processing_spec.rb │ │ ├── duplicate_element_spec.rb │ │ ├── update_checker_spec.rb │ │ └── update_checks │ │ ├── alcheny_app_spec.rb │ │ └── ruby_gems_spec.rb ├── spec_helper.rb ├── support │ ├── custom_news_elements_finder.rb │ ├── dragonfly_test_app.rb │ ├── file_name_examples.rb │ └── hint_examples.rb └── views │ ├── admin │ ├── attachments │ │ └── show_spec.rb │ └── pictures │ │ └── show_spec.rb │ ├── alchemy │ ├── admin │ │ ├── elements │ │ │ └── element_view_spec.rb │ │ ├── ingredients │ │ │ └── edit_spec.rb │ │ ├── partials │ │ │ └── _main_navigation_entry.html.erb_spec.rb │ │ └── uploader │ │ │ └── _button.html.erb_spec.rb │ └── ingredients │ │ ├── audio_editor_spec.rb │ │ ├── boolean_editor_spec.rb │ │ ├── datetime_editor_spec.rb │ │ ├── file_editor_spec.rb │ │ ├── headline_editor_spec.rb │ │ ├── html_editor_spec.rb │ │ ├── link_editor_spec.rb │ │ ├── node_editor_spec.rb │ │ ├── page_editor_spec.rb │ │ ├── picture_editor_spec.rb │ │ ├── richtext_editor_spec.rb │ │ ├── select_editor_spec.rb │ │ ├── text_editor_spec.rb │ │ └── video_editor_spec.rb │ ├── layouts │ └── alchemy │ │ └── admin.html.erb.spec │ └── pages │ └── meta_data_spec.rb ├── vendor ├── assets │ └── stylesheets │ │ ├── alchemy_admin │ │ └── select2.css │ │ └── tinymce │ │ └── skins │ │ ├── content │ │ ├── dark │ │ │ └── content.min.css │ │ └── default │ │ │ └── content.min.css │ │ └── ui │ │ ├── oxide-dark │ │ ├── content.min.css │ │ └── skin.min.css │ │ └── oxide │ │ └── skin.min.css └── javascript │ ├── clipboard.min.js │ ├── cropperjs.min.js │ ├── flatpickr.min.js │ ├── handlebars.min.js │ ├── jquery.min.js │ ├── keymaster.min.js │ ├── rails-ujs.min.js │ ├── select2.min.js │ ├── shoelace.min.js │ ├── sortable.min.js │ ├── tinymce.min.js │ └── ungap-custom-elements.min.js └── vitest.config.js /.backportrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "prTitle": "[{{targetBranch}}] {{sourcePullRequest.title}}" 3 | } 4 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gem_release.yml: -------------------------------------------------------------------------------- 1 | bump: 2 | file: lib/alchemy/version.rb 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @AlchemyCMS/coreteam 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/brakeman-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/brakeman-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/build_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/build_test.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/post-release.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.hound.yml -------------------------------------------------------------------------------- /.localeapp/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.localeapp/config.rb -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | app/javascript/alchemy_admin/templates/compiled.js 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.prettierrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- 1 | parallel: true 2 | ruby_version: 3.1 3 | ignore: 4 | - "spec/dummy/**/*" 5 | -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/.yardopts -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/SECURITY.md -------------------------------------------------------------------------------- /alchemy_cms.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/alchemy_cms.gemspec -------------------------------------------------------------------------------- /app/assets/builds/alchemy/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/admin.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/admin/page-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/admin/page-select.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/admin/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/admin/print.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/dark-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/dark-theme.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/light-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/light-theme.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/preview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/preview.min.js -------------------------------------------------------------------------------- /app/assets/builds/alchemy/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/theme.css -------------------------------------------------------------------------------- /app/assets/builds/alchemy/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/builds/alchemy/welcome.css -------------------------------------------------------------------------------- /app/assets/builds/tinymce/skins/ui/alchemy-dark/content.min.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/assets/builds/tinymce/skins/ui/alchemy/content.min.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/assets/config/alchemy_manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/config/alchemy_manifest.js -------------------------------------------------------------------------------- /app/assets/images/alchemy/alchemy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/alchemy-logo.png -------------------------------------------------------------------------------- /app/assets/images/alchemy/alchemy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/alchemy-logo.svg -------------------------------------------------------------------------------- /app/assets/images/alchemy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/alchemy/icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/icon-white.svg -------------------------------------------------------------------------------- /app/assets/images/alchemy/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/icon.svg -------------------------------------------------------------------------------- /app/assets/images/alchemy/icons-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/icons-sprite.svg -------------------------------------------------------------------------------- /app/assets/images/alchemy/missing-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/assets/images/alchemy/missing-image.svg -------------------------------------------------------------------------------- /app/components/alchemy/admin/attachment_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/attachment_select.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/element_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/element_select.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/icon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/icon.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/link_dialog/base_tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/link_dialog/base_tab.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/link_dialog/file_tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/link_dialog/file_tab.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/link_dialog/tabs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/link_dialog/tabs.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/list_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/list_filter.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/locale_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/locale_select.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/message.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/node_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/node_select.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/page_select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/page_select.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/picture_thumbnail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/picture_thumbnail.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/resource/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/resource/action.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/resource/cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/resource/cell.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/resource/header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/resource/header.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/resource/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/resource/table.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/tags_autocomplete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/tags_autocomplete.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/tags_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/tags_list.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/toolbar_button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/toolbar_button.rb -------------------------------------------------------------------------------- /app/components/alchemy/admin/update_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/admin/update_check.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/audio_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/audio_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/base_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/base_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/boolean_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/boolean_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/datetime_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/datetime_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/file_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/file_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/headline_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/headline_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/html_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/html_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/link_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/link_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/node_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/node_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/number_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/number_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/page_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/page_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/picture_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/picture_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/richtext_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/richtext_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/select_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/select_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/text_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/text_view.rb -------------------------------------------------------------------------------- /app/components/alchemy/ingredients/video_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/components/alchemy/ingredients/video_view.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/elements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/elements_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/nodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/nodes_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/pictures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/pictures_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/sites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/sites_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/admin/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/admin/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/api/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/api/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/api/elements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/api/elements_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/api/nodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/api/nodes_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/api/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/api/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/attachments_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/alchemy/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/alchemy/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/alchemy/site_redirects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/controllers/concerns/alchemy/site_redirects.rb -------------------------------------------------------------------------------- /app/decorators/alchemy/element_editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/decorators/alchemy/element_editor.rb -------------------------------------------------------------------------------- /app/decorators/alchemy/ingredient_editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/decorators/alchemy/ingredient_editor.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/attachments_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/attachments_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/base_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/base_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/form_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/ingredients_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/ingredients_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/navigation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/navigation_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/admin/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/admin/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/base_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/base_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/elements_block_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/elements_block_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/elements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/elements_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/resources_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/resources_helper.rb -------------------------------------------------------------------------------- /app/helpers/alchemy/url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/helpers/alchemy/url_helper.rb -------------------------------------------------------------------------------- /app/javascript/alchemy_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/action.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/button.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/growl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/growl.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/icon.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/index.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/message.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/overlay.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/select.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/spinner.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/tinymce.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/components/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/components/uploader.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/confirm_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/confirm_dialog.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/dialog.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/dirty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/dirty.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/file_editors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/file_editors.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/fixed_elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/fixed_elements.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/growler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/growler.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/hotkeys.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/i18n.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/image_cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/image_cropper.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/image_overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/image_overlay.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/initializer.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/link_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/link_dialog.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/node_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/node_tree.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/page_sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/page_sorter.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/picture_editors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/picture_editors.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/picture_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/picture_selector.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/please_wait_overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/please_wait_overlay.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/shoelace_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/shoelace_theme.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/sitemap.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/sortable_elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/sortable_elements.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/spinner.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/templates/compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/templates/compiled.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/utils/ajax.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/utils/debounce.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/dom_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/utils/dom_helpers.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/utils/events.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/alchemy_admin/utils/format.js -------------------------------------------------------------------------------- /app/javascript/alchemy_admin/utils/max.js: -------------------------------------------------------------------------------- 1 | export default function (a, b) { 2 | return a >= b ? a : b 3 | } 4 | -------------------------------------------------------------------------------- /app/javascript/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/preview.js -------------------------------------------------------------------------------- /app/javascript/tinymce/icons/remixicons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/tinymce/icons/remixicons/index.js -------------------------------------------------------------------------------- /app/javascript/tinymce/plugins/alchemy_link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/javascript/tinymce/plugins/alchemy_link/index.js -------------------------------------------------------------------------------- /app/jobs/alchemy/base_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/jobs/alchemy/base_job.rb -------------------------------------------------------------------------------- /app/jobs/alchemy/delete_picture_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/jobs/alchemy/delete_picture_job.rb -------------------------------------------------------------------------------- /app/jobs/alchemy/publish_page_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/jobs/alchemy/publish_page_job.rb -------------------------------------------------------------------------------- /app/mailers/alchemy/base_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/mailers/alchemy/base_mailer.rb -------------------------------------------------------------------------------- /app/mailers/alchemy/messages_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/mailers/alchemy/messages_mailer.rb -------------------------------------------------------------------------------- /app/models/alchemy/admin/filters/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/admin/filters/base.rb -------------------------------------------------------------------------------- /app/models/alchemy/admin/filters/checkbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/admin/filters/checkbox.rb -------------------------------------------------------------------------------- /app/models/alchemy/admin/filters/datepicker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/admin/filters/datepicker.rb -------------------------------------------------------------------------------- /app/models/alchemy/admin/filters/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/admin/filters/select.rb -------------------------------------------------------------------------------- /app/models/alchemy/admin/resource_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/admin/resource_name.rb -------------------------------------------------------------------------------- /app/models/alchemy/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/attachment.rb -------------------------------------------------------------------------------- /app/models/alchemy/base_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/base_record.rb -------------------------------------------------------------------------------- /app/models/alchemy/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/current.rb -------------------------------------------------------------------------------- /app/models/alchemy/eager_loading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/eager_loading.rb -------------------------------------------------------------------------------- /app/models/alchemy/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element.rb -------------------------------------------------------------------------------- /app/models/alchemy/element/definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element/definitions.rb -------------------------------------------------------------------------------- /app/models/alchemy/element/element_ingredients.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element/element_ingredients.rb -------------------------------------------------------------------------------- /app/models/alchemy/element/presenters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element/presenters.rb -------------------------------------------------------------------------------- /app/models/alchemy/element_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element_definition.rb -------------------------------------------------------------------------------- /app/models/alchemy/element_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/element_to_page.rb -------------------------------------------------------------------------------- /app/models/alchemy/elements_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/elements_repository.rb -------------------------------------------------------------------------------- /app/models/alchemy/folded_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/folded_page.rb -------------------------------------------------------------------------------- /app/models/alchemy/image_cropper_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/image_cropper_settings.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredient.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredient_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredient_definition.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredient_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredient_validator.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/audio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/audio.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/boolean.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/datetime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/datetime.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/file.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/headline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/headline.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/html.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/link.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/node.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/number.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/page.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/picture.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/richtext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/richtext.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/select.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/text.rb -------------------------------------------------------------------------------- /app/models/alchemy/ingredients/video.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/ingredients/video.rb -------------------------------------------------------------------------------- /app/models/alchemy/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/language.rb -------------------------------------------------------------------------------- /app/models/alchemy/language/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/language/code.rb -------------------------------------------------------------------------------- /app/models/alchemy/legacy_page_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/legacy_page_url.rb -------------------------------------------------------------------------------- /app/models/alchemy/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/message.rb -------------------------------------------------------------------------------- /app/models/alchemy/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/node.rb -------------------------------------------------------------------------------- /app/models/alchemy/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/definitions.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/fixed_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/fixed_attributes.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/page_elements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/page_elements.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/page_naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/page_naming.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/page_natures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/page_natures.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/page_scopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/page_scopes.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/publisher.rb -------------------------------------------------------------------------------- /app/models/alchemy/page/url_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page/url_path.rb -------------------------------------------------------------------------------- /app/models/alchemy/page_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page_definition.rb -------------------------------------------------------------------------------- /app/models/alchemy/page_mutex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page_mutex.rb -------------------------------------------------------------------------------- /app/models/alchemy/page_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/page_version.rb -------------------------------------------------------------------------------- /app/models/alchemy/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/permissions.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_description.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_thumb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_thumb.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_thumb/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_thumb/create.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_thumb/file_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_thumb/file_store.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_thumb/signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_thumb/signature.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_thumb/uid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_thumb/uid.rb -------------------------------------------------------------------------------- /app/models/alchemy/picture_variant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/picture_variant.rb -------------------------------------------------------------------------------- /app/models/alchemy/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/resource.rb -------------------------------------------------------------------------------- /app/models/alchemy/searchable_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/searchable_resource.rb -------------------------------------------------------------------------------- /app/models/alchemy/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/site.rb -------------------------------------------------------------------------------- /app/models/alchemy/site/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/site/layout.rb -------------------------------------------------------------------------------- /app/models/alchemy/storage_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/storage_adapter.rb -------------------------------------------------------------------------------- /app/models/alchemy/storage_adapter/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/storage_adapter/active_storage.rb -------------------------------------------------------------------------------- /app/models/alchemy/storage_adapter/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/storage_adapter/dragonfly.rb -------------------------------------------------------------------------------- /app/models/alchemy/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/alchemy/tag.rb -------------------------------------------------------------------------------- /app/models/concerns/alchemy/dom_ids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/concerns/alchemy/dom_ids.rb -------------------------------------------------------------------------------- /app/models/concerns/alchemy/picture_thumbnails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/concerns/alchemy/picture_thumbnails.rb -------------------------------------------------------------------------------- /app/models/concerns/alchemy/relatable_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/concerns/alchemy/relatable_resource.rb -------------------------------------------------------------------------------- /app/models/concerns/alchemy/touch_elements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/models/concerns/alchemy/touch_elements.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/attachment_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/attachment_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/base_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/base_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/element_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/element_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/ingredient_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/ingredient_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/language_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/language_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/node_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/node_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/page_node_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/page_node_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/page_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/page_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/page_tree_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/page_tree_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/picture_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/picture_serializer.rb -------------------------------------------------------------------------------- /app/serializers/alchemy/site_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/serializers/alchemy/site_serializer.rb -------------------------------------------------------------------------------- /app/services/alchemy/copy_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/copy_page.rb -------------------------------------------------------------------------------- /app/services/alchemy/delete_elements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/delete_elements.rb -------------------------------------------------------------------------------- /app/services/alchemy/duplicate_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/duplicate_element.rb -------------------------------------------------------------------------------- /app/services/alchemy/tag_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/tag_validations.rb -------------------------------------------------------------------------------- /app/services/alchemy/update_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/update_checker.rb -------------------------------------------------------------------------------- /app/services/alchemy/update_checks/alchemy_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/update_checks/alchemy_app.rb -------------------------------------------------------------------------------- /app/services/alchemy/update_checks/ruby_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/services/alchemy/update_checks/ruby_gems.rb -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_custom-properties.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_custom-properties.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_defaults.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_extends.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_fonts.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_mixins.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_themes.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/_variables.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/archive.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/attachment-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/attachment-select.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/attachments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/attachments.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/base.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/buttons.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/clipboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/clipboard.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/dashboard.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/dialogs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/dialogs.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/element-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/element-select.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/elements.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/errors.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/filters.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/flash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/flash.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/flatpickr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/flatpickr.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/form_fields.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/form_fields.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/forms.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/frame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/frame.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/hints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/hints.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/icons.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/image_library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/image_library.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/images.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/labels.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/list_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/list_filter.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/lists.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/navigation.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/node-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/node-select.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/nodes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/nodes.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/notices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/notices.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/page-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/page-select.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/pagination.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/preview_window.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/preview_window.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/print.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/resource_info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/resource_info.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/search.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/selects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/selects.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/shoelace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/shoelace.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/sitemap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/sitemap.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/spinner.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/tables.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/tags.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/toolbar.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/typography.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/admin/upload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/admin/upload.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/dark-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/dark-theme.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/light-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/light-theme.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/theme.scss -------------------------------------------------------------------------------- /app/stylesheets/alchemy/welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/alchemy/welcome.scss -------------------------------------------------------------------------------- /app/stylesheets/tinymce/skins/skintool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/tinymce/skins/skintool.json -------------------------------------------------------------------------------- /app/stylesheets/tinymce/skins/ui/alchemy/skin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/stylesheets/tinymce/skins/ui/alchemy/skin.scss -------------------------------------------------------------------------------- /app/views/alchemy/_edit_mode.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/_edit_mode.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/_menubar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/_menubar.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/_preview_mode_code.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/_preview_mode_code.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/attachments/assign.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/attachments/assign.js.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/attachments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/attachments/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/attachments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/attachments/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/attachments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/attachments/show.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/clipboard/_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/clipboard/_button.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/clipboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/clipboard/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/crop.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/crop.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/dashboard/_top.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/dashboard/_top.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/dashboard/help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/dashboard/help.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/dashboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/dashboard/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/dashboard/info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/dashboard/info.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/_element.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/_element.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/_footer.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/_header.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/_toolbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/_toolbar.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/elements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/elements/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/ingredients/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/ingredients/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/languages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/languages/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/languages/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/languages/_table.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/languages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/languages/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/languages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/languages/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/languages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/languages/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/layoutpages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/layoutpages/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/layoutpages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/layoutpages/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/leave.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/leave.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/legacy_page_urls/destroy.turbo_stream.erb: -------------------------------------------------------------------------------- 1 | <%= render "update" %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/legacy_page_urls/update.turbo_stream.erb: -------------------------------------------------------------------------------- 1 | <%= render "update" %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/_label.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/_label.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/_node.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/_node.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/_page_nodes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/_page_nodes.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/create.turbo_stream.erb: -------------------------------------------------------------------------------- 1 | <%= render "update" %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/destroy.turbo_stream.erb: -------------------------------------------------------------------------------- 1 | <%= render "update" %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/nodes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/nodes/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_page.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_page_infos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_page_infos.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_sitemap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_sitemap.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_table.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/_toolbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/_toolbar.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/configure.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/configure.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/info.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/locked.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/locked.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render_page_layout %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/pages/unlock.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pages/unlock.js.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/partials/_routes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/partials/_routes.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/_archive.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/_archive.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/_infos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/_infos.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/_picture.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/_picture.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/assign.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/assign.js.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/pictures/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/pictures/show.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/resources/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/resources/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/resources/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/resources/index.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/resources/index.csv.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/resources/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/resources/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/resources/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/admin/sites/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/sites/_form.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/sites/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/sites/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/sites/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/sites/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/sites/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/sites/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/styleguide/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/styleguide/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/tags/_radio_tag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/tags/_radio_tag.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/tags/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/tags/edit.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/tags/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/tags/new.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/tinymce/_setup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/tinymce/_setup.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/translations/_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/translations/_en.js -------------------------------------------------------------------------------- /app/views/alchemy/admin/uploader/_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/uploader/_button.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/admin/uploader/_setup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/admin/uploader/_setup.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/attachments/show.html.erb: -------------------------------------------------------------------------------- 1 | <%#= @attachment.public_filename %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/base/403.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/403.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/base/500.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/500.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/base/500.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/500.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/alchemy/base/error_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/error_notice.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/base/error_notice.js.erb: -------------------------------------------------------------------------------- 1 | Alchemy.growl('<%= j @notice %>', 'error'); 2 | -------------------------------------------------------------------------------- /app/views/alchemy/base/permission_denied.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/permission_denied.js.erb -------------------------------------------------------------------------------- /app/views/alchemy/base/redirect.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/base/redirect.js.erb -------------------------------------------------------------------------------- /app/views/alchemy/breadcrumb/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/breadcrumb/_page.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/breadcrumb/_separator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/breadcrumb/_separator.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/breadcrumb/_wrapper.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/breadcrumb/_wrapper.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/elements/_view_not_found.html.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/views/alchemy/language_links/_spacer.html.erb: -------------------------------------------------------------------------------- 1 | <%= options[:spacer].html_safe %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/messages_mailer/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render_elements %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/no_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/no_index.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/pages/_meta_data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/pages/_meta_data.html.erb -------------------------------------------------------------------------------- /app/views/alchemy/pages/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render_page_layout %> 2 | -------------------------------------------------------------------------------- /app/views/alchemy/pages/sitemap.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/pages/sitemap.xml.erb -------------------------------------------------------------------------------- /app/views/alchemy/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/alchemy/welcome.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/alchemy/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/kaminari/alchemy/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/alchemy/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/layouts/alchemy/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/alchemy/sitemap.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/app/views/layouts/alchemy/sitemap.xml.erb -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bin/start -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bun.lockb -------------------------------------------------------------------------------- /bundles/remixicon.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bundles/remixicon.mjs -------------------------------------------------------------------------------- /bundles/shoelace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bundles/shoelace.js -------------------------------------------------------------------------------- /bundles/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/bundles/tinymce.js -------------------------------------------------------------------------------- /config/alchemy/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/alchemy/config.yml -------------------------------------------------------------------------------- /config/alchemy/modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/alchemy/modules.yml -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/mini_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/initializers/mini_profiler.rb -------------------------------------------------------------------------------- /config/initializers/rails_live_reload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/initializers/rails_live_reload.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/locales/alchemy.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/locales/alchemy.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20230121212637_alchemy_six_point_one.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/db/migrate/20230121212637_alchemy_six_point_one.rb -------------------------------------------------------------------------------- /db/migrate/20231113104432_create_page_mutexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/db/migrate/20231113104432_create_page_mutexes.rb -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lib/alchemy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy.rb -------------------------------------------------------------------------------- /lib/alchemy/ability_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/ability_helper.rb -------------------------------------------------------------------------------- /lib/alchemy/admin/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/admin/locale.rb -------------------------------------------------------------------------------- /lib/alchemy/admin/preview_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/admin/preview_url.rb -------------------------------------------------------------------------------- /lib/alchemy/auth_accessors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/auth_accessors.rb -------------------------------------------------------------------------------- /lib/alchemy/cache_digests/template_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/cache_digests/template_tracker.rb -------------------------------------------------------------------------------- /lib/alchemy/config_missing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/config_missing.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/base_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/base_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/boolean_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/boolean_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/class_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/class_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/collection_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/collection_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/configuration_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/configuration_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/integer_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/integer_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/pathname_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/pathname_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/regexp_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/regexp_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/string_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/string_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration/symbol_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration/symbol_option.rb -------------------------------------------------------------------------------- /lib/alchemy/configuration_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configuration_methods.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/default_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/default_language.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/default_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/default_site.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/format_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/format_matchers.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/importmap.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/mailer.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/main.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/page_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/page_cache.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/preview.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/sitemap.rb -------------------------------------------------------------------------------- /lib/alchemy/configurations/uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/configurations/uploader.rb -------------------------------------------------------------------------------- /lib/alchemy/controller_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/controller_actions.rb -------------------------------------------------------------------------------- /lib/alchemy/deprecation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/deprecation.rb -------------------------------------------------------------------------------- /lib/alchemy/dev_support/live_reload_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/dev_support/live_reload_watcher.rb -------------------------------------------------------------------------------- /lib/alchemy/dragonfly/processors/auto_orient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/dragonfly/processors/auto_orient.rb -------------------------------------------------------------------------------- /lib/alchemy/dragonfly/processors/crop_resize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/dragonfly/processors/crop_resize.rb -------------------------------------------------------------------------------- /lib/alchemy/dragonfly/processors/thumbnail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/dragonfly/processors/thumbnail.rb -------------------------------------------------------------------------------- /lib/alchemy/elements_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/elements_finder.rb -------------------------------------------------------------------------------- /lib/alchemy/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/engine.rb -------------------------------------------------------------------------------- /lib/alchemy/error_tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/error_tracking.rb -------------------------------------------------------------------------------- /lib/alchemy/error_tracking/error_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/error_tracking/error_logger.rb -------------------------------------------------------------------------------- /lib/alchemy/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/errors.rb -------------------------------------------------------------------------------- /lib/alchemy/filetypes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/filetypes.rb -------------------------------------------------------------------------------- /lib/alchemy/forms/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/forms/builder.rb -------------------------------------------------------------------------------- /lib/alchemy/hints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/hints.rb -------------------------------------------------------------------------------- /lib/alchemy/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/i18n.rb -------------------------------------------------------------------------------- /lib/alchemy/install/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/install/tasks.rb -------------------------------------------------------------------------------- /lib/alchemy/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/logger.rb -------------------------------------------------------------------------------- /lib/alchemy/modules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/modules.rb -------------------------------------------------------------------------------- /lib/alchemy/name_conversions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/name_conversions.rb -------------------------------------------------------------------------------- /lib/alchemy/on_page_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/on_page_layout.rb -------------------------------------------------------------------------------- /lib/alchemy/on_page_layout/callbacks_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/on_page_layout/callbacks_runner.rb -------------------------------------------------------------------------------- /lib/alchemy/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/paths.rb -------------------------------------------------------------------------------- /lib/alchemy/propshaft/tinymce_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/propshaft/tinymce_asset.rb -------------------------------------------------------------------------------- /lib/alchemy/routing_constraints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/routing_constraints.rb -------------------------------------------------------------------------------- /lib/alchemy/seeder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/seeder.rb -------------------------------------------------------------------------------- /lib/alchemy/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/shell.rb -------------------------------------------------------------------------------- /lib/alchemy/svg_scrubber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/svg_scrubber.rb -------------------------------------------------------------------------------- /lib/alchemy/taggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/taggable.rb -------------------------------------------------------------------------------- /lib/alchemy/tasks/tidy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/tasks/tidy.rb -------------------------------------------------------------------------------- /lib/alchemy/tasks/usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/tasks/usage.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/capybara_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/capybara_helpers.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/config_stubbing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/config_stubbing.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/factories/node_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/factories/node_factory.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/factories/page_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/factories/page_factory.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/factories/site_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/factories/site_factory.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/fixtures/image.png -------------------------------------------------------------------------------- /lib/alchemy/test_support/integration_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/integration_helpers.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/rspec_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/rspec_matchers.rb -------------------------------------------------------------------------------- /lib/alchemy/test_support/shared_contexts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/test_support/shared_contexts.rb -------------------------------------------------------------------------------- /lib/alchemy/tinymce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/tinymce.rb -------------------------------------------------------------------------------- /lib/alchemy/upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/upgrader.rb -------------------------------------------------------------------------------- /lib/alchemy/upgrader/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/alchemy/upgrader/eight_zero.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/upgrader/eight_zero.rb -------------------------------------------------------------------------------- /lib/alchemy/upgrader/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/alchemy/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy/version.rb -------------------------------------------------------------------------------- /lib/alchemy_cms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/alchemy_cms.rb -------------------------------------------------------------------------------- /lib/generators/alchemy/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/generators/alchemy/base.rb -------------------------------------------------------------------------------- /lib/generators/alchemy/install/files/_standard.html.erb: -------------------------------------------------------------------------------- 1 | <%= render_elements %> 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/install/files/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/generators/alchemy/install/files/custom.css -------------------------------------------------------------------------------- /lib/generators/alchemy/menus/menus_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/generators/alchemy/menus/menus_generator.rb -------------------------------------------------------------------------------- /lib/generators/alchemy/module/module_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/generators/alchemy/module/module_generator.rb -------------------------------------------------------------------------------- /lib/generators/alchemy/page_layouts/templates/layout.html.erb: -------------------------------------------------------------------------------- 1 | <%%= render_elements %> 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/page_layouts/templates/layout.html.haml: -------------------------------------------------------------------------------- 1 | = render_elements 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/page_layouts/templates/layout.html.slim: -------------------------------------------------------------------------------- 1 | = render_elements 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/site_layouts/templates/layout.html.erb: -------------------------------------------------------------------------------- 1 | <%%= yield %> 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/site_layouts/templates/layout.html.haml: -------------------------------------------------------------------------------- 1 | = yield 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/site_layouts/templates/layout.html.slim: -------------------------------------------------------------------------------- 1 | = yield 2 | -------------------------------------------------------------------------------- /lib/generators/alchemy/views/views_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/generators/alchemy/views/views_generator.rb -------------------------------------------------------------------------------- /lib/non_stupid_digest_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/non_stupid_digest_assets.rb -------------------------------------------------------------------------------- /lib/tasks/alchemy/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/assets.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/db.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/install.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/install.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/sitemap.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/sitemap.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/thumbnails.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/thumbnails.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/tidy.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/tidy.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/upgrade.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/upgrade.rake -------------------------------------------------------------------------------- /lib/tasks/alchemy/usage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/lib/tasks/alchemy/usage.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /spec/components/alchemy/admin/icon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/components/alchemy/admin/icon_spec.rb -------------------------------------------------------------------------------- /spec/components/alchemy/admin/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/components/alchemy/admin/message_spec.rb -------------------------------------------------------------------------------- /spec/components/alchemy/admin/node_select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/components/alchemy/admin/node_select_spec.rb -------------------------------------------------------------------------------- /spec/components/alchemy/admin/page_select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/components/alchemy/admin/page_select_spec.rb -------------------------------------------------------------------------------- /spec/components/alchemy/admin/tags_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/components/alchemy/admin/tags_list_spec.rb -------------------------------------------------------------------------------- /spec/controllers/alchemy/base_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/controllers/alchemy/base_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/alchemy/pages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/controllers/alchemy/pages_controller_spec.rb -------------------------------------------------------------------------------- /spec/decorators/alchemy/element_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/decorators/alchemy/element_editor_spec.rb -------------------------------------------------------------------------------- /spec/decorators/alchemy/ingredient_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/decorators/alchemy/ingredient_editor_spec.rb -------------------------------------------------------------------------------- /spec/dummy/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/Gemfile -------------------------------------------------------------------------------- /spec/dummy/Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/Procfile.dev -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/images/missing-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/assets/images/missing-image.png -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /spec/dummy/app/controllers/login_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/controllers/login_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ApplicationHelper 4 | end 5 | -------------------------------------------------------------------------------- /spec/dummy/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/ability.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/booking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/booking.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/dummy_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/dummy_user.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/event.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/location.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/models/series.rb -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/custom.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/app/views/layouts/custom.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/ns/locations/index.html: -------------------------------------------------------------------------------- 1 | Just an example for a custom controller 2 | -------------------------------------------------------------------------------- /spec/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/bundle -------------------------------------------------------------------------------- /spec/dummy/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/dev -------------------------------------------------------------------------------- /spec/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/rails -------------------------------------------------------------------------------- /spec/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/rake -------------------------------------------------------------------------------- /spec/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/setup -------------------------------------------------------------------------------- /spec/dummy/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/bin/update -------------------------------------------------------------------------------- /spec/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config.ru -------------------------------------------------------------------------------- /spec/dummy/config/alchemy/config.yml: -------------------------------------------------------------------------------- 1 | output_image_quality: 90 2 | auto_logout_time: 40 3 | -------------------------------------------------------------------------------- /spec/dummy/config/alchemy/elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/alchemy/elements.yml -------------------------------------------------------------------------------- /spec/dummy/config/alchemy/menus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/alchemy/menus.yml -------------------------------------------------------------------------------- /spec/dummy/config/alchemy/page_layouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/alchemy/page_layouts.yml -------------------------------------------------------------------------------- /spec/dummy/config/alchemy/test.config.yml: -------------------------------------------------------------------------------- 1 | output_image_quality: 85 2 | -------------------------------------------------------------------------------- /spec/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/application.rb -------------------------------------------------------------------------------- /spec/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/boot.rb -------------------------------------------------------------------------------- /spec/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/database.yml -------------------------------------------------------------------------------- /spec/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/environment.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/alchemy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/alchemy.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /spec/dummy/config/locales/alchemy.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/locales/alchemy.de.yml -------------------------------------------------------------------------------- /spec/dummy/config/locales/alchemy.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/locales/alchemy.en.yml -------------------------------------------------------------------------------- /spec/dummy/config/locales/alchemy.kl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/locales/alchemy.kl.yml -------------------------------------------------------------------------------- /spec/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /spec/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/puma.rb -------------------------------------------------------------------------------- /spec/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/routes.rb -------------------------------------------------------------------------------- /spec/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/secrets.yml -------------------------------------------------------------------------------- /spec/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/config/storage.yml -------------------------------------------------------------------------------- /spec/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/db/schema.rb -------------------------------------------------------------------------------- /spec/dummy/db/seeds.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Alchemy::Seeder.seed! 4 | -------------------------------------------------------------------------------- /spec/dummy/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/public/404.html -------------------------------------------------------------------------------- /spec/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/public/422.html -------------------------------------------------------------------------------- /spec/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/dummy/public/500.html -------------------------------------------------------------------------------- /spec/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/features/admin/admin_layout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/admin_layout_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/attachment_library_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/attachment_library_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/dashboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/dashboard_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/edit_elements_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/edit_elements_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/language_tree_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/language_tree_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/languages_features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/languages_features_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/link_overlay_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/link_overlay_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/locale_select_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/locale_select_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/locked_page_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/locked_page_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/menus_features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/menus_features_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/modules_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/modules_integration_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/navigation_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/navigation_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/node_select_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/node_select_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/nodes_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/nodes_management_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/page_creation_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/page_creation_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/page_destroy_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/page_destroy_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/page_editing_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/page_editing_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/page_info_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/page_info_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/page_list_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/page_list_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/resources_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/resources_integration_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/site_editing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/site_editing_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/site_select_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/site_select_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/tags_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/tags_integration_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/tinymce_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/admin/tinymce_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/navigation_spec.rb -------------------------------------------------------------------------------- /spec/features/page_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/page_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/page_redirects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/page_redirects_spec.rb -------------------------------------------------------------------------------- /spec/features/page_seeder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/page_seeder_spec.rb -------------------------------------------------------------------------------- /spec/features/security_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/security_spec.rb -------------------------------------------------------------------------------- /spec/features/user_seeder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/features/user_seeder_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/animated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/animated.png -------------------------------------------------------------------------------- /spec/fixtures/config.yml: -------------------------------------------------------------------------------- 1 | auto_logout_time: 20 2 | -------------------------------------------------------------------------------- /spec/fixtures/files/500x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/500x500.png -------------------------------------------------------------------------------- /spec/fixtures/files/80x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/80x60.png -------------------------------------------------------------------------------- /spec/fixtures/files/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/animated.gif -------------------------------------------------------------------------------- /spec/fixtures/files/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/archive.zip -------------------------------------------------------------------------------- /spec/fixtures/files/bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/bad.svg -------------------------------------------------------------------------------- /spec/fixtures/files/bad_fragment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/bad_fragment.svg -------------------------------------------------------------------------------- /spec/fixtures/files/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/file.pdf -------------------------------------------------------------------------------- /spec/fixtures/files/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/icon.svg -------------------------------------------------------------------------------- /spec/fixtures/files/image with spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image with spaces.png -------------------------------------------------------------------------------- /spec/fixtures/files/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image.png -------------------------------------------------------------------------------- /spec/fixtures/files/image2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image2.PNG -------------------------------------------------------------------------------- /spec/fixtures/files/image3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image3.jpeg -------------------------------------------------------------------------------- /spec/fixtures/files/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image4.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/image5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/image5.webp -------------------------------------------------------------------------------- /spec/fixtures/files/my FileNämü.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/files/my FileNämü.png -------------------------------------------------------------------------------- /spec/fixtures/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/pages.yml -------------------------------------------------------------------------------- /spec/fixtures/pages_with_two_roots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/pages_with_two_roots.yml -------------------------------------------------------------------------------- /spec/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/fixtures/users.yml -------------------------------------------------------------------------------- /spec/helpers/alchemy/admin/base_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/admin/base_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/admin/form_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/admin/form_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/admin/pages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/admin/pages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/base_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/base_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/elements_block_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/elements_block_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/elements_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/elements_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/pages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/pages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/resources_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/resources_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/alchemy/url_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/helpers/alchemy/url_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/i18n.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/i18n.spec.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/mocks/matchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/mocks/matchMedia.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/setup.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/utils/ajax.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/utils/ajax.spec.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/utils/events.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/utils/events.spec.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/utils/format.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/utils/format.spec.js -------------------------------------------------------------------------------- /spec/javascript/alchemy_admin/utils/max.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/javascript/alchemy_admin/utils/max.spec.js -------------------------------------------------------------------------------- /spec/jobs/alchemy/delete_picture_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/jobs/alchemy/delete_picture_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/alchemy/publish_page_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/jobs/alchemy/publish_page_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/alchemy/svg_scrubber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/lib/alchemy/svg_scrubber_spec.rb -------------------------------------------------------------------------------- /spec/libraries/admin/preview_url_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/admin/preview_url_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy/configuration_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy/configurations/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy/configurations/main_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy/engine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy/engine_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy/install/tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy/install/tasks_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy/tasks/usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy/tasks/usage_spec.rb -------------------------------------------------------------------------------- /spec/libraries/alchemy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/alchemy_spec.rb -------------------------------------------------------------------------------- /spec/libraries/auth_accessors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/auth_accessors_spec.rb -------------------------------------------------------------------------------- /spec/libraries/configuration_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/configuration_methods_spec.rb -------------------------------------------------------------------------------- /spec/libraries/controller_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/controller_actions_spec.rb -------------------------------------------------------------------------------- /spec/libraries/elements_finder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/elements_finder_spec.rb -------------------------------------------------------------------------------- /spec/libraries/forms/builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/forms/builder_spec.rb -------------------------------------------------------------------------------- /spec/libraries/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/i18n_spec.rb -------------------------------------------------------------------------------- /spec/libraries/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/logger_spec.rb -------------------------------------------------------------------------------- /spec/libraries/modules_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/modules_spec.rb -------------------------------------------------------------------------------- /spec/libraries/non_stupid_digest_assets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/non_stupid_digest_assets_spec.rb -------------------------------------------------------------------------------- /spec/libraries/paths_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/paths_spec.rb -------------------------------------------------------------------------------- /spec/libraries/permissions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/permissions_spec.rb -------------------------------------------------------------------------------- /spec/libraries/shell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/shell_spec.rb -------------------------------------------------------------------------------- /spec/libraries/template_tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/template_tracker_spec.rb -------------------------------------------------------------------------------- /spec/libraries/tinymce_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/tinymce_spec.rb -------------------------------------------------------------------------------- /spec/libraries/userstamp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/libraries/userstamp_spec.rb -------------------------------------------------------------------------------- /spec/mailers/alchemy/messages_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/mailers/alchemy/messages_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/admin/filters/checkbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/admin/filters/checkbox_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/admin/filters/select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/admin/filters/select_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/admin/resource_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/admin/resource_name_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/attachment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/attachment_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/current_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/current_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/eager_loading_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/eager_loading_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/element_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/element_definition_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/element_ingredients_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/element_ingredients_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/element_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/element_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/element_to_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/element_to_page_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/elements_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/elements_repository_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/folded_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/folded_page_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/image_cropper_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/image_cropper_settings_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredient_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredient_definition_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredient_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredient_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredient_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredient_validator_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/audio_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/audio_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/boolean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/boolean_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/datetime_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/datetime_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/file_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/headline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/headline_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/html_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/html_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/link_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/node_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/number_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/number_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/page_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/picture_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/richtext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/richtext_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/select_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/text_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/ingredients/video_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/ingredients/video_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/language_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/legacy_page_url_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/legacy_page_url_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/message_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/node_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page/definitions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page/definitions_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page/fixed_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page/fixed_attributes_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page/publisher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page/publisher_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page/url_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page/url_path_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page_definition_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page_mutex_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page_mutex_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/page_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/page_version_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_description_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_description_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_thumb/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_thumb/create_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_thumb/uid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_thumb/uid_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_thumb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_thumb_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/picture_variant_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/picture_variant_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/resource_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/searchable_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/searchable_resource_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/site_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/storage_adapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/storage_adapter_spec.rb -------------------------------------------------------------------------------- /spec/models/alchemy/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/alchemy/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/gutentag/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/models/gutentag/tag_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/admin/site_requests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/admin/site_requests_spec.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/api/nodes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/api/nodes_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/api/pages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/api/pages_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/page_request_caching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/page_request_caching_spec.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/site_requests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/site_requests_spec.rb -------------------------------------------------------------------------------- /spec/requests/alchemy/sitemap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/requests/alchemy/sitemap_spec.rb -------------------------------------------------------------------------------- /spec/routing/api_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/routing/api_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/routing/routing_spec.rb -------------------------------------------------------------------------------- /spec/serializers/alchemy/node_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/serializers/alchemy/node_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/alchemy/page_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/serializers/alchemy/page_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/alchemy/site_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/serializers/alchemy/site_serializer_spec.rb -------------------------------------------------------------------------------- /spec/services/alchemy/copy_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/services/alchemy/copy_page_spec.rb -------------------------------------------------------------------------------- /spec/services/alchemy/delete_elements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/services/alchemy/delete_elements_spec.rb -------------------------------------------------------------------------------- /spec/services/alchemy/duplicate_element_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/services/alchemy/duplicate_element_spec.rb -------------------------------------------------------------------------------- /spec/services/alchemy/update_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/services/alchemy/update_checker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_news_elements_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/support/custom_news_elements_finder.rb -------------------------------------------------------------------------------- /spec/support/dragonfly_test_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/support/dragonfly_test_app.rb -------------------------------------------------------------------------------- /spec/support/file_name_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/support/file_name_examples.rb -------------------------------------------------------------------------------- /spec/support/hint_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/support/hint_examples.rb -------------------------------------------------------------------------------- /spec/views/admin/attachments/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/admin/attachments/show_spec.rb -------------------------------------------------------------------------------- /spec/views/admin/pictures/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/admin/pictures/show_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/admin/ingredients/edit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/admin/ingredients/edit_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/file_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/file_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/html_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/html_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/link_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/link_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/node_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/node_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/page_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/page_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/alchemy/ingredients/text_editor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/alchemy/ingredients/text_editor_spec.rb -------------------------------------------------------------------------------- /spec/views/layouts/alchemy/admin.html.erb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/layouts/alchemy/admin.html.erb.spec -------------------------------------------------------------------------------- /spec/views/pages/meta_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/spec/views/pages/meta_data_spec.rb -------------------------------------------------------------------------------- /vendor/javascript/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/clipboard.min.js -------------------------------------------------------------------------------- /vendor/javascript/cropperjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/cropperjs.min.js -------------------------------------------------------------------------------- /vendor/javascript/flatpickr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/flatpickr.min.js -------------------------------------------------------------------------------- /vendor/javascript/handlebars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/handlebars.min.js -------------------------------------------------------------------------------- /vendor/javascript/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/jquery.min.js -------------------------------------------------------------------------------- /vendor/javascript/keymaster.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/keymaster.min.js -------------------------------------------------------------------------------- /vendor/javascript/rails-ujs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/rails-ujs.min.js -------------------------------------------------------------------------------- /vendor/javascript/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/select2.min.js -------------------------------------------------------------------------------- /vendor/javascript/shoelace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/shoelace.min.js -------------------------------------------------------------------------------- /vendor/javascript/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/sortable.min.js -------------------------------------------------------------------------------- /vendor/javascript/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/tinymce.min.js -------------------------------------------------------------------------------- /vendor/javascript/ungap-custom-elements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vendor/javascript/ungap-custom-elements.min.js -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/HEAD/vitest.config.js --------------------------------------------------------------------------------