-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a22345c
commit ba952db
Showing
4 changed files
with
193 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
Contributor Covenant Code of Conduct | ||
Our Pledge | ||
We as members, contributors, and leaders pledge to make participation in our | ||
community a harassment-free experience for everyone, regardless of age, body | ||
size, visible or invisible disability, ethnicity, sex characteristics, gender | ||
identity and expression, level of experience, education, socio-economic status, | ||
nationality, personal appearance, race, religion, or sexual identity | ||
and orientation. | ||
We pledge to act and interact in ways that contribute to an open, welcoming, | ||
diverse, inclusive, and healthy community. | ||
Our Standards | ||
Examples of behavior that contributes to a positive environment for our | ||
community include: | ||
|
||
* Demonstrating empathy and kindness toward other people | ||
* Being respectful of differing opinions, viewpoints, and experiences | ||
* Giving and gracefully accepting constructive feedback | ||
* Accepting responsibility and apologizing to those affected by our mistakes, | ||
and learning from the experience | ||
* Focusing on what is best not just for us as individuals, but for the | ||
overall community | ||
|
||
Examples of unacceptable behavior include: | ||
|
||
* The use of sexualized language or imagery, and sexual attention or | ||
advances of any kind | ||
* Trolling, insulting or derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others’ private information, such as a physical or email | ||
address, without their explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
Enforcement Responsibilities | ||
Community leaders are responsible for clarifying and enforcing our standards of | ||
acceptable behavior and will take appropriate and fair corrective action in | ||
response to any behavior that they deem inappropriate, threatening, offensive, | ||
or harmful. | ||
Community leaders have the right and responsibility to remove, edit, or reject | ||
comments, commits, code, wiki edits, issues, and other contributions that are | ||
not aligned to this Code of Conduct, and will communicate reasons for moderation | ||
decisions when appropriate. | ||
Scope | ||
This Code of Conduct applies within all community spaces, and also applies when | ||
an individual is officially representing the community in public spaces. | ||
Examples of representing our community include using an official e-mail address, | ||
posting via an official social media account, or acting as an appointed | ||
representative at an online or offline event. | ||
Enforcement | ||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported to the community leaders responsible for enforcement at | ||
this email address: [email protected]. | ||
All complaints will be reviewed and investigated promptly and fairly. | ||
All community leaders are obligated to respect the privacy and security of the | ||
reporter of any incident. | ||
Enforcement Guidelines | ||
Community leaders will follow these Community Impact Guidelines in determining | ||
the consequences for any action they deem in violation of this Code of Conduct: | ||
1. Correction | ||
Community Impact: Use of inappropriate language or other behavior deemed | ||
unprofessional or unwelcome in the community. | ||
Consequence: A private, written warning from community leaders, providing | ||
clarity around the nature of the violation and an explanation of why the | ||
behavior was inappropriate. A public apology may be requested. | ||
2. Warning | ||
Community Impact: A violation through a single incident or series | ||
of actions. | ||
Consequence: A warning with consequences for continued behavior. No | ||
interaction with the people involved, including unsolicited interaction with | ||
those enforcing the Code of Conduct, for a specified period of time. This | ||
includes avoiding interactions in community spaces as well as external channels | ||
like social media. Violating these terms may lead to a temporary or | ||
permanent ban. | ||
3. Temporary Ban | ||
Community Impact: A serious violation of community standards, including | ||
sustained inappropriate behavior. | ||
Consequence: A temporary ban from any sort of interaction or public | ||
communication with the community for a specified period of time. No public or | ||
private interaction with the people involved, including unsolicited interaction | ||
with those enforcing the Code of Conduct, is allowed during this period. | ||
Violating these terms may lead to a permanent ban. | ||
4. Permanent Ban | ||
Community Impact: Demonstrating a pattern of violation of community | ||
standards, including sustained inappropriate behavior, harassment of an | ||
individual, or aggression toward or disparagement of classes of individuals. | ||
Consequence: A permanent ban from any sort of public interaction within | ||
the community. | ||
Attribution | ||
This Code of Conduct is adapted from the Contributor Covenant, | ||
version 2.0, available at | ||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. | ||
Community Impact Guidelines were inspired by Mozilla’s code of conduct | ||
enforcement ladder. | ||
For answers to common questions about this code of conduct, see the FAQ at | ||
https://www.contributor-covenant.org/faq. Translations are available at | ||
https://www.contributor-covenant.org/translations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Note: by contributing code to the Titan project in any form, including sending | ||
a pull request via Github, a code fragment or patch via private email or | ||
public discussion groups, you agree to release your code under the terms | ||
of the BSD license that you can find in the COPYING file included in the Titan | ||
source distribution. You will include BSD license in the COPYING file within | ||
each source file that you contribute. | ||
|
||
# IMPORTANT: HOW TO USE TITAN GITHUB ISSUES | ||
|
||
Github issues SHOULD ONLY BE USED to report bugs, and for DETAILED feature | ||
requests. Everything else belongs to the Titan Github Discussions Group: | ||
|
||
https://github.com/KAIYO-OSS/titan/discussions | ||
|
||
PLEASE DO NOT POST GENERAL QUESTIONS that are not about bugs or suspected | ||
bugs in the Github issues system. We'll be very happy to help you and provide | ||
all the support in the mailing list. | ||
|
||
If you are reporting a security bug or vulnerability, see SECURITY.md. | ||
|
||
# How to provide a patch for a new feature | ||
|
||
1. If it is a major feature or a semantical change, please don't start coding | ||
straight away: if your feature is not a conceptual fit you'll lose a lot of | ||
time writing the code without any reason. Start by posting in the mailing list | ||
and creating an issue at Github with the description of, exactly, what you want | ||
to accomplish and why. Use cases are important for features to be accepted. | ||
Here you'll see if there is consensus about your idea. | ||
|
||
2. If in step 1 you get an acknowledgment from the project leaders, use the | ||
following procedure to submit a patch: | ||
|
||
a. Fork Titan on github ( http://help.github.com/fork-a-repo/ ) | ||
b. Create a topic branch (git checkout -b my_branch) | ||
c. Push to your branch (git push origin my_branch) | ||
d. Initiate a pull request on github ( https://help.github.com/articles/creating-a-pull-request/ ) | ||
e. Done :) | ||
|
||
3. Keep in mind that we are very overloaded, so issues and PRs sometimes wait | ||
for a *very* long time. However this is not lack of interest, as the project | ||
gets more and more users, we find ourselves in a constant need to prioritize | ||
certain issues/PRs over others. If you think your issue/PR is very important | ||
try to popularize it, have other users commenting and sharing their point of | ||
view and so forth. This helps. | ||
|
||
4. For minor fixes just open a pull request on Github. | ||
|
||
Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Titan is generally backwards compatible with very few exceptions, so we | ||
recommend users to always use the latest version to experience stability, | ||
performance and security. | ||
|
||
We generally backport security issues to a single previous major version, | ||
unless this is not possible or feasible with a reasonable effort. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 1.0.x | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you believe you’ve discovered a serious vulnerability, please contact the | ||
Titan core team at [email protected]. We will evaluate your report and if | ||
necessary issue a fix and an advisory. If the issue was previously undisclosed, | ||
we’ll also mention your name in the credits. | ||
|
||
## Responsible Disclosure | ||
|
||
In some cases, we may apply a responsible disclosure process to reported or | ||
otherwise discovered vulnerabilities. We will usually do that for a critical | ||
vulnerability, and only if we have a good reason to believe information about | ||
it is not yet public. | ||
|
||
This process involves providing an early notification about the vulnerability, | ||
its impact and mitigations to a short list of vendors under a time-limited | ||
embargo on public disclosure. | ||
|
||
Vendors on the list are individuals or organizations that maintain Titan | ||
distributions or provide Titan as a service, who have third party users who | ||
will benefit from the vendor’s ability to prepare for a new version or deploy a | ||
fix early. | ||
|
||
If you believe you should be on the list, please contact us and we will | ||
consider your request based on the above criteria. |