fix missing image
@ -90,6 +90,10 @@ def downloads_debian():
|
|||||||
def downloads_windows():
|
def downloads_windows():
|
||||||
return render_template('downloads/windows.html')
|
return render_template('downloads/windows.html')
|
||||||
|
|
||||||
|
# MacOS-specific page
|
||||||
|
def downloads_macos():
|
||||||
|
return render_template('downloads/macos.html')
|
||||||
|
|
||||||
# AIO-Windows-specific page
|
# AIO-Windows-specific page
|
||||||
def downloads_easyinstall():
|
def downloads_easyinstall():
|
||||||
# TODO: read mirror list or list of available files
|
# TODO: read mirror list or list of available files
|
||||||
|
@ -23,6 +23,7 @@ LEGACY_FUNCTIONS_MAP={
|
|||||||
'easyinstall': {'function': 'downloads_easyinstall', 'params': {}},
|
'easyinstall': {'function': 'downloads_easyinstall', 'params': {}},
|
||||||
'nsis': {'function': 'downloads_easyinstall', 'params': {}},
|
'nsis': {'function': 'downloads_easyinstall', 'params': {}},
|
||||||
'windows': {'function': 'downloads_windows', 'params': {}},
|
'windows': {'function': 'downloads_windows', 'params': {}},
|
||||||
|
'macos': {'function': 'downloads_macos', 'params': {}},
|
||||||
'download': {'function': 'downloads_list', 'params': {}},
|
'download': {'function': 'downloads_list', 'params': {}},
|
||||||
'installation': {'function': 'downloads_list', 'params': {}},
|
'installation': {'function': 'downloads_list', 'params': {}},
|
||||||
'meetings': {'function': 'meetings_index', 'params': {}},
|
'meetings': {'function': 'meetings_index', 'params': {}},
|
||||||
|
@ -131,7 +131,11 @@ and configure Firefox for I2P.{%- endtrans %} </p>
|
|||||||
<h4>{{ _('Install the I2P Firefox Profile') }}</h4>
|
<h4>{{ _('Install the I2P Firefox Profile') }}</h4>
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
<li>{% trans -%}Download the Firefox Profile Bundle from the I2P Web Site.{%- endtrans %}
|
<li>{% trans -%}
|
||||||
|
Download the Firefox Profile Bundle from the I2P Web Site.
|
||||||
|
The I2P Firefox Profile has been replaced by the Easy Install Bundle for Windows.
|
||||||
|
The Easy-Installl can still be used as a profile manager for an Un-Bundled I2P router installed via this procedure.
|
||||||
|
{%- endtrans %}
|
||||||
<ul style="list-style-type: none;">
|
<ul style="list-style-type: none;">
|
||||||
<li><img src="/_static/images/download/windows/profile.png" alt="Grab the Firefox Profile" title="" /></li>
|
<li><img src="/_static/images/download/windows/profile.png" alt="Grab the Firefox Profile" title="" /></li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
|
@ -124,6 +124,9 @@ def render_sitemap():
|
|||||||
urls.append({
|
urls.append({
|
||||||
'path': '/download/windows',
|
'path': '/download/windows',
|
||||||
})
|
})
|
||||||
|
urls.append({
|
||||||
|
'path': '/download/macos',
|
||||||
|
})
|
||||||
# Render and return the sitemap
|
# Render and return the sitemap
|
||||||
response = make_response(render_template('global/sitemap.xml', url_root=url_root, langs=LANG_FRAGS,
|
response = make_response(render_template('global/sitemap.xml', url_root=url_root, langs=LANG_FRAGS,
|
||||||
curlang=to_url(g.lang), urls=urls))
|
curlang=to_url(g.lang), urls=urls))
|
||||||
|
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 195 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 71 KiB |
BIN
i2p2www/static/images/macos/2-i2p.png
Normal file
After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 201 KiB |
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 182 KiB |
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 53 KiB |
BIN
i2p2www/static/images/macos/5-jre.png
Normal file
After Width: | Height: | Size: 150 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 69 KiB |
@ -92,6 +92,7 @@ url('/<lang:lang>/download', 'downloads.downloads_list')
|
|||||||
url('/<lang:lang>/download/debian', 'downloads.downloads_debian')
|
url('/<lang:lang>/download/debian', 'downloads.downloads_debian')
|
||||||
url('/<lang:lang>/download/docker', 'downloads.downloads_docker')
|
url('/<lang:lang>/download/docker', 'downloads.downloads_docker')
|
||||||
url('/<lang:lang>/download/windows', 'downloads.downloads_windows')
|
url('/<lang:lang>/download/windows', 'downloads.downloads_windows')
|
||||||
|
url('/<lang:lang>/download/macos', 'downloads.downloads_macos')
|
||||||
url('/<lang:lang>/download/easyinstall', 'downloads.downloads_easyinstall')
|
url('/<lang:lang>/download/easyinstall', 'downloads.downloads_easyinstall')
|
||||||
url('/<lang:lang>/download/nsis', 'downloads.downloads_easyinstall')
|
url('/<lang:lang>/download/nsis', 'downloads.downloads_easyinstall')
|
||||||
url('/<lang:lang>/download/firefox', 'downloads.downloads_firefox')
|
url('/<lang:lang>/download/firefox', 'downloads.downloads_firefox')
|
||||||
|