From e5869b2b0bdf85d15813c714565fd49943c3d754 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Mon, 12 Jan 2015 22:47:36 +0000 Subject: [PATCH 1/2] update copyrights to 2015 Signed-off-by: Victor Vieux --- docs/mkdocs.yml | 2 +- docs/theme/mkdocs/footer.html | 4 ++-- pkg/mflag/LICENSE | 2 +- pkg/mflag/flag.go | 2 +- pkg/mflag/flag_test.go | 4 ++-- pkg/symlink/LICENSE.APACHE | 2 +- pkg/symlink/LICENSE.BSD | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 6d2ecac3a..73150cc44 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -18,7 +18,7 @@ use_absolute_urls: true theme_dir: ./theme/mkdocs/ theme_center_lead: false -copyright: Copyright © 2014, Docker, Inc. +copyright: Copyright © 2014-2015, Docker, Inc. google_analytics: ['UA-6096819-11', 'docker.io'] pages: diff --git a/docs/theme/mkdocs/footer.html b/docs/theme/mkdocs/footer.html index 69a4e6367..923ace519 100644 --- a/docs/theme/mkdocs/footer.html +++ b/docs/theme/mkdocs/footer.html @@ -101,7 +101,7 @@
- \ No newline at end of file + diff --git a/pkg/mflag/LICENSE b/pkg/mflag/LICENSE index ebcfbcc77..ac74d8f04 100644 --- a/pkg/mflag/LICENSE +++ b/pkg/mflag/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 The Docker & Go Authors. All rights reserved. +Copyright (c) 2014-2015 The Docker & Go Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/pkg/mflag/flag.go b/pkg/mflag/flag.go index 72addae63..1707b16fa 100644 --- a/pkg/mflag/flag.go +++ b/pkg/mflag/flag.go @@ -1,4 +1,4 @@ -// Copyright 2014 The Docker & Go Authors. All rights reserved. +// Copyright 2014-2015 The Docker & 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. diff --git a/pkg/mflag/flag_test.go b/pkg/mflag/flag_test.go index b8c0b305d..df640d148 100644 --- a/pkg/mflag/flag_test.go +++ b/pkg/mflag/flag_test.go @@ -1,4 +1,4 @@ -// Copyright 2014 The Docker & Go Authors. All rights reserved. +// Copyright 2014-2015 The Docker & 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. @@ -7,12 +7,12 @@ package mflag_test import ( "bytes" "fmt" - . "github.com/docker/docker/pkg/mflag" "os" "sort" "strings" "testing" "time" + . "github.com/docker/docker/pkg/mflag" ) // ResetForTesting clears all flag state and sets the usage function as directed. diff --git a/pkg/symlink/LICENSE.APACHE b/pkg/symlink/LICENSE.APACHE index 27448585a..9e4bd4dbe 100644 --- a/pkg/symlink/LICENSE.APACHE +++ b/pkg/symlink/LICENSE.APACHE @@ -176,7 +176,7 @@ END OF TERMS AND CONDITIONS - Copyright 2014 Docker, Inc. + Copyright 2014-2015 Docker, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/pkg/symlink/LICENSE.BSD b/pkg/symlink/LICENSE.BSD index ebcfbcc77..ac74d8f04 100644 --- a/pkg/symlink/LICENSE.BSD +++ b/pkg/symlink/LICENSE.BSD @@ -1,4 +1,4 @@ -Copyright (c) 2014 The Docker & Go Authors. All rights reserved. +Copyright (c) 2014-2015 The Docker & Go Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are From b70632ec532d4a948e227a646f8286d7c439cb4f Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Mon, 12 Jan 2015 22:52:19 +0000 Subject: [PATCH 2/2] fix issue with goimport Signed-off-by: Victor Vieux --- pkg/mflag/flag_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/mflag/flag_test.go b/pkg/mflag/flag_test.go index df640d148..85f32c8aa 100644 --- a/pkg/mflag/flag_test.go +++ b/pkg/mflag/flag_test.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package mflag_test +package mflag import ( "bytes" @@ -12,7 +12,6 @@ import ( "strings" "testing" "time" - . "github.com/docker/docker/pkg/mflag" ) // ResetForTesting clears all flag state and sets the usage function as directed.