Re: [go-nuts] How to correctly add license information when using code from the golang project

2017-08-13 Thread Ian Lance Taylor
On Sun, Aug 13, 2017 at 11:45 AM, Alex wrote: >> So would it be enough (if I switch over to also use BSD3 License) to have >> a license file in my project with this content: >> >> >> Copyright (c) 2009 The Go Authors. All rights reserved. >> Copyright (c) 2017 Alexander Gehres. All rights reserved

Re: [go-nuts] How to correctly add license information when using code from the golang project

2017-08-13 Thread Alex
> > So would it be enough (if I switch over to also use BSD3 License) to have > a license file in my project with this content: > Copyright (c) 2009 The Go Authors. All rights reserved. > Copyright (c) 2017 Alexander Gehres. All rights reserved. > Redistribution and use in source and binary

Re: [go-nuts] How to correctly add license information when using code from the golang project

2017-08-12 Thread Ian Lance Taylor
On Sat, Aug 12, 2017 at 4:44 AM, wrote: > > At the moment I am developing a httpmockserver that uses a slightly modified > version of > https://github.com/golang/go/blob/master/src/net/http/httptest/server.go > > My own project uses the MIT License. > > So what is the correct way of including the

[go-nuts] How to correctly add license information when using code from the golang project

2017-08-12 Thread alexander . gehres
Hi. At the moment I am developing a httpmockserver that uses a slightly modified version of https://github.com/golang/go/blob/master/src/net/http/httptest/server.go My own project uses the MIT License. So what is the correct way of including the modified file in my project? This is my project