85 lines
4.5 KiB
Plaintext
85 lines
4.5 KiB
Plaintext
Cdk Copying Guide
|
|
Copyright Mike Glover, 1995, 1996, 1997, 1998, 1999
|
|
-------------------------------------------------------------------------------
|
|
In order to copy Cdk around I have some requirements that will protect me,
|
|
and possibly even you. First thing, I feel I should say that this little project
|
|
of mine has taken quite a bit 'free' time and I have put a lot of work
|
|
into it. I do ask that if anyone asks you about Cdk, tell them where you got it
|
|
and who wrote it. If you see Cdk installed without this file on the system
|
|
somewhere, then assume the copy the person has is a 'corrupt' version. I will
|
|
not be responsible for any unfortunate results if someone else makes a personal
|
|
modification to the Cdk library. I will also not be responsible if for some
|
|
reason the installation of Cdk creates a negative effect on your machine. You
|
|
do have my word that there are no "Trojan horses", worms, or other security
|
|
worries lurking in this code. If there are I did not put them there and you
|
|
should remove the version of Cdk you have and go get a proper copy. I hate
|
|
virus writers as much as anyone else!
|
|
|
|
Instead of writing my own license (I'm a programmer, not a lawyer!) I'm going
|
|
to adapt the BSD public license on public software. If you do not agree to
|
|
this license then remove the Cdk distribution and we all will be happier in
|
|
the end. Here is the complete BSD public license in its true form, for
|
|
reference.
|
|
|
|
I will say one thing, Cdk is my copyright. I will continue to support any
|
|
released versions out there as long as they are in their released form. I am
|
|
releasing this into the "public" because I feel I have benefited from other
|
|
people's hard work, I'd like to chip into the pot as well. This does NOT make
|
|
Cdk public domain though. Cdk is still my copyright, and owned by me, I am
|
|
merely stating this so I don't see 40 different versions of my code floating
|
|
around with other people's names attached.
|
|
|
|
With that ugly stuff said, I will happily take any comments or questions about
|
|
Cdk. Input is more than welcomed. In fact I encourage it. Feel free to mail
|
|
me and ask questions you think the supplied documents don't cover. If I get
|
|
enough I may build a FAQ to help newcomers. (We'll see how Cdk is accepted
|
|
though).
|
|
|
|
For you Perl programmers, there is a Perl5 extension to Cdk. Look at your
|
|
closest CPAN site under authors/id/GLOVER.
|
|
|
|
If you want to get a hold of me mail me at one of the following:
|
|
glover@credit.erin.utoronto.ca
|
|
mike@vexus.ca
|
|
|
|
The CDK Web page has several homes. They are:
|
|
http://www.vexus.ca/CDK.html (official)
|
|
http://www.datasoft.on.ca/~cdk (Sponsored by the nice folks at Datasoft)
|
|
|
|
ttfn,
|
|
Mike
|
|
-------------------------------------------------------------------------------
|
|
|
|
/*
|
|
* Copyright (c) 1990 The Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgment:
|
|
* This product includes software developed by the University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|