summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-03-25 20:05:58 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-03-25 20:05:58 +0100
commitc5d00702d260a6cd91a18ce1cc0872f2eb583e15 (patch)
treeb6ac981c45e05e586e114342ec9d1fb0c3130d9c
parentec277ab95f2147017a55816f533cdb2ee3f811ed (diff)
Remove old comments
-rw-r--r--config.go6
-rw-r--r--main.go6
-rw-r--r--rewrite.go5
-rw-r--r--static.go6
4 files changed, 1 insertions, 22 deletions
diff --git a/config.go b/config.go
index 7fcbf17..a71eed5 100644
--- a/config.go
+++ b/config.go
@@ -1,9 +1,3 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Command blog is a web server for the Go blog that can run on App Engine or
-// as a stand-alone HTTP server.
package main
import (
diff --git a/main.go b/main.go
index d65d4a7..0663c43 100644
--- a/main.go
+++ b/main.go
@@ -1,9 +1,3 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build !appengine
-
// This file implements a stand-alone blog server.
package main
diff --git a/rewrite.go b/rewrite.go
index 7846e67..744db30 100644
--- a/rewrite.go
+++ b/rewrite.go
@@ -1,12 +1,9 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
+// Register HTTP handlers that redirect old blog paths to their new locations.
package main
import "net/http"
-// Register HTTP handlers that redirect old blog paths to their new locations.
func init() {
for p := range urlMap {
dest := "/" + urlMap[p]
diff --git a/static.go b/static.go
index 3c32d6b..2323400 100644
--- a/static.go
+++ b/static.go
@@ -1,9 +1,3 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build !appengine
-
// This file implements a stand-alone blog server.
package main