2019-02-11 20:55:09 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2019-02-13 15:41:27 +00:00
|
|
|
{%- from "downloads/macros" import package_outer with context -%}
|
2019-02-11 20:55:09 +00:00
|
|
|
{% block title %}I2P Lab{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _('I2P Laboratory') }}</h1>
|
|
|
|
<p>
|
2019-02-19 13:23:13 +00:00
|
|
|
{% trans -%}
|
|
|
|
Welcome to the I2P Laboratory!
|
|
|
|
This is the home of various experimental projects that are not yet ready to go live.
|
|
|
|
We invite you to look around and give them a try, but we do not offer support for them.
|
|
|
|
Any of these projects may be discontinued at any time.
|
2019-02-20 19:17:13 +00:00
|
|
|
{%- endtrans %}
|
2019-02-19 13:23:13 +00:00
|
|
|
</p>
|
2019-02-11 20:55:09 +00:00
|
|
|
<p>
|
2019-02-20 19:17:13 +00:00
|
|
|
{% trans forum='https://i2pforum.net/viewforum.php?f=36' -%}
|
2019-02-19 13:23:13 +00:00
|
|
|
We welcome your feedback at the <a href="{{ forum }}">I2P Forum</a>.
|
2019-02-11 20:55:09 +00:00
|
|
|
{%- endtrans %}
|
2019-02-19 13:23:13 +00:00
|
|
|
<p>
|
2019-02-11 20:55:09 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<h3>{{ _('Current Projects') }}</h3>
|
2019-02-13 19:18:52 +00:00
|
|
|
<div class = "labproject" >
|
2019-02-11 20:55:09 +00:00
|
|
|
<h5>{{ _('Zero-Dependency installer') }}</h5>
|
|
|
|
<p>
|
2019-02-13 15:41:27 +00:00
|
|
|
{% trans %}
|
2019-02-19 13:23:13 +00:00
|
|
|
This is an I2P installer for Windows that does not depend on an existing Java installation.
|
|
|
|
It includes all required dependencies.
|
2019-02-13 15:41:27 +00:00
|
|
|
{%- endtrans %}
|
2019-02-11 20:55:09 +00:00
|
|
|
</p>
|
2019-02-13 15:41:27 +00:00
|
|
|
{% trans %}
|
|
|
|
Status: Proof-Of-Concept
|
2019-02-11 20:55:09 +00:00
|
|
|
{%- endtrans %}
|
2019-02-13 15:41:27 +00:00
|
|
|
|
|
|
|
{%- set name = 'Windows' -%}
|
|
|
|
{%- set icon = 'images/download/windows.png' -%}
|
2019-02-23 15:39:14 +00:00
|
|
|
{%- set filename = 'Zero-I2P0.9.38-JRE11.0.2-INST0.1.exe' -%}
|
|
|
|
{%- set hash = 'ff1172a785e2aa2e823b90ce2fbc09ad7503864bcd4e30093d22cffa4d955a31' -%}
|
2019-02-13 15:41:27 +00:00
|
|
|
{% call package_outer('windows', name, icon) %}
|
|
|
|
<div class = "file">
|
2019-02-23 15:39:14 +00:00
|
|
|
<a class = "default" href="https://download.i2p2.de/experimental/Zero-I2P0.9.38-JRE11.0.2-INST0.1.exe">
|
2019-02-13 15:41:27 +00:00
|
|
|
<span class = "name">{{ filename }}</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class = "meta">
|
|
|
|
<div class = "hash">
|
|
|
|
<code>{{ hash }}</code>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p>{% trans -%}
|
|
|
|
Download that file and run it.
|
|
|
|
{%- endtrans %}</p>
|
|
|
|
{% endcall %}
|
2019-02-13 19:18:52 +00:00
|
|
|
</div>
|
2019-02-11 20:55:09 +00:00
|
|
|
<!--
|
|
|
|
{% trans signer='zlatinb',
|
|
|
|
signingkey=url_for('static', filename='zlatinb.key.crt') -%}
|
|
|
|
The files are signed by {{ signer }},
|
|
|
|
<a href="{{ signingkey }}">whose key is here</a>.
|
|
|
|
{%- endtrans %}
|
|
|
|
-->
|
|
|
|
{% endblock %}
|