1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
--- 2.4.1.1 1999/10/31 15:01:33
+++ 2.4.1.2 1999/11/02 11:16:04
@@ -1,4 +1,4 @@
-static char rcs_id[] = "$Id: http-analyze.c,v 2.4.1.1 1999/10/31 15:01:33 stefan Stab $";
+static char rcs_id[] = "$Id: http-analyze.c,v 2.4.1.2 1999/11/02 11:16:04 stefan Stab $";
/*
*************************************************************************
@@ -203,48 +203,38 @@
** to compile the. software. The following copyrights and credits apply
** for gd1.7.3, which has been used for http-analyze2.4:
**
-** Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, by Cold
-** Spring Harbor Laboratory. Funded under Grant P41-RR02188 by the
-** National Institutes of Health.
-**
-** Portions copyright 1996, 1997, 1998, 1999, by Boutell.Com, Inc.
-**
-** Portions relating to GD2 format copyright 1999 Philip Warner.
-**
-** Portions relating to PNG copyright 1999, Greg Roelofs.
-**
-** Permission has been granted to copy and distribute gd in any
-** context, including a commercial application, provided that this
-** notice is present in user-accessible supporting documentation.
-**
-** This does not affect your ownership of the derived work itself,
-** and the intent is to assure proper credit for the authors of gd,
-** not to interfere with your productive use of gd. If you have
-** questions, ask. "Derived works" includes all programs that
-** utilize the library. Credit must be given in user-accessible
-** documentation.
-**
-** Permission to use, copy, modify, and distribute this software
-** and its documentation for any purpose and without fee is hereby
-** granted, provided that the above copyright notice appear in all
-** copies and that both that copyright notice and this permission
-** notice appear in supporting documentation. This software is
-** provided "as is" without express or implied warranty.
-**
-** Although their code does not appear in gd 1.6.1, the authors
-** wish to thank David Koblas, David Rowley, and Hutchison Avenue
-** Software Corporation for their prior contributions.
-**
-** Permission to use, copy, modify, and distribute this software
-** and its documentation for any purpose and without fee is hereby
-** granted, provided that the above copyright notice appear in all
-** copies and that both that copyright notice and this permission
-** notice appear in supporting documentation. This software is
-** provided "AS IS." The copyright holders disclaim all warranties,
-** either express or implied, including but not limited to implied
-** warranties of merchantability and fitness for a particular purpose,
-** with respect to this code and accompanying documentation.
+** Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, by Cold Spring
+** Harbor Laboratory. Funded under Grant P41-RR02188 by the National
+** Institutes of Health.
**
+** Portions copyright 1996, 1997, 1998, 1999, by Boutell.Com, Inc.
+**
+** Portions relating to GD2 format copyright 1999 Philip Warner.
+**
+** Portions relating to PNG copyright 1999, Greg Roelofs.
+**
+** Portions relating to libttf copyright 1999, John Ellson
+** (ellson@lucent.com).
+**
+** Permission has been granted to copy and distribute gd in any context
+** without fee, including a commercial application, provided that this
+** notice is present in user-accessible supporting documentation.
+**
+** This does not affect your ownership of the derived work itself, and
+** the intent is to assure proper credit for the authors of gd, not to
+** interfere with your productive use of gd. If you have questions, ask.
+** "Derived works" includes all programs that utilize the library.
+** Credit must be given in user-accessible documentation.
+**
+** This software is provided "AS IS." The copyright holders disclaim all
+** warranties, either express or implied, including but not limited to
+** implied warranties of merchantability and fitness for a particular
+** purpose, with respect to this code and accompanying documentation.
+**
+** Although their code does not appear in gd 1.7.3, the authors wish
+** to thank David Koblas, David Rowley, and Hutchison Avenue Software
+** Corporation for their prior contributions.
+**
*************************************************************************
*/
@@ -3721,13 +3711,14 @@
#endif
#if !defined(OLD_GDLIB)
- prString(ofp, NULL, FONT_HEAD1, "<CENTER><P ALIGN=\"CENTER\">\n", /* XXX */
- "</P>\n</CENTER>\n",
- "Note: If the images on this and the following pages appear to\n"
- "be broken, your browser probably can't display PNG images.<BR>\n"
- "Please use a PNG-capable browser to view the statistics report.\n"
- "<A HREF=\"" PNG_SITE "\">Follow this link</A> to learn more\n"
- "about the PNG image format.");
+ prString(ofp, NULL, FONT_HEAD1,
+ "<CENTER><P ALIGN=\"CENTER\">\n", "</P>\n</CENTER>\n",
+ GETMSG(187,
+ "Note: If the images on this and the following pages appear to\n"
+ "be broken, your browser probably can't display PNG images.<BR>\n"
+ "Please use a PNG-capable browser to view the statistics report.\n"
+ "<A HREF=\"%s\">Follow this link</A> to learn more about the PNG "
+ "image format."), PNG_SITE);
#endif
if (html_str[HTML_TRAILER])
(void) fprintf(ofp, "%s\n", html_str[HTML_TRAILER]);
@@ -7502,7 +7493,7 @@
nitem.hval %= HIDELIST_SIZE;
if (verbose > 3)
- prmsg(0, "save %s: %s [%d;%d]\n", /* XXX */
+ prmsg(0, GETMSG(188, "save %s: %s [%d;%d]\n"),
hidden[which].what, nitem.str, nitem.len, nitem.hval);
addHiddenName(which, NULL, NULL, &nitem);
--- 2.4.1.1 1999/10/31 14:57:49
+++ 2.4.1.2 1999/11/02 11:10:28
@@ -1 +1 @@
-#define PATCHLEVEL 1
+#define PATCHLEVEL 2
|