Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7fd893b authored by Ricki Hirner's avatar Ricki Hirner
Browse files

Update copyright (resolves bitfireAT/davx5#26)

parent ac7e717c
Loading
Loading
Loading
Loading

AUTHORS

0 → 100644
+8 −0
Original line number Diff line number Diff line
# This is the list of significant contributors to DAVx5.
#
# This does not necessarily list everyone who has contributed work.
# To see the full list of contributors, see the revision history in
# source control.

Ricki Hirner (bitfire.at)
Bernhard Stockmann (bitfire.at)
+25 −33
Original line number Diff line number Diff line

Contributing to DAVx⁵
=====================

**Thank you for your interest in contributing to DAVx⁵!**

Because you're reading this, you're probably interested in
contributing to the DAVx⁵ code. [Other ways to contribute:
see here.](https://www.davx5.com/donate#c306)

To contribute:
# Licensing

All work in this repository is [licensed under the GPLv3](LICENSE).

We (bitfire.at, initial and main contributors) are also asking you to give us
permission to use your contribution for related non-open source projects
like [Managed DAVx⁵](https://www.davx5.com/organizations/managed-davx5).

If you send us a pull request, our CLA bot will ask you to sign the
Contributor's License Agreement so that we can use your contribution.

1. It's good idea to have a look at the [DAVx⁵ Roadmap](https://gitlab.com/bitfireAT/davx5-ose/wikis/Roadmap)
   to see whether the change is already planned. Maybe there's even a link to a
   corresponding forum thread there.
1. Determine which project the changes shall go to. There's
   the DAVx⁵ main project (this repo), and the [related
   libraries](README.md).
1. Please post to the [DAVx⁵ development forum](https://www.davx5.com/forums)
   before doing actual work (unless you do it only for yourself, of course).
   This will help to coordinate activities and you'll also get hints
   about where to start and possible pitfalls.
1. Fork the repository.
1. Do the changes in your repository.
1. Submit a pull request to the original project.
1. Post in the forum again (to make sure the pull request is being notified).

# Copyright

Questions, discussion
=====================
Make sure that every file that contains significant work (at least every code file)
starts with the copyright header:

We're happy to see questions, discussions etc. in the
[DAVx⁵ development forum](https://www.davx5.com/forums)!
```
/***************************************************************************************************
 * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
 **************************************************************************************************/
```

You can set this in Android Studio:

Licensing
=========
1. Settings / Editor / Copyright / Copyright Profiles
2. Paste the text above (without the stars).
3. Set Formatting: separator before and after, length: 100.
4. Set this copyright profile as the default profile for the project.

All code has to be licensed under the GPL.

We (bitfire.at, initial developers) are also asking you to double-license the
code so that we can also use it for related non-open source projects like
[Managed DAVx⁵](https://www.davx5.com/organizations/managed-davx5).
# Authors

Please find more about this in the Contributor's License Agreement (CLA)
we'll send to you if you want to contribute.
If you make significant contributions, feel free to add yourself to the [AUTHORS file](AUTHORS).
+3 −7
Original line number Diff line number Diff line
/*
 * Copyright (c) Ricki Hirner (bitfire web engineering).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/gpl.html
 */
/***************************************************************************************************
 * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
 **************************************************************************************************/

apply plugin: 'com.android.application'
apply plugin: 'com.mikepenz.aboutlibraries.plugin'
+4 −0
Original line number Diff line number Diff line
/***************************************************************************************************
 * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
 **************************************************************************************************/

package at.bitfire.davdroid

import android.os.Build
+3 −7
Original line number Diff line number Diff line
/*
 * Copyright © Ricki Hirner (bitfire web engineering).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/gpl.html
 */
/***************************************************************************************************
 * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
 **************************************************************************************************/

package at.bitfire.davdroid

Loading