]> git.lyx.org Git - lyx.git/commitdiff
Standard blurb.
authorAngus Leeming <leeming@lyx.org>
Wed, 18 Jun 2003 09:56:10 +0000 (09:56 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 18 Jun 2003 09:56:10 +0000 (09:56 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7185 a592a061-630c-0410-9148-cb99ea01b6c8

32 files changed:
src/support/BoostFormat.h
src/support/ChangeLog
src/support/DebugStream.C
src/support/DebugStream.h
src/support/LAssert.h
src/support/abort.C
src/support/atexit.c
src/support/atoi.C
src/support/boost-inst.C
src/support/chdir.C
src/support/copy.C
src/support/filetools.C
src/support/filetools.h
src/support/forkedcall.C
src/support/forkedcall.h
src/support/getcwd.C
src/support/kill.C
src/support/lyxfunctional.h
src/support/lyxmanip.h
src/support/mkdir.C
src/support/os.C
src/support/os.h
src/support/os_os2.C
src/support/os_unix.C
src/support/os_win32.C
src/support/putenv.C
src/support/rename.C
src/support/rmdir.C
src/support/tempname.C
src/support/tostr.C
src/support/types.h
src/support/unlink.C

index e96cb1d24695a99a3d9906439f8131ec9d890ba6..3be9a8afc1766d324e003b1b8761b8fd11cee857 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file BoostFormat.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #ifndef LYX_BOOST_FORMAT_H
 #define LYX_BOOST_FORMAT_H
 
index 1af545ab55113b37795b328946d78f3a69d7d645..ffb7c60d1932985e64ec55f06e79a3a036911302 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-18  Angus Leeming  <leeming@lyx.org>
+
+       * many files: add the standard blurb, "This file is part of LyX" etc
+
 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
 
        * limited_stack.h: make it have a const_iterator, add begin, and
index 75ed4a159044d995820972d11218c78ee3218bde..27b954ed43a255539484d99b50ceff5968fa8a79 100644 (file)
@@ -1,9 +1,12 @@
-// Created by Lars Gullik Bjønnes
-// Copyright 1999 Lars Gullik Bjønnes (larsbj@lyx.org)
-// Released into the public domain.
-
-// Primarily developed for use in the LyX Project http://www.lyx.org/
-// but should be adaptable to any project.
+/**
+ * \file DebugStream.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 //#define TEST_DEBUGSTREAM
 
index c4b97fdcd5174d55d82d534d64bed3f2278c1509..dd7b7118ca7fef7a5d8996259cb7fae51e888848 100644 (file)
@@ -1,13 +1,13 @@
 // -*- C++ -*-
-
-// Created by Lars Gullik Bjønnes
-// Copyright 1999 Lars Gullik Bjønnes (larsbj@lyx.org)
-// Released into the public domain.
-
-// Implemented and tested on g++ 2.7.2.3
-
-// Primarily developed for use in the LyX Project http://www.lyx.org/
-// but should be adaptable to any project.
+/**
+ * \file DebugStream.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef DEBUGSTREAM_H
 #define DEBUGSTREAM_H
index 6a937266024f62faa7a5fa1e7b9fa94b6b73e94c..65b8618b8743a56bb93569d4793367d1224b9657 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file LAssert.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #ifndef LASSERT_H
 #define LASSERT_H
 
index 46f57ce2a94d5515791b1e73131840f869becc2a..13623091851a92a8dca448bcf27e0892480ed46c 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file abort.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <stdlib.h>
index 9d99f389b33f04dcd1256d5b279bff402431547c..55d0199ae2b11a7166ba6496eda52412f703636c 100644 (file)
@@ -1,5 +1,9 @@
-/* Wrapper to implement ANSI C's atexit using SunOS's on_exit. */
-/* This function is in the public domain.  --Mike Stump. */
+/**
+ * \file atexit.c
+ * Wrapper to implement ANSI C's atexit using SunOS's on_exit.
+ *
+ * This function is in the public domain.  --Mike Stump.
+ */
 
 #ifndef NEED_on_exit
 int atexit(void (*f)())
index 949dee071152e4bf38be98c707b95ccda1c81412..69d759d8e0ca75d84cb05044f9b0039c4b038078 100644 (file)
@@ -1,3 +1,14 @@
+/**
+ * \file atoi.C
+ * 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
+ */
+
 #include <config.h>
 
 #include <cstdlib>
index f16bc6279bb42991be52bd9a7b1cd9b1f2902b66..2d6758cee18d7a3cec2190140508bdb16c85c23c 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file boost-inset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include "support/BoostFormat.h"
index 1f630a465d05763b7c374f88a3788714b2e864c4..e87552c12caf6a50d2968584554e38d008e73075 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file chdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <unistd.h>
index b89f2159494aa836f937e62e6292c69778ed059e..98ddc399a3177e04f500f06bcc73fbdea392176d 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file copy.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <fstream>
index 540b9e4f9293d4bbe0c24d7305f4f01116796261..97869ee40225678a2dc562a317076a8aa016fd7d 100644 (file)
  * \author Asger Alstrup
  * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
+ * \author Angus Leeming
+ * \author John Levon
+ * \author Herbert Voss
  *
- * Full author contact details are available in file CREDITS
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * General path-mangling functions
  */
index e5cd6855a53943ca4d6d4b95a035e572fe86978f..fd82342e20727601bbd98f703469f9d1f1575337 100644 (file)
@@ -3,6 +3,10 @@
  * \file filetools.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LYX_FILETOOL_H
index c3e6938098a6b9a6332a4488d38e491deae38dce..a5e281cd9760f87dba1b5c47c8147c82582edf84 100644 (file)
@@ -1,5 +1,5 @@
 /**
- *  \file forkedcall.C
+ * \file forkedcall.C
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index b1bfa2865be4a625718117c9aab7d5f73d6d10c9..d053af31168392dca72ba032781d9343207ebd9a 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- *  \file forkedcall.h
+ * \file forkedcall.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index 6b28ef9ca6cb301ad9ae5c89d5cbbf8286aadcaa..305c8107b9bd5ad74ede6259549c92dc9457879b 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file getcwd.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <cerrno>
index 105ce29db64b484cfb55ab943e9c926f167a994c..b307d28d536d7899f8793557659fe621ac3bf574 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file kill.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include "lyxlib.h"
index c89e097621e12b4de89d63bf2d9a41e755b79aff..71cf36f55b200e883f5657e3c9711520cac59040 100644 (file)
@@ -1,15 +1,23 @@
 // -*- C++ -*-
+/**
+ * \file lyxfunctional.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * \brief Convenient function objects for use with LyX
+ *
+ * This is currently a small collection of small function objects for use
+ * together with std::algorithms.
+ */
+
 
 #ifndef LYX_FUNCTIONAL_H
 #define LYX_FUNCTIONAL_H
 
-/** \file lyxfunctional.h
-    \brief Convenient function objects for use with LyX
-
-    This is currently a small collection of small function objects for use
-    together with std::algorithms.
-**/
-
 #include <iterator>
 
 namespace lyx {
index bc106bed79229554475b6625c90c7fd0b5eec7bb..557c2a0e163ba7f7fa1fc98eb3347f6b09364e82 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file lyxmanip.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
index faae48c280edae9e7b0e2f12a791a20054f584fa..577b3a0613eed9f6864b2d32ea3bba061f9cbfa8 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file mkdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <sys/stat.h>
index 87967451358a3eadb00074b6b48fb1a36461fe73..b0abda86ae261c9c157709714b9ac3614abfce76 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file os.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ruurd A. Reitsma
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #ifdef __EMX__
index 330e9a801f283b82f8204c2b7687f56a28c06b6a..6edc51178644e2b4a121d80a2b3b4b66dbafcfd7 100644 (file)
@@ -1,4 +1,13 @@
-// os.h copyright "Ruurd A. Reitsma" <R.A.Reitsma@wbmt.tudelft.nl>
+// -*- C++ -*-
+/**
+ * \file os.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ruurd A. Reitsma
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef OS_H
 #define OS_H
index 5b2ec5864f5634c5a755b5bc018dab25c314c548..5e08bf8f5f7733fee6a00d0988a3075df7238444 100644 (file)
@@ -1,6 +1,15 @@
-// os_os2.C
+/**
+ * \file os_os2.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ruurd A. Reitsma
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * Various OS specific functions
+ */
 
-// Various OS specific functions
 #include <config.h>
 
 #include "os.h"
index d46eaffe3c1079528dfd0abf13f19edab78f704f..ddff701f52f9f6b7e60ab8ad787d4dd274026831 100644 (file)
@@ -1,6 +1,15 @@
-// os_unix.C
+/**
+ * \file os_unix.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ruurd A. Reitsma
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * Various OS specific functions
+ */
 
-// Various OS specific functions
 #include <config.h>
 
 #include "os.h"
index 5dd12e03767c7fad5fd621b739f36487c0a73bfd..328538e71165e7528b2db7680c7c28516a097e84 100644 (file)
@@ -1,6 +1,15 @@
-// os_win32.C copyright "Ruurd A. Reitsma" <R.A.Reitsma@wbmt.tudelft.nl>
+/**
+ * \file os_win32.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ruurd A. Reitsma
+ *
+ * Full author contact details are available in file CREDITS
+ *
+ * Various OS specific functions
+ */
 
-// Various OS specific functions
 #include <config.h>
 
 #include "os.h"
index e1df57545218e5e45a0da757aaf60a99d8a8f892..828517d09f64dc7e261327546a6d22e09e9d06a1 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file putenv.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include "lyxlib.h"
index 7c079a2100eb2bbcd2d683491e382f8cc7265aa4..4a927fdf71eeeeca27c22d9e355544599abb7c1f 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file rename.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <cstdio>
index 5b45cfba9b1d49bc1dac5d1bbe1cf47db42acf35..a2aeeb8a087cea7f8200094d3ad1322a2abb9446 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file rmdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <unistd.h>
index d6b9fb0c7d2f95fd6cc06405118a8ed2ef7ac44d..780b1939c26379cbd0526983aadea85e2a8638e4 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file tempname.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <cstdlib>
index 94f461fd63c60051781fbc60da0dad71f9df2acc..b610cc21a75ead631efee773a03b1337baaa5f31 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file tostr.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
  
 #include "Lsstream.h"
index 8a1e86af450e7f13701f91ab6f32075a2da6447c..9ee9800d3f40b71c511ba016d1d63c17ff6eb37b 100644 (file)
@@ -1,3 +1,4 @@
+// -*- C++ -*-
 /**
  * \file types.h
  * This file is part of LyX, the document processor.
index ef3b52033269429a3aaab2e34f59789c42133739..dd7e16e3b15b0b6cf261dd7e9192678b182dbba3 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file unlink.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <unistd.h>