From 24864b01f17d4ced3b93610d370bfb8d1cf7bd5c Mon Sep 17 00:00:00 2001 From: jim teeuwen Date: Wed, 15 Dec 2010 19:04:12 +0100 Subject: [PATCH] Added LICENSE file. Code falls under a 1-Clause BSD license, of which its contents can be found in said LICENSE file. --- LICENSE | 20 ++++++++++++++++++++ README | 7 +++++++ src/feed.go | 4 ---- 3 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6574112 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ + +Copyright (c) 2010, Jim Teeuwen. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README b/README index c312735..6c895d6 100644 --- a/README +++ b/README @@ -21,3 +21,10 @@ all fields will be filled when requesting either an RSS or Atom feed. I have tried to create as many shared fields as possible but some of them simply do not occur in either the RSS or Atom spec. + +================================================================================ + LICENSE +================================================================================ + +All code is subject to a 1-clause BSD license. See the LICENSE file for its +contents. diff --git a/src/feed.go b/src/feed.go index 337b0b5..a4d1a41 100644 --- a/src/feed.go +++ b/src/feed.go @@ -1,7 +1,3 @@ -// Copyright 2009 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. - /* Author: jim teeuwen Dependencies: go-pkg-xmlx (http://github.com/jteeuwen/go-pkg-xmlx)