forked from glugpace/GLUG-PACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc.html
More file actions
120 lines (108 loc) · 7.16 KB
/
coc.html
File metadata and controls
120 lines (108 loc) · 7.16 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="../../images/favicon.ico" type="image/x-icon">
<title>GLUG PACE - Code Of Conduct</title>
<meta name="description" content="Git is a version-control system (VCS) for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source-code management in software development, but it can be used to keep track of changes in any set of files. As a distributed revision-control system, it is aimed at speed, data integrity, and support for distributed, non-linear workflows. There are multiple Version Control Systems, but Git is by far and large the most popular both for individual and company use.">
<link rel="stylesheet" href="../../css/style.css">
</head>
<body>
<!-- Navbar -->
<header>
<nav class="container">
<a href='/' id="logo">GLUG PACE</a>
<ul class="navbar-links">
<li class="nav-link"><a href='/events/'>Events</a></li>
<li class="nav-link"><a href='/blog/'>Blog</a></li>
<li class="nav-link"><a href='/team/'>Team</a></li>
<li class="nav-link"><a href='coc.html'>Code Of Conduct</a></li>
</ul>
</nav>
</header>
<!-- Read post section -->
<div class="container padding">
<div class="data-content">
<div class="data-desc">
<h1 align="center" class="data-heading">Code Of Conduct</h1>
<hr>
<div class="data-body">
<h2>Contributor Covenant Code of Conduct</h2>
<h3>Our Pledge</h3>
<p>In the interest of fostering an open and welcoming environment, we as contributors and maintainers
pledge to making participation in our project and our community a harassment-free experience for everyone,
regardless of age, body size, 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.</p>
<h3>Our Standards</h3>
<p>Examples of behaviour that contributes to creating a positive environment include:</p>
<ul>
<li>Using welcoming and inclusive language</li>
<li>Being respectful of differing viewpoints and experiences</li>
<li>Gracefully accepting constructive criticism</li>
<li>Focusing on what is best for the community</li>
<li>Showing empathy towards other community members</li>
</ul>
<p>Examples of unacceptable behaviour by participants include:</p>
<ul>
<li>The use of sexualized language or imagery and unwelcome sexual attention or advances</li>
<li>Trolling, insulting/derogatory comments, and personal or political attacks</li>
<li>Public or private harassment</li>
<li>Publishing others' private information, such as a physical or electronic address, without explicit
permission</li>
<li>Other conduct which could reasonably be considered inappropriate in a professional setting</li>
</ul>
<h3>Our Responsibilities</h3>
<p>Project maintainers are responsible for clarifying the standards of acceptable behaviour and are expected
to take appropriate and fair corrective action in response to any instances of unacceptable behaviour.</p>
<p>Project maintainers 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, or to ban
temporarily or permanently any contributor for other behaviours that they deem inappropriate, threatening,
offensive, or harmful.</p>
<h3>Scope</h3>
<p>This Code of Conduct applies both within project spaces and in public spaces when an individual is
representing the project or its community. Examples of representing a project or community include using
an official project e-mail address, posting via an official social media account, or acting as an
appointed representative at an online or offline event. Representation of a project may be further defined
and clarified by project maintainers.</p>
<h3>Enforcement</h3>
<p>Instances of abusive, harassing, or otherwise unacceptable behaviour may be reported by contacting the
project team at <a href="mailto:glug@pace.edu.in">glug@pace.edu.in</a>. All complaints will be reviewed
and investigated and will result in a response that is deemed necessary and appropriate to the
circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an
incident. Further details of specific enforcement policies may be posted separately.</p>
<p>Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or
permanent repercussions as determined by other members of the project's leadership.</p>
<h3>Attribution</h3>
<p>This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available
<a href="hhttps://www.contributor-covenant.org/version/1/4/code-of-conduct.html" target="blank">Here</a></p>
<p>For answers to common questions about this code of conduct, see <a href="https://www.contributor-covenant.org/faq" target="blank">FAQ</a></p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-box">
<h1>GLUG PACE</h1>
<p>GNU AND LINUX USERS GROUP PACE, <br /> A subgroup of (FSMK) <br /> Free Software Movement Karnataka.</p>
</div>
<div class="footer-box">
<h1>Open Source Community</h1>
<p><a href="https://github.com/GLUGPACE/" target="blank">GitHub</a></p>
</div>
<div class="footer-box">
<h1>P A College of Engineering</h1>
<p>Nadupadav, Montepadav Post <br />
Kairangala <br />
Mangalore - 574153 <br />
Karnataka, INDIA.
</p>
</div>
</div>
</footer>
</body>
</html>