From 1615f205fb2a16f54be0a4cd6e2b9ba1067c5344 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 2 Aug 2018 13:32:24 -0500 Subject: [PATCH] Add 'contributors' to copyright --- LICENSE | 2 +- docs/source/conf.py | 4 ++-- docs/source/license.rst | 2 +- man/man1/openmc.1 | 3 ++- src/output.F90 | 4 ++-- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index a11dc44a27..cfa34033c2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011-2018 Massachusetts Institute of Technology +Copyright (c) 2011-2018 Massachusetts Institute of Technology and OpenMC contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/docs/source/conf.py b/docs/source/conf.py index eeecba23e4..be7e3a8d13 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,7 +71,7 @@ master_doc = 'index' # General information about the project. project = u'OpenMC' -copyright = u'2011-2018, Massachusetts Institute of Technology' +copyright = u'2011-2018, Massachusetts Institute of Technology and OpenMC contributors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -208,7 +208,7 @@ htmlhelp_basename = 'openmcdoc' # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'openmc.tex', u'OpenMC Documentation', - u'Massachusetts Institute of Technology', 'manual'), + u'OpenMC contributors', 'manual'), ] latex_elements = { diff --git a/docs/source/license.rst b/docs/source/license.rst index e9cba3d8a8..c0728e1a8c 100644 --- a/docs/source/license.rst +++ b/docs/source/license.rst @@ -4,7 +4,7 @@ License Agreement ================= -Copyright © 2011-2018 Massachusetts Institute of Technology +Copyright © 2011-2018 Massachusetts Institute of Technology and OpenMC contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/man/man1/openmc.1 b/man/man1/openmc.1 index 6263a02c5f..eb5c857f71 100644 --- a/man/man1/openmc.1 +++ b/man/man1/openmc.1 @@ -59,7 +59,8 @@ Indicates the default path to a directory containing windowed multipole data if the user has not specified the tag in .I materials.xml\fP. .SH LICENSE -Copyright \(co 2011-2018 Massachusetts Institute of Technology. +Copyright \(co 2011-2018 Massachusetts Institute of Technology and OpenMC +contributors. .PP Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/src/output.F90 b/src/output.F90 index 6197cdc11c..0d50d54853 100644 --- a/src/output.F90 +++ b/src/output.F90 @@ -76,7 +76,7 @@ contains write(UNIT=OUTPUT_UNIT, FMT=*) & ' | The OpenMC Monte Carlo Code' write(UNIT=OUTPUT_UNIT, FMT=*) & - ' Copyright | 2011-2018 Massachusetts Institute of Technology' + ' Copyright | 2011-2018 MIT and OpenMC contributors' write(UNIT=OUTPUT_UNIT, FMT=*) & ' License | http://openmc.readthedocs.io/en/latest/license.html' write(UNIT=OUTPUT_UNIT, FMT='(11X,"Version | ",I1,".",I2,".",I1)') & @@ -171,7 +171,7 @@ contains write(UNIT=OUTPUT_UNIT, FMT='(1X,A,A)') "Git SHA1: ", GIT_SHA1 #endif write(UNIT=OUTPUT_UNIT, FMT=*) "Copyright (c) 2011-2018 & - &Massachusetts Institute of Technology" + &Massachusetts Institute of Technology and OpenMC contributors" write(UNIT=OUTPUT_UNIT, FMT=*) "MIT/X license at & &" end if