Class: BitClust::TemplateScreen

Inherits:
Screen show all
Includes:
HTMLUtils, Translatable
Defined in:
lib/bitclust/screen.rb

Constant Summary

Constants included from NameUtils

NameUtils::CHAR_TO_MARK, NameUtils::CHAR_TO_NAME, NameUtils::CLASS_NAME_RE, NameUtils::CLASS_PATH_RE, NameUtils::CONST_PATH_RE, NameUtils::CONST_RE, NameUtils::GVAR_RE, NameUtils::LIBNAME_RE, NameUtils::MARK_TO_CHAR, NameUtils::MARK_TO_NAME, NameUtils::METHOD_NAME_RE, NameUtils::METHOD_SPEC_RE, NameUtils::MID, NameUtils::NAME_TO_CHAR, NameUtils::NAME_TO_MARK, NameUtils::TYPEMARK_RE

Instance Method Summary collapse

Methods included from NameUtils

build_method_id, classid2name, classname2id, classname?, decodeid, decodename_fs, decodename_url, encodeid, encodename_fs, encodename_rdocurl, encodename_url, functionname?, gvarname?, html_filename, libid2name, libname2id, libname?, method_spec?, methodid2classid, methodid2libid, methodid2mname, methodid2specparts, methodid2specstring, methodid2typechar, methodid2typemark, methodid2typename, methodname?, split_method_id, split_method_spec, typechar2mark, typechar2name, typechar?, typemark2char, typemark2name, typemark?, typename2char, typename2mark, typename?

Methods inherited from Screen

for_entry, #response, #status

Constructor Details

#initialize(h) ⇒ TemplateScreen

Returns a new instance of TemplateScreen.



268
269
270
271
272
273
274
275
# File 'lib/bitclust/screen.rb', line 268

def initialize(h)
  @urlmapper = h[:urlmapper]
  @template_repository = h[:template_repository]
  @default_encoding = h[:default_encoding] || h[:database].propget('encoding')
  @target_version = h[:target_version] || h[:database].propget('version')
  init_message_catalog h[:message_catalog]
  @conf = h
end

Instance Method Details

#content_typeObject



277
278
279
# File 'lib/bitclust/screen.rb', line 277

def content_type
  "text/html; charset=#{encoding()}"
end

#encodingObject



281
282
283
# File 'lib/bitclust/screen.rb', line 281

def encoding
  default_encoding()
end

#google_tag_managerObject



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/bitclust/screen.rb', line 289

def google_tag_manager
  tracking_id = @conf[:gtm_tracking_id]
  return "" unless tracking_id
  <<-HTML.chomp
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=#{tracking_id}"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments)};
  gtag('js', new Date());

  gtag('config', '#{tracking_id}');
</script>
  HTML
end

#meta_descriptionObject



312
313
314
# File 'lib/bitclust/screen.rb', line 312

def meta_description
  %Q(<meta name="description" content="">)
end

#meta_robotsObject



305
306
307
308
309
310
# File 'lib/bitclust/screen.rb', line 305

def meta_robots
  content = @conf[:meta_robots_content]
  return "" unless content
  return "" if content.empty?
  %Q(<meta name="robots" content="#{content.join(',')}">)
end

#ruby_versionObject



285
286
287
# File 'lib/bitclust/screen.rb', line 285

def ruby_version
  @target_version || 'unknown'
end