]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/static/development.html
Lots of translation work.
[people/shoehn/ipfire.org.git] / www / templates / static / development.html
CommitLineData
940227cb 1{% extends "../base-2.html" %}
0207c176
JPT
2
3{% block title %}{{ _("Development") }}{% end block %}
4
5{% block content %}
68ed6093
MT
6 <h3>{{ _("Development") }}</h3>
7 <img src="{{ static_url("images/icons/development.png") }}" class="floatTR" alt="{{ _("Development") }}" />
8 {% if lang == "de" %}
0207c176 9 <p>
68ed6093
MT
10 Willkommen im Entwicklungsbereich des IPFire-Projekts.<br />
11 Hier gibt es Zugriff auf alle Ressourcen für die Entwicklung.<br />
0207c176 12 </p>
68ed6093 13 {% else %}
0207c176 14 <p>
68ed6093 15 Welcome to the development area of the IPFire project.
0207c176 16 </p>
0207c176 17 <p>
68ed6093
MT
18 This page is meant to give you a short overview about how the IPFire
19 developers work and what tools they do use.
0207c176 20 </p>
0207c176 21 <p>
68ed6093
MT
22 Everybody who is willing to contribute anything to IPFire is very
23 welcomed and we appreciate this help very much.
0207c176 24 </p>
68ed6093
MT
25 {% end %}
26
27 <h4>{{ _("Planet") }}</h4>
28 <p>
29 <strong>NEW!</strong> The IPFire project has a new feature on its website
30 that we call <em>the planet</em>. This is meant to be some kind of blog
31 or news site that published minor announcements and keeps community and
32 developers in touch.
33 </p>
34 <p class="right">
35 <a href="http://planet.ipfire.org/" target="_blank">{{ _("Go to the planet") }}</a>
36 </p>
0207c176 37 <br class="clear" />
0207c176 38
68ed6093
MT
39 <h4>{{ _("Source code") }}</h4>
40 <p>
41 As IPFire is free software, you are allowed to download the source code under
42 the terms of the GNU General Public License in version 3.
43 </p>
44 <p>
45 <a href="http://www.git-scm.com/" target="_blank">Git</a> is used to manage the IPFire
46 source code which can be browsed <a href="http://git.ipfire.org/" target="_blank">here</a>.
47 To learn more about Git and how to use it please visit the Git homepage or a guide in
48 out own <a href="http://wiki.ipfire.org/en/development/git" target="_blank">wiki</a>.
49 </p>
50 <br class="clear" />
0207c176 51
68ed6093
MT
52 <h4>{{ _("Important howtos") }}</h4>
53 <p>
54 This is a short collection of howtos that are available in the wiki
55 and a good start developing IPFire.
56 </p>
57 <p>
58 Do not percieve this list complete and check out the wiki, too.
59 </p>
60 <ul class="list">
61 <li>
62 <a href="http://wiki.ipfire.org/{{ lang }}/development/build" target="_blank">{{ _("Building IPFire") }}</a>
63 </li>
64 <li>
65 <a href="http://wiki.ipfire.org/{{ lang }}/development/addon" target="_blank">{{ _("Building a new addon") }}</a>
66 </li>
67 <li>
68 <a href="http://wiki.ipfire.org/{{ lang }}/development/language" target="_blank">{{ _("Creating a language file") }}</a>
69 </li>
70 </ul>
71 <br class="clear" />
0207c176 72
68ed6093
MT
73 <h4>{{ _("Bugtracker") }}</h4>
74 <p>
75 The bugtracker manages all current issues of the distribution and also helps the
76 developers to keep an overview about what is to do.
77 </p>
78 <p>
79 If you are sure (and only if) you found a bug in the IPFire system, you may file
80 a report. This is a way to improve the quality of IPFire.
81 </p>
82 <p>
83 For historical reasons there are two bug tracking systems available. We use
84 <a href="http://www.mantisbt.org/" target="_blank">mantis</a> for IPFire 2.x
85 and earlier versions which is replaced in the development of version 3.x by
86 <a href="http://www.redmine.org" target="_blank">redmine</a>.
87 </p>
88 <ul class="list">
89 <li><a href="http://mantis.ipfire.org/" target="_blank">Development for IPFire 2.x</a></li>
90 <li><a href="http://redmine.ipfire.org/" taregt="_blank">Development for IPFire 3.x</a></li>
91 </ul>
0207c176 92{% end block %}
68ed6093 93