Migrated over API, application dev and license-related pages

This commit is contained in:
str4d
2012-09-15 03:36:42 +00:00
parent 17fa2f7942
commit 5a3090e952
6 changed files with 15 additions and 14 deletions

View File

@ -20,10 +20,11 @@
<li><a href="http://forum.i2p2.de/"><span>Forums</span></a></li>
</ul>
</li>
<li class="has-sub"><a href="getinvolved.html"><span>Develop</span></a>
<li class="has-sub"><a href="#"><span>Develop</span></a>
<ul>
<li><a href="api.html"><span>API</span></a></li>
<li><a href="licenses.html"><span>Licenses</span></a></li>
<li><a href="{{ site_url('develop/api') }}"><span>API</span></a></li>
<li><a href="{{ site_url('develop/applications') }}"><span>Applications</span></a></li>
<li><a href="{{ site_url('develop/licenses') }}"><span>Licenses</span></a></li>
<li><a href="http://trac.i2p2.i2p/"><span>Trac</span></a></li>
</ul>
</li>

View File

@ -0,0 +1,5 @@
{% extends "global/layout.html" %}
{% block title %}API{% endblock %}
{% block content %}
See the <a href="{{ site_url('docs/how') }}">Index to Technical Documentation</a>.
{% endblock %}

View File

@ -1,4 +1,4 @@
{% extends "_layout.html" %}
{% extends "global/layout.html" %}
{% block title %}Application Development{% endblock %}
{% block content %}
<h1>Application Development Guide</h1>

View File

@ -1,8 +1,8 @@
{% extends "_layout.html" %}
{% extends "global/layout.html" %}
{% block title %}License Agreements{% endblock %}
{% block content %}
<p>For more information see <a href="licenses.html">licenses.html</a>.
<p>For more information see <a href="{{ site_url('develop/licenses') }}">licenses.html</a>.
</p><p>Following is a monotonerc file defining the current trust list.
Developers must use this file in ~/.monotone/monotonerc or
_MTN/montonerc in their i2p.i2p workspace.

View File

@ -1,10 +1,10 @@
{% extends "_layout.html" %}
{% extends "global/layout.html" %}
{% block title %}Licenses{% endblock %}
{% block content %}
<h1>I2P Software Licenses</h1>
<p>
As required by our
<a href="how_threatmodel.html">threat model</a> (among other reasons), the
<a href="{{ site_url('docs/how/threatmodel') }}">threat model</a> (among other reasons), the
software developed to support the anonymous communication
network we call I2P must be freely available, open source,
and user modifiable. To meet these criteria, we make use of
@ -306,6 +306,6 @@ That means that they must send one of the release managers a signed message affi
<p>If anyone is aware of any instances where the above conditions are not met,
please contact the component lead and/or an I2P release manager with further
information.
<a href="license-agreements.html">See developers' license agreements</a>.
<a href="{{ site_url('develop/license-agreements') }}">See developers' license agreements</a>.
</p>
{% endblock %}

View File

@ -1,5 +0,0 @@
{% extends "_layout.html" %}
{% block title %}API{% endblock %}
{% block content %}
See the <a href="how.html">Index to Technical Documentation</a>.
{% endblock %}