Advertisement
2_2002-2004 Miscellaneous #129446

Copyright Tutorial - How to Protect Your Work

There is a right--and a wrong--way to display a copyright message on your web site. This article explains the correct way to state you copyrights so that you are protected and keep all of your legal options open.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
<br><br><font face="verdana, arial" size="2" color="black">Did you know that there is a right--and a wrong--way to display a copyright message? Did you know that if you do not correctly format your copyright message the legal remedies available to you in a copyright-infringement case may be limited? If you didn't know either of these two facts, you need to read this article.<br><br>
When browsing the Web, you're likely to see several different copyright messages on different web sites:
<ol>
<li>Copyright 1999. All rights reserved.</li>
<li>Copyright ABC Company. </li>
<li>&copy; ABC Company.</li>
</ol>
The problem with the options shown above is that none of them are the <i>correct</i> way to format your copyright message. Here's what wrong with the message.
<ol>
<li>The organization/individual claiming the copyright is not mentioned.</li>
<li>The year the copyright was originally claimed is not mentioned nor is that fact that the organization/individual is reserving all rights to the copyrighted information.</li>
<li>Again, the year the copyright was originally claimed is not mentioned nor is the fact that the organization/individual is reserving all rights to the copyrighted information.</li>
</ol>
So, you may be asking yourself: “What is the correct way to format a copyright statement?” I’m glad you’ve asked. <br><br>
If you web site is static and <i>never</i> updated, your copyright statement is fairly straight forward: <br><br>
Copyright &copy; [year copyright is claimed] [organization’s legal name or individual’s name]. All rights reserved. (Note: The &copy; symbol is formed by using this HTML tag: &amp;copy;) <br><br>
For my organization, for example, my copyright statement would read like this: <br><br>
Copyright &copy; 2005 SavageIdeas. All rights reserved. <br><br>
If the copyright was of a personal nature it would read like this: <br><br>
Copyright &copy; 2005 Zach Evans. All rights reserved. <br><br>
Now, if your site is dynamic, or if you update the content on your static site in a year other than when you originally published it, you need to modify the statement a bit. You now need to show a <i>date range</i> in your copyright statement. <br><br>
If, for example, you originally published your content in 2000, but have since updated the site every year since then, your statement would need to read: <br><br>
Copyright &copy; 2000 – 2005 [organization’s legal name or individual’s name]. All rights reserved. <br><br>
Again, for a site that I have published, my copyright statement would read: <br><br>
Copyright &copy; 2000 – 2005 SavageIdeas. All rights reserved. <br><br>
Or, if the content was of a personal nature, my copyright statement would read: <br><br>
Copyright &copy; 2000 – 2005 Zach Evans. All rights reserved. <br><br>
Many developers hard-code these statements into their web sites, which is a perfectly acceptable solution, except for the fact that you now need to <i>manually</i> update the statement every year. “So why not update the statement programmatically?” you ask. Great question! Here’s how you can do it. <br><br>
By using a simple ASP script and putting it in an include file, you would be able to dynamically update the copyright statement on your web site. Here’s the code: <br><br>
Copyright &amp;copy; [year first copyright is claimed] <br>
&lt;% <br>
If Year(Date) > [year first copyright is claimed] Then<br>
Response.Write "- " & Year(Date) <br>
End If<br>
%&gt; <br>
&amp;nbsp;[organization’s legal name or individual’s name]. All rights reserved. <br><br>
So, again using an example regarding my organization, here’s what the code would look like: <br><br>
Copyright &amp;copy; 2000<br>
&lt;% <br>
If Year(Date) > 2000 Then<br>
Response.Write "- " & Year(Date) <br>
End If<br>
%&gt; <br>
&amp;nbsp;SavageIdeas. All rights reserved. <br><br>
Many developers will link their organization’s name to the home page of their web site for SEO purposes and this is completely acceptable. You may also want to tag another statement that deals with your privacy policy or your site map after your copyright statement. Again, this is completely acceptable. <br><br>
Now that you know the <i>correct</i> way to claim your copyright, happy coding! By the way, you can download an example of this source code by downloading the .zip file included along with this article. <br><br>
<i>Please note: I am not a lawyer, although I work with legal matters in my ‘day job’ almost every day. I have pieced together these recommendations based upon numerous conversations with a legal professional. If you have any questions regarding the validity of your copyrights, please contact a lawyer.</i></font>
Original Comments (3)
Recovered from Wayback Machine