aboutsummaryrefslogtreecommitdiff
path: root/docs/manual/Contributing.Submitting.md
blob: d84e14fc2b2da15af898168645b9b25290c704ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Before you submit

## Licensing
Smolbote is licensed under GPLv3. Your code needs to be compatible with it, and
have a license header.

The provided pre-commit hook uses the following regular expression to check for
a license:
```ruby
/Copyright\s\(C\)\s(\d{4}\s*-\s*){0,1}(#{Time.now.year})/
```

```c
/******************************************************************************
 **
 ** smolbote: yet another qute browser
 **
 ** Copyright (C) 2017 author <email>
 ** SPDX-License-Identifier: GPL-3.0
 ** License-Filename: docs/gpl-3.0.md
 **
 ******************************************************************************/
```

### SPDX-License-Identifier
A full list of license identifiers can be found on [the SPDX website](https://spdx.org/licenses/).

### License-Filename
Path to the license text, relative to the repository root.

## Style
Please use the [One True Brace style](https://en.wikipedia.org/wiki/Indent_style#Variant:_1TBS_.28OTBS.29).
Tabs are 4 spaces.

For ease of use, you can set the following astyle configuration:
```
--style=otbs
--attach-namespaces
--attach-inlines
--indent=spaces=4
```

## Format patch for email
```sh
git format-patch hash
```
where _hash_ is the commit immediately prior to the commit or series of commits 
you want to submit.

Attach the patch file and email it to _aqua at iserlohn-fortress.net_. If
possible, GPG sign the email.