Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: server/analytics/doc.go

Issue 2248893002: Settings page for analytics ID (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Review Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: server/analytics/doc.go
diff --git a/server/analytics/doc.go b/server/analytics/doc.go
new file mode 100644
index 0000000000000000000000000000000000000000..dbe8e15e5572df3ee166d3b0baf739e81f5da61f
--- /dev/null
+++ b/server/analytics/doc.go
@@ -0,0 +1,30 @@
+// Copyright 2016 The LUCI Authors. All rights reserved.
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
+
+// Package analytics provides a standard way to store the Google Analytics
+// tracking ID.
+//
+// Usage Example
+//
+// This analytics package provides a convenient way to configure an analytics
+// ID for an app. To use, just call analytics.ID(c) and inject that ID
+// into a template.
+//
+// import (
+// ...
+// "github.com/luci/luci-go/server/analytics"
+// ...
+// )
+//
+// func myHandler(c context.Context, rw http.ResponseWriter, r *http.Request, p httprouter.Params) {
+// ...
+// return templates.Args{
+// "Analytics": analytics.Snippet(c),
+// }
+// }
+//
+// And in the base html:
+//
+// {{ .Analytics }}
+package analytics

Powered by Google App Engine
This is Rietveld 408576698