]> git.ipfire.org Git - thirdparty/squid.git/blob - CREDITS
Moved snmplib to lib/
[thirdparty/squid.git] / CREDITS
1 ==============================================================================
2
3 SQUID Internet Object Cache http://www.squid-cache.org
4 --------------------------------------------------------
5
6 Squid is the result of efforts by numerous individuals from the
7 Internet community. Development is led by Duane Wessels of the
8 National Laboratory for Applied Network Research and funded by
9 the National Science Foundation.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
24 MA 02110-1301, USA.
25
26 Squid is derived from the ``cached'' software from the ARPA-funded
27 Harvest research project. The Harvest home page is
28 http://harvest.cs.colorado.edu/.
29
30 Squid is originally derived from the Harvest Information Discovery and
31 Access System. The Harvest copyright text follows to acknowledge the origin:
32
33
34 /*
35 * Copyright (c) 1994, 1995. All rights reserved.
36 *
37 * The Harvest software was developed by the Internet Research Task
38 * Force Research Group on Resource Discovery (IRTF-RD):
39 *
40 * Mic Bowman of Transarc Corporation.
41 * Peter Danzig of the University of Southern California.
42 * Darren R. Hardy of the University of Colorado at Boulder.
43 * Udi Manber of the University of Arizona.
44 * Michael F. Schwartz of the University of Colorado at Boulder.
45 * Duane Wessels of the University of Colorado at Boulder.
46 *
47 * This copyright notice applies to software in the Harvest
48 * ``src/'' directory only. Users should consult the individual
49 * copyright notices in the ``components/'' subdirectories for
50 * copyright information about other software bundled with the
51 * Harvest source code distribution.
52 *
53 * TERMS OF USE
54 *
55 * The Harvest software may be used and re-distributed without
56 * charge, provided that the software origin and research team are
57 * cited in any use of the system. Most commonly this is
58 * accomplished by including a link to the Harvest Home Page
59 * (http://harvest.cs.colorado.edu/) from the query page of any
60 * Broker you deploy, as well as in the query result pages. These
61 * links are generated automatically by the standard Broker
62 * software distribution.
63 *
64 * The Harvest software is provided ``as is'', without express or
65 * implied warranty, and with no support nor obligation to assist
66 * in its use, correction, modification or enhancement. We assume
67 * no liability with respect to the infringement of copyrights,
68 * trade secrets, or any patents, and are not responsible for
69 * consequential damages. Proper use of the Harvest software is
70 * entirely the responsibility of the user.
71 *
72 * DERIVATIVE WORKS
73 *
74 * Users may make derivative works from the Harvest software, subject
75 * to the following constraints:
76 *
77 * - You must include the above copyright notice and these
78 * accompanying paragraphs in all forms of derivative works,
79 * and any documentation and other materials related to such
80 * distribution and use acknowledge that the software was
81 * developed at the above institutions.
82 *
83 * - You must notify IRTF-RD regarding your distribution of
84 * the derivative work.
85 *
86 * - You must clearly notify users that your are distributing
87 * a modified version and not the original Harvest software.
88 *
89 * - Any derivative product is also subject to these copyright
90 * and use restrictions.
91 *
92 * Note that the Harvest software is NOT in the public domain. We
93 * retain copyright, as specified above.
94 *
95 * HISTORY OF FREE SOFTWARE STATUS
96 *
97 * Originally we required sites to license the software in cases
98 * where they were going to build commercial products/services
99 * around Harvest. In June 1995 we changed this policy. We now
100 * allow people to use the core Harvest software (the code found in
101 * the Harvest ``src/'' directory) for free. We made this change
102 * in the interest of encouraging the widest possible deployment of
103 * the technology. The Harvest software is really a reference
104 * implementation of a set of protocols and formats, some of which
105 * we intend to standardize. We encourage commercial
106 * re-implementations of code complying to this set of standards.
107 */
108
109 ==============================================================================
110
111 lib/base64.c::base64_encode():
112
113 Adopted from http://ftp.sunet.se/pub2/gnu/vm/base64-encode.c.
114 Modified to work with strings instead of files.
115
116 ==============================================================================
117
118 lib/snmplib/*:
119 include/{asn1.h,parse.h,snmp*}:
120
121 The SNMP library code is developed by Carnegie Mellon University.
122
123 /***************************************************************************
124 *
125 * Copyright 1997 by Carnegie Mellon University
126 *
127 * All Rights Reserved
128 *
129 * Permission to use, copy, modify, and distribute this software and its
130 * documentation for any purpose and without fee is hereby granted,
131 * provided that the above copyright notice appear in all copies and that
132 * both that copyright notice and this permission notice appear in
133 * supporting documentation, and that the name of CMU not be
134 * used in advertising or publicity pertaining to distribution of the
135 * software without specific, written prior permission.
136 *
137 * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
138 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
139 * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
140 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
141 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
142 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
143 * SOFTWARE.
144 *
145 ***************************************************************************/
146
147 ==============================================================================
148
149 lib/GNUregex.c:
150
151 /* Extended regular expression matching and search library,
152 * version 0.12.
153 * (Implements POSIX draft P10003.2/D11.2, except for
154 * internationalization features.)
155 *
156 * Copyright (C) 1993 Free Software Foundation, Inc.
157 *
158 * This program is free software; you can redistribute it and/or modify
159 * it under the terms of the GNU General Public License as published by
160 * the Free Software Foundation; either version 2, or (at your option)
161 * any later version.
162 *
163 * This program is distributed in the hope that it will be useful,
164 * but WITHOUT ANY WARRANTY; without even the implied warranty of
165 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
166 * GNU General Public License for more details.
167 *
168 * You should have received a copy of the GNU General Public License
169 * along with this program; if not, write to the Free Software
170 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. */
171
172 ==============================================================================
173
174 lib/md5.c:
175
176 /*
177 * This code implements the MD5 message-digest algorithm.
178 * The algorithm is due to Ron Rivest. This code was
179 * written by Colin Plumb in 1993, no copyright is claimed.
180 * This code is in the public domain; do with it what you wish.
181 *
182 * Equivalent code is available from RSA Data Security, Inc.
183 * This code has been tested against that, and is equivalent,
184 * except that you don't need to include two pages of legalese
185 * with every copy.
186 *
187 * To compute the message digest of a chunk of bytes, declare an
188 * SquidMD5Context structure, pass it to SquidMD5Init, call
189 * SquidMD5Update as needed on buffers full of bytes, and then call
190 * SquidMD5Final, which will fill a supplied 16-byte array with the
191 * digest.
192 *
193 * Changed so as no longer to depend on Colin Plumb's `usual.h' header
194 * definitions; now uses stuff from dpkg's config.h.
195 * - Ian Jackson <ian@chiark.greenend.org.uk>.
196 * Still in the public domain.
197 *
198 * Changed SquidMD5Update to take a void * for easier use and some
199 * other minor cleanup. - Henrik Nordstrom <henrik@henriknordstrom.net>.
200 * Still in the public domain.
201 *
202 * Prefixed all symbols with "Squid" so they don't collide with
203 * other libraries. Duane Wessels <wessels@squid-cache.org>.
204 * Still in the public domain.
205 */
206
207 ==============================================================================
208
209 lib/radix.c:
210
211 /*
212 * Copyright (c) 1988, 1989, 1993
213 * The Regents of the University of California. All rights reserved.
214 *
215 * Redistribution and use in source and binary forms, with or without
216 * modification, are permitted provided that the following conditions
217 * are met:
218 * 1. Redistributions of source code must retain the above copyright
219 * notice, this list of conditions and the following disclaimer.
220 * 2. Redistributions in binary form must reproduce the above copyright
221 * notice, this list of conditions and the following disclaimer in the
222 * documentation and/or other materials provided with the distribution.
223 * 3. Neither the name of the University nor the names of its contributors
224 * may be used to endorse or promote products derived from this software
225 * without specific prior written permission.
226 *
227 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
228 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
230 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
231 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
232 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
233 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
234 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
235 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
236 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
237 * SUCH DAMAGE.
238 *
239 * @(#)radix.c 8.4 (Berkeley) 11/2/94
240 */
241
242 ==============================================================================
243
244 lib/tempnam.c:
245
246 /* A reasonably functional tmpnam. */
247
248 /* Originally by Tom Hageman, tom@basil.icce.rug.nl */
249
250 /*
251 * This tmpnam() was changed by Gerben_Wierda@RnA.nl to serve as
252 * tempnam() for squid-1.1.6. It ignores the directory parameter, every
253 * temp file is written in /tmp.
254 */
255
256 ==============================================================================
257
258 lib/drand48.c:
259
260 From Linux libc-5.4.46.
261
262 ==============================================================================
263
264 lib/eui64_aton.h lib/eui64_aton.c:
265
266 /*-
267 * Copyright 2004 The Aerospace Corporation. All rights reserved.
268 *
269 * Redistribution and use in source and binary forms, with or without
270 * modification, are permitted provided that the following conditions
271 * are met:
272 *
273 * 1. Redistributions of source code must retain the above copyright
274 * notice, this list of conditions, and the following disclaimer.
275 * 2. Redistributions in binary form must reproduce the above copyright
276 * notice, this list of conditions, and the following disclaimer in the
277 * documentation and/or other materials provided with the distribution.
278 * 3. The name of The Aerospace Corporation may not be used to endorse or
279 * promote products derived from this software.
280 *
281 * THIS SOFTWARE IS PROVIDED BY THE AEROSPACE CORPORATION "AS IS" AND
282 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
283 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
284 * ARE DISCLAIMED. IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE
285 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
286 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
287 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
288 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
289 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
290 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
291 * SUCH DAMAGE.
292 */
293
294 ==============================================================================
295
296 mcast_encode() in src/access_log.c is derived from Mark Atkinson's
297 (mark_a@cix.compulink.co.uk) "Tiny Encryption Algorithm".
298 http://www.io.com/~paulhart/game/algorithms/tea.html
299
300 ==============================================================================
301
302 lib/strnstr.cc:
303
304 /*-
305 * Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org>
306 * Copyright (c) 1990, 1993
307 * The Regents of the University of California. All rights reserved.
308 *
309 * This code is derived from software contributed to Berkeley by
310 * Chris Torek.
311 *
312 * Redistribution and use in source and binary forms, with or without
313 * modification, are permitted provided that the following conditions
314 * are met:
315 * 1. Redistributions of source code must retain the above copyright
316 * notice, this list of conditions and the following disclaimer.
317 * 2. Redistributions in binary form must reproduce the above copyright
318 * notice, this list of conditions and the following disclaimer in the
319 * documentation and/or other materials provided with the distribution.
320 * 3. Neither the name of the University nor the names of its contributors
321 * may be used to endorse or promote products derived from this software
322 * without specific prior written permission.
323 *
324 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
325 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
326 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
327 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
328 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
329 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
330 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
331 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
332 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
333 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
334 * SUCH DAMAGE.
335 *
336 * @(#)strstr.c 8.1 (Berkeley) 6/4/93
337 * $FreeBSD: src/lib/libc/string/strnstr.c,v 1.2.2.1 2001/12/09 06:50:03 mike Exp $
338 * $DragonFly: src/lib/libc/string/strnstr.c,v 1.4 2006/03/20 17:24:20 dillon Exp $
339 */
340
341 ==============================================================================
342
343 lib/xstrto.cc:
344
345 /*
346 * (C) 2000-2006 by the netfilter coreteam <coreteam@netfilter.org>:
347 *
348 * This program is free software; you can redistribute it and/or modify
349 * it under the terms of the GNU General Public License as published by
350 * the Free Software Foundation; either version 2 of the License, or
351 * (at your option) any later version.
352 *
353 * This program is distributed in the hope that it will be useful,
354 * but WITHOUT ANY WARRANTY; without even the implied warranty of
355 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
356 * GNU General Public License for more details.
357 *
358 * You should have received a copy of the GNU General Public License
359 * along with this program; if not, write to the Free Software
360 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
361 */
362
363 ==============================================================================
364
365 lib/getopt.c:
366
367 /*
368 * Copyright (c) 1987, 1993, 1994
369 * The Regents of the University of California. All rights reserved.
370 *
371 * Redistribution and use in source and binary forms, with or without
372 * modification, are permitted provided that the following conditions
373 * are met:
374 * 1. Redistributions of source code must retain the above copyright
375 * notice, this list of conditions and the following disclaimer.
376 * 2. Redistributions in binary form must reproduce the above copyright
377 * notice, this list of conditions and the following disclaimer in the
378 * documentation and/or other materials provided with the distribution.
379 * 3. Neither the name of the University nor the names of its contributors
380 * may be used to endorse or promote products derived from this software
381 * without specific prior written permission.
382 *
383 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
384 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
385 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
386 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
387 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
388 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
389 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
390 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
391 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
392 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
393 * SUCH DAMAGE.
394 */
395
396 static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95";
397
398 ==============================================================================
399
400 src/external_acl.c:
401
402 Copyright (C) 2002 MARA Systems AB, Sweden <info@marasystems.com>
403
404 This program is free software; you can redistribute it and/or modify
405 it under the terms of the GNU General Public License as published by
406 the Free Software Foundation; either version 2, or (at your option)
407 any later version.
408
409 ==============================================================================
410
411 helpers/external_acl/wbinfo_group/wbinfo_group.pl:
412
413 This program is put in the public domain by Jerry Murdock
414 <jmurdock@itraktech.com>. It is distributed in the hope that it will
415 be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
416 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
417
418 ==============================================================================
419
420 lib/libTrie/*:
421
422 /*
423 * Copyright (c) 2002,2003 Robert Collins <rbtcollins@hotmail.com>
424 *
425 * This program is free software; you can redistribute it and/or modify
426 * it under the terms of the GNU General Public License as published by
427 * the Free Software Foundation; either version 2 of the License, or
428 * (at your option) any later version.
429 *
430 * This program is distributed in the hope that it will be useful,
431 * but WITHOUT ANY WARRANTY; without even the implied warranty of
432 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
433 * GNU General Public License for more details.
434 *
435 * You should have received a copy of the GNU General Public License
436 * along with this program; if not, write to the Free Software
437 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
438 *
439 */
440
441 ==============================================================================
442
443 include/IPAddress.h lib/IPAddress.cc:
444 include/rfc3596.h lib/rfc3596.cc:
445 src/ICMPv6.h src/ICMPv6.cc:
446 helpers/url_rewrite/fake/ fake.h, fake.cc, url_fake_rewrite.sh:
447
448 This code is copyright (C) 2007-2009 by Treehouse Networks Ltd
449 of New Zealand. It is published and Licensed as an extension of
450 squid under the same conditions as the main squid application.
451
452 ==============================================================================
453
454 helpers/negotiate_auth/kerberos/ *
455
456 /*
457 * -----------------------------------------------------------------------------
458 *
459 * Author: Markus Moeller (markus_moeller at compuserve.com)
460 *
461 * Copyright (C) 2007 Markus Moeller. All rights reserved.
462 *
463 * This program is free software; you can redistribute it and/or modify
464 * it under the terms of the GNU General Public License as published by
465 * the Free Software Foundation; either version 2 of the License, or
466 * (at your option) any later version.
467 *
468 * This program is distributed in the hope that it will be useful,
469 * but WITHOUT ANY WARRANTY; without even the implied warranty of
470 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
471 * GNU General Public License for more details.
472 *
473 * You should have received a copy of the GNU General Public License
474 * along with this program; if not, write to the Free Software
475 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
476 *
477 * As a special exemption, M Moeller gives permission to link this program
478 * with MIT, Heimdal or other GSS/Kerberos libraries, and distribute
479 * the resulting executable, without including the source code for
480 * the Libraries in the source distribution.
481 *
482 * -----------------------------------------------------------------------------
483 */
484
485 ==============================================================================
486
487 compat/strsep.h, lib/strsep.c
488
489 * Copyright (C) 2004 Free Software Foundation, Inc.
490 * Written by Yoann Vandoorselaere <yoann@prelude-ids.org>
491 *
492 * The file is free software; you can redistribute it and/or
493 * modify it under the terms of the GNU Lesser General Public
494 * License as published by the Free Software Foundation; either
495 * version 2.1 of the License, or (at your option) any later version.
496 *
497 * This file is distributed in the hope that it will be useful,
498 * but WITHOUT ANY WARRANTY; without even the implied warranty of
499 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
500 * Lesser General Public License for more details.
501 *
502 * You should have received a copy of the GNU Lesser General Public
503 * License along with this file; if not, write to the Free Software
504 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
505 * USA.
506
507 ==============================================================================
508
509 helpers/external_acl/kerberos_ldap_group/support_ldap.cc
510
511 /* get_attributes is partly from OpenLDAP Software <http://www.openldap.org/>.
512 *
513 * Copyright 1998-2009 The OpenLDAP Foundation.
514 * All rights reserved.
515 *
516 * Redistribution and use in source and binary forms, with or without
517 * modification, are permitted only as authorized by the OpenLDAP
518 * Public License.
519 *
520 * A copy of this license is available in the file LICENSE in the
521 * top-level directory of the distribution or, alternatively, at
522 * <http://www.OpenLDAP.org/license.html>.
523 */
524
525 ==============================================================================
526
527 helpers/log_daemon/DB/doc/:
528 helpers/log_daemon/DB/log_db_daemon.pl.in:
529
530 Copyright (C) 2008 by Marcello Romani
531
532 This library is free software; you can redistribute it and/or modify
533 it under the same terms as Perl itself, either Perl version 5.8.8 or,
534 at your option, any later version of Perl 5 you may have available.
535
536 ==============================================================================
537
538 icons/SN.png:
539
540 Squid NOW icon - copyright Squid Project
541
542 This work is licensed under the
543 Creative Commons Attribution-ShareAlike 3.0 Unported Liscence (CC BY-SA 3.0)
544 [ http://creativecommons.org/licenses/by-sa/3.0/ ]
545
546 ==============================================================================
547
548 icons/silk/:
549
550 Silk icon set 1.3
551 _________________________________________
552 Mark James
553 http://www.famfamfam.com/lab/icons/silk/
554 _________________________________________
555
556 This work is licensed under a
557 Creative Commons Attribution 2.5 License.
558 [ http://creativecommons.org/licenses/by/2.5/ ]
559
560 This means you may use it for any purpose,
561 and make any changes you like.
562 All I ask is that you include a link back
563 to this page in your credits.
564
565 Are you using this icon set? Send me an email
566 (including a link or picture if available) to
567 mjames@gmail.com
568
569 Any other questions about this icon set please
570 contact mjames@gmail.com
571
572
573 The icons can also be used under Creative Commons Attribution 3.0 License
574 (Hi Debian folks!) with the following requirements:
575
576 As an author, I would appreciate a reference to my authorship of
577 the Silk icon set contents within a readme file or equivalent
578 documentation for the software which includes the set or a subset
579 of the icons contained within.
580
581 ==============================================================================
582
583 shm_portable_segment_name_is_path() implementation:
584
585 Derived from boost/interprocess/shared_memory_object.hpp and
586 boost/interprocess/detail/workaround.hpp at http://www.boost.org/
587
588 (C) Copyright Ion Gaztanaga 2005-2009.
589 Distributed under the Boost Software License, Version 1.0
590
591 Boost Software License - Version 1.0 - August 17th, 2003
592
593 Permission is hereby granted, free of charge, to any person or organization
594 obtaining a copy of the software and accompanying documentation covered by
595 this license (the "Software") to use, reproduce, display, distribute,
596 execute, and transmit the Software, and to prepare derivative works of the
597 Software, and to permit third-parties to whom the Software is furnished to
598 do so, all subject to the following:
599
600 The copyright notices in the Software and this entire statement, including
601 the above license grant, this restriction and the following disclaimer,
602 must be included in all copies of the Software, in whole or in part, and
603 all derivative works of the Software, unless such copies or derivative
604 works are solely in the form of machine-executable object code generated by
605 a source language processor.
606
607 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
608 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
609 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
610 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
611 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
612 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
613 DEALINGS IN THE SOFTWARE.
614
615 ==============================================================================
616
617 errors/errorpage.css:
618
619 Stylesheet for Squid Error pages
620 Adapted from design by Free CSS Templates
621 http://www.freecsstemplates.org
622 Released for free under a Creative Commons Attribution 2.5 License
623
624 ==============================================================================