[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] how to release something under the GPL
>
> Stuff only becomes public domain - as a rule - when the copyright on it
> expires. However, when you create something, you automatically have
> copyright and cannot just 'renounce' it. You can licence it very
> permissively, but that's not the same thing.
Ahh...I am corrected; I knew things were automatically copyrighted, but
thought it was possible to waive it or just delcare a work as having no
copyright... but having just done some google searching ... the general
opinion is that UK law doesn't have the compcept of public domain. Trying
to find this on the patent office's web site and the intellecual property
web site (both .gov.uk sites) resulted in nowt. Google groups was the trick.
So the easiest way to give public domain is say "This is copyright <blah>,
but I release this into the public domain. Do with it what you will". Or
something similar... :)
Chris...
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}