Skip to content
Snippets Groups Projects
Select Git revision
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2018.2.x default protected
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
34 results

gui

  • Clone with SSH
  • Clone with HTTPS
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    user avatar
    Matthias Schiffer authored
    The new gluon.site lua library will eventually replace gluon.site_config
    (which is hereby deprecated, but will continue to be supported for a
    while).
    
    The new gluon.site library will wrap all values to allow traversing
    non-existing tables without errors.
    
        site = require 'gluon.site'
        c = site.a.b.c -- doesn't fail even if a or a.b don't exist
    
    The wrapped values must be unwrapped using call syntax:
    
        site_name = site.site_name()
    
    Using the call syntax on a non-existing value will return nil. An
    alternative default value may be passed instead:
    
        mac = site.next_node.mac('16:41:95:40:f7:dc')
    57adb49d
    History
    Name Last commit Last update
    ..