Difference between revisions of "License"

From Archivematica
Jump to navigation Jump to search
Line 2: Line 2:
  
  
 
+
If you have signed the [[Contributor Agreement|Archivematica Contributors Agreement]] then your code contribution can be committed to the repository and released under Archivematica's [http://code.google.com/p/archivematica/source/browse/trunk/LICENSE GPLv2 license]. The following process must be followed to facilitate this process:
You will retain copyright as the original author of any code that you write and contribute to the Archivematica project. However, in order to integrate your code into Archivematica, you need to release it under the same [http://code.google.com/p/archivematica/source/browse/trunk/LICENSE GPLv2 license] that applies to the rest of the Archivematica project. To do so, please follow these instructions,
 
  
 
If you are making a bug fix or enhancement to an existing file, simply add your name as one of the authors in the file header,
 
If you are making a bug fix or enhancement to an existing file, simply add your name as one of the authors in the file header,
Line 12: Line 11:
 
   # @subpackage Ingest
 
   # @subpackage Ingest
 
   # @author Austin Trask <austin@artefactual.com>
 
   # @author Austin Trask <austin@artefactual.com>
 +
  # @author Joseph Perry <joseph@artefactual.com>
 
   # @author Peter Van Garderen <peter@artefactual.com>
 
   # @author Peter Van Garderen <peter@artefactual.com>
 
   # '''@author YourNameHere <youremail@address>'''
 
   # '''@author YourNameHere <youremail@address>'''

Revision as of 14:37, 19 February 2011

Main Page > Development > Contribute code > Copyright and license


If you have signed the Archivematica Contributors Agreement then your code contribution can be committed to the repository and released under Archivematica's GPLv2 license. The following process must be followed to facilitate this process:

If you are making a bug fix or enhancement to an existing file, simply add your name as one of the authors in the file header,

 # Run virus scan and report on results
 #
 # @package Archivematica
 # @subpackage Ingest
 # @author Austin Trask <austin@artefactual.com>
 # @author Joseph Perry <joseph@artefactual.com>
 # @author Peter Van Garderen <peter@artefactual.com>
 # @author YourNameHere <youremail@address>
 # @version svn: $Id$

If you're contributing a new file, you need to add the following license header at the very top of the file. Copy both sections, in full, exactly as it is written here, filling in the information where indicated in bold,

 # This file is part of Archivematica.
 #
 # Archivematica is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation, either version 2 of the License, or
 # (at your option) any later version.
 #
 # Archivematica is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with Archivematica.  If not, see <http://www.gnu.org/licenses/>.
 # description of what your new file does
 #
 # @package Archivematica
 # @subpackage name of Archivematica module or component to which your file contributes
 # @author YourNameHere <youremail@address>
 # @version svn: $Id:$