Changeset 1310


Ignore:
Timestamp:
2000-07-28T16:50:53+12:00 (24 years ago)
Author:
sjboddie
Message:

Removed CVS logging information from source files

Location:
trunk/gsdl/lib
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/lib/cfgread.cpp

    r1270 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.9  2000/07/05 21:49:22  sjboddie
    31    Receptionist now caches collection information to avoid making multiple
    32    get_collectinfo calls to collection server
    33 
    34    Revision 1.8  2000/04/06 19:57:57  cs025
    35    Correcting a correction - reinstated all lib files due to silly
    36    CVS confusion.
    37 
    38    Revision 1.6  1999/12/05 21:08:28  sjboddie
    39    added support for reading and writing windows ini files
    40 
    41    Revision 1.5  1999/09/07 04:57:41  sjboddie
    42    added gpl notice
    43 
    44    Revision 1.4  1999/02/02 09:54:26  rjmcnab
    45 
    46    Changed the configuration file reader so that any space can be used to
    47    seperate items and so that quotes can be used to contain items. I also
    48    allowed a '\' to indicate that the line continues on the next line.
    49 
    50    Revision 1.3  1999/01/12 01:50:57  rjmcnab
    51 
    52    Standard header.
    53 
    54    Revision 1.2  1999/01/08 02:33:13  rjmcnab
    55 
    56    Added standard header to source files.
    57 
    58  */
    59 
    6025
    6126#include "cfgread.h"
  • trunk/gsdl/lib/cfgread.h

    r1270 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
  • trunk/gsdl/lib/display.cpp

    r1217 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.21  2000/06/18 22:56:55  sjboddie
    31    fixed a bug that I'd introduced earlier when attempting to get things
    32    compiling on VC++ 6.0 - the gsdl-2.22 release (and possibly 2.21) was
    33    affected and wouldn't have displayed chinese and Arabic characters
    34    correctly
    35 
    36    Revision 1.20  2000/05/12 03:09:23  sjboddie
    37    minor modifications to get web library compiling under VC++ 6.0
    38 
    39    Revision 1.19  2000/04/06 19:57:58  cs025
    40    Correcting a correction - reinstated all lib files due to silly
    41    CVS confusion.
    42 
    43    Revision 1.17  2000/02/29 21:00:38  sjboddie
    44    fixed some compiler warnings
    45 
    46    Revision 1.16  1999/11/25 21:53:08  sjboddie
    47    fixed bug in logout
    48 
    49    Revision 1.15  1999/09/24 02:25:35  rjmcnab
    50    removed limitation on the number of arguments that a macro can have
    51 
    52    Revision 1.14  1999/09/07 04:57:41  sjboddie
    53    added gpl notice
    54 
    55    Revision 1.13  1999/08/31 07:59:11  rjmcnab
    56    Generalised spaces to unicode spaces, added ability to automatically detect
    57    whether the input file is Unicode or UTF-8 and read the file in the
    58    appropriate way, and improved the error messages slightly.
    59 
    60    Revision 1.12  1999/07/21 20:46:12  rjmcnab
    61    fixed small bug
    62 
    63    Revision 1.11  1999/07/21 07:26:30  rjmcnab
    64    Added more operators to _If_, changed quoting of parameters so that
    65    ' can be used to quote but it is removed, and made slight optimisation
    66    so that macros that don't contain other macros aren't expanded.
    67 
    68    Revision 1.10  1999/03/01 20:39:54  sjboddie
    69 
    70    Added eq and ne functionality to _If_
    71 
    72    Revision 1.9  1999/03/01 01:18:09  sjboddie
    73 
    74    Fixed bug in _If_ when value being tested was only one character
    75    long (e.g. "0" or "1")
    76 
    77    Revision 1.8  1999/02/28 23:15:29  rjmcnab
    78 
    79    Made _If_ recognise 'false' and '0' as being false.
    80 
    81    Revision 1.7  1999/02/08 01:26:11  rjmcnab
    82 
    83    Improved the error reporting.
    84 
    85    Revision 1.6  1999/01/19 08:30:23  rjmcnab
    86 
    87    Added a method to determine whether a macro has been defined.
    88 
    89    Revision 1.5  1999/01/19 01:38:12  rjmcnab
    90 
    91    Made the source more portable.
    92 
    93    Revision 1.4  1999/01/12 01:50:57  rjmcnab
    94 
    95    Standard header.
    96 
    97    Revision 1.3  1999/01/08 02:33:13  rjmcnab
    98 
    99    Added standard header to source files.
    100 
    101  */
    102 
    10325
    10426#include "display.h"
     
    17271649  return display;
    17281650}
    1729 
  • trunk/gsdl/lib/display.h

    r1217 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
     
    268266
    269267#endif
    270 
  • trunk/gsdl/lib/fileutil.cpp

    r1170 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.16  2000/05/12 03:09:22  sjboddie
    31    minor modifications to get web library compiling under VC++ 6.0
    32 
    33    Revision 1.15  2000/05/04 08:27:28  sjboddie
    34    modifications for windows ports of GCC
    35 
    36    Revision 1.14  2000/04/06 19:57:59  cs025
    37    Correcting a correction - reinstated all lib files due to silly
    38    CVS confusion.
    39 
    40    Revision 1.12  2000/02/21 21:53:19  sjboddie
    41    removed old comment
    42 
    43    Revision 1.11  1999/11/21 01:09:30  sjboddie
    44    added readdir function for windows
    45 
    46    Revision 1.10  1999/10/25 22:27:51  sjboddie
    47    added read_dir function - doesn't support windows yet
    48 
    49    Revision 1.9  1999/10/19 03:52:25  davidb
    50    added some useful functions for collection building
    51    from webpages
    52 
    53    Revision 1.8  1999/09/07 04:57:42  sjboddie
    54    added gpl notice
    55 
    56    Revision 1.7  1999/08/31 08:00:43  rjmcnab
    57    Fixed a windows specific error in the file_exists function.
    58 
    59    Revision 1.6  1999/04/06 22:16:49  rjmcnab
    60    Added more options for filename_cat.
    61 
    62    Revision 1.5  1999/01/19 01:38:14  rjmcnab
    63 
    64    Made the source more portable.
    65 
    66    Revision 1.4  1999/01/12 01:50:59  rjmcnab
    67 
    68    Standard header.
    69 
    70    Revision 1.3  1999/01/08 02:33:14  rjmcnab
    71 
    72    Added standard header to source files.
    73 
    74  */
    75 
    7625
    7726#include "fileutil.h"
  • trunk/gsdl/lib/fileutil.h

    r1076 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
  • trunk/gsdl/lib/gsdlconf.h

    r1170 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
  • trunk/gsdl/lib/gsdltimes.cpp

    r1076 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.4  2000/04/06 19:58:00  cs025
    31    Correcting a correction - reinstated all lib files due to silly
    32    CVS confusion.
    33 
    34    Revision 1.2  1999/09/07 04:57:42  sjboddie
    35    added gpl notice
    36 
    37    Revision 1.1  1999/07/11 10:52:56  rjmcnab
    38    Initial revision.
    39 
    40  */
    41 
    4225
    4326#include "gsdltimes.h"
  • trunk/gsdl/lib/gsdltimes.h

    r1076 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    2725
  • trunk/gsdl/lib/gsdltools.cpp

    r1176 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.5  2000/05/19 04:56:01  sjboddie
    31    added gsdl_system function for spawning off new processes under windows
    32 
    33    Revision 1.4  2000/05/04 05:16:23  sjboddie
    34    Moved dm_safe from htmlutils to gsdltools. Also made it escape '\'
    35    characters to prevent their mysterious disapearance from things like
    36    windows filenames when they get passed through the macro expander.
    37 
    38    Revision 1.3  2000/04/06 19:58:01  cs025
    39    Correcting a correction - reinstated all lib files due to silly
    40    CVS confusion.
    41 
    42    Revision 1.1  2000/02/29 01:37:00  sjboddie
    43    tidied up endianness
    44 
    45  */
    46 
    4725
    4826#include "gsdltools.h"
  • trunk/gsdl/lib/gsdltools.h

    r1176 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
  • trunk/gsdl/lib/gsdlunicode.cpp

    r1236 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.14  2000/06/23 05:03:29  nzdl
    31    fixed a couple of compiler warnings created by the new encoding stuff
    32 
    33    Revision 1.13  2000/06/23 03:21:38  sjboddie
    34    Created converter classes for simple 8 bit encodings that use a
    35    simple textual map file. Instances of these classes are used to handle
    36    the Windows 1256 (Arabic) encoding.
    37 
    38    Revision 1.12  2000/04/06 19:58:02  cs025
    39    Correcting a correction - reinstated all lib files due to silly
    40    CVS confusion.
    41 
    42    Revision 1.10  1999/09/07 04:57:43  sjboddie
    43    added gpl notice
    44 
    45    Revision 1.9  1999/07/21 07:23:17  rjmcnab
    46    Added setmapfile function to map conversion utilities so the map file
    47    does not need to be loaded when map conversion object is created.
    48 
    49    Revision 1.8  1999/07/01 04:03:45  rjmcnab
    50    Optimised utf8inconvertclass::convert slightly.
    51 
    52    Revision 1.7  1999/06/30 04:59:03  rjmcnab
    53    Added a to_utf8 function that takes iterators as input.
    54 
    55    Revision 1.6  1999/06/26 01:05:04  rjmcnab
    56    No real changes.
    57 
    58    Revision 1.5  1999/01/12 01:50:59  rjmcnab
    59 
    60    Standard header.
    61 
    62    Revision 1.4  1999/01/08 02:33:15  rjmcnab
    63 
    64    Added standard header to source files.
    65 
    66  */
    67 
    6825
    6926#include "gsdlunicode.h"
  • trunk/gsdl/lib/gsdlunicode.h

    r1236 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
  • trunk/gsdl/lib/text_t.cpp

    r1088 r1310  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.18  2000/04/14 02:50:12  sjboddie
    31    added text_t versions of joinchar to work with sets and lists
    32 
    33    Revision 1.17  2000/04/06 19:58:03  cs025
    34    Correcting a correction - reinstated all lib files due to silly
    35    CVS confusion.
    36 
    37    Revision 1.15  1999/10/14 22:52:39  sjboddie
    38    joinchar can join using text_t string now too
    39 
    40    Revision 1.14  1999/09/24 02:30:03  rjmcnab
    41    added function has_unicode_letdig
    42 
    43    Revision 1.13  1999/09/07 04:57:43  sjboddie
    44    added gpl notice
    45 
    46    Revision 1.12  1999/08/31 08:04:41  rjmcnab
    47    Fixed a small but hard to find bug in getcarr
    48 
    49    Revision 1.11  1999/07/01 04:05:09  rjmcnab
    50    Optimised append functions slightly and added a reserve function.
    51 
    52    Revision 1.10  1999/04/26 03:58:03  sjboddie
    53    added is_number function
    54 
    55    Revision 1.9  1999/04/06 22:17:24  rjmcnab
    56    Added splits and joins using text_tset.
    57 
    58    Revision 1.8  1999/02/28 23:14:41  rjmcnab
    59 
    60    Added uc and lc to convert to uppercase and lowercase.
    61 
    62    Revision 1.7  1999/02/21 22:26:39  rjmcnab
    63 
    64    Made getint() a constant function.
    65 
    66    Revision 1.6  1999/02/03 01:13:26  sjboddie
    67 
    68    Got interface to handle subcollections and language subcollections -
    69    committed changes made to some of the collections
    70 
    71    Revision 1.5  1999/01/19 01:38:14  rjmcnab
    72 
    73    Made the source more portable.
    74 
    75    Revision 1.4  1999/01/12 01:51:00  rjmcnab
    76 
    77    Standard header.
    78 
    79    Revision 1.3  1999/01/08 02:33:16  rjmcnab
    80 
    81    Added standard header to source files.
    82 
    83  */
    84 
    8525
    8626#include "text_t.h"
  • trunk/gsdl/lib/text_t.h

    r1088 r1310  
    2121 * along with this program; if not, write to the Free Software
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    23  *
    24  * $Id$
    2523 *
    2624 *********************************************************************/
Note: See TracChangeset for help on using the changeset viewer.