Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit ec2848d

Browse files
author
Jan Mercl
committed
A+C
1 parent 25290d7 commit ec2848d

14 files changed

+48
-33
lines changed

AUTHORS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file lists authors for copyright purposes. This file is distinct from
2+
# the CONTRIBUTORS files. See the latter for an explanation.
3+
#
4+
# Names should be added to this file as:
5+
# Name or Organization <email address>
6+
#
7+
# The email address is not required for organizations.
8+
#
9+
# Please keep the list sorted.
10+
11+
CZ.NIC z.s.p.o. <[email protected]>
12+
Jan Mercl <[email protected]>
13+

CONTRIBUTORS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file lists people who contributed code to this repository. The AUTHORS
2+
# file lists the copyright holders; this file lists people.
3+
#
4+
# Names should be added to this file like so:
5+
# Name <email address>
6+
#
7+
# Please keep the list sorted.
8+
9+
Bill Thiede <xinu.tv>
10+
Gary Burd <[email protected]>
11+
Jan Mercl <[email protected]>
12+
Nick Owens <[email protected]>
13+
Tamás Gulácsi <[email protected]>

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011 CZ.NIC z.s.p.o. All rights reserved.
1+
Copyright (c) 2014 The fileutil Authors. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are
@@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer.
1010
copyright notice, this list of conditions and the following disclaimer
1111
in the documentation and/or other materials provided with the
1212
distribution.
13-
* Neither the name of CZ.NIC nor the names of its
13+
* Neither the names of the authors nor the names of the
1414
contributors may be used to endorse or promote products derived from
1515
this software without specific prior written permission.
1616

Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
# Copyright (c) 2014 The fileutil authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style
3+
# license that can be found in the LICENSE file.
4+
15
.PHONY: all clean
26

37
all: editor
48
go vet
9+
golint .
510
go install
611
make todo
712

@@ -12,10 +17,10 @@ editor:
1217
go build
1318

1419
todo:
15-
@grep -n ^[[:space:]]*_[[:space:]]*=[[:space:]][[:alpha:]][[:alnum:]]* *.go *.y || true
16-
@grep -n TODO *.go *.y || true
17-
@grep -n BUG *.go *.y || true
18-
@grep -n println *.go *.y || true
20+
@grep -n ^[[:space:]]*_[[:space:]]*=[[:space:]][[:alpha:]][[:alnum:]]* *.go || true
21+
@grep -n TODO *.go || true
22+
@grep -n BUG *.go || true
23+
@grep -n println *.go || true
1924

2025
clean:
2126
@go clean

all_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// Copyright (c) 2011 CZ.NIC z.s.p.o. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// blame: jnml, labs.nic.cz
6-
75
package fileutil
86

97
import (

fileutil.go

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
// Copyright (c) 2011 CZ.NIC z.s.p.o. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// Copyright 2010 The Go Authors. All rights reserved.
6-
// Use of this source code is governed by a BSD-style
7-
// license that can be found in the LICENSE file.
8-
9-
// blame: jnml, labs.nic.cz
10-
115
// Package fileutil collects some file utility functions.
126
package fileutil
137

fileutil_arm.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// Copyright (c) 2011 CZ.NIC z.s.p.o. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// blame: jnml, labs.nic.cz
6-
75
package fileutil
86

97
import (

fileutil_darwin.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// Copyright (c) 2011 CZ.NIC z.s.p.o. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// blame: jnml, labs.nic.cz
6-
75
package fileutil
86

97
import (

fileutil_freebsd.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
// Copyright (c) 2013 wathiede[0]. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
4-
//
5-
// [0]: https://github.com/wathiede
64

75
package fileutil
86

fileutil_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2013 jnml. All rights reserved.
1+
// Copyright (c) 2014 The fileutil Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

0 commit comments

Comments
 (0)