iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Web Programming Discussion Forum Working with an API? Developing a plugin? Writing a Mod or script for your favorite blog, Web 2.0 site or Forum? Welcome.

Share Thread: & Tags

Share Thread:

Tags
copyright, notice, script, year

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-29-2009, 04:59 PM
morestar's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jun 2007
Location: Burlington, Ontario (Toronto)
Posts: 943
morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5
Default Copyright Notice Script

I had posted this copyright notice script earlier in another post as a suggestion but wanted to share it here as well for future use.

Basically what the script does is take the current year (in javascript) and displays it on your page with the copyright symbol beside it as well...the benefit of this copyright notice script is that when the new year comes, you don't have to update the copyright notice on your site or on your client sites either...

This is the code for the copyright notice script:

Code:
<em>&copy;<script type="text/javascript"> 
var theDate=new Date()
document.write(theDate.getFullYear());
                </script> 
	        
              YourDomain.com</em>. All Rights Reserved.
This will display as ©2009 YourDomain.com. All Rights Reserved.

__________________
Join free dating sites and meet single people without paying a penny.
Reply With Quote
  #2 (permalink)  
Old 10-29-2009, 05:04 PM
mjtaylor's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Dec 2003
Location: Florida Keys/Western NC
Posts: 1,839
mjtaylor RepRank 4mjtaylor RepRank 4mjtaylor RepRank 4mjtaylor RepRank 4
Default Re: Copyright Notice Script

I like it, I like it!! Thanks!
__________________
M.-J. Taylor
SEO Web Design by Cyber Key Search Smart Design® SEO Copywriter & Traveling Vacation Gypsy
Reply With Quote
  #3 (permalink)  
Old 10-29-2009, 05:05 PM
morestar's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jun 2007
Location: Burlington, Ontario (Toronto)
Posts: 943
morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5
Default Re: Copyright Notice Script

Oh I know, I was sooo happy when I figured it out !

Thanks MJT!
__________________
Join free dating sites and meet single people without paying a penny.
Reply With Quote
  #4 (permalink)  
Old 10-29-2009, 06:43 PM
DaveSawers's Avatar
WebProWorld Veteran
 
Join Date: Dec 2006
Location: Calgary, Alberta, Canada
Posts: 492
DaveSawers RepRank 3DaveSawers RepRank 3
Default Re: Copyright Notice Script

But you should put in a <noscript> section with the current year hard coded for those poor souls who have Javascript turned off.
__________________
Dynamic Software Development
www.activeminds.ca
Reply With Quote
  #5 (permalink)  
Old 10-29-2009, 07:16 PM
Uncle Dog's Avatar
WebProWorld Pro
 
Join Date: Apr 2008
Location: Scotland
Posts: 254
Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5
Default Re: Copyright Notice Script

Even more straightforward to just have ©YourDomain.com. All Rights Reserved.
__________________
There are 10 types of people in this world: those who understand binary and those who don't.
Reply With Quote
  #6 (permalink)  
Old 10-29-2009, 11:31 PM
morestar's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jun 2007
Location: Burlington, Ontario (Toronto)
Posts: 943
morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5
Default Re: Copyright Notice Script

Well that just completely defeats the purpose now doesn't it?



I guess the only way to do it while keeping in mind the user's accessibility would to either program the year in using a server side language or use the same code and in the noscript tag refrain from using the year...like the following...

Code:
<em>&copy;<script type="text/javascript"> 
var theDate=new Date()
document.write(theDate.getFullYear());
                </script> 
<noscript>&copy;YourDomain.com - All Rights Reserved.</noscript>
I don't like it but it's not too shabby...
__________________
Join free dating sites and meet single people without paying a penny.
Reply With Quote
  #7 (permalink)  
Old 10-30-2009, 05:56 AM
Uncle Dog's Avatar
WebProWorld Pro
 
Join Date: Apr 2008
Location: Scotland
Posts: 254
Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5
Default Re: Copyright Notice Script

I thought the purpose of your script was to stop your "this stuff is all mine, hands off" statement from ever looking out of date. My 'script' achieves this in 0 lines.

Yes, it's lovely to keep it up to date with JavaScript, so why not go further and say ©October 2009 YourDomain.com All Rights Reserved or ©30th October YourDomain.com. All Rights Reserved then you know it's REALLY current.
__________________
There are 10 types of people in this world: those who understand binary and those who don't.

Last edited by Uncle Dog; 10-30-2009 at 06:20 AM.
Reply With Quote
  #8 (permalink)  
Old 10-30-2009, 11:12 AM
morestar's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jun 2007
Location: Burlington, Ontario (Toronto)
Posts: 943
morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5
Default Re: Copyright Notice Script

lol Uncle Dog, you know it's funny, im actually coming to Scotland today - yes - to open a can'a woopass !!!

__________________
Join free dating sites and meet single people without paying a penny.
Reply With Quote
  #9 (permalink)  
Old 10-30-2009, 11:50 AM
Uncle Dog's Avatar
WebProWorld Pro
 
Join Date: Apr 2008
Location: Scotland
Posts: 254
Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5Uncle Dog RepRank 5
Default Re: Copyright Notice Script

Woopass? Is that Canadian Haggis?

This seems like a good point to get back on track and indicate the emergency exits located on your left Copying/Republishing Poll and right How should I word my copyright notice? (Stock photo website)

I have often wondered exactly how specific a Copyright statement needs to be. Does it really need to include the year?
__________________
There are 10 types of people in this world: those who understand binary and those who don't.
Reply With Quote
  #10 (permalink)  
Old 10-30-2009, 12:35 PM
Moderator
WebProWorld Moderator
 
Join Date: Oct 2003
Location: Alberta, Canada
Posts: 878
weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6
Default Re: Copyright Notice Script

Uncle Dog: The year is there to denote date of creation (or year in which it is created). If something is created in 2001, there is no reason to update the copyright year if the item has not changed since then.

If there are components of a 2001 creation in a 2009 work by the same creator, then the copyright would extend over the range of years, 2001-2009, or be copyright 2009 with attribution to earlier copyrights.
Reply With Quote
  #11 (permalink)  
Old 10-30-2009, 03:30 PM
morestar's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jun 2007
Location: Burlington, Ontario (Toronto)
Posts: 943
morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5morestar RepRank 5
Default Re: Copyright Notice Script

Quote:
Originally Posted by weegillis View Post
Uncle Dog: The year is there to denote date of creation (or year in which it is created). If something is created in 2001, there is no reason to update the copyright year if the item has not changed since then.

If there are components of a 2001 creation in a 2009 work by the same creator, then the copyright would extend over the range of years, 2001-2009, or be copyright 2009 with attribution to earlier copyrights.

So in the case of google for instance, the copyright for the current year, so does microsoft so I figured if the bigwigs are doing it that way then it's the 'business' way to go...

It makes more sense to copyright from the year of creation to the current year though...I wonder what the reasons are for not including the time-frame.
__________________
Join free dating sites and meet single people without paying a penny.
Reply With Quote
  #12 (permalink)  
Old 10-30-2009, 08:40 PM
Moderator
WebProWorld Moderator
 
Join Date: Oct 2003
Location: Alberta, Canada
Posts: 878
weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6weegillis RepRank 6
Default Re: Copyright Notice Script

The current copyright year covers all creations of this year. Since they already own all previous copyrights, only the new creations are declared. Technically, a revision is still protected by the original copyright.

Copyrights are set to extend over a fixed period of years. The later the copyright year, the further into the future it extends. Piss poor reason for using the current year, though. We'll all be dead before it runs out.
Reply With Quote
  #13 (permalink)  
Old 10-31-2009, 09:44 PM
Feydakin's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Jan 2005
Location: ho jeez!!
Posts: 885
Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8Feydakin RepRank 8
Default Re: Copyright Notice Script

Quote:
Originally Posted by weegillis View Post
Uncle Dog: The year is there to denote date of creation (or year in which it is created). If something is created in 2001, there is no reason to update the copyright year if the item has not changed since then.

If there are components of a 2001 creation in a 2009 work by the same creator, then the copyright would extend over the range of years, 2001-2009, or be copyright 2009 with attribution to earlier copyrights.
This is why when I used to care about copyright notices my script was hard coded with the published date - {current date} c Site Name / Company Name
__________________
Steve : Animal Charms Animal Jewelry | Fishing Blog
I'm smelling a whole lot of if coming off of this plan.
Reply With Quote
Reply

  WebProWorld > Webmaster, IT and Security Discussion > Web Programming Discussion Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How should I word my copyright notice? (Stock photo website) gareth_esutera Internet Industry 19 10-15-2009 06:45 AM
Copyright java script re:Photos on website yogabounddeb Search Engine Optimization Forum 0 10-20-2006 08:08 PM
Did anyone notice this? edhan Google Discussion Forum 9 10-04-2005 08:28 AM
Did anyone notice? crafta Google AdWords/Google AdSense 1 05-04-2004 10:18 AM
Notice EJRS.COM The Castle Breakroom (General: Any Topic) 10 02-05-2004 04:16 AM


All times are GMT -4. The time now is 04:43 PM.



Search Engine Optimization by vBSEO 3.3.0