# -*- encoding : utf-8 -*- require_dependency "card/content/diff" class Card class Format class HtmlFormat < Format register :html attr_accessor :options_need_save, :start_time, :skip_autosave # builtin layouts allow for rescue / testing LAYOUTS = Mod::Loader.load_layouts.merge "none" => "{{_main}}" # helper methods for layout view def get_layout_content Auth.as_bot do if (requested_layout = params[:layout]) layout_from_card_or_code requested_layout else layout_from_rule end end end def layout_from_rule if (rule = card.rule_card :layout) && (rule.type_id == Card::PointerID) && (layout_name = rule.item_names.first) layout_from_card_or_code layout_name end end def layout_from_card_or_code name layout_card = Card.fetch name.to_s, skip_virtual: true, skip_modules: true if layout_card && layout_card.ok?(:read) layout_card.content elsif (hardcoded_layout = LAYOUTS[name]) hardcoded_layout else "