Simple Machines Community Forum

General Community => Site Comments, Issues and Concerns => Topic started by: evil-angelist on January 01, 2009, 02:22:27 AM

Title: Copyright Question 2008~2009
Post by: evil-angelist on January 01, 2009, 02:22:27 AM
I just wonder where:

SMF © 2006–2008, Simple Machines LLC

Is placed is it not automatically going to roll over to 2009 ???

Whats the deal to update it ???
Title: Re: Copyright Question 2008~2009
Post by: metallica48423 on January 01, 2009, 05:17:58 AM
it should be updated with the next release.  it doent automatically roll over.
Title: Re: Copyright Question 2008~2009
Post by: H on January 01, 2009, 06:32:52 AM
Copyright shouldn't need to roll over :). We'll probably bump the year with the next 2.0 release.
Title: Re: Copyright Question 2008~2009
Post by: evil-angelist on January 01, 2009, 07:18:19 AM
OK no problem I just thought it might rollover. Will coding be put in to have it on an automatic rollover in future releases ???
Title: Re: Copyright Question 2008~2009
Post by: tvmangum on January 01, 2009, 09:59:43 AM
Since the copyright doesn't do an auto rollover, is there a way I can manually update it?
Title: Re: Copyright Question 2008~2009
Post by: H on January 01, 2009, 11:12:53 AM
Welcome to SMF.
Unfortunately our license doesn't allow you to edit it in anyway, except to remove the SMF version (by changing the version variable in index.php)
Title: Re: Copyright Question 2008~2009
Post by: metallica48423 on January 01, 2009, 04:34:28 PM
Keep in mind that it doesn't invalidate your forum installation or make your copyright illegal or anything of the sort -- the string is still valid.

Title: Re: Copyright Question 2008~2009
Post by: 青山 素子 on January 02, 2009, 03:01:59 AM
Copyright statements should only be changed when the thing that you are claiming it on changes. The last change to SMF was in 2008, so that will be the latest date in the SMF copyright.

That particulkar copyright is for SMF itself, it doesn't affect you personally. You are also welcome to add your own copyright statement inside the template file.
Title: Re: Copyright Question 2008~2009
Post by: metallica48423 on January 02, 2009, 03:36:42 PM
Quote& Updated the copyright to include 2009. (index language file)

Just FYI :)
Title: Re: Copyright Question 2008~2009
Post by: Centreflunk on January 06, 2009, 12:36:17 AM
evil-angelist,

here's a script I use on my site (http://www.centreflunk.com/index.php) -
I've used it now for the past 5yrs -

<script type="text/javascript"><!-- Begin
copyright=new Date();
update=copyright.getFullYear();
document.write("<b><font color=black>Copyright &copy; "+ update + " ");
//  End --></script>


Hope it helps you!

Centreflunk
Title: Re: Copyright Question 2008~2009
Post by: Eleglin on January 06, 2009, 09:59:50 AM
Why do you use javascript, when it's easier using php.... ?
'Cause you can use php (http://fr.php.net/manual/en/function.date.php), if you can use SMF...
Title: Re: Copyright Question 2008~2009
Post by: Burke ♞ Knight on January 06, 2009, 10:04:21 AM
Here is a simple code that I use on all my sites. It automatically updates each year.

<script language="javascript">
var enabled = 0; yeartoday = new Date();
var thisyear;
thisyear = (yeartoday.getFullYear());
document.write("&copy; "+thisyear+" YourSite.com");
</script>





Here is a PHP version:

&copy;<?php echo date("Y");?> YourSite.com
Title: Re: Copyright Question 2008~2009
Post by: evil-angelist on January 06, 2009, 10:36:30 AM
Quote from: BurkeKnight on January 06, 2009, 10:04:21 AM
Here is a simple code that I use on all my sites. It automatically updates each year.

<script language="javascript">
var enabled = 0; yeartoday = new Date();
var thisyear;
thisyear = (yeartoday.getFullYear());
document.write("&copy; "+thisyear+" YourSite.com");
</script>





Here is a PHP version:

&copy;<?php echo date("Y");?> YourSite.com


So I wonder why SMF doesnt include this aswell.
Title: Re: Copyright Question 2008~2009
Post by: Eleglin on January 06, 2009, 11:11:12 AM
Maybe because a licence is not retroactive.
Title: Re: Copyright Question 2008~2009
Post by: 青山 素子 on January 06, 2009, 11:25:45 AM
Quote from: evil-angelist on January 06, 2009, 10:36:30 AM
So I wonder why SMF doesnt include this aswell.

See below:

Quote from: Motoko-chan on January 02, 2009, 03:01:59 AM
Copyright statements should only be changed when the thing that you are claiming it on changes. The last change to SMF was in 2008, so that will be the latest date in the SMF copyright.
Title: Re: Copyright Question 2008~2009
Post by: Burke ♞ Knight on January 06, 2009, 11:27:32 AM
For the Site copyright, where the posts, etc. keep changing, that is where codes like above come in handy. Not for the software or even the themes, mods, etc. Just for the site.