diff options
author | oga | 2008-01-11 16:06:44 +0000 |
---|---|---|
committer | oga | 2008-01-11 16:06:44 +0000 |
commit | 13d8a3a4a43bbca611050d5fd8dca3871225b8fb (patch) | |
tree | 145decd421082b1ab56dec4fc20859adaab40758 | |
parent | 6777f6ecb4863eb266f4e71777a3bc7e7ee8c7a7 (diff) | |
download | cwm-13d8a3a4a43bbca611050d5fd8dca3871225b8fb.tar.gz |
- Remove the "all rights reserved" tag at the top of most of the source
files, and replace them with the actual ISC license.
- add license to the manpage (it was lacking before)
- correct license statement in the README
Permission given by Marius (copyright holder):
"1. please replace with the standard ISC license
2. you may add the ISC license to the man page
3. feel free to replace the information in the README as well"
and Dros (copyright holder for group.c):
"Please switch group.c to the ISC License."
ok ian@
-rw-r--r-- | README | 5 | ||||
-rw-r--r-- | calmwm.c | 15 | ||||
-rw-r--r-- | calmwm.h | 15 | ||||
-rw-r--r-- | client.c | 15 | ||||
-rw-r--r-- | conf.c | 15 | ||||
-rw-r--r-- | cwm.1 | 16 | ||||
-rw-r--r-- | grab.c | 15 | ||||
-rw-r--r-- | group.c | 15 | ||||
-rw-r--r-- | headers.h | 15 | ||||
-rw-r--r-- | input.c | 15 | ||||
-rw-r--r-- | kbfunc.c | 15 | ||||
-rw-r--r-- | screen.c | 15 | ||||
-rw-r--r-- | search.c | 14 | ||||
-rw-r--r-- | util.c | 15 | ||||
-rw-r--r-- | xevents.c | 15 | ||||
-rw-r--r-- | xmalloc.c | 15 | ||||
-rw-r--r-- | xutil.c | 15 |
17 files changed, 211 insertions, 34 deletions
@@ -52,8 +52,7 @@ DOCUMENTATION LICENSE - cwm is distributed under a BSD like license. Feel free to use, - modify and distribute in any form. See the LICENSE file for more - information. + cwm is distributed under a BSD like license. Please see the LICENSE + file or the top of any source file for more information. [1] http://evilwm.sourceforge.net/ @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: calmwm.c,v 1.4 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: calmwm.c,v 1.5 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: calmwm.h,v 1.16 2008/01/08 20:21:43 oga Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: calmwm.h,v 1.17 2008/01/11 16:06:44 oga Exp $ */ #ifndef _CALMWM_H_ @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: client.c,v 1.9 2008/01/03 20:20:20 marc Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: client.c,v 1.10 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: conf.c,v 1.18 2008/01/03 01:56:25 oga Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: conf.c,v 1.19 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -1,4 +1,18 @@ -.\" $OpenBSD: cwm.1,v 1.17 2007/11/28 16:35:52 ian Exp $ +.\" $OpenBSD: cwm.1,v 1.18 2008/01/11 16:06:44 oga Exp $ +.\" +.\" Copyright (c) 2004,2005 Marius Aamodt Eriksen <marius@monkey.org> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" The following requests are required for all man pages. .Dd June 29, 2007 @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: grab.c,v 1.5 2007/06/05 18:57:03 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: grab.c,v 1.6 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -3,9 +3,20 @@ * * Copyright (c) 2004 Andy Adamson <dros@monkey.org> * Copyright (c) 2004,2005 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: group.c,v 1.2 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: group.c,v 1.3 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: headers.h,v 1.3 2007/05/22 22:14:42 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: headers.h,v 1.4 2008/01/11 16:06:44 oga Exp $ */ #ifndef _CALMWM_HEADERS_H_ @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: input.c,v 1.3 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: input.c,v 1.4 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Martin Murray <mmurray@monkey.org> - * All rights reserved. * - * $Id: kbfunc.c,v 1.11 2007/11/28 16:35:52 ian Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: kbfunc.c,v 1.12 2008/01/11 16:06:44 oga Exp $ */ #include <paths.h> @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: screen.c,v 1.2 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: screen.c,v 1.3 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,19 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * $Id: search.c,v 1.4 2007/10/02 18:01:45 jasper Exp $ + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: search.c,v 1.5 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: util.c,v 1.2 2007/11/28 16:35:52 ian Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: util.c,v 1.3 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: xevents.c,v 1.2 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: xevents.c,v 1.3 2008/01/11 16:06:44 oga Exp $ */ /* @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: xmalloc.c,v 1.1.1.1 2007/04/27 17:58:48 bernd Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: xmalloc.c,v 1.2 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" @@ -2,9 +2,20 @@ * calmwm - the calm window manager * * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> - * All rights reserved. * - * $Id: xutil.c,v 1.2 2007/05/28 18:34:27 jasper Exp $ + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * $Id: xutil.c,v 1.3 2008/01/11 16:06:44 oga Exp $ */ #include "headers.h" |