This repository has been archived by the owner on May 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcontribute.html
118 lines (110 loc) · 4.6 KB
/
contribute.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Zulip - Contribute to the project</title>
<link rel="icon" href="favicon.ico">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-79921909-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- Navigation bar -->
<header>
<div class="container">
<div id="logo">
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a>
</div>
<nav>
<ul class="downloads">
<li><a href="https://zulip.readthedocs.io/en/latest/prod.html">Server</a></li>
<li><a href="clients.html">Clients</a></li>
</ul>
<ul>
<li><a href="https://blogs.dropbox.com/tech/2015/09/open-sourcing-zulip-a-dropbox-hack-week-project">About</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="https://zulipchat.com/integrations">Integrations</a></li>
<li><a href="https://zulipchat.com/api">API</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="https://blog.zulip.org/">Blog</a></li>
</ul>
</nav>
</div>
</header>
<div class="band band-purple">
<div class="container">
<h2>Contribute to the open source project</h2>
</div>
</div>
<div class="container docs">
<article>
<section>
<h3>We'd love your help</h3>
<p>Zulip is licensed under the Apache license and is a
friendly open source community that welcomes all forms of
contributions! There's a ton of stuff to do -- in
development, testing, translation, documentation, and
more. Here's just a small sampling of ways you can get
started:</p>
<ul>
<li><a href="https://zulip.readthedocs.io/en/latest/integration-guide.html">Write
an integration for your favorite service</a></li>
<li><a href="https://zulip.readthedocs.io/en/latest/translating.html">Translate
user-visible text into another language</a></li>
<li>Write or improve API bindings for Zulip in your favorite language</li>
<li><a href="https://github.com/zulip/zulip/issues/599">Update our screenshots to
show the current Zulip UI</a></li>
</ul>
<p>And <a href="http://zulip.readthedocs.io/en/latest/roadmap.html">here's our roadmap</a>,
so you can see where we're headed in 2017.</p>
</section>
<section>
<h3>Google Summer of Code</h3>
<p>We're hoping to mentor for Google Summer of Code in 2017;
if you're interested in
applying, <a href="https://github.com/zulip/zulip.github.io/blob/master/gsoc-ideas.md">here's
our GSoC guide</a>.</p>
</section>
<section>
<h3>Get started</h3>
<p>Check out <a href="http://zulip.readthedocs.io/en/latest/readme-symlink.html#ways-to-contribute">our
contribution guide</a>, with installation instructions, tutorials, and more!</p>
<p>All our code is <a href="https://github.com/zulip/">on GitHub</a>.</p>
</section>
<section>
<h3>Security</h3>
<p>Please report any potential security issues you discover to
[email protected].</p>
</section>
</article>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div id="logo">
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a>
</div>
<nav>
<ul>
<li><a href="https://blogs.dropbox.com/tech/2015/09/open-sourcing-zulip-a-dropbox-hack-week-project">About</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="https://blog.zulip.org/">Blog</a></li>
<li><a href="https://chat.zulip.org">Community Chat</a></li>
<li><a href="https://zulip.readthedocs.io/en/latest/roadmap.html">Roadmap</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>