]> git.lyx.org Git - lyx.git/commitdiff
Clean up licence info and add Lars as the mysterious unknown author.
authorAngus Leeming <leeming@lyx.org>
Wed, 25 Sep 2002 10:03:41 +0000 (10:03 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 25 Sep 2002 10:03:41 +0000 (10:03 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5341 a592a061-630c-0410-9148-cb99ea01b6c8

32 files changed:
src/support/ChangeLog
src/support/FileInfo.C
src/support/FileInfo.h
src/support/FileMonitor.C
src/support/FileMonitor.h
src/support/LAssert.C
src/support/LIstream.h
src/support/LOstream.h
src/support/filetools.C
src/support/filetools.h
src/support/forkedcall.C
src/support/forkedcall.h
src/support/forkedcontr.C
src/support/forkedcontr.h
src/support/limited_stack.h
src/support/lstrings.C
src/support/lstrings.h
src/support/lyxalgo.h
src/support/lyxlib.h
src/support/lyxstring.C
src/support/lyxstring.h
src/support/lyxsum.C
src/support/nt_defines.h
src/support/os2_defines.h
src/support/os2_errortable.h
src/support/path.C
src/support/path.h
src/support/systemcall.C
src/support/systemcall.h
src/support/textutils.h
src/support/translator.h
src/support/types.h

index 3dd7568adf2a6fdd201ea01958ae310c4d9aa403..1f1c165ba015f4e5ee31c12fa4d629d33df5304b 100644 (file)
@@ -1,3 +1,7 @@
+2002-09-24  Angus Leeming  <leeming@lyx.org>
+
+       * most files: clean-up the license info.
+
 2002-09-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * Makefile.am (INCLUDES): loose SIGC_INCLUDES
index 795e1a57ce0e065bd9efe02af9f042d6bd01d1cc..27195f3d62f1a0efc841bf9d294cbb950c7bce59 100644 (file)
@@ -1,12 +1,12 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file FileInfo.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
@@ -102,7 +102,7 @@ void flagRWX(mode_t i, char * str)
 void setSticky(mode_t i, char * str)
 {
 #ifdef S_ISUID
-       if (i & S_ISUID) 
+       if (i & S_ISUID)
                str[3] = (str[3] == 'x') ? 's' : 'S';
 #endif
 #ifdef S_ISGID
@@ -110,7 +110,7 @@ void setSticky(mode_t i, char * str)
                str[6] = (str[6] == 'x') ? 's' : 'S';
 #endif
 #ifdef S_ISVTX
-       if (i & S_ISVTX) 
+       if (i & S_ISVTX)
                str[9] = (str[9] == 'x') ? 's' : 'S';
 #endif
 }
index 309dcf9f9cfc7aada2baa0134d4a9835e279ff96..b83e0dc752a197815e6aaec482b64fe08e4b35d4 100644 (file)
@@ -1,13 +1,13 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file FileInfo.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef FILE_INFO_H
 #define FILE_INFO_H
index 4bc514e581722d607ae324790a3c519eb0a365bf..84f47cdaad7fa5fc739491dbb240515fa12716cd 100644 (file)
@@ -1,9 +1,11 @@
-/*
+/**
  * \file FileMonitor.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming <leeming@lyx.org>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -65,7 +67,7 @@ void FileMonitor::reset(string const & file_with_path) const
        bool const monitor = pimpl_->timer_.running();
        if (monitor)
                stop();
-       
+
        pimpl_->filename_ = file_with_path;
 
        if (monitor)
index f91e3f2541d567e33e65c78501b2afdead641128..3ddf4417a9b540b86d19c633bc67a4e32de9e205 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
-/*
+/**
  * \file FileMonitor.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming <leeming@lyx.org>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  *
  * FileMonitor monitors a file and informs a listener when that file has
  * changed.
index ab0e6da223a0e93d738d47a0ee86841f4005a430..233f743b85def9f706765d43ddeb03ad1323d03c 100644 (file)
@@ -1,12 +1,12 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file LAssert.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
index 60d5bc79aa4eac6eb4c22a2db47fecad40335d22..8570fbdd1b6c5af8f1f82ab050233d3208fe961d 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
-
+/**
+ * \file LIStream.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ */
 
 #ifndef LISTREAM_H
 #define LISTREAM_H
index bd6ec805e62fc65b82d2667a8af07c0051f11520..11f68e29b190056ee0a2d005e7f7c3c0cc255997 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
-
+/**
+ * \file LOStream.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ */
 
 #ifndef LOSTREAM_H
 #define LOSTREAM_H
index fd938e7c8ae7a710c46084c799965eb8448ad970..d8c4438d96ce510ad5affb78c9839c03b19ec8ab 100644 (file)
@@ -1,18 +1,20 @@
-/*
-       filetools.C (former paths.C) - part of LyX project
-       General path-mangling functions
-       Copyright 1996 Ivan Schreter
-       Parts Copyright 1996 Dirk Niggemann
-       Parts Copyright 1985, 1990, 1993 Free Software Foundation, Inc.
-       Parts Copyright 1996 Asger Alstrup
-
-       See also filetools.h.
-
-       lyx-filetool.C : tools functions for file/path handling
-       this file is part of LyX, the High Level Word Processor
-       Copyright 1995-1996, Matthias Ettrich and the LyX Team
-
-*/
+/**
+ * \file filetools.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * parts Copyright 1985, 1990, 1993 Free Software Foundation, Inc.
+ *
+ * \author Ivan Schreter
+ * \author Dirk Niggemann
+ * \author Asger Alstrup
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * General path-mangling functions
+ */
 
 #include <config.h>
 
index 3815daa32c60d4395d61216af880a46d9a88843e..0719d8265a803705bab1ef2484d025d147adfa68 100644 (file)
@@ -1,8 +1,9 @@
 // -*- C++-*-
-/* lyx-filetool.h : tools functions for file/path handling
-   this file is part of LyX, the High Level Word Processor
-   Copyright 1995-2001, Matthias Ettrich and the LyX Team
-*/
+/**
+ * \file filetools.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ */
 
 #ifndef LYX_FILETOOL_H
 #define LYX_FILETOOL_H
index 6ba3bf3f105d237b32b41d1e60bd8aa29a34decb..5a704dce4b4fdb731ff3f20fa4db18a1368d2da6 100644 (file)
@@ -1,12 +1,14 @@
 /**
  *  \file forkedcall.C
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  *
  * An instance of Class Forkedcall represents a single child process.
  *
index f51b86e1b8b8f22c135d905778543f36bed3ec08..2843261ef4a6a3ffb99adfd8a54336bc03d88f2a 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
 /**
  *  \file forkedcall.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  *
  * An instance of Class Forkedcall represents a single child process.
  *
index 7df4e211c373c7849cb131924b4e9c07b68c908d..0da94ef5d04fb3c2e10588e5111bdc41a1b06da6 100644 (file)
@@ -1,11 +1,13 @@
 /**
  * \file forkedcontr.C
- * Copyright 2001 The LyX Team
- * Read COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup Nielsen
  * \author Angus Leeming
  *
+ * Full author contact details are available in file CREDITS
+ *
  * A class for the control of child processes launched using
  * fork() and execvp().
  */
index 73bb424f4c13b990906fe5eab187475587fa1a63..7493a25910770a45de2b37ec724037ca2bf17840 100644 (file)
@@ -1,12 +1,14 @@
 // -*- C++ -*-
 /**
  * \file forkedcontr.h
- * Copyright 2001 The LyX Team
- * Read COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup Nielsen
  * \author Angus Leeming
  *
+ * Full author contact details are available in file CREDITS
+ *
  * A class for the control of child processes launched using
  * fork() and execvp().
  */
index 14eef6e0c65dbbde96e278203c2faecbe6ec34d9..0c5c093c54e12f8b69b8b9bfb1cc5007bc4f6f1b 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file limited_stack.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LIMITED_STACK_H
@@ -24,7 +26,7 @@ public:
        typedef std::list<T> container_type;
        typedef typename container_type::value_type value_type;
        typedef typename container_type::size_type size_type;
+
        /// limit is the maximum size of the stack
        limited_stack(size_type limit = 100) {
                limit_ = limit;
@@ -39,7 +41,7 @@ public:
        void pop() {
                c_.pop_front();
        }
+
        /// return true if the stack is empty
        bool empty() const {
                return c_.size() == 0;
@@ -51,16 +53,16 @@ public:
                        c_.pop_back();
                }
        }
+
        /// push an item on to the stack, deleting the
        /// bottom item on overflow.
        void push(value_type const & v) {
                c_.push_front(v);
                if (c_.size() > limit_) {
-                       c_.pop_back(); 
+                       c_.pop_back();
                }
        }
+
 private:
        /// internal contents
        container_type c_;
@@ -71,5 +73,5 @@ private:
 // make pointer type an error.
 template <typename T>
 class limited_stack<T*>;
+
 #endif // LIMITED_STACK_H
index 15ff13f37b386e3e75f90d68888fc0ccf0a25e9c..dc01255731226fb7ee0d1c4a55fe46d3e32091db 100644 (file)
@@ -1,12 +1,13 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lstrings.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
index 8bcee0ae2389bde9df13b68d24963ce1ce06e789..4fbde835dc6b4971930bcb78319c39acf291bfef 100644 (file)
@@ -1,13 +1,17 @@
 // -*- C++ -*-
-
-/** String helper functions.
-    \file lstrings.h
-    This is a collection of string helper functions that works
-    together with string (and later also with STL String. Some of these
-    would certainly benefit from a rewrite/optimization.
-    \author Lars Gullik Bjønnes
-    \author Jean-Marc Lasgouttes
-*/
+/**
+ * \file lstrings.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * A collection of string helper functions that works with string.
+ * Some of these would certainly benefit from a rewrite/optimization.
+ */
 
 #ifndef LSTRINGS_H
 #define LSTRINGS_H
index 7f4fda7281f9c23cd8cd7449e0a3fc7228c3ec7a..a40d2a5cb60d6cb8d2e145978358cc94bc1920f8 100644 (file)
@@ -1,12 +1,14 @@
 // -*- C++ -*-
 /**
  * \file lyxalgo.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * A variety of useful templates.
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  *
- * \author unknown
+ * A variety of useful templates.
  */
 
 #ifndef LYX_ALGO_H
index 1f28f7bda9697ae55af2165c34e70016e3e1c11f..e1c76ed649cec8cc22946726efc9ea862bb60d66 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
 /**
  * \file lyxlib.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * A selection of useful system functions made
  * handy for C++ usage.
  *
- * \author unknown
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LYX_LIB_H
index 869451135e1705fca21a0f48627a925d828d78a1..fbe70e23dce271f5c5cbdfe2ac6c278b3f614440 100644 (file)
@@ -1,12 +1,12 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lyxstring.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifdef HAVE_CONFIG_H
 #include <config.h>
@@ -1751,7 +1751,7 @@ istream & operator>>(istream & is, lyxstring & s)
                if (isspace(c)) {
                        if (!skipspace) {
                                is.putback(c);
-                               break; 
+                               break;
                        }
                } else {
                        s += c;
index e6dbcdc8a3ab3b66efcd5c4af5d2b31a1f169971..78b768b4a2aae06f1ded11a8c3b0c80fd005f5ca 100644 (file)
@@ -1,13 +1,13 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file lyxstring.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 // This one is heavily based on the string class in The C++
 // Programming Language by Bjarne Stroustrup
index 213298cc0412cf7c4bc642359d6bee7ba69c65b1..55763b28f3119dda259017d458e79592432bdda1 100644 (file)
@@ -1,13 +1,13 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lyxsum.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *           Copyright 2001 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
-
 #include <config.h>
 
 #include "support/lyxlib.h"
index 9efb2aa46f1596a9e141973445040b5169056a39..fe9d26fa87e29988cb99982c18c7ef4ccc683aa1 100644 (file)
@@ -1,19 +1,13 @@
-/* -*- C++ -*- */
-/* This file is part of
- * ======================================================
+// -*- C++ -*-
+/**
+ * \file nt_defines.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, the High Level Word Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-1998 The LyX Team.
- *
- * ======================================================
- A few prototypes and definitions needed for Windows NT */
-
-/* Hacks to get LyX running under Win-NT w. Cygnus b19 (steven@cs.uu.nl) */
+ * Prototypes and definitions needed for Windows NT.
+ */
 
 #ifndef NT_DEFINES_H
 #define NT_DEFINES_H
 
-
-#endif /* NT_DEFINES_H */
+#endif // NT_DEFINES_H
index 58366418dcb7518aee10a21021bc5685ebace3c8..70526093d5e9bb15fd41a53aead7be04a39a934d 100644 (file)
@@ -1,14 +1,11 @@
 /* -*- C++ -*- */
-/* This file is part of
-* ======================================================
-*
-*           LyX, The Document Processor
-*
-*           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2001 The LyX Team.
-*
-* ======================================================
- A few prototypes and definitions needed for OS/2 */
+/**
+ * \file os2_defines.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * Prototypes and definitions needed for OS/2.
+ */
 
 #ifndef OS2_DEFINES_H
 #define OS2_DEFINES_H
index fe75371dc42761fc4ff4d413648a72cf68b01225..d0a6236e0abddc13b8d8f07515c527114a17c74c 100644 (file)
@@ -1,15 +1,12 @@
 /* -*- C++ -*- */
-/* This file is part of
-* ======================================================
-*
-*           LyX, The Document Processor
-*
-*           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2001 The LyX Team.
-*
-* ======================================================
- A table for translating OS/2 API return code into errno.
- Copied from emx library source.                        */
+/**
+ * \file os2_errortable.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * A table for translating OS/2 API return code into errno.
+ * Copied from emx library source.
+ */
 
 #ifndef OS2_ERRORTABLE_H
 #define OS2_ERRORTABLE_H
index b30bc244f3aa886602a65390b0767358b000ac6b..37a44ae31af8ac59a44c56bc00462b0170cec380 100644 (file)
@@ -1,9 +1,11 @@
 /**
  * \file path.C
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -21,12 +23,12 @@ int Path::pop()
                // throw logical_error();
                return 0;
        }
+
        if (lyx::chdir(pushedDir_)) {
                // should throw an exception
                // throw DirChangeError();
        }
        popped_ = true;
+
        return 0;
 }
index 4b802cc14c947463bdd79536d5d38e5271d2dc32..bbc567ca2e60ca8508497cc74a60da1bfd6fc304 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file path.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef PATH_H
@@ -40,7 +42,7 @@ public:
        Path(string const & path)
                : popped_(false)
        {
-               if (!path.empty()) { 
+               if (!path.empty()) {
                        pushedDir_ = lyx::getcwd();
                        if (pushedDir_.empty() || lyx::chdir(path))
                                /* FIXME: throw */;
@@ -48,13 +50,13 @@ public:
                        popped_ = true;
                }
        }
+
        /// set cwd to the previous value if needed
        ~Path()
        {
                if (!popped_) pop();
        }
+
        /// set cwd to the previous value if needed
        int pop();
 private:
index b7040fcba3037e0328a3aa17fec3f1e003fbee56..fcc9a34bc035d03c1469c129817ae482e9c1a0a9 100644 (file)
@@ -1,12 +1,14 @@
 /**
  *  \file systemcall.C
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
index a1676df8bb63e7c83bf229afba80b7e1499d8237..647ae6f537de6484b19b98a6ac82f3be4a76783a 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
 /**
  *  \file systemcall.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef SYSTEMCALL_H
@@ -19,7 +21,7 @@
 #pragma interface
 #endif
 
-/** 
+/**
  * An instance of Class Systemcall represents a single child process.
  *
  * Class Systemcall uses system() to launch the child process.
@@ -36,7 +38,7 @@ public:
                Wait, //< wait for completion before returning from startscript()
                DontWait //< don't wait for completion
        };
+
        /** Start child process.
         *  The string "what" contains a commandline with arguments separated
         *  by spaces.
index 2bb6faced295abd6f936e6e17df4ac8441793877..3a239da1337bb6723ddcee61aa7ae978f1148ed6 100644 (file)
@@ -1,10 +1,13 @@
 // -*- C++ -*-
 /**
  * \file textutils.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Matthias Ettrich
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 // FIXME: I can think of a better name for this file ...
index 3924956d2695eba49bf7bc9baf7211f63e459df2..17d2bae887371157f6ee23e86038218f9199f2e6 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file translator.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Baruch Even <baruch@lyx.org>
+ * \author Baruch Even
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef TRANSLATOR_H
index 013743b376a20dd62471ef4b943eba4a5638f437..8a1e86af450e7f13701f91ab6f32075a2da6447c 100644 (file)
@@ -1,13 +1,15 @@
 /**
  * \file types.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * Provide a set of typedefs for commonly used things like sizes and
  * indices wile trying to stay compatible with types used
  * by the standard containers.
  *
  * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LYX_TYPES_H