Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ffbs/ffbs-website
  • darkbit/ffbs-website
2 results
Show changes
Showing
with 308 additions and 2209 deletions
flamingo/content/suedstadt_ffbs.jpg

164 KiB

flamingo/content/suedstadt_kirchturm.jpg

78.4 KiB

template: page.html
TP-Link Archer C50 V4 flashen
=============================
Der TP-Link Archer C50 V4 lässt sich nur über TFTP erfolgreich flashen. Der Vorgang wird hier im Einzelnen beschrieben.
Dieses Vorgehen benötigt ein Linux oder MacOS und einen funktionierenden TFTP Server.
Ein zusätzlicher Switch hat sich als nützlich erwiesen.
Firmware vorbereiten
--------------------
Zuerst die gewünschte Freifunk Firmware herunterladen und als *ff.bin* abspeichern. Unsere Firmware findet man
`hier <https://firmware.freifunk-bs.de/selector/?q=TP-Link%E2%81%A3%20Archer%C2%A0C50%E2%81%A3%20v4%E2%81%A3%20Upgrade>`__.
Als nächstes eine originale Firmware von TP-Link herunterladen. Im Test hat
`diese Version (180313) <https://static.tp-link.com/2018/201805/20180528/Archer%20C50(EU)_V4_180313.zip>`__ funktioniert.
Das Archiv entpacken und die Firmware (*.bin*) als *tpl.bin* abspeichern.
Dann müssen die beiden zusammengeführt werden, dazu folgende Befehle ausführen:
.. code-block:: sh
dd if=/dev/zero of=tp_recovery.bin bs=196608 count=1
dd if=tpl.bin of=tmp.bin bs=131584 count=1
dd if=tmp.bin of=boot.bin bs=512 skip=1
cat boot.bin >> tp_recovery.bin
cat ff.bin >> tp_recovery.bin
Via TFTP flashen
----------------
Der eigene Rechner muss unter 192.168.0.66 erreichbar sein. Es empfiehlt sich, den eigenen Rechner über einen Switch mit dem
Knoten zu verbinden, um auch beim Neustart des Knotens eine permanente Verbindung zu haben.
Der TFTP Server muss die *tp_recovery.bin* ausliefern.
Den Knoten nun ausschalten, mit einem Werkzeug den Reset-Taster halten und wieder einschalten und mindestens 10 Sekunden den
Reset-Taster gedrückt halten.
Der Knoten sollte dann die vorbereitete Firmware flashen und als Freifunkknoten im Config-Mode wieder starten.
template: page_html.html
<div class="container" >
<div class="page-header" >
<h1>Hier gibt es freies WLAN!</h1>
</div>
<div class="alert alert-info" >
<p>An diesem Ort gibt es freies WLAN der Initiative
<strong>Freifunk Braunschweig</strong>.
Freifunk ist ein kostenloses, unzensiertes Netz von Bürgern
für Bürger. <br />
Gemeinsam mit unserer lockalen Community
unterstützen wir jeden beim Anbieten von Freiem WLAN - egal
ob zu Hause, an der Bushaltestelle oder im Gewerbe. <br />
</p>
</div>
<div class="row" >
<div class="col-xs-12 col-md-6" >
<div class="panel panel-default" >
<div class="panel-heading" >
<h4>Jetzt surfen! <i class="fa fa-wifi" style="font-size: 150%;"></i></h4>
</div>
<div class="panel-body" >
So kannst Du direkt lossurfen - und das ganz ohne AGBs oder Anmeldung:
<ul>
<li>Aktiviere das W-LAN an deinem Gerät</li>
<li>Wähle das W-LAN <i>Freifunk</i> aus</li>
<li>Surfe kostenlos, unzensiert und ohne Anmeldung!</li>
</ul>
Ausserdem gibt es in der Umgebung noch <span class="nodecount">?</span> weitere Zugänge.
<a href="https://freifunk-bs.de/map/#!v:m" >Hier geht es zur Karte</a>.
</div>
</div>
</div>
<div class="col-xs-12 col-md-6" >
<div class="panel panel-default" >
<div class="panel-heading" >
<h4>Mitmachen <i class="fas fa-people-carry" style="font-size: 150%;"></i></h4>
</div>
<div class="panel-body" >
Freifunk lebt von seiner Community.<br />
Jeder kann mitmachen und den Freifunkgedanken weitertragen. <br />
So kannst Du mitmachen:
<ul>
<li>Stelle seber einen <a href="/mitmachen/geraete.html">Router</a> auf</li>
<li>Unterstütze uns mit einer <a href="/spenden.html" >Spende</a></li>
<li>Wir <a href="/index.html" >Treffen</a> uns jeden Mittwoch - lerne die Menschen hinter Freifunk kennen</li>
<li>Arbeite und entwickle an der <a href="/irc.html">Technik</a> mit</li>
</ul>
</div>
</div>
</div>
</div>
</div>
from flamingo.core.data_model import Content
import logging
logger = logging.getLogger("project.plugin.blog")
class Blog:
def contents_parsed(self, context):
#collect 'blog'-update snippets from all sites
for content in context.contents:
if "blog" in content:
for b in content["blog"]:
if not ("date" in b and "title" in b and "body" in b):
logger.warn("blog entry in article {} is malformed! 'date', 'title' or 'body' is missing!".format(content["path"]))
continue
c = Content()
c["date"] = b["date"]
c["content_title"] = b["title"]
c["content_body"] = b["body"]
c["url"] = "/"+content["output"]
c["path"] = "/dev/null"
c["output"] = "/dev/null"
c["feedtag"] = True
context.contents.add(c)
# collect legacy firmware releases
for content in context.contents.filter(path__startswith="firmware/v").order_by("-content_title"):
for branch in content["branches"]:
if not ("date" in branch and "channel" in branch and "name" in branch):
logger.warn("firmware entry in file {} is malformed! 'date', 'channel' or 'name' missing for branch {}".format(content["path"], branch))
continue
c = Content()
c["date"] = branch["date"]
c["content_title"] = "Neue Firmware {} freigegeben".format(content["title"])
c["content_body"] = "Es wurde eine neue Firmware im Zweig '{}' freigegeben. Das Release heißt '{}'.".format(branch["channel"], branch["name"])
c["url"] = "/mitmachen/firmware.html"
c["path"] = "/dev/null"
c["output"] = "/dev/null"
c["feedtag"] = True
context.contents.add(c)
# collect parker firmware releases
for content in context.contents.filter(path__startswith="parker/firmware/v").order_by("-content_title"):
for branch in content["branches"]:
if not ("date" in branch and "channel" in branch and "name" in branch):
logger.warn("firmware entry in file {} is malformed! 'date', 'channel' or 'name' missing for branch {}".format(content["path"], branch))
continue
c = Content()
c["date"] = branch["date"]
c["content_title"] = "Neue Firmware {} freigegeben".format(content["title"])
c["content_body"] = "Es wurde eine neue Firmware im Zweig '{}' freigegeben. Das Release heißt '{}'.".format(branch["channel"], branch["name"])
c["url"] = "/parker/firmware.html"
c["path"] = "/dev/null"
c["output"] = "/dev/null"
c["feedtag"] = True
context.contents.add(c)
from bs4 import BeautifulSoup
from flamingo.core.utils.html import extract_title
from flamingo.core.parser import ContentParser
class RawParser(ContentParser):
FILE_EXTENSIONS = ['html']
def parse(self, file_content, content):
markup_string = self.parse_meta_data(file_content, content)
soup = BeautifulSoup(markup_string, 'html.parser')
title = extract_title(soup)
content['content_title'] = title
content['content_body'] = markup_string
class Raw:
def parser_setup(self, context):
context.parser.add_parser(RawParser(context))
from docutils.parsers.rst import directives
from docutils.nodes import raw
from flamingo.plugins.rst import NestedDirective
def ffbsbox(context):
class Div(NestedDirective):
def run(self):
html = self.parse_content(context)
return [
raw('', '<div style="float:right; clear:right; width:20%; border-top:1px solid; border-bottom:1px solid; margin-left:2em; margin-top:1.5em; margin-bottom:1.5em;">{}</div>'.format(html), format='html'),
]
return Div
class rstFfbsBox:
def parser_setup(self, context):
directives.register_directive('ffbsbox', ffbsbox(context))
......@@ -2,14 +2,46 @@ import os
PLUGINS = [
'flamingo.plugins.Redirects',
'flamingo.plugins.Layers',
'flamingo.plugins.rstBootstrap3',
'flamingo.plugins.rstFile',
'flamingo.plugins.rstPygments',
'plugins/title.py::Title',
'plugins/git.py::Git',
'plugins/raw.py::Raw',
'plugins/rst_ffbs_box.py::rstFfbsBox',
'plugins/blog.py::Blog',
'flamingo.plugins.Feeds',
]
LAYERS = [
# remove flamingo core HTML plugin.
# we can now use our own "Raw"
DEFAULT_PLUGINS = [x for x in DEFAULT_PLUGINS if x != "flamingo.plugins.HTML"]
POST_BUILD_LAYERS = [
'static',
]
THEME_PATHS = [
'theme/',
]
FEEDS_DOMAIN = 'https://freifunk-bs.de'
FEEDS = [
{
'id': 'freifunk-bs.de/feed',
'title': 'freifunk-bs.de',
'type': 'atom',
'output': 'all.atom.xml',
'lang': 'en',
'contents':
lambda ctx: ctx.contents.filter(feedtag=True).order_by("date"),
'entry-id':
lambda content: 'tag:freifunk-bs.de,{}:/{}'.format(
content['date'],
os.path.basename(content['url']),
),
'published':
lambda content: content['date'].strftime('%Y-%m-%d %H:%M:%S+01:00'),
'updated':
lambda content: content['date'].strftime('%Y-%m-%d %H:%M:%S+01:00'),
},
]
flamingo/static/assets/images/ffbs_anschliessen.png

619 KiB

flamingo/static/assets/images/ffbs_router.png

651 KiB

@import url("//fonts.googleapis.com/css?family=Open+Sans:400,700");
/* open-sans-regular - vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot'); /* IE9 Compat Modes */
src: local(''),
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff') format('woff'), /* Modern Browsers */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot'); /* IE9 Compat Modes */
src: local(''),
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff') format('woff'), /* Modern Browsers */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('../webfonts/open-sans-v27-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/*!
* bootswatch v3.2.0
* Homepage: http://bootswatch.com
......@@ -890,7 +916,7 @@ html {
}
body {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
font-size: 14px;
line-height: 1.42857143;
color: #444444;
background-color: #fcfcfc;
......@@ -2347,7 +2373,7 @@ output {
width: 100%;
height: 36px;
padding: 8px 12px;
font-size: 13px;
font-size: 14px;
line-height: 1.42857143;
color: #777777;
background-color: #ffffff;
......@@ -3128,7 +3154,7 @@ tbody.collapse.in {
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 13px;
font-size: 14px;
text-align: left;
background-color: #ffffff;
border: 1px solid #cccccc;
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -189,3 +189,45 @@ a.anchor{
color: #EEE;
background-color: rgba(20,20,20,0.7);
}
h3 {
font-size: 20px;
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('../webfonts/OpenSans-Regular.ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
src: url('../webfonts/OpenSans-Bold.ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Open Sans';
font-style: italic;
font-weight: 400;
src: url('../webfonts/OpenSans-Italic.ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Open Sans';
font-style: italic;
font-weight: 800;
src: url('../webfonts/OpenSans-BoldItalic.ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.panel-heading h4 {
display: flex;
align-items: center;
justify-content: space-between;
}
File deleted
File deleted
This diff is collapsed.
File deleted
File deleted