Difference between revisions of "Howto: Contribute to Gramps"

From Gramps
Jump to: navigation, search
m (References)
 
(14 intermediate revisions by 7 users not shown)
Line 1: Line 1:
[[Category:Tutorials|How can I contribute to GRAMPS?]]
+
{{languages|Howto: Contribute to Gramps}}
  
How can I contribute to GRAMPS?
+
How can I contribute to Gramps?
  
There are [[How_you_can_help|a variety ways in which one can contribute to GRAMPS]], but there a few constraints that GRAMPS (or any open source project) must ensure to protect the project. This page discusses these issues.
+
There are [[How_you_can_help|a variety ways in which one can contribute to Gramps]], but there a few constraints that Gramps (or any open source project) must ensure to protect the project. This page discusses these issues.
  
 
= GNU General Public License =
 
= GNU General Public License =
  
GRAMPS is distributed under the GNU General Public License (GPL), version 2 or later.  
+
Gramps is distributed under the GNU General Public License (GPL), version 2 or later.  
  
A brief statement appears at the top of every Python file in GRAMPS:
+
A brief [[Source file headers|statement]] appears at the top of every Python file in Gramps:
  
 
  # Copyright (C) YEAR  YOUR-NAME-HERE <CONTACT-EMAIL>
 
  # Copyright (C) YEAR  YOUR-NAME-HERE <CONTACT-EMAIL>
Line 25: Line 25:
 
  # 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 this program; if not, write to the Free Software
 
  # along with this program; if not, write to the Free Software
  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  
To contribute to GRAMPS you must:
+
To contribute to Gramps you must:
  
# Submit your contributions as per the rules of the GPL [1, 2]
+
# Hold the copyright to your code and license it under GPLv2 or later (see 1)
 
# Add your real name and contact information at the top of any file for which you have contributed
 
# Add your real name and contact information at the top of any file for which you have contributed
 +
# Certify that you personally authored the code and did not copy from other implementations or use AI generators
  
If you have viewed proprietary source code that performs the same, or similar function to a part of GRAMPS, then you cannot contribute related code. For more information, please see [http://www.gnu.org/software/classpath/faq/faq.html#faq3_2 3]
+
If you have viewed proprietary source code that performs the same, or similar function to a part of Gramps, then you cannot contribute related code. For more information, please (see 3)
 +
 
 +
==See also==
 +
* [[Source file headers]]
  
 
= References =
 
= References =
 +
#[http://www.oss-watch.ac.uk/resources/contributing.xml OSS Watch - Can you contribute code to an open source project?]
 +
#[http://www.gnu.org/licenses/gpl.html The GNU General Public License] - GNU Project - Free Software Foundation (FSF)
 +
#[http://www.gnu.org/software/classpath/faq/faq.html#faq3_2 3.2 Can I look at source code distributed with other implementations to get inspiration?] - GNU Classpath FAQ - GNU Project - Free Software Foundation (FSF)
 +
#[https://github.com/github/site-policy/blob/1263bf0164cfe60d0900e70ba9126855c7c23c6c/Policies/github-terms-of-service.md#6-contributions-under-repository-license GitHub Terms & Conditions] - 6. Contributions Under Repository License
  
[1] http://www.oss-watch.ac.uk/resources/contributing.xml
+
{{DEFAULTSORT:Contributing to the Gramps project|noreplace}}
 
+
[[Category:Tutorials|How can I contribute to Gramps?]]
[2] http://www.gnu.org/licenses/gpl.html
+
[[Category:How_do_I...|Contribute]]
 
+
[[Category:Developers/General]]
[3] http://www.gnu.org/software/classpath/faq/faq.html#faq3_2
 

Latest revision as of 00:59, 1 December 2023

How can I contribute to Gramps?

There are a variety ways in which one can contribute to Gramps, but there a few constraints that Gramps (or any open source project) must ensure to protect the project. This page discusses these issues.

GNU General Public License

Gramps is distributed under the GNU General Public License (GPL), version 2 or later.

A brief statement appears at the top of every Python file in Gramps:

# Copyright (C) YEAR  YOUR-NAME-HERE <CONTACT-EMAIL>
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

To contribute to Gramps you must:

  1. Hold the copyright to your code and license it under GPLv2 or later (see 1)
  2. Add your real name and contact information at the top of any file for which you have contributed
  3. Certify that you personally authored the code and did not copy from other implementations or use AI generators

If you have viewed proprietary source code that performs the same, or similar function to a part of Gramps, then you cannot contribute related code. For more information, please (see 3)

See also

References

  1. OSS Watch - Can you contribute code to an open source project?
  2. The GNU General Public License - GNU Project - Free Software Foundation (FSF)
  3. 3.2 Can I look at source code distributed with other implementations to get inspiration? - GNU Classpath FAQ - GNU Project - Free Software Foundation (FSF)
  4. GitHub Terms & Conditions - 6. Contributions Under Repository License