propagate from branch 'i2p.www' (head 56805f1c287e5d3c3f99a1d379eedb7546b3f871)
to branch 'i2p.www.revamp' (head acf206607b2261559baba585f66b9c2b0d528bca)
This commit is contained in:
378
i2p2www/__init__.py
Normal file
378
i2p2www/__init__.py
Normal file
@ -0,0 +1,378 @@
|
|||||||
|
from jinja2 import Environment, FileSystemLoader, environmentfilter
|
||||||
|
from flask import Flask, request, session, g, redirect, url_for, abort, render_template, flash, send_from_directory, safe_join
|
||||||
|
from flaskext.babel import Babel
|
||||||
|
from docutils.core import publish_parts
|
||||||
|
import os.path
|
||||||
|
import os
|
||||||
|
import fileinput
|
||||||
|
import codecs
|
||||||
|
|
||||||
|
|
||||||
|
TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), 'pages')
|
||||||
|
STATIC_DIR = os.path.join(os.path.dirname(__file__), 'static')
|
||||||
|
|
||||||
|
BLOG_DIR = os.path.join(os.path.dirname(__file__), 'blog')
|
||||||
|
MEETINGS_DIR = os.path.join(os.path.dirname(__file__), 'meetings')
|
||||||
|
|
||||||
|
app = application = Flask('i2p2www', template_folder=TEMPLATE_DIR, static_url_path='/_static', static_folder=STATIC_DIR)
|
||||||
|
app.debug = bool(os.environ.get('APP_DEBUG', 'False'))
|
||||||
|
babel = Babel(app)
|
||||||
|
|
||||||
|
|
||||||
|
#################
|
||||||
|
# Babel selectors
|
||||||
|
|
||||||
|
@babel.localeselector
|
||||||
|
def get_locale():
|
||||||
|
# If the language is already set from the url, use that
|
||||||
|
if hasattr(g, 'lang'):
|
||||||
|
return g.lang
|
||||||
|
# otherwise try to guess the language from the user accept
|
||||||
|
# header the browser transmits. The best match wins.
|
||||||
|
return request.accept_languages.best_match(['en', 'es', 'zh', 'de', 'fr', 'it', 'nl', 'ru', 'sv', 'cs', 'ar'])
|
||||||
|
|
||||||
|
|
||||||
|
##########################
|
||||||
|
# Hooks - helper functions
|
||||||
|
|
||||||
|
def after_this_request(f):
|
||||||
|
if not hasattr(g, 'after_request_callbacks'):
|
||||||
|
g.after_request_callbacks = []
|
||||||
|
g.after_request_callbacks.append(f)
|
||||||
|
return f
|
||||||
|
|
||||||
|
|
||||||
|
###########################
|
||||||
|
# Hooks - url preprocessing
|
||||||
|
|
||||||
|
@app.url_value_preprocessor
|
||||||
|
def pull_lang(endpoint, values):
|
||||||
|
if not values:
|
||||||
|
return
|
||||||
|
g.lang=values.pop('lang', None)
|
||||||
|
|
||||||
|
@app.url_defaults
|
||||||
|
def set_lang(endpoint, values):
|
||||||
|
if not values:
|
||||||
|
return
|
||||||
|
if endpoint == 'static':
|
||||||
|
# Static urls shouldn't have a lang flag
|
||||||
|
# (causes complete reload on lang change)
|
||||||
|
return
|
||||||
|
if 'lang' in values:
|
||||||
|
return
|
||||||
|
if hasattr(g, 'lang'):
|
||||||
|
values['lang'] = g.lang
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Hooks - before request
|
||||||
|
|
||||||
|
# Detect and store chosen theme
|
||||||
|
@app.before_request
|
||||||
|
def detect_theme():
|
||||||
|
theme = 'duck'
|
||||||
|
if 'style' in request.cookies:
|
||||||
|
theme = request.cookies['style']
|
||||||
|
if 'theme' in request.args.keys():
|
||||||
|
theme = request.args['theme']
|
||||||
|
if not os.path.isfile(safe_join('static/styles', '%s.css' % theme)):
|
||||||
|
theme = 'duck'
|
||||||
|
g.theme = theme
|
||||||
|
@after_this_request
|
||||||
|
def remember_theme(resp):
|
||||||
|
if g.theme == 'duck' and 'style' in request.cookies:
|
||||||
|
resp.delete_cookie('style')
|
||||||
|
elif g.theme != 'duck':
|
||||||
|
resp.set_cookie('style', g.theme)
|
||||||
|
return resp
|
||||||
|
|
||||||
|
|
||||||
|
#######################
|
||||||
|
# Hooks - after request
|
||||||
|
|
||||||
|
@app.after_request
|
||||||
|
def call_after_request_callbacks(response):
|
||||||
|
for callback in getattr(g, 'after_request_callbacks', ()):
|
||||||
|
response = callback(response)
|
||||||
|
return response
|
||||||
|
|
||||||
|
|
||||||
|
##################
|
||||||
|
# Template filters
|
||||||
|
|
||||||
|
@app.template_filter('restructuredtext')
|
||||||
|
def restructuredtext(value):
|
||||||
|
parts = publish_parts(source=value, writer_name="html")
|
||||||
|
return parts['html_body']
|
||||||
|
|
||||||
|
# Convert an I2P url to an equivalent clearnet one
|
||||||
|
i2ptoclear = {
|
||||||
|
'www.i2p2.i2p': 'www.i2p2.de',
|
||||||
|
'forum.i2p': 'forum.i2p2.de',
|
||||||
|
'trac.i2p2.i2p': 'trac.i2p2.de',
|
||||||
|
}
|
||||||
|
@app.template_filter('i2pconv')
|
||||||
|
def convert_url_to_clearnet(value):
|
||||||
|
if not value.endswith('.i2p'):
|
||||||
|
# The url being passed in isn't an I2P url, so just return it
|
||||||
|
return value
|
||||||
|
if request.headers.get('X-I2P-Desthash') and not request.headers.get('X-Forwarded-Server'):
|
||||||
|
# The request is from within I2P, so use I2P url
|
||||||
|
return value
|
||||||
|
# The request is either directly from clearnet or through an inproxy
|
||||||
|
try:
|
||||||
|
# Return the known clearnet url corresponding to the I2P url
|
||||||
|
return i2ptoclear[value]
|
||||||
|
except KeyError:
|
||||||
|
# The I2P site has no known clearnet address, so use an inproxy
|
||||||
|
return value + '.to'
|
||||||
|
|
||||||
|
|
||||||
|
################
|
||||||
|
# Error handlers
|
||||||
|
|
||||||
|
@app.errorhandler(404)
|
||||||
|
def page_not_found(error):
|
||||||
|
return render_template('global/error_404.html'), 404
|
||||||
|
|
||||||
|
@app.errorhandler(500)
|
||||||
|
def server_error(error):
|
||||||
|
return render_template('global/error_500.html'), 500
|
||||||
|
|
||||||
|
|
||||||
|
#######################
|
||||||
|
# General page handlers
|
||||||
|
|
||||||
|
# Index - redirects to en homepage
|
||||||
|
@app.route('/')
|
||||||
|
def main_index():
|
||||||
|
return redirect(url_for('site_show', lang='en'))
|
||||||
|
|
||||||
|
# Site pages
|
||||||
|
@app.route('/<string:lang>/site/')
|
||||||
|
@app.route('/<string:lang>/site/<path:page>')
|
||||||
|
def site_show(page='index'):
|
||||||
|
if page.endswith('.html'):
|
||||||
|
return redirect(url_for('site_show', page=page[:-5]))
|
||||||
|
name = 'site/%s.html' % page
|
||||||
|
page_file = safe_join(TEMPLATE_DIR, name)
|
||||||
|
|
||||||
|
if not os.path.exists(page_file):
|
||||||
|
# Could be a directory, so try index.html
|
||||||
|
name = 'site/%s/index.html' % page
|
||||||
|
page_file = safe_join(TEMPLATE_DIR, name)
|
||||||
|
if not os.path.exists(page_file):
|
||||||
|
# bah! those damn users all the time!
|
||||||
|
abort(404)
|
||||||
|
|
||||||
|
# hah!
|
||||||
|
return render_template(name, page=page)
|
||||||
|
|
||||||
|
|
||||||
|
##################
|
||||||
|
# Meeting handlers
|
||||||
|
|
||||||
|
# Meeting index
|
||||||
|
@app.route('/<string:lang>/meetings/')
|
||||||
|
def meetings_index():
|
||||||
|
return render_template('meetings/index.html')
|
||||||
|
|
||||||
|
# Renderer for specific meetings
|
||||||
|
@app.route('/<string:lang>/meetings/<int:id>')
|
||||||
|
def meetings_show(id, log=False, rst=False):
|
||||||
|
"""
|
||||||
|
Render the meeting X.
|
||||||
|
Either display the raw IRC .log or render as html and include .rst as header if it exists
|
||||||
|
"""
|
||||||
|
# generate file name for the raw meeting file(and header)
|
||||||
|
lname = str(id) + '.log'
|
||||||
|
hname = str(id) + '.rst'
|
||||||
|
lfile = safe_join(MEETINGS_DIR, lname)
|
||||||
|
hfile = safe_join(MEETINGS_DIR, hname)
|
||||||
|
|
||||||
|
# check if meeting file exists and throw error if it does not..
|
||||||
|
if not os.path.exists(lfile):
|
||||||
|
abort(404)
|
||||||
|
|
||||||
|
# if the user just wanted the .log
|
||||||
|
if log:
|
||||||
|
# hmm... maybe replace with something non-render_template like?
|
||||||
|
# return render_template('meetings/show_raw.html', log=log)
|
||||||
|
return send_from_directory(MEETINGS_DIR, lname, mimetype='text/plain')
|
||||||
|
|
||||||
|
log=''
|
||||||
|
header=None
|
||||||
|
|
||||||
|
# try to load header if that makes sense
|
||||||
|
if os.path.exists(hfile):
|
||||||
|
# if the user just wanted the .rst...
|
||||||
|
if rst:
|
||||||
|
return send_from_directory(MEETINGS_DIR, hname, mimetype='text/plain')
|
||||||
|
|
||||||
|
# open the file as utf-8 file
|
||||||
|
with codecs.open(hfile, encoding='utf-8') as fd:
|
||||||
|
header = fd.read()
|
||||||
|
elif rst:
|
||||||
|
abort(404)
|
||||||
|
|
||||||
|
# load log
|
||||||
|
with codecs.open(lfile, encoding='utf-8') as fd:
|
||||||
|
log = fd.read()
|
||||||
|
|
||||||
|
return render_template('meetings/show.html', log=log, header=header, id=id)
|
||||||
|
|
||||||
|
# Just return the raw .log for the meeting
|
||||||
|
@app.route('/<string:lang>/meetings/<int:id>.log')
|
||||||
|
def meetings_show_log(id):
|
||||||
|
return meetings_show(id, log=True)
|
||||||
|
|
||||||
|
# Just return the raw .rst for the meeting
|
||||||
|
@app.route('/<string:lang>/meetings/<int:id>.rst')
|
||||||
|
def meetings_show_rst(id):
|
||||||
|
return meetings_show(id, rst=True)
|
||||||
|
|
||||||
|
|
||||||
|
###################
|
||||||
|
# Download handlers
|
||||||
|
|
||||||
|
# List of downloads
|
||||||
|
@app.route('/<string:lang>/download')
|
||||||
|
def downloads_list():
|
||||||
|
# TODO: read mirror list or list of available files
|
||||||
|
return render_template('downloads/list.html')
|
||||||
|
|
||||||
|
# Specific file downloader
|
||||||
|
@app.route('/<string:lang>/download/<path:file>')
|
||||||
|
def downloads_select(file):
|
||||||
|
# TODO: implement
|
||||||
|
pass
|
||||||
|
|
||||||
|
@app.route('/download/<string:protocol>/any/<path:file>')
|
||||||
|
@app.route('/download/<string:protocol>/<string:mirror>/<path:file>')
|
||||||
|
def downloads_redirect(protocol, file, mirror=None):
|
||||||
|
# TODO: implement
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
#####################
|
||||||
|
# Blog helper methods
|
||||||
|
|
||||||
|
def get_blog_index():
|
||||||
|
"""
|
||||||
|
Returns list of valid slugs sorted by date
|
||||||
|
"""
|
||||||
|
# list of slugs
|
||||||
|
entries=[]
|
||||||
|
# walk over all directories/files
|
||||||
|
for v in os.walk(BLOG_DIR):
|
||||||
|
# iterate over all files
|
||||||
|
slugbase = os.path.relpath(v[0], BLOG_DIR)
|
||||||
|
for f in v[2]:
|
||||||
|
# ignore all non-.rst files
|
||||||
|
if not f.endswith('.rst'):
|
||||||
|
continue
|
||||||
|
entries.append(safe_join(slugbase, f[:-4]))
|
||||||
|
entries.sort()
|
||||||
|
entries.reverse()
|
||||||
|
return entries
|
||||||
|
|
||||||
|
def get_date_from_slug(slug):
|
||||||
|
parts = slug.split('/')
|
||||||
|
return "%s-%s-%s" % (parts[0], parts[1], parts[2])
|
||||||
|
|
||||||
|
def render_blog_entry(slug):
|
||||||
|
"""
|
||||||
|
Render the blog entry
|
||||||
|
TODO:
|
||||||
|
- caching
|
||||||
|
- move to own file
|
||||||
|
"""
|
||||||
|
# check if that file actually exists
|
||||||
|
path = safe_join(BLOG_DIR, slug + ".rst")
|
||||||
|
if not os.path.exists(path):
|
||||||
|
abort(404)
|
||||||
|
|
||||||
|
# read file
|
||||||
|
with codecs.open(path, encoding='utf-8') as fd:
|
||||||
|
content = fd.read()
|
||||||
|
|
||||||
|
return publish_parts(source=content, source_path=BLOG_DIR, writer_name="html")
|
||||||
|
|
||||||
|
|
||||||
|
###############
|
||||||
|
# Blog handlers
|
||||||
|
|
||||||
|
@app.route('/<string:lang>/blog/')
|
||||||
|
@app.route('/<string:lang>/blog/page/<int:page>')
|
||||||
|
def blog_index(page=0):
|
||||||
|
slugs = get_blog_index()
|
||||||
|
entries= []
|
||||||
|
for slug in slugs:
|
||||||
|
date = get_date_from_slug(slug)
|
||||||
|
titlepart = slug.rsplit('/', 1)[1]
|
||||||
|
title = ' '.join(titlepart.split('_'))
|
||||||
|
entries.append((slug, date, title))
|
||||||
|
|
||||||
|
return render_template('blog/index.html', entries=entries)
|
||||||
|
|
||||||
|
@app.route('/<string:lang>/blog/entry/<path:slug>')
|
||||||
|
def blog_entry(slug):
|
||||||
|
# try to render that blog entry.. throws 404 if it does not exist
|
||||||
|
parts = render_blog_entry(slug)
|
||||||
|
|
||||||
|
if parts:
|
||||||
|
# now just pass to simple template file and we are done
|
||||||
|
return render_template('blog/entry.html', parts=parts, title=parts['title'], body=parts['fragment'], slug=slug)
|
||||||
|
else:
|
||||||
|
abort(404)
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/feed/blog/rss')
|
||||||
|
def blog_rss():
|
||||||
|
# TODO: implement
|
||||||
|
pass
|
||||||
|
|
||||||
|
@app.route('/feed/blog/atom')
|
||||||
|
def blog_atom():
|
||||||
|
# TODO: implement
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
##############
|
||||||
|
# Legacy paths
|
||||||
|
|
||||||
|
@app.route('/meeting<int:id>')
|
||||||
|
@app.route('/meeting<int:id>.html')
|
||||||
|
def legacy_meeting(id):
|
||||||
|
return redirect(url_for('meetings_show', id=id, lang='en'))
|
||||||
|
|
||||||
|
@app.route('/status-<int:year>-<int:month>-<int:day>')
|
||||||
|
@app.route('/status-<int:year>-<int:month>-<int:day>.html')
|
||||||
|
def legacy_status(year, month, day):
|
||||||
|
return redirect(url_for('blog_entry', lang='en', slug=('%s/%s/%s/status' % (year, month, day))))
|
||||||
|
|
||||||
|
LEGACY_MAP={
|
||||||
|
'download': 'downloads_list'
|
||||||
|
}
|
||||||
|
|
||||||
|
@app.route('/<string:f>_<string:lang>')
|
||||||
|
@app.route('/<string:f>_<string:lang>.html')
|
||||||
|
@app.route('/<string:f>')
|
||||||
|
@app.route('/<string:f>.html')
|
||||||
|
def legacy_show(f):
|
||||||
|
lang = 'en'
|
||||||
|
if hasattr(g, 'lang') and g.lang:
|
||||||
|
lang = g.lang
|
||||||
|
if f in LEGACY_MAP:
|
||||||
|
return redirect(url_for(LEGACY_MAP[f], lang=lang))
|
||||||
|
else:
|
||||||
|
return redirect(url_for('site_show', lang=lang, page=f))
|
||||||
|
|
||||||
|
@app.route('/favicon.ico')
|
||||||
|
def favicon():
|
||||||
|
return send_from_directory(os.path.join(app.root_path, 'static'),
|
||||||
|
'favicon.ico', mimetype='image/vnd.microsoft.icon')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
app.run(debug=True)
|
3
i2p2www/babel.cfg
Normal file
3
i2p2www/babel.cfg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[python: **.py]
|
||||||
|
[jinja2: **/pages/**.html]
|
||||||
|
extensions=jinja2.ext.autoescape,jinja2.ext.with_
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-07-13{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-07-13</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -93,4 +90,3 @@ c507IhMQP3WwejdCIyYRx7oX
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/07/13/status.rst
Normal file
6
i2p2www/blog/2004/07/13/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-07-13
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/07/13/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-07-20{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-07-20</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -148,4 +145,3 @@ sxKqvaHlNppJCq/x/BzEWcxd
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/07/20/status.rst
Normal file
6
i2p2www/blog/2004/07/20/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-07-20
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/07/20/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-07-27{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-07-27</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -99,4 +96,3 @@ Q36Vr3muI4ti770dlw0mUDLu
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/07/27/status.rst
Normal file
6
i2p2www/blog/2004/07/27/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-07-27
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/07/27/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-08-03{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-08-03</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -143,4 +140,3 @@ iQA/AwUBQQ/U+BpxS9rYd+OGEQI4+ACgglcWt+LSOPGodCCoqSBsVfl0wxYAoNFO
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/08/03/status.rst
Normal file
6
i2p2www/blog/2004/08/03/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-08-03
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/08/03/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-08-10{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-08-10</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -91,4 +88,3 @@ E+89jypnECNyg/uF1RHuy1Fy
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/08/10/status.rst
Normal file
6
i2p2www/blog/2004/08/10/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-08-10
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/08/10/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-08-17{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-08-17</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -71,4 +68,3 @@ i0kp7DNZkldsLH2uenA0mpeI
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/08/17/status.rst
Normal file
6
i2p2www/blog/2004/08/17/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-08-17
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/08/17/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-08-24{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-08-24</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -216,4 +213,3 @@ JDLmPE9nXRLzrRWdTTRJ1JHH
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/08/24/status.rst
Normal file
6
i2p2www/blog/2004/08/24/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-08-24
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/08/24/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-08-31{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-08-31</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -162,4 +159,3 @@ gEg6cYDHMxLuGop/ALQwU+bg
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/08/31/status.rst
Normal file
6
i2p2www/blog/2004/08/31/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-08-31
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/08/31/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-09-08{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-09-08</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -130,4 +127,3 @@ qS8j385jn3Xj4wIJCPimEX01
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/09/08/status.rst
Normal file
6
i2p2www/blog/2004/09/08/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-09-08
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/09/08/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-09-14{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-09-14</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -198,4 +195,3 @@ iQA/AwUBQUc1OhpxS9rYd+OGEQLaYQCg0qql8muvuGEh46VICx4t69PuRl8An0Ki
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/09/14/status.rst
Normal file
6
i2p2www/blog/2004/09/14/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-09-14
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/09/14/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-09-21{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-09-21</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -56,4 +53,3 @@ iQA/AwUBQVCVAxpxS9rYd+OGEQIdswCg1gpn/wMwppYT4DnNss+ChBi+U7MAnAuW
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/09/21/status.rst
Normal file
6
i2p2www/blog/2004/09/21/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-09-21
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/09/21/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-09-28{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-09-28</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -88,4 +85,3 @@ iQA/AwUBQVmbSxpxS9rYd+OGEQLRLQCfXYW9hGbiTALFtsv7L803qAJlFocAoPPO
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/09/28/status.rst
Normal file
6
i2p2www/blog/2004/09/28/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-09-28
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/09/28/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-10-05{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-10-05</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -168,4 +165,3 @@ vkNuIUa6ZwkKMVJWhoZdWto4
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/10/05/status.rst
Normal file
6
i2p2www/blog/2004/10/05/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-10-05
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/10/05/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-10-12{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-10-12</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -112,4 +109,3 @@ uGWqH5WOe6ZCObkRlxVsMj+B
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/10/12/status.rst
Normal file
6
i2p2www/blog/2004/10/12/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-10-12
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/10/12/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-10-19{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-10-19</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -96,4 +93,3 @@ azbFco6lKpQW9SM631nLXXZB
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/10/19/status.rst
Normal file
6
i2p2www/blog/2004/10/19/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-10-19
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/10/19/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-10-26{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-10-26</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -92,4 +89,3 @@ zFtdHN6Y54VUcfsFl6+5W/3B
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/10/26/status.rst
Normal file
6
i2p2www/blog/2004/10/26/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-10-26
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/10/26/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-11-02{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-11-02</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -93,4 +90,3 @@ Z1ThyrjEZjAttC/wChPN43aD
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/11/02/status.rst
Normal file
6
i2p2www/blog/2004/11/02/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-11-02
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/11/02/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-11-09{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-11-09</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -60,4 +57,3 @@ iHMiSnKD18OhLH6P91TLfSSv
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/11/09/status.rst
Normal file
6
i2p2www/blog/2004/11/09/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-11-09
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/11/09/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-11-16{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-11-16</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -75,4 +72,3 @@ ZEawa8wEMLl1tz/uk4BTENkb
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/11/16/status.rst
Normal file
6
i2p2www/blog/2004/11/16/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-11-16
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/11/16/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-11-23{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-11-23</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -117,4 +114,3 @@ pfi+wfwTumipVNuMFPUm39TK
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/11/23/status.rst
Normal file
6
i2p2www/blog/2004/11/23/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-11-23
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/11/23/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-11-30{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-11-30</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -101,4 +98,3 @@ iD8DBQFBrOBZGnFL2th344YRArtBAJ9YhRvP3MczO96gi4Xwnowie55HlACgzlO3
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/11/30/status.rst
Normal file
6
i2p2www/blog/2004/11/30/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-11-30
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/11/30/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-12-07{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-12-07</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -59,4 +56,3 @@ i2p mailing list
|
|||||||
i2p-Po2eaMWI3R0@xxxxxxxxxxxxxxxx
|
i2p-Po2eaMWI3R0@xxxxxxxxxxxxxxxx
|
||||||
<a rel="nofollow" href="http://i2p.dnsalias.net/mailman/listinfo/i2p">http://i2p.dnsalias.net/mailman/listinfo/i2p</a>
|
<a rel="nofollow" href="http://i2p.dnsalias.net/mailman/listinfo/i2p">http://i2p.dnsalias.net/mailman/listinfo/i2p</a>
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/12/07/status.rst
Normal file
6
i2p2www/blog/2004/12/07/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-12-07
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/12/07/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-12-14{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-12-14</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -101,4 +98,3 @@ vL+gi2piiZq3aup7iyN/wRY=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/12/14/status.rst
Normal file
6
i2p2www/blog/2004/12/14/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-12-14
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/12/14/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-12-21{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-12-21</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -111,4 +108,3 @@ iD8DBQFByItjGnFL2th344YRAmmOAKD+HxEAK+dqseq8ZCO5pjvW4EKImQCgkfwX
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/12/21/status.rst
Normal file
6
i2p2www/blog/2004/12/21/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-12-21
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/12/21/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2004-12-28{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2004-12-28</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -57,4 +54,3 @@ c9O5fcXfOJ54OuM7vPhHBQU=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2004/12/28/status.rst
Normal file
6
i2p2www/blog/2004/12/28/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2004-12-28
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2004/12/28/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-01-04{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-01-04</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -115,4 +112,3 @@ ZQXQmqk6EIx184r2Zi7poZg=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/01/04/status.rst
Normal file
6
i2p2www/blog/2005/01/04/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-01-04
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/01/04/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-01-11{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-01-11</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -132,4 +129,3 @@ ItUMfG4sTnmRKk5m2u9Yxjg=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/01/11/status.rst
Normal file
6
i2p2www/blog/2005/01/11/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-01-11
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/01/11/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-01-18{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-01-18</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -138,4 +135,3 @@ LFh9H55UFtsLPRFk7hxdv1c=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/01/18/status.rst
Normal file
6
i2p2www/blog/2005/01/18/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-01-18
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/01/18/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-01-25{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-01-25</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -73,4 +70,3 @@ W/EO4gPSteZWp+rBogWfB3M=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/01/25/status.rst
Normal file
6
i2p2www/blog/2005/01/25/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-01-25
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/01/25/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-02-01{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-02-01</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -74,4 +71,3 @@ kF6G0CoDu08TvpEtuzuzH9o=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/02/01/status.rst
Normal file
6
i2p2www/blog/2005/02/01/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-02-01
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/02/01/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-02-08{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-02-08</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -107,4 +104,3 @@ iD8DBQFCCSaRGnFL2th344YRApVpAKCEypMmgxmJu7ezMwKD5G3ROClh8ACfRqj6
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/02/08/status.rst
Normal file
6
i2p2www/blog/2005/02/08/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-02-08
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/02/08/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-02-15{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-02-15</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -90,4 +87,3 @@ Cbz/JT+3L2OfdhKAy8p/isQ=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/02/15/status.rst
Normal file
6
i2p2www/blog/2005/02/15/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-02-15
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/02/15/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-02-22{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-02-22</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -81,4 +78,3 @@ nNdoN5D/aKLL0XdusZcigTA=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/02/22/status.rst
Normal file
6
i2p2www/blog/2005/02/22/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-02-22
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/02/22/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-03-01{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-03-01</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -94,4 +91,3 @@ iD8DBQFCJNebGnFL2th344YRAobNAJ4lfCULXX7WAGZxOlh/NzTuV1eNwgCg1eV/
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/03/01/status.rst
Normal file
6
i2p2www/blog/2005/03/01/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-03-01
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/03/01/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-03-08{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-03-08</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -70,4 +67,3 @@ EHsY9W9LztKK3FZBHPN2FyE=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/03/08/status.rst
Normal file
6
i2p2www/blog/2005/03/08/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-03-08
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/03/08/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-03-15{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-03-15</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -71,4 +68,3 @@ mvxKNX+jQ7jnfBFyJponyCc=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/03/15/status.rst
Normal file
6
i2p2www/blog/2005/03/15/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-03-15
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/03/15/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-03-22{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-03-22</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -84,4 +81,3 @@ iD8DBQFCQIW+GnFL2th344YRAj03AKCAwDNl6Dr/4Xi6l9x4kOhw8YIkEwCglfFc
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/03/22/status.rst
Normal file
6
i2p2www/blog/2005/03/22/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-03-22
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/03/22/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-03-29{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-03-29</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -88,4 +85,3 @@ Kk+3I6WgqDjqaNKSc5xnoQA=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/03/29/status.rst
Normal file
6
i2p2www/blog/2005/03/29/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-03-29
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/03/29/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-04-05{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-04-05</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -57,4 +54,3 @@ Li2s44HU5EehnMoCMxIOZlc=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/04/05/status.rst
Normal file
6
i2p2www/blog/2005/04/05/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-04-05
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/04/05/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-04-12{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-04-12</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -127,4 +124,3 @@ ONGe96zS1hmVNeAzqQgjeUo=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/04/12/status.rst
Normal file
6
i2p2www/blog/2005/04/12/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-04-12
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/04/12/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-04-19{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-04-19</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -80,4 +77,3 @@ T3H2xh74GXTtBdOloaAHS9o=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/04/19/status.rst
Normal file
6
i2p2www/blog/2005/04/19/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-04-19
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/04/19/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-04-26{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-04-26</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -61,4 +58,3 @@ VBGnM3PHevpd6dpqHoI/tvg=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/04/26/status.rst
Normal file
6
i2p2www/blog/2005/04/26/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-04-26
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/04/26/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-05-03{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-05-03</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -107,4 +104,3 @@ vJ2B+nJiHEMLwobhZIRS2hQ=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/05/03/status.rst
Normal file
6
i2p2www/blog/2005/05/03/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-05-03
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/05/03/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-06-21{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-06-21</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -114,4 +111,3 @@ gaRYTsDAU3zHBCxr4TiSl18=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/06/21/status.rst
Normal file
6
i2p2www/blog/2005/06/21/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-06-21
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/06/21/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-06-28{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-06-28</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -129,4 +126,3 @@ mbSQS7iBWcts4GQpGLBmcSg=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/06/28/status.rst
Normal file
6
i2p2www/blog/2005/06/28/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-06-28
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/06/28/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-07-05{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-07-05</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -107,4 +104,3 @@ p1RmRcbFNI8vA+qVwFGVFT4=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/07/05/status.rst
Normal file
6
i2p2www/blog/2005/07/05/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-07-05
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/07/05/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-07-12{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-07-12</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -99,4 +96,3 @@ gB0FYFO3bKRemtBoB1JNyLM=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/07/12/status.rst
Normal file
6
i2p2www/blog/2005/07/12/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-07-12
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/07/12/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-07-19{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-07-19</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -41,4 +38,3 @@ Toa8+cur8F8ErP5Wz57GeCs=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/07/19/status.rst
Normal file
6
i2p2www/blog/2005/07/19/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-07-19
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/07/19/status.html
|
@ -1,6 +1,3 @@
|
|||||||
{% extends "_layout.html" %}
|
|
||||||
{% block title %}I2P Status Notes for 2005-07-26{% endblock %}
|
|
||||||
{% block content %}<h3>I2P Status Notes for 2005-07-26</h3>
|
|
||||||
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
<pre>-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
Hash: SHA1
|
Hash: SHA1
|
||||||
|
|
||||||
@ -45,4 +42,3 @@ ifBDYsYs61vpTg447SJ02Xk=
|
|||||||
|
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
{% endblock %}
|
|
6
i2p2www/blog/2005/07/26/status.rst
Normal file
6
i2p2www/blog/2005/07/26/status.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
===============================
|
||||||
|
I2P STATUS NOTES FOR 2005-07-26
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. raw:: html
|
||||||
|
:file: blog/2005/07/26/status.html
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user