Difference between revisions of "License"
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Main Page]] > [[Development]] > [[Contribute code]] > | + | [[Main Page]] > [[Development]] > [[Contribute code]] > License |
− | + | 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: | |
− | |||
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, | ||
− | # Run and report on | + | # Run virus scan and report on results |
# | # | ||
# @package Archivematica | # @package Archivematica | ||
# @subpackage Ingest | # @subpackage Ingest | ||
− | # @author Austin Trask < | + | # @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>''' | ||
Line 19: | Line 19: | ||
# This file is part of Archivematica. | # This file is part of Archivematica. | ||
+ | # | ||
+ | # Copyright 2010-2011 Artefactual Systems Inc. <http://artefactual.com> | ||
# | # | ||
# Archivematica is free software: you can redistribute it and/or modify | # Archivematica is free software: you can redistribute it and/or modify | ||
Line 32: | Line 34: | ||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | ||
# along with Archivematica. If not, see <http://www.gnu.org/licenses/>. | # along with Archivematica. If not, see <http://www.gnu.org/licenses/>. | ||
− | |||
# '''description of what your new file does''' | # '''description of what your new file does''' |
Latest revision as of 13:42, 19 February 2011
Main Page > Development > Contribute code > 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. # # Copyright 2010-2011 Artefactual Systems Inc. <http://artefactual.com> # # 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:$