Add copyright headers. sounds.go doesn't have a copyright header, because the file is generated by a program. I don't want to make it output the copyright header, because users can generate sounds themselves, and the copyright status of such generated files can be different.
Dmitry Chestnykh dmitry@codingrobots.com
Tue, 24 May 2011 11:05:31 +0200
14 files changed,
56 insertions(+),
0 deletions(-)
M
audio_test.go
→
audio_test.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + package captcha import (
M
capgen/main.go
→
capgen/main.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + // capgen is an utility to test captcha generation. package main
M
captcha.go
→
captcha.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + // Package captcha implements generation and verification of image and audio // CAPTCHAs. //
M
captcha_test.go
→
captcha_test.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + package captcha import (
M
example/main.go
→
example/main.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + // example of HTTP server that uses the captcha package. package main
M
generate/main.go
→
generate/main.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + // generate is a tool to generate sounds.go from WAVE files. // // It creates (or rewrites) sounds.go in the parent directory.
M
image_test.go
→
image_test.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + package captcha import (
M
store_test.go
→
store_test.go
@@ -1,3 +1,7 @@
+// Copyright 2011 Dmitry Chestnykh. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + package captcha import (