diff --git a/www.i2p2/i2p2www/__init__.py b/www.i2p2/i2p2www/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..477c4c87999f6348f997f802d6e6431f5d55bbac --- /dev/null +++ b/www.i2p2/i2p2www/__init__.py @@ -0,0 +1,313 @@ +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 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(__name__, template_folder=TEMPLATE_DIR, static_url_path='/_static', static_folder=STATIC_DIR) +app.debug = bool(os.environ.get('APP_DEBUG', 'False')) + + +########################## +# 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 '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 = 'light' + 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 = 'light' + g.theme = theme + @after_this_request + def remember_theme(resp): + if g.theme == 'light' and 'style' in request.cookies: + resp.delete_cookie('style') + elif g.theme != 'light': + resp.set_cookie('style', g.theme) + return resp + + +############################ +# Hooks - request processing + +@app.template_filter('restructuredtext') +def restructuredtext(value): + parts = publish_parts(source=value, writer_name="html") + return parts['html_body'] + + +####################### +# 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 + + +############### +# Error handlers + +@app.errorhandler(404) +def page_not_found(error): + return render_template('global/error_404.html'), 404 + + +####################### +# 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) + + # bah! those damn users all the time! + if not os.path.exists(page_file): + 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 + """ + ret=[] + + # list of slugs(not sorted in any way) + entries=[] + # walk over all directories/files + for v in os.walk(BLOG_DIR): + # iterate over all files + for f in v[2]: + # ignore all non-.rst files + if not f.endswith('.rst'): + continue + + +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): + # TODO: implement + pass + +@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']) + 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)) + + + +if __name__ == '__main__': + app.run(debug=True) diff --git a/www.i2p2/pages/status-2006-10-10.html b/www.i2p2/i2p2www/blog/2006/10/10/status.html similarity index 94% rename from www.i2p2/pages/status-2006-10-10.html rename to www.i2p2/i2p2www/blog/2006/10/10/status.html index 6578b642ad90f5df4b60098b15f58d75a918f20b..a3c787e3810cb841f2d6c7982e5dca6d2c240a08 100644 --- a/www.i2p2/pages/status-2006-10-10.html +++ b/www.i2p2/i2p2www/blog/2006/10/10/status.html @@ -1,7 +1,5 @@ -{% extends "_layout.html" %} -{% block title %}I2P Status Notes for 2006-10-10{% endblock %} -{% block content %}<h3>I2P Status Notes for 2006-10-10</h3> -<pre>-----BEGIN PGP SIGNED MESSAGE----- +<pre> +-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi y'all, brief status notes this week @@ -79,7 +77,4 @@ iD8DBQFFK6hgzgi8JTPcjUkRAuG2AJ46vK/13GIEngzQe05KRuEP2ZYvRQCeJB3j VmEzybBbtZSpSrFcU4qdvks= =QlDy -----END PGP SIGNATURE----- - - </pre> -{% endblock %} diff --git a/www.i2p2/i2p2www/blog/2006/10/10/status.rst b/www.i2p2/i2p2www/blog/2006/10/10/status.rst new file mode 100644 index 0000000000000000000000000000000000000000..b77847b708e62df65c5e58597bcea07b3349d0c5 --- /dev/null +++ b/www.i2p2/i2p2www/blog/2006/10/10/status.rst @@ -0,0 +1,6 @@ +=============================== +I2P STATUS NOTES FOR 2006-10-10 +=============================== + +.. raw:: html + :file: blog/2006/10/10/status.html diff --git a/www.i2p2/pages/meeting208.html b/www.i2p2/i2p2www/meetings/208.log similarity index 83% rename from www.i2p2/pages/meeting208.html rename to www.i2p2/i2p2www/meetings/208.log index 18448cd8c860ddbc6b02f9ca4d0e82fc29c230f4..0d0f51579b8a15a04c46af8eacf863650b7a4ef6 100644 --- a/www.i2p2/pages/meeting208.html +++ b/www.i2p2/i2p2www/meetings/208.log @@ -1,69 +1,3 @@ -{% extends "_layout.html" %} -{% block title %}I2P Development Meeting 208{% endblock %} -{% block content %}<h3>I2P dev meeting, September 8, 2010</h3> -<div> -<h4>Quick recap</h4> -<ul> - <li><b>Present:</b> duck, eche|on, Mathiasdm, Moru (later on), superuser, whitenoise, zzz</li> - <li> - <b>Website content progress:</b> - <p> - The website overhaul has taken 7 weeks so far. Progress is not fast enough. We need more people to join in! - </p> - </li> - <li> - <b>Website backend progress:</b> - <p> - No report yet, welterde could not attend the meeting. - </p> - </li> - <li> - <b>Location for development discussion:</b> - <p> - Most people agree that IRC is not an ideal location to post long-winded development discussions, it's too volatile, not backed up and not everyone can read it. <b>All developers are advised to post their discussions (or a writeup) to another medium, like zzz.i2p, mailing lists or forum.i2p</b>. - Opinions on the alternatives are a bit more divided. zzz.i2p is currently the location for most discussions, but a number of people also like the idea of a mailing list. No decision has been made on which alternative would be best suited. - </p> - </li> - <li> - <b>Task appointing and disagreements:</b> - <p> - Currently, people appoint themselves to a task by editing the team.html page (this requires monotone access, so there is at least a level of trust implied before being allowed to appoint yourself). - However, what happens if people disagree? - </p> - <p> - The discussion pointed out that when disagreeing, a discussion should be held (for example on zzz.i2p). If that doesn't resolve the issue, a vote is a possibility, or the Project Manager (zzz) or repository maintainers (welterde, eche|on) can make a decision. - </p> - </li> - <li> - <b>Status updates:</b> - <p> - Status updates will be started next weekend. They will mostly consist of a 'what work did you do last week?' and 'what work will you do next week?'. - </p> - </li> - <li> - <b>Development conferences:</b> - <p> - Nothing big was mentioned. - </p> - </li> - <li> - <b>Promoting the usage of the bittorrent protocol inside I2P: pros and cons:</b> - <p> - Filesharing in general and bittorrent more specifically can be either good or bad for I2P. - On one hand, they could give I2P a bad reputation. On the other hand, they could boost I2P popularity. - What to do? - </p> - <p> - Filesharing on I2P will not be promoted specifically. Instead, general usability should be looked at and improved. - If people decide to use filesharing on I2P (or any other service, like e-mail or browsing), it should become easier as a result of improving the usability. - </p> - </li> -</ul> -</div> -<div class="irclog"> -<h4>Full IRC Log</h4> -<pre> -{% filter escape %} 22:02 <@Mathiasdm> okay 22:02 <@Mathiasdm> meeting time 22:03 <@Mathiasdm> 0) Hello @@ -327,8 +261,3 @@ 23:24 < eche|on> COOKIES! 23:25 <@Mathiasdm> don't eat all of them 23:25 * Mathiasdm pokes eche|on -{% endfilter %} -{# TODO: pygments #} -</pre> -</div> -{% endblock %} diff --git a/www.i2p2/pages/download.html b/www.i2p2/i2p2www/pages/downloads/list.html similarity index 99% rename from www.i2p2/pages/download.html rename to www.i2p2/i2p2www/pages/downloads/list.html index 284a1f07606147192981ec86173036198aa4d1a1..8842e5bdb8235473a916d33954e1cc4468ddd5d9 100644 --- a/www.i2p2/pages/download.html +++ b/www.i2p2/i2p2www/pages/downloads/list.html @@ -1,4 +1,4 @@ -{% extends "_layout.html" %} +{% extends "global/layout.html" %} {% block title %}Download{% endblock %} {% block content %} <h1>Download I2P</h1> diff --git a/www.i2p2/i2p2www/pages/global/error_404.html b/www.i2p2/i2p2www/pages/global/error_404.html new file mode 100644 index 0000000000000000000000000000000000000000..d8563c037068a54fd588dad28d39508764725c90 --- /dev/null +++ b/www.i2p2/i2p2www/pages/global/error_404.html @@ -0,0 +1,21 @@ +{% extends "global/layout.html" %} +{% block title -%} +{% if g.lang == 'de' %} +Nicht gefunden +{% elif g.lang == 'zh' %} +未找到 +{% else %} +Not found +{% endif %} +{%- endblock %} + +{% block content %} +{% if g.lang == 'de' %} +Yep... die Information nach der du suchst, nennt sich anders, existiert nicht oder wurde entfernt. +{% elif g.lang == 'zh' %} +您æœç´¢çš„页é¢æˆ–资æºçš„å称ä¸æ£ç¡®æˆ–ä¸å˜åœ¨æˆ–å·²è¢«åˆ é™¤ã€‚ +{% else %} +Yep... the resource, you were searching for, is named differently, doesn't exist or was removed. +{% endif %} + +{% endblock %} diff --git a/www.i2p2/pages/_layout.html b/www.i2p2/i2p2www/pages/global/layout.html similarity index 59% rename from www.i2p2/pages/_layout.html rename to www.i2p2/i2p2www/pages/global/layout.html index 26fa75997498aaff5bbd66b6e9df3606d316e7d8..4889c68ac6682388439208a0ae02f162db7549cf 100644 --- a/www.i2p2/pages/_layout.html +++ b/www.i2p2/i2p2www/pages/global/layout.html @@ -1,24 +1,24 @@ -{% include "_urlify" -%} +{% include "global/urlify" -%} <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > <head> - <title>{% filter capture('title') %}{% block title %}{% endblock %}{% endfilter %} - I2P</title> + <title>{% block title %}{% endblock %} - I2P</title> <link rel="canonical" href="{{ domain }}/{{ path }}" /> - <link rel="stylesheet" href="_static/styles/{{ theme }}.css" type="text/css" title="{{ theme }}" /> - <link rel="shortcut icon" href="_static/favicon.ico" /> + <link rel="stylesheet" href="/_static/styles/{{ g.theme }}.css" type="text/css" title="{{ g.theme }}" /> + <link rel="shortcut icon" href="/_static/favicon.ico" /> <link type="application/atom+xml" rel="alternate" href="http://code.google.com/feeds/p/i2p/downloads/basic" /> <meta name="robots" content="NOODP" /> </head> <body> <div class="hide"><a href="#main" title="Skip navigation" accesskey="2">Skip navigation</a></div> <div class="logo"> - <a href="index.html" class="fade"><img src="_static/images/i2plogo.png" alt="I2P Logo" title="Invisible Internet Project (I2P)" /></a> + <a href="index.html" class="fade"><img src="/_static/images/i2plogo.png" alt="I2P Logo" title="Invisible Internet Project (I2P)" /></a> </div> - <h1>{{ title }}</h1> + <h1>{{ self.title() }}</h1> <div class="menu"> - {% include "_menu.html" %} + {% include "global/menu.html" %} </div> <div class="main" id="main"> {% block content %}{% endblock %} diff --git a/www.i2p2/pages/_menu.html b/www.i2p2/i2p2www/pages/global/menu.html similarity index 95% rename from www.i2p2/pages/_menu.html rename to www.i2p2/i2p2www/pages/global/menu.html index 046e00a2d53857949c8c8dd1076462c588ada235..86adfcae111e4b5ec49340d0f3774fe32320ee7f 100644 --- a/www.i2p2/pages/_menu.html +++ b/www.i2p2/i2p2www/pages/global/menu.html @@ -1,20 +1,20 @@ <div class="langbox"><div style="text-align: left; width: 118px; margin-left: auto; margin-right: auto;"> -<a href="index.html" class="fade"><img src="_static/images/us.png" alt="English" title="English" class="lang" /></a> -<a href="index_de.html" class="fade"><img src="_static/images/de.png" alt="Deutsch" title="Deutsch" class="lang" /></a> -<a href="index_es.html" class="fade"><img src="_static/images/es.png" alt="Castellano" title="Castellano" class="lang" /></a> -<a href="index_zh.html" class="fade"><img src="_static/images/zh.png" alt="ä¸æ–‡" title="ä¸æ–‡" class="lang" /></a> +<a href="index.html" class="fade"><img src="/_static/images/us.png" alt="English" title="English" class="lang" /></a> +<a href="index_de.html" class="fade"><img src="/_static/images/de.png" alt="Deutsch" title="Deutsch" class="lang" /></a> +<a href="index_es.html" class="fade"><img src="/_static/images/es.png" alt="Castellano" title="Castellano" class="lang" /></a> +<a href="index_zh.html" class="fade"><img src="/_static/images/zh.png" alt="ä¸æ–‡" title="ä¸æ–‡" class="lang" /></a> <br /><div style="padding: 2px 0px;"></div> -<a href="index_fr.html" class="fade"><img src="_static/images/fr.png" alt="Français" title="Français" class="lang" /></a> -<a href="index_it.html" class="fade"><img src="_static/images/it.png" alt="Italiano" title="Italiano" class="lang" /></a> -<a href="index_nl.html" class="fade"><img src="_static/images/nl.png" alt="Nederlands" title="Nederlands" class="lang" /></a> -<a href="index_ru.html" class="fade"><img src="_static/images/ru.png" alt="РуÑÑкий" title="РуÑÑкий" class="lang" /></a> +<a href="index_fr.html" class="fade"><img src="/_static/images/fr.png" alt="Français" title="Français" class="lang" /></a> +<a href="index_it.html" class="fade"><img src="/_static/images/it.png" alt="Italiano" title="Italiano" class="lang" /></a> +<a href="index_nl.html" class="fade"><img src="/_static/images/nl.png" alt="Nederlands" title="Nederlands" class="lang" /></a> +<a href="index_ru.html" class="fade"><img src="/_static/images/ru.png" alt="РуÑÑкий" title="РуÑÑкий" class="lang" /></a> <br /><div style="padding: 2px 0px;"></div> -<a href="index_cs.html" class="fade"><img src="_static/images/cz.png" alt="ÄŒeÅ¡tina" title="ÄŒeÅ¡tina" class="lang" /></a> -<a href="index_ar.html" class="fade"><img src="_static/images/lang_ar.png" alt="العربية" title="العربية" class="lang" /></a> +<a href="index_cs.html" class="fade"><img src="/_static/images/cz.png" alt="ÄŒeÅ¡tina" title="ÄŒeÅ¡tina" class="lang" /></a> +<a href="index_ar.html" class="fade"><img src="/_static/images/lang_ar.png" alt="العربية" title="العربية" class="lang" /></a> </div></div> <div class="themebox" style="text-align:center"><a href="?theme=dark" class="fade"><img src="/_static/images/dark.png" alt="Dark" title="Dark theme" class="lang" /></a> -<a href="?theme=light" class="fade"><img src="_static/images/light.png" alt="Light" title="Light theme" class="lang" /></a> +<a href="?theme=light" class="fade"><img src="/_static/images/light.png" alt="Light" title="Light theme" class="lang" /></a> </div> {% if lang == "de" %} diff --git a/www.i2p2/pages/_urlify b/www.i2p2/i2p2www/pages/global/urlify similarity index 62% rename from www.i2p2/pages/_urlify rename to www.i2p2/i2p2www/pages/global/urlify index a9bdbf3d691f818b151fde3b56874b7c3d3217ac..e8c9cd781f2da99650aa9b91fc2d9c76d2d1bcb4 100644 --- a/www.i2p2/pages/_urlify +++ b/www.i2p2/i2p2www/pages/global/urlify @@ -1,7 +1,9 @@ -{% macro urlify url, title, suffix %} +{% macro urlify(url, title, suffix) %} + {% autoescape false %} {% if static %} <a href="{{url}}.{{suffix}}">{{title}}</a> {% else %} <a href="{{url}}">{{title}}</a> {% endif %} + {% endautoescape %} {% endmacro %} \ No newline at end of file diff --git a/www.i2p2/pages/meetings.html b/www.i2p2/i2p2www/pages/meetings/index.html similarity index 99% rename from www.i2p2/pages/meetings.html rename to www.i2p2/i2p2www/pages/meetings/index.html index 9e65b231c90406ff7bc4d4e197de920c163e3651..b8effc6b6e88fdecd9acb3809c704defd5616241 100644 --- a/www.i2p2/pages/meetings.html +++ b/www.i2p2/i2p2www/pages/meetings/index.html @@ -1,4 +1,4 @@ -{% extends "_layout.html" %} +{% extends "global/layout.html" %} {% block title %}Meetings{% endblock %} {% block content %} <h1>Logs of past I2P meetings</h1> diff --git a/www.i2p2/pages/index.html b/www.i2p2/i2p2www/pages/site/index.html similarity index 94% rename from www.i2p2/pages/index.html rename to www.i2p2/i2p2www/pages/site/index.html index 302e474ef11b6ad7317f922ea3b1b7382c2e0575..35a407cda4c2e51f3f78aeeaa1a88cb64c50b410 100644 --- a/www.i2p2/pages/index.html +++ b/www.i2p2/i2p2www/pages/site/index.html @@ -1,10 +1,11 @@ -{% extends "_layout.html" %} +{% extends "global/layout.html" %} +{% from "global/urlify" import urlify as urlify %} {% block title %}I2P Anonymous Network{% endblock %} {% block content %} <table cellspacing="10" class="announce"><tr class="announce"><td valign="top" class="announce"> <div class="version"> <b>Latest version:</b><div class="underline"></div> -2012-07-30 - <strong>I2P 0.9.1</strong> - {{ urlify("release-0.9.1", "Announcement", "html")}} +2012-07-30 - <strong>I2P 0.9.1</strong> - <a href="{{ url_for('site_show', page='release-0.9.1') }}">Announcement</a> - <a href="download">Download</a><br /><div class="underline"></div> 2007-09-28 - <strong>Syndie 1.101a</strong> - <!-- <a href="http://dev.i2p.net/pipermail/i2p/2007-September/001355.html">Announcement</a> --> diff --git a/www.i2p2/static/favicon.ico b/www.i2p2/i2p2www/static/favicon.ico similarity index 100% rename from www.i2p2/static/favicon.ico rename to www.i2p2/i2p2www/static/favicon.ico diff --git a/www.i2p2/static/images/I2PTunnel-streamr.png b/www.i2p2/i2p2www/static/images/I2PTunnel-streamr.png similarity index 100% rename from www.i2p2/static/images/I2PTunnel-streamr.png rename to www.i2p2/i2p2www/static/images/I2PTunnel-streamr.png diff --git a/www.i2p2/static/images/add-key-terminal.png b/www.i2p2/i2p2www/static/images/add-key-terminal.png similarity index 100% rename from www.i2p2/static/images/add-key-terminal.png rename to www.i2p2/i2p2www/static/images/add-key-terminal.png diff --git a/www.i2p2/static/images/bandwidth2009.png b/www.i2p2/i2p2www/static/images/bandwidth2009.png similarity index 100% rename from www.i2p2/static/images/bandwidth2009.png rename to www.i2p2/i2p2www/static/images/bandwidth2009.png diff --git a/www.i2p2/static/images/cz.png b/www.i2p2/i2p2www/static/images/cz.png similarity index 100% rename from www.i2p2/static/images/cz.png rename to www.i2p2/i2p2www/static/images/cz.png diff --git a/www.i2p2/static/images/dark.png b/www.i2p2/i2p2www/static/images/dark.png similarity index 100% rename from www.i2p2/static/images/dark.png rename to www.i2p2/i2p2www/static/images/dark.png diff --git a/www.i2p2/static/images/darkbluebg.png b/www.i2p2/i2p2www/static/images/darkbluebg.png similarity index 100% rename from www.i2p2/static/images/darkbluebg.png rename to www.i2p2/i2p2www/static/images/darkbluebg.png diff --git a/www.i2p2/static/images/darkbluetile.png b/www.i2p2/i2p2www/static/images/darkbluetile.png similarity index 100% rename from www.i2p2/static/images/darkbluetile.png rename to www.i2p2/i2p2www/static/images/darkbluetile.png diff --git a/www.i2p2/static/images/darkerbluetile.png b/www.i2p2/i2p2www/static/images/darkerbluetile.png similarity index 100% rename from www.i2p2/static/images/darkerbluetile.png rename to www.i2p2/i2p2www/static/images/darkerbluetile.png diff --git a/www.i2p2/static/images/de.png b/www.i2p2/i2p2www/static/images/de.png similarity index 100% rename from www.i2p2/static/images/de.png rename to www.i2p2/i2p2www/static/images/de.png diff --git a/www.i2p2/static/images/download.png b/www.i2p2/i2p2www/static/images/download.png similarity index 100% rename from www.i2p2/static/images/download.png rename to www.i2p2/i2p2www/static/images/download.png diff --git a/www.i2p2/static/images/download_dark.png b/www.i2p2/i2p2www/static/images/download_dark.png similarity index 100% rename from www.i2p2/static/images/download_dark.png rename to www.i2p2/i2p2www/static/images/download_dark.png diff --git a/www.i2p2/static/images/endToEndEncryption.png b/www.i2p2/i2p2www/static/images/endToEndEncryption.png similarity index 100% rename from www.i2p2/static/images/endToEndEncryption.png rename to www.i2p2/i2p2www/static/images/endToEndEncryption.png diff --git a/www.i2p2/static/images/endToEndEncryption_fr.png b/www.i2p2/i2p2www/static/images/endToEndEncryption_fr.png similarity index 100% rename from www.i2p2/static/images/endToEndEncryption_fr.png rename to www.i2p2/i2p2www/static/images/endToEndEncryption_fr.png diff --git a/www.i2p2/static/images/endToEndEncryption_zh.png b/www.i2p2/i2p2www/static/images/endToEndEncryption_zh.png similarity index 100% rename from www.i2p2/static/images/endToEndEncryption_zh.png rename to www.i2p2/i2p2www/static/images/endToEndEncryption_zh.png diff --git a/www.i2p2/static/images/es.png b/www.i2p2/i2p2www/static/images/es.png similarity index 100% rename from www.i2p2/static/images/es.png rename to www.i2p2/i2p2www/static/images/es.png diff --git a/www.i2p2/static/images/eu.png b/www.i2p2/i2p2www/static/images/eu.png similarity index 100% rename from www.i2p2/static/images/eu.png rename to www.i2p2/i2p2www/static/images/eu.png diff --git a/www.i2p2/static/images/firefox.options.jpg b/www.i2p2/i2p2www/static/images/firefox.options.jpg similarity index 100% rename from www.i2p2/static/images/firefox.options.jpg rename to www.i2p2/i2p2www/static/images/firefox.options.jpg diff --git a/www.i2p2/static/images/firefox.options_fr.png b/www.i2p2/i2p2www/static/images/firefox.options_fr.png similarity index 100% rename from www.i2p2/static/images/firefox.options_fr.png rename to www.i2p2/i2p2www/static/images/firefox.options_fr.png diff --git a/www.i2p2/static/images/firefox.proxyports.jpg b/www.i2p2/i2p2www/static/images/firefox.proxyports.jpg similarity index 100% rename from www.i2p2/static/images/firefox.proxyports.jpg rename to www.i2p2/i2p2www/static/images/firefox.proxyports.jpg diff --git a/www.i2p2/static/images/firefox.proxyports_fr.png b/www.i2p2/i2p2www/static/images/firefox.proxyports_fr.png similarity index 100% rename from www.i2p2/static/images/firefox.proxyports_fr.png rename to www.i2p2/i2p2www/static/images/firefox.proxyports_fr.png diff --git a/www.i2p2/static/images/fr.png b/www.i2p2/i2p2www/static/images/fr.png similarity index 100% rename from www.i2p2/static/images/fr.png rename to www.i2p2/i2p2www/static/images/fr.png diff --git a/www.i2p2/static/images/garliccloves.png b/www.i2p2/i2p2www/static/images/garliccloves.png similarity index 100% rename from www.i2p2/static/images/garliccloves.png rename to www.i2p2/i2p2www/static/images/garliccloves.png diff --git a/www.i2p2/static/images/help.png b/www.i2p2/i2p2www/static/images/help.png similarity index 100% rename from www.i2p2/static/images/help.png rename to www.i2p2/i2p2www/static/images/help.png diff --git a/www.i2p2/static/images/help_dark.png b/www.i2p2/i2p2www/static/images/help_dark.png similarity index 100% rename from www.i2p2/static/images/help_dark.png rename to www.i2p2/i2p2www/static/images/help_dark.png diff --git a/www.i2p2/static/images/i2plogo.png b/www.i2p2/i2p2www/static/images/i2plogo.png similarity index 100% rename from www.i2p2/static/images/i2plogo.png rename to www.i2p2/i2p2www/static/images/i2plogo.png diff --git a/www.i2p2/static/images/i2ptunnel_peertopeer.png b/www.i2p2/i2p2www/static/images/i2ptunnel_peertopeer.png similarity index 100% rename from www.i2p2/static/images/i2ptunnel_peertopeer.png rename to www.i2p2/i2p2www/static/images/i2ptunnel_peertopeer.png diff --git a/www.i2p2/static/images/i2ptunnel_serverclient.png b/www.i2p2/i2p2www/static/images/i2ptunnel_serverclient.png similarity index 100% rename from www.i2p2/static/images/i2ptunnel_serverclient.png rename to www.i2p2/i2p2www/static/images/i2ptunnel_serverclient.png diff --git a/www.i2p2/static/images/i2pvstor_zh.png b/www.i2p2/i2p2www/static/images/i2pvstor_zh.png similarity index 100% rename from www.i2p2/static/images/i2pvstor_zh.png rename to www.i2p2/i2p2www/static/images/i2pvstor_zh.png diff --git a/www.i2p2/static/images/ie.options.jpg b/www.i2p2/i2p2www/static/images/ie.options.jpg similarity index 100% rename from www.i2p2/static/images/ie.options.jpg rename to www.i2p2/i2p2www/static/images/ie.options.jpg diff --git a/www.i2p2/static/images/ie.options_fr.png b/www.i2p2/i2p2www/static/images/ie.options_fr.png similarity index 100% rename from www.i2p2/static/images/ie.options_fr.png rename to www.i2p2/i2p2www/static/images/ie.options_fr.png diff --git a/www.i2p2/static/images/ie.proxyports.jpg b/www.i2p2/i2p2www/static/images/ie.proxyports.jpg similarity index 100% rename from www.i2p2/static/images/ie.proxyports.jpg rename to www.i2p2/i2p2www/static/images/ie.proxyports.jpg diff --git a/www.i2p2/static/images/ie.proxyports_fr.png b/www.i2p2/i2p2www/static/images/ie.proxyports_fr.png similarity index 100% rename from www.i2p2/static/images/ie.proxyports_fr.png rename to www.i2p2/i2p2www/static/images/ie.proxyports_fr.png diff --git a/www.i2p2/static/images/info.png b/www.i2p2/i2p2www/static/images/info.png similarity index 100% rename from www.i2p2/static/images/info.png rename to www.i2p2/i2p2www/static/images/info.png diff --git a/www.i2p2/static/images/info_dark.png b/www.i2p2/i2p2www/static/images/info_dark.png similarity index 100% rename from www.i2p2/static/images/info_dark.png rename to www.i2p2/i2p2www/static/images/info_dark.png diff --git a/www.i2p2/static/images/it.png b/www.i2p2/i2p2www/static/images/it.png similarity index 100% rename from www.i2p2/static/images/it.png rename to www.i2p2/i2p2www/static/images/it.png diff --git a/www.i2p2/static/images/itoopie.png b/www.i2p2/i2p2www/static/images/itoopie.png similarity index 100% rename from www.i2p2/static/images/itoopie.png rename to www.i2p2/i2p2www/static/images/itoopie.png diff --git a/www.i2p2/static/images/konqueror.options.jpg b/www.i2p2/i2p2www/static/images/konqueror.options.jpg similarity index 100% rename from www.i2p2/static/images/konqueror.options.jpg rename to www.i2p2/i2p2www/static/images/konqueror.options.jpg diff --git a/www.i2p2/static/images/konqueror.options_fr.jpg b/www.i2p2/i2p2www/static/images/konqueror.options_fr.jpg similarity index 100% rename from www.i2p2/static/images/konqueror.options_fr.jpg rename to www.i2p2/i2p2www/static/images/konqueror.options_fr.jpg diff --git a/www.i2p2/static/images/konqueror.proxyports.jpg b/www.i2p2/i2p2www/static/images/konqueror.proxyports.jpg similarity index 100% rename from www.i2p2/static/images/konqueror.proxyports.jpg rename to www.i2p2/i2p2www/static/images/konqueror.proxyports.jpg diff --git a/www.i2p2/static/images/konqueror.proxyports_fr.jpg b/www.i2p2/i2p2www/static/images/konqueror.proxyports_fr.jpg similarity index 100% rename from www.i2p2/static/images/konqueror.proxyports_fr.jpg rename to www.i2p2/i2p2www/static/images/konqueror.proxyports_fr.jpg diff --git a/www.i2p2/static/images/lang_ar.png b/www.i2p2/i2p2www/static/images/lang_ar.png similarity index 100% rename from www.i2p2/static/images/lang_ar.png rename to www.i2p2/i2p2www/static/images/lang_ar.png diff --git a/www.i2p2/static/images/light.png b/www.i2p2/i2p2www/static/images/light.png similarity index 100% rename from www.i2p2/static/images/light.png rename to www.i2p2/i2p2www/static/images/light.png diff --git a/www.i2p2/static/images/lightbluetile.png b/www.i2p2/i2p2www/static/images/lightbluetile.png similarity index 100% rename from www.i2p2/static/images/lightbluetile.png rename to www.i2p2/i2p2www/static/images/lightbluetile.png diff --git a/www.i2p2/static/images/link.png b/www.i2p2/i2p2www/static/images/link.png similarity index 100% rename from www.i2p2/static/images/link.png rename to www.i2p2/i2p2www/static/images/link.png diff --git a/www.i2p2/static/images/link_dark.png b/www.i2p2/i2p2www/static/images/link_dark.png similarity index 100% rename from www.i2p2/static/images/link_dark.png rename to www.i2p2/i2p2www/static/images/link_dark.png diff --git a/www.i2p2/static/images/logo07c.jpg b/www.i2p2/i2p2www/static/images/logo07c.jpg similarity index 100% rename from www.i2p2/static/images/logo07c.jpg rename to www.i2p2/i2p2www/static/images/logo07c.jpg diff --git a/www.i2p2/static/images/net.png b/www.i2p2/i2p2www/static/images/net.png similarity index 100% rename from www.i2p2/static/images/net.png rename to www.i2p2/i2p2www/static/images/net.png diff --git a/www.i2p2/static/images/net_fr.png b/www.i2p2/i2p2www/static/images/net_fr.png similarity index 100% rename from www.i2p2/static/images/net_fr.png rename to www.i2p2/i2p2www/static/images/net_fr.png diff --git a/www.i2p2/static/images/netdb_get_leaseset.png b/www.i2p2/i2p2www/static/images/netdb_get_leaseset.png similarity index 100% rename from www.i2p2/static/images/netdb_get_leaseset.png rename to www.i2p2/i2p2www/static/images/netdb_get_leaseset.png diff --git a/www.i2p2/static/images/netdb_get_leaseset_fr.png b/www.i2p2/i2p2www/static/images/netdb_get_leaseset_fr.png similarity index 100% rename from www.i2p2/static/images/netdb_get_leaseset_fr.png rename to www.i2p2/i2p2www/static/images/netdb_get_leaseset_fr.png diff --git a/www.i2p2/static/images/netdb_get_routerinfo_1.png b/www.i2p2/i2p2www/static/images/netdb_get_routerinfo_1.png similarity index 100% rename from www.i2p2/static/images/netdb_get_routerinfo_1.png rename to www.i2p2/i2p2www/static/images/netdb_get_routerinfo_1.png diff --git a/www.i2p2/static/images/netdb_get_routerinfo_1_fr.png b/www.i2p2/i2p2www/static/images/netdb_get_routerinfo_1_fr.png similarity index 100% rename from www.i2p2/static/images/netdb_get_routerinfo_1_fr.png rename to www.i2p2/i2p2www/static/images/netdb_get_routerinfo_1_fr.png diff --git a/www.i2p2/static/images/netdb_get_routerinfo_2.png b/www.i2p2/i2p2www/static/images/netdb_get_routerinfo_2.png similarity index 100% rename from www.i2p2/static/images/netdb_get_routerinfo_2.png rename to www.i2p2/i2p2www/static/images/netdb_get_routerinfo_2.png diff --git a/www.i2p2/static/images/netdb_get_routerinfo_2_fr.png b/www.i2p2/i2p2www/static/images/netdb_get_routerinfo_2_fr.png similarity index 100% rename from www.i2p2/static/images/netdb_get_routerinfo_2_fr.png rename to www.i2p2/i2p2www/static/images/netdb_get_routerinfo_2_fr.png diff --git a/www.i2p2/static/images/nl.png b/www.i2p2/i2p2www/static/images/nl.png similarity index 100% rename from www.i2p2/static/images/nl.png rename to www.i2p2/i2p2www/static/images/nl.png diff --git a/www.i2p2/static/images/plan.png b/www.i2p2/i2p2www/static/images/plan.png similarity index 100% rename from www.i2p2/static/images/plan.png rename to www.i2p2/i2p2www/static/images/plan.png diff --git a/www.i2p2/static/images/protocol_stack.png b/www.i2p2/i2p2www/static/images/protocol_stack.png similarity index 100% rename from www.i2p2/static/images/protocol_stack.png rename to www.i2p2/i2p2www/static/images/protocol_stack.png diff --git a/www.i2p2/static/images/protocol_stack_fr.png b/www.i2p2/i2p2www/static/images/protocol_stack_fr.png similarity index 100% rename from www.i2p2/static/images/protocol_stack_fr.png rename to www.i2p2/i2p2www/static/images/protocol_stack_fr.png diff --git a/www.i2p2/static/images/ru.png b/www.i2p2/i2p2www/static/images/ru.png similarity index 100% rename from www.i2p2/static/images/ru.png rename to www.i2p2/i2p2www/static/images/ru.png diff --git a/www.i2p2/static/images/sqbullet.png b/www.i2p2/i2p2www/static/images/sqbullet.png similarity index 100% rename from www.i2p2/static/images/sqbullet.png rename to www.i2p2/i2p2www/static/images/sqbullet.png diff --git a/www.i2p2/static/images/stackoverflow_ad.png b/www.i2p2/i2p2www/static/images/stackoverflow_ad.png similarity index 100% rename from www.i2p2/static/images/stackoverflow_ad.png rename to www.i2p2/i2p2www/static/images/stackoverflow_ad.png diff --git a/www.i2p2/static/images/tabletile.png b/www.i2p2/i2p2www/static/images/tabletile.png similarity index 100% rename from www.i2p2/static/images/tabletile.png rename to www.i2p2/i2p2www/static/images/tabletile.png diff --git a/www.i2p2/static/images/tabletile_alt.png b/www.i2p2/i2p2www/static/images/tabletile_alt.png similarity index 100% rename from www.i2p2/static/images/tabletile_alt.png rename to www.i2p2/i2p2www/static/images/tabletile_alt.png diff --git a/www.i2p2/static/images/tabletitledark.png b/www.i2p2/i2p2www/static/images/tabletitledark.png similarity index 100% rename from www.i2p2/static/images/tabletitledark.png rename to www.i2p2/i2p2www/static/images/tabletitledark.png diff --git a/www.i2p2/static/images/tabletitlelight-tall.png b/www.i2p2/i2p2www/static/images/tabletitlelight-tall.png similarity index 100% rename from www.i2p2/static/images/tabletitlelight-tall.png rename to www.i2p2/i2p2www/static/images/tabletitlelight-tall.png diff --git a/www.i2p2/static/images/tabletitlelight.png b/www.i2p2/i2p2www/static/images/tabletitlelight.png similarity index 100% rename from www.i2p2/static/images/tabletitlelight.png rename to www.i2p2/i2p2www/static/images/tabletitlelight.png diff --git a/www.i2p2/static/images/target.png b/www.i2p2/i2p2www/static/images/target.png similarity index 100% rename from www.i2p2/static/images/target.png rename to www.i2p2/i2p2www/static/images/target.png diff --git a/www.i2p2/static/images/tunnelSending.png b/www.i2p2/i2p2www/static/images/tunnelSending.png similarity index 100% rename from www.i2p2/static/images/tunnelSending.png rename to www.i2p2/i2p2www/static/images/tunnelSending.png diff --git a/www.i2p2/static/images/tunnels.png b/www.i2p2/i2p2www/static/images/tunnels.png similarity index 100% rename from www.i2p2/static/images/tunnels.png rename to www.i2p2/i2p2www/static/images/tunnels.png diff --git a/www.i2p2/static/images/tunnels_fr.png b/www.i2p2/i2p2www/static/images/tunnels_fr.png similarity index 100% rename from www.i2p2/static/images/tunnels_fr.png rename to www.i2p2/i2p2www/static/images/tunnels_fr.png diff --git a/www.i2p2/static/images/udp.png b/www.i2p2/i2p2www/static/images/udp.png similarity index 100% rename from www.i2p2/static/images/udp.png rename to www.i2p2/i2p2www/static/images/udp.png diff --git a/www.i2p2/static/images/us.png b/www.i2p2/i2p2www/static/images/us.png similarity index 100% rename from www.i2p2/static/images/us.png rename to www.i2p2/i2p2www/static/images/us.png diff --git a/www.i2p2/static/images/zh.png b/www.i2p2/i2p2www/static/images/zh.png similarity index 100% rename from www.i2p2/static/images/zh.png rename to www.i2p2/i2p2www/static/images/zh.png diff --git a/www.i2p2/static/news/news.xml b/www.i2p2/i2p2www/static/news/news.xml similarity index 100% rename from www.i2p2/static/news/news.xml rename to www.i2p2/i2p2www/static/news/news.xml diff --git a/www.i2p2/static/pdf/I2CP_spec.pdf b/www.i2p2/i2p2www/static/pdf/I2CP_spec.pdf similarity index 100% rename from www.i2p2/static/pdf/I2CP_spec.pdf rename to www.i2p2/i2p2www/static/pdf/I2CP_spec.pdf diff --git a/www.i2p2/static/pdf/I2NP_spec.pdf b/www.i2p2/i2p2www/static/pdf/I2NP_spec.pdf similarity index 100% rename from www.i2p2/static/pdf/I2NP_spec.pdf rename to www.i2p2/i2p2www/static/pdf/I2NP_spec.pdf diff --git a/www.i2p2/static/pdf/I2P-PET-CON-2009.1.pdf b/www.i2p2/i2p2www/static/pdf/I2P-PET-CON-2009.1.pdf similarity index 100% rename from www.i2p2/static/pdf/I2P-PET-CON-2009.1.pdf rename to www.i2p2/i2p2www/static/pdf/I2P-PET-CON-2009.1.pdf diff --git a/www.i2p2/static/pdf/datastructures.pdf b/www.i2p2/i2p2www/static/pdf/datastructures.pdf similarity index 100% rename from www.i2p2/static/pdf/datastructures.pdf rename to www.i2p2/i2p2www/static/pdf/datastructures.pdf diff --git a/www.i2p2/static/pdf/i2p_philosophy.pdf b/www.i2p2/i2p2www/static/pdf/i2p_philosophy.pdf similarity index 100% rename from www.i2p2/static/pdf/i2p_philosophy.pdf rename to www.i2p2/i2p2www/static/pdf/i2p_philosophy.pdf diff --git a/www.i2p2/static/pdf/polling_http_transport.pdf b/www.i2p2/i2p2www/static/pdf/polling_http_transport.pdf similarity index 100% rename from www.i2p2/static/pdf/polling_http_transport.pdf rename to www.i2p2/i2p2www/static/pdf/polling_http_transport.pdf diff --git a/www.i2p2/static/styles/dark.css b/www.i2p2/i2p2www/static/styles/dark.css similarity index 100% rename from www.i2p2/static/styles/dark.css rename to www.i2p2/i2p2www/static/styles/dark.css diff --git a/www.i2p2/static/styles/light.css b/www.i2p2/i2p2www/static/styles/light.css similarity index 100% rename from www.i2p2/static/styles/light.css rename to www.i2p2/i2p2www/static/styles/light.css diff --git a/www.i2p2/static/styles/light_ar.css b/www.i2p2/i2p2www/static/styles/light_ar.css similarity index 100% rename from www.i2p2/static/styles/light_ar.css rename to www.i2p2/i2p2www/static/styles/light_ar.css diff --git a/www.i2p2/static/styles/light_zh.css b/www.i2p2/i2p2www/static/styles/light_zh.css similarity index 100% rename from www.i2p2/static/styles/light_zh.css rename to www.i2p2/i2p2www/static/styles/light_zh.css diff --git a/www.i2p2/pages/not_found.html b/www.i2p2/pages/not_found.html deleted file mode 100644 index a6c2a3fdc47441ca8055124ec9c365a74ad13a98..0000000000000000000000000000000000000000 --- a/www.i2p2/pages/not_found.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "_layout.html" %} -{% block title %}Not found{% endblock %} -{% block content %} -Yep... the resource, you were searching for, is named differently, doesn't exist or was removed. -{% endblock %} diff --git a/www.i2p2/pages/not_found_de.html b/www.i2p2/pages/not_found_de.html deleted file mode 100644 index 42fa6929a0d7411142cd92de70c4764767070ae3..0000000000000000000000000000000000000000 --- a/www.i2p2/pages/not_found_de.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "_layout_de.html" %} -{% block title %}Nicht gefunden{% endblock %} -{% block content %} -Yep... die Information nach der du suchst, nennt sich anders, existiert nicht oder wurde entfernt. -{% endblock %} diff --git a/www.i2p2/pages/not_found_zh.html b/www.i2p2/pages/not_found_zh.html deleted file mode 100644 index 95b6698280d7e91f9ad4f80dd7cbd27c456dd1f4..0000000000000000000000000000000000000000 --- a/www.i2p2/pages/not_found_zh.html +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "_layout_zh.html" %} -{% block title %} -未找到 -{% endblock %} -{% block content %} -您æœç´¢çš„页é¢æˆ–资æºçš„å称ä¸æ£ç¡®æˆ–ä¸å˜åœ¨æˆ–å·²è¢«åˆ é™¤ã€‚ -{% endblock %} \ No newline at end of file diff --git a/www.i2p2/runserver.py b/www.i2p2/runserver.py new file mode 100644 index 0000000000000000000000000000000000000000..45e60621aa988cfeb26fb11605bdda5a23fbec61 --- /dev/null +++ b/www.i2p2/runserver.py @@ -0,0 +1,2 @@ +from i2p2www import app +app.run(debug=True)