Module: Helpers
- Defined in:
- lib/optimize_ab/helpers.rb
Instance Method Summary collapse
-
#multi_begin_section(name) ⇒ Object
Page Sections Scripts ########.
- #multi_end_section ⇒ Object
-
#multi_head(k, ua, pv) ⇒ Object
Control / Tracking Script / Click Function ########.
Instance Method Details
#multi_begin_section(name) ⇒ Object
Page Sections Scripts ########
113 114 115 116 117 118 |
# File 'lib/optimize_ab/helpers.rb', line 113 def multi_begin_section(name) js = <<-HTML <script>utmx_section("#{name}")</script> HTML return js.html_safe end |
#multi_end_section ⇒ Object
120 121 122 123 124 125 |
# File 'lib/optimize_ab/helpers.rb', line 120 def multi_end_section js = <<-HTML </noscript> HTML return js.html_safe end |
#multi_head(k, ua, pv) ⇒ Object
Control / Tracking Script / Click Function ########
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/optimize_ab/helpers.rb', line 76 def multi_head(k, ua, pv) js = <<-HTML <script> function utmx_section(){}function utmx(){} (function(){var k="#{k}",d=document,l=d.location,c=d.cookie;function f(n){ if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.indexOf(';',i);return escape(c.substring(i+n. length+1,j<0?c.length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash; d.write('<sc'+'ript src="'+ 'http'+(l.protocol=='https:'?'s://ssl':'://www')+'.google-analytics.com' +'/siteopt.js?v=1&utmxkey='+k+'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime=' +new Date().valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+ '" type="text/javascript" charset="utf-8"></sc'+'ript>')})(); </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['gwo._setAccount', "#{ua}"]); _gaq.push(['gwo._trackPageview', "#{pv}"]); function doGoal(that) { try { _gaq.push(['gwo._trackPageview', "#{pv}"]); setTimeout('document.location = "' + that.href + '"', 100) } catch(err){} } (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> HTML return js.html_safe end |