~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to session.h

  • Committer: Matthew Fuller
  • Date: 2017-01-18 04:52:39 UTC
  • mfrom: (554.1.19 copyright)
  • Revision ID: fullermd@over-yonder.net-20170118045239-18fp3q6gbg4jmz07
Centralize license info and standardize copyright statements.

There are 4 classes of license applied to the current code.  There is
code that came from twm, which has Evans & Sutherland and MIT copyrights,
with associated license.  And there is [nearly all of] the code that came
in as part of the ctwm lifecycle, which has copyrights from Claude and
other ctwm contributors, with that associated license.  These cover the
bulk of the code, and are all described in the base COPYRIGHT file.  All
the license info from individual files that fall into these categories
was moved into COPYRIGHT, and copyright lines were left but abridged and
are referenced to it.

  VCS history is really the best way to track authorship of individual
  code sections anyway.  File-level granularity is too coarse to be
  useful most of the time, and there are more than a few places where
  what's given is pretty questionable given the apparent code history.

There are files in ext/ that are third party code brought in to fill in
specific functionality; they have their own license info explicitly
listed in each file.  And there is the special case of session.c, which,
in addition to the twm and ctwm copyright/license info, has an additional
(and more restrictive) license from Durham.  This is left explicitly
spelled out in that file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *  [ ctwm ]
3
 
 *
4
 
 *  Copyright 2004 Richard Levitte
5
 
 *
6
 
 * Permission to use, copy, modify  and distribute this software  [ctwm] and
7
 
 * its documentation for any purpose is hereby granted without fee, provided
8
 
 * that the above  copyright notice appear  in all copies and that both that
9
 
 * copyright notice and this permission notice appear in supporting documen-
10
 
 * tation, and that the name of  Claude Lecommandeur not be used in adverti-
11
 
 * sing or  publicity  pertaining to  distribution of  the software  without
12
 
 * specific, written prior permission. Claude Lecommandeur make no represen-
13
 
 * tations  about the suitability  of this software  for any purpose.  It is
14
 
 * provided "as is" without express or implied warranty.
15
 
 *
16
 
 * Claude Lecommandeur DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17
 
 * INCLUDING ALL  IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS.  IN NO
18
 
 * EVENT SHALL  Claude Lecommandeur  BE LIABLE FOR ANY SPECIAL,  INDIRECT OR
19
 
 * CONSEQUENTIAL  DAMAGES OR ANY  DAMAGES WHATSOEVER  RESULTING FROM LOSS OF
20
 
 * USE, DATA  OR PROFITS,  WHETHER IN AN ACTION  OF CONTRACT,  NEGLIGENCE OR
21
 
 * OTHER  TORTIOUS ACTION,  ARISING OUT OF OR IN  CONNECTION WITH THE USE OR
22
 
 * PERFORMANCE OF THIS SOFTWARE.
23
 
 *
24
 
 * Author:  Richard Levitte [ richard@levitte.org ][ June 2004 ]
 
2
 * Copyright 2004 Richard Levitte
25
3
 */
26
4
 
27
5
#ifndef _CTWM_SESSION_H
59
37
void ConnectToSessionManager(char *previous_id);
60
38
 
61
39
#endif /* _CTWM_SESSION_H */
62