You are here

Updated Copyright

3 posts / 0 new
Last post
mhunter's picture
Offline
Joined: 07/31/2009 - 15:26
Updated Copyright

I updated the copyright on the OpenMx website, and the source code. The source code update was done with a few lines of sed at the Unix terminal.

find . -name "*.h" -exec sed -i "s/Copyright 2007-2012 The OpenMx/Copyright 2007-2013 The OpenMx/g" '{}' \;

This finds files in the current directory (.) with the name ending in ".h" and executes sed inplace (-i) editing the copyright (replace "Copyright 2007-2012 The OpenMx" with "Copyright 2007-2013 The OpenMx"). Analogous commands where done in models/passing, demo/, man/, and src/.

"svn up" your source code copies!

AdminTim's picture
Offline
Joined: 01/15/2010 - 17:34
Also in Drupal

I updated the copyright at the bottom of the Drupal pages, too.

For future reference, the change is made through Drupal, via Site Configuration -> Site information, by changing the "Footer message" field on that page.

If we want to enable to PHP Filter module, we could make this auto-update using Drupal blocks, instead, but I haven't done that because I'm not sure what the consequences (for, e.g. security, stability, etc) might be. But the option is there.

AdminHunter's picture
Offline
Joined: 03/01/2013 - 11:03
Update

This is how the footer update is done now. It's in Admin > Structure > Blocks > Footer > Configure.