Class: Cyberweb::Objectified::HtmlTags::Style

Inherits:
Base
  • Object
show all
Defined in:
lib/cyberweb/objectified/html_tags/style.rb

Overview

Cyberweb::Objectified::HtmlTags::Style

Instance Method Summary collapse

Methods inherited from Base

#+, #add_css_rules, #add_this_to_javascript, #add_to_pre_content, #append_css_manager, #append_onto_the_css_class, #append_onto_the_result, #append_the_content, #append_this_to_the_css_style, #attach, #batch_append_css_class_then_the_ID_and_then_the_css_style, #bblack1, #bblack2, #bblack3, #bblack4, #bblack5, #bblack6, #center, clear, #consider_adding_the_pre_content, #consider_adding_the_script_entry_from_the_internal_hash, #content?, #content_as_string, #css_class?, #css_manager, #css_style?, #display, #do_not_load_lazily, #ee, #enable_lazy_loading, #evaluate_this_block, #font=, #id?, #is_an_objectified_html_tag?, #is_draggable?, #lazy_loading?, #make_bold, #modify_the_css_style_based_on_the_alignment, #name=, #name?, #on_click_select, #on_clicked, #on_hover_colour, #on_hover_pulse_increase, #on_mouse_hover, #pad, #pad10px, #pad1px, #pad2px, #pad3px, #pad4px, #pad5px, #pad6px, #pad7px, #pad8px, #pad9px, #path_to_internal_javascript_file, #pre_content?, #raw_result?, #report, report, #report?, #reset_the_content, #reset_the_result, #return_appendable_content, #return_css_class, #return_css_style, #return_javascript, #script?, #set_content, #set_css_class, #set_css_style, #set_id, #set_is_draggable, #set_title, #set_width, #title?, #to_str, #try_to_register_this_tag, #use_this_on_click_function=, #very_light_yellowish_background, #width_height, #yellow_background

Methods included from BaseModule

#attach_these_constants, #base_dir?, #beautiful_url, #cd, #create_the_internal_hash, #doctype?, #ee, #ensure_main_encoding, #esystem, #html_templates, #initialize_the_config_if_the_config_hash_is_empty, #internal_hash?, #log_dir?, #no_http, #random_alphabet_characters, #rarrow?, #rds, #remove_comments_from_this_string, #remove_numbers, #require_the_html_templates, #require_these, #return_file_size_in_kb_of, #return_html_comment, #ruby_sitelib_dir?, #sanitize_this_id, #server_base_directory?, #string_remote_image, #today?, #try_to_require_rack, #try_to_require_the_open_gem, #write_what_into

Methods included from BaseModule::ContentType

#content_type_is_html, #content_type_is_jpeg, #content_type_is_json, #content_type_is_plain_text

Methods included from BaseModule::CommandlineArguments

#append_to_the_commandline_arguments, #commandline_arguments?, #first_argument?, #parse_these_commandline_arguments, #second_argument?, #set_commandline_arguments

Methods included from BaseModule::Colours

#all_html_colours, #lightgreen, #rev, #sdir, #sfancy, #sfile, #simp, #steelblue, #tomato

Constructor Details

#initialize(use_this_text = '') ⇒ Style

#

initialize

Usage example:

Cyberweb::Objectified::HtmlTags::Style.new(i)
#


25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/cyberweb/objectified/html_tags/style.rb', line 25

def initialize(
    use_this_text = ''
  )
  try_to_register_this_tag(self)
  reset
  use_this_text = use_this_text.join(' ').strip if use_this_text.is_a? Array
  case use_this_text
  # ======================================================================= #
  # === :custom
  #
  # This is for custom, ad-hoc pull-in of .css files.
  # ======================================================================= #
  when :custom
    use_this_text = ''.dup
    %w(
      default.css
      border.css
      margin.css
    ).each {|this_css_file|
      _ = Cyberweb.project_base_directory?+'cascading_style_sheets/'+this_css_file
      if File.exist? _
        use_this_text << File.read(_)+"\n"
      else
        outs 'No file exists at '+_
      end
    }
  # ======================================================================= #
  # === :default_template
  #
  # This will solely pull in the file called "default.css".
  # ======================================================================= #
  when :default_template
    _ = Cyberweb.project_base_directory?+'cascading_style_sheets/default.css'
    use_this_text = File.read(_) if File.exist? _
  end
  set_content(use_this_text)
end

Instance Method Details

#rebuild_the_resultObject

#

rebuild_the_result

#


73
74
75
76
77
78
79
80
# File 'lib/cyberweb/objectified/html_tags/style.rb', line 73

def rebuild_the_result
  reset_the_result
  consider_adding_the_pre_content
  append_onto_the_result "<style>\n"
  append_onto_the_result content?.to_s
  append_onto_the_result "\n</style>\n"
  return raw_result?
end

#resetObject

#

reset

#


66
67
68
# File 'lib/cyberweb/objectified/html_tags/style.rb', line 66

def reset
  super()
end