Sha256: 9d0c3a365832a88f8b2e47cff011380675fc00860a0f366b67e0a952fd74869b
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
# # Google Analytics plugin for tDiary # # Copyright (C) 2005 TADA Tadashi <sho@spc.gr.jp> # You can redistribute it and/or modify it under GPL2. # if /^(?:latest|day|month|nyear|search)$/ =~ @mode then add_footer_proc do google_analytics_insert_code end end def google_analytics_insert_code return '' unless @conf['google_analytics.profile'] <<-HTML <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-#{@conf['google_analytics.profile']}', 'auto'); ga('send', 'pageview'); // --></script> HTML end # UA-53836-1 add_conf_proc( 'google_analytics', 'Google Analytics' ) do if @mode == 'saveconf' then @conf['google_analytics.profile'] = @cgi.params['google_analytics.profile'][0] end <<-HTML <h3>Google Analytics Profile</h3> <p>set your Profile ID (NNNNN-N)</p> <p><input name="google_analytics.profile" value="#{h @conf['google_analytics.profile']}"></p> HTML end
Version data entries
7 entries across 6 versions & 2 rubygems