81 lines
3.3 KiB
HTML
81 lines
3.3 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}{% trans %}Get Involved!{% endtrans %}{% endblock %}
|
|
{% block content %}
|
|
<h2>{% trans %}We need your help!{% endtrans %}</h2>
|
|
<p>{% trans -%}
|
|
To get involved, please feel free to join us on the #i2p IRC channel (on
|
|
irc.freenode.net, or within I2P on irc.freshcoffee.i2p or irc.postman.i2p).
|
|
{%- endtrans %}</p>
|
|
<p>{% trans team=site_url('about/team') -%}
|
|
If you're interested in joining our <a href="{{ team }}">team</a>, please get in
|
|
touch as we're always looking for eager contributors!
|
|
{%- endtrans %}</p>
|
|
<p>{% trans -%}
|
|
We need help in many areas, and you don't need to know Java to contribute!
|
|
Here's a list to help you get started!
|
|
{%- endtrans %}</p>
|
|
<ul>
|
|
<li><b>{% trans %}Spread the Word!{% endtrans %}</b> —
|
|
{% trans -%}
|
|
Tell people about I2P on forums, blogs, and comments to articles.
|
|
Fix up the Wikipedia article about I2P in your language.
|
|
Tell your friends.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Testing') }}</b> —
|
|
{% trans monotone=site_url('get-involved/guides/monotone'),
|
|
trac='https://trac.i2p2.de/report/1' -%}
|
|
Run the latest builds from <a href="{{ monotone }}">monotone</a>
|
|
and report results on #i2p or as bugs on <a href="{{ trac }}">Trac</a>.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Documentation') }}</b> —
|
|
{% trans -%}
|
|
Help fix the parts of the website that are outdated or incomplete.
|
|
Translate pages into other languages.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Pictures') }}</b> —
|
|
{% trans -%}
|
|
Make some more pictures, fix the old ones on the website
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Content') }}</b> —
|
|
{% trans -%}
|
|
Make an eepsite! Add some content! Contribute to the community!
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Services') }}</b> —
|
|
{% trans -%}
|
|
Run a service on an eepsite. It could be a proxy, a forum, a tracker,
|
|
a naming service, a search engine, an eepsite monitor... many of these
|
|
aren't that hard.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Applications') }}</b> —
|
|
{% trans apps=site_url('get-involved/develop/applications') -%}
|
|
Write or port applications for I2P! There's some guidelines and
|
|
a list of ideas on the <a href="{{ apps }}">applications page</a>.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Coding') }}</b> —
|
|
{% trans trac='https://trac.i2p2.de/report/1',
|
|
zzz=i2pconv('zzz.i2p'),
|
|
newdevs=site_url('get-involved/guides/new-developers') -%}
|
|
There's plenty to do if you know Java or are ready to learn.
|
|
Check for open tickets on <a href="{{ trac }}">Trac</a>
|
|
or the TODO list on <a href="http://{{ zzz }}">{{ zzz }}</a> for
|
|
some ideas on where to start.
|
|
See the <a href="{{ newdevs }}">new developer's guide</a> for details.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Translation') }}</b> —
|
|
{% trans newtrans=site_url('get-involved/guides/new-translators') -%}
|
|
Help translate the website and the software into your language.
|
|
See the <a href="{{ newtrans }}">new translator's guide</a> for details.
|
|
{%- endtrans %}
|
|
</li><li><b>{{ _('Analysis') }}</b> —
|
|
{% trans threatmodel=site_url('docs/how/threat-model') -%}
|
|
Study or test the code to look for vulnerabilities.
|
|
Both anonymity vulnerabilities from the various
|
|
<a href="{{ threatmodel }}">threat models</a>,
|
|
and DOS and other weaknesses due to securities holes,
|
|
need researching.
|
|
{%- endtrans %}
|
|
</li><li><b><a href="{{ site_url('get-involved/donate') }}">{{ _('Donate') }}</a></b>
|
|
|
|
</li></ul>
|
|
{% endblock %}
|