Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFS Gluon Firmware Selector
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
firmware
FFS Gluon Firmware Selector
Commits
40075ffd
Commit
40075ffd
authored
6 years ago
by
nrbffs
Committed by
autinerd
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
add Freifunk Stuttgart config
parent
9b5230f4
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
app.css
+9
-5
9 additions, 5 deletions
app.css
config.js
+65
-0
65 additions, 0 deletions
config.js
ffs-logo.png
+0
-0
0 additions, 0 deletions
ffs-logo.png
index.html
+5
-2
5 additions, 2 deletions
index.html
with
79 additions
and
8 deletions
.gitignore
+
0
−
1
View file @
40075ffd
*.swp
*.swp
config.js
images/*
images/*
This diff is collapsed.
Click to expand it.
app.css
+
9
−
5
View file @
40075ffd
...
@@ -114,10 +114,10 @@ h1, h2, h3, h4, h5, h6 {
...
@@ -114,10 +114,10 @@ h1, h2, h3, h4, h5, h6 {
}
}
#firmwareTable
h1
{
#firmwareTable
h1
{
color
:
#
dc0067
;
color
:
#
f9a62b
;
}
}
.firmwareTableLink
,
.notRecommendedLink
,
.InfoLink
{
.firmwareTableLink
,
.notRecommendedLink
,
.InfoLink
,
.oldVersionLink
{
clear
:
right
;
clear
:
right
;
float
:
right
;
float
:
right
;
color
:
#337ab7
;
color
:
#337ab7
;
...
@@ -153,11 +153,11 @@ h1, h2, h3, h4, h5, h6 {
...
@@ -153,11 +153,11 @@ h1, h2, h3, h4, h5, h6 {
}
}
#wizard
#model-pane
{
#wizard
#model-pane
{
border-left
:
3px
solid
#
dc0067
;
border-left
:
3px
solid
#
f9a62b
;
}
}
#wizard
#model-pane
h1
{
#wizard
#model-pane
h1
{
color
:
#
dc0067
;
color
:
#
f9a62b
;
}
}
#wizard
#model-pane
input
{
#wizard
#model-pane
input
{
...
@@ -250,7 +250,7 @@ h1, h2, h3, h4, h5, h6 {
...
@@ -250,7 +250,7 @@ h1, h2, h3, h4, h5, h6 {
}
}
#wizard
select
.invalid
{
#wizard
select
.invalid
{
border
:
1px
solid
#
dc0067
;
border
:
1px
solid
#
f9a62b
;
box-shadow
:
0.125em
0.125em
0.5em
rgba
(
219
,
0
,
102
,
0.125
);
box-shadow
:
0.125em
0.125em
0.5em
rgba
(
219
,
0
,
102
,
0.125
);
}
}
...
@@ -336,3 +336,7 @@ h1, h2, h3, h4, h5, h6 {
...
@@ -336,3 +336,7 @@ h1, h2, h3, h4, h5, h6 {
display
:
block
;
display
:
block
;
margin
:
auto
0.5em
;
margin
:
auto
0.5em
;
}
}
.center
{
text-align
:
center
;
}
This diff is collapsed.
Click to expand it.
config.js
0 → 100644
+
65
−
0
View file @
40075ffd
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var
config
=
{
// list images on console that match no model
listMissingImages
:
true
,
// see devices.js for different vendor model maps
vendormodels
:
vendormodels
,
// set enabled categories of devices (see devices.js)
enabled_device_categories
:
[
"
recommended
"
,
"
ath10k_lowmem
"
,
"
4_32
"
,
"
8_32
"
,
"
16_32
"
],
// Display a checkbox that allows to display not recommended devices.
// This only make sense if enabled_device_categories also contains not
// recommended devices.
recommended_toggle
:
true
,
// community prefix of the firmware images
community_prefix
:
'
gluon-ffs-
'
,
// firmware version regex
version_regex
:
"
-((experimental|[0-9]+
\
.[0-9]+)[+][0-9]{4}-[0-9]{2}-[0-9]{2}-g
\
.[a-f0-9]+-s
\
.[a-f0-9]+-)
"
,
prettyPrintVersionRegex
:
"
((experimental|[0-9]+
\
.[0-9]+)[+][0-9]{4}-[0-9]{2}-[0-9]{2})
"
,
// removes +2017-09-13-g.d722c26-s.b0e5e48
// relative image paths and branch
directories
:
{
//'../gluon/stable/factory/': 'stable',
'
../gluon/stable/sysupgrade/
'
:
'
stable
'
,
'
../gluon/stable/factory/
'
:
'
stable
'
,
'
../gluon/stable/other/
'
:
'
stable
'
,
'
../gluon/beta/sysupgrade/
'
:
'
beta
'
,
'
../gluon/beta/factory/
'
:
'
beta
'
,
'
../gluon/beta/other/
'
:
'
beta
'
,
'
../gluon/nightly/sysupgrade/
'
:
'
nightly
'
,
'
../gluon/nightly/factory/
'
:
'
nightly
'
,
'
../gluon/nightly/other/
'
:
'
nightly
'
,
'
../gluon/experimental/sysupgrade/
'
:
'
experimental
'
,
'
../gluon/experimental/factory/
'
:
'
experimental
'
,
'
../gluon/experimental/other/
'
:
'
experimental
'
},
// page title
title
:
'
Firmware
'
,
// branch descriptions shown during selection
branch_descriptions
:
{
stable
:
'
Empfohlen.
'
,
beta
:
'
Hilf den Firmware-Entwicklern mit Tests. Kann gelegentlich Probleme machen.
'
,
nightly
:
'
Ungetestet, automatisch generiert.
'
,
experimental
:
'
Halte den Lötkolben bereit.
'
},
// recommended branch will be marked during selection
recommended_branch
:
'
stable
'
,
// experimental branches (show a warning for these branches)
experimental_branches
:
[
'
experimental
'
,
'
nightly
'
],
// path to preview pictures directory
preview_pictures
:
'
pictures/
'
,
// link to changelog
changelog
:
'
https://wiki.freifunk-stuttgart.net/technik:software:gluon:firmwareversionen_milestones
'
};
This diff is collapsed.
Click to expand it.
ffs-logo.png
0 → 100644
+
0
−
0
View file @
40075ffd
15.8 KiB
This diff is collapsed.
Click to expand it.
index.html
+
5
−
2
View file @
40075ffd
...
@@ -10,17 +10,20 @@
...
@@ -10,17 +10,20 @@
</head>
</head>
<body>
<body>
<noscript>
<noscript>
<meta
http-equiv=
"refresh"
content=
"0; url=/
images
/"
>
<meta
http-equiv=
"refresh"
content=
"0; url=/
gluon/stable
/"
>
</noscript>
</noscript>
<div
id=
"currentVersions"
>
<div
id=
"currentVersions"
>
</div>
</div>
<div
id=
"wizard"
>
<div
id=
"wizard"
>
<a
href=
"./index.html"
><img
src=
"./router.png"
></a>
<div
class=
"center"
>
<a
href=
"./index.html"
><img
src=
"./ffs-logo.png"
class=
"center"
></a>
</div>
<div
class=
"pane-wrapper"
>
<div
class=
"pane-wrapper"
>
<div
id=
"model-pane"
class=
"pane"
>
<div
id=
"model-pane"
class=
"pane"
>
<span
class=
"notRecommendedLink"
>
nicht empfohlene Geräte anzeigen
</span>
<span
class=
"notRecommendedLink"
>
nicht empfohlene Geräte anzeigen
</span>
<span
class=
"firmwareTableLink"
>
Tabelle anzeigen
</span>
<span
class=
"firmwareTableLink"
>
Tabelle anzeigen
</span>
<a
href=
"/gluon/archive/"
class=
"oldVersionLink"
>
Alle Versionen
</a>
<h1>
Schritt 1: Wähle Dein Routermodell
</h1>
<h1>
Schritt 1: Wähle Dein Routermodell
</h1>
<div
class=
"warning-notrecommended"
>
<div
class=
"warning-notrecommended"
>
<p>
<p>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment