-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
community_guidelines.html
195 lines (169 loc) · 7.98 KB
/
community_guidelines.html
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<title>Community Guidelines — scikit-image</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link href="_static/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="_static/css/custom.css"
rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/scikit-image.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="_static/js/bootstrap.min.js"></script>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/documentation_options.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/sphinx_highlight.js"></script>
<link rel="search" title="Search" href="search.html" />
<link rel="top" title="scikit-image" href="index.html" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link rel="shortcut icon" href="_static/favicon.ico">
</head>
<body class="container">
<a href="https://scikit-image.org" class="logo"><img src="_static/img/logo.png" alt=""></a>
<div class="clearfix"></div>
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li><a href="/docs/stable/user_guide/install.html">Installation</a></li>
<li><a href="/docs/stable/auto_examples">Gallery</a></li>
<li><a href="/docs/stable">Documentation</a></li>
<li><a href="#">Community</a></li>
<li><a href="https://github.com/scikit-image/scikit-image">
<img src="_static/GitHub-Mark-32px.png" style="height: 15px; width: 15px;
display: inline; float: none;
padding-bottom: 3px;"/>
Source</a>
</li>
</ul>
<form class="navbar-form pull-right" action="/docs/stable/search.html" method="get">
<input type="text" class="search span3" name="q" placeholder="Search documentation ...">
<input type="hidden" name="check_keywords" value="yes" >
<input type="hidden" name="area" value="default" >
</form>
</div>
</div>
<div class="row">
<div class="span3"><script src="https://unpkg.com/github-api/dist/GitHub.bundle.min.js"></script>
<script type="module">
import { Octokit } from "https://esm.sh/octokit";
const octokit = new Octokit();
const releases = await octokit.rest.repos.listReleases({
owner: 'scikit-image',
repo: 'scikit-image',
per_page: 1,
page: 1
});
const month_names = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
let release = releases.data[0];
let tag = release.tag_name;
let stable_version = tag.slice(1);
let date = release.published_at;
let year = date.substring(0, 4);
let month = date.substring(5, 7);
let day = date.substring(8, 10);
$('#stable-version').html(
stable_version + " - " + month_names[parseInt(month)-1] + " " + year
);
var stable_version_majmin = stable_version.split(".").slice(0,2).join(".");
var release_notes_url = $('#release-notes').attr('href') + "/release_" + stable_version_majmin + ".rst";
$('#release-notes').attr('href', release_notes_url);
var dev_version = stable_version.split(".").map(Number);
dev_version[1] += 1;
dev_version = dev_version.slice(0, 2).join(".");
$('#dev-version').html("pre-" + dev_version);
</script>
<div class="well">
<strong>Stable</strong>
(<a href="https://github.com/scikit-image/scikit-image/tree/main/doc/source/release_notes" id="release-notes">release notes</a>)
<p id="stable-version"/>x.y.z</p>
<a class="btn btn-small" href="https://scikit-image.org/docs/stable/user_guide/install.html#installation-via-pip-and-conda"><i class="icon-download"></i> Download</a>
<strong><br></strong>
<br/>
<strong>Development</strong>
<p id="dev-version">pre-x.y.z</p>
<a class="btn btn-small" href="https://scikit-image.org/docs/stable/user_guide/install.html#installing-scikit-image-for-contributors"><i class="icon-download"></i> Download</a>
</div><div class="well sidebar-box">
<ul class="nav nav-list">
<li>
<a class="reference external"
href="https://github.com/scikit-image/scikit-image">GitHub
<span class="sidebar-subtitle">source & bug reports</span>
</a>
</li>
<li>
<a class="reference external"
href="https://scikit-image.org/docs/stable/development/contribute.html">Contribute
<span class="sidebar-subtitle">get involved</span></a></li>
</a>
</li>
<li>
<a class="reference external"
href="https://forum.image.sc/tags/scikit-image">Get Help
<span class="sidebar-subtitle">advice & community</span>
</a>
</li>
<li>
<a class="reference external"
href="https://discuss.scientific-python.org/c/contributor/skimage">Discuss
<span class="sidebar-subtitle">contributor talk</span>
</a>
</li>
<li>
<a class="reference external"
href="https://stackoverflow.com/questions/tagged/scikit-image">StackOverflow
<span class="sidebar-subtitle">coding help</span>
</a>
</li>
</ul>
</div>
<div style="padding-top: 0.5rem; padding-bottom: 2rem;">
<a href="https://opencollective.com/scikit-image" target="_blank">
<img src="https://opencollective.com/scikit-image/donate/[email protected]?color=white" width=300 />
</a>
</div>
<div style="text-align: center;" width="100%">
<iframe src="https://ghbtns.com/github-btn.html?user=scikit-image&repo=scikit-image&type=star&count=true"
frameborder="0" scrolling="0" width="110" display="inline-block" height="20"></iframe>
</div>
</div>
<div class="span9">
<section id="community-guidelines">
<h1>Community Guidelines<a class="headerlink" href="#community-guidelines" title="Permalink to this heading">¶</a></h1>
<section id="or-how-we-work-together">
<h2>or How We Work (Together)<a class="headerlink" href="#or-how-we-work-together" title="Permalink to this heading">¶</a></h2>
<p>We welcome each and every contributor to scikit-image. Our aim is
enthusiastic and productive collaboration, to build an excellent
software library, and to have a ton of fun doing it. We encourage one
another to be gentle in criticism of others’ work, humble in
acknowledging our own mistakes, and generous in our praise.</p>
<p>If you ever feel like you are not being treated as well as you should, please
get in touch with one of the project leads (our email addresses are available
through our GitHub profiles). We are committed to making this community a
safe and welcoming space.</p>
<p>You can learn more about contributing to scikit-image at
<a class="reference external" href="https://scikit-image.org/docs/stable/development/contribute.html">https://scikit-image.org/docs/stable/development/contribute.html</a>.</p>
</section>
</section>
</div>
</div>
<div class="well footer">
<small>
© Copyright the scikit-image development team.
Created using <a href="https://twitter.github.com/bootstrap/">Bootstrap</a> and <a href="https://sphinx.pocoo.org/">Sphinx</a>.
</small>
</div>
<div class="chatbutton"><a href="https://skimage.zulipchat.com">Open Chat</a></div>
</body>
</html>