Move classes required for Lua runtime support into a new `luci-lua-runtime` package. Also replace the `luci.http` and `luci.util` classes in `luci-lib-base` with stubbed versions interacting with the ucode based runtime environment. Finally merge `luci-base-ucode` into the remainders of `luci-base`. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
12 lines
254 B
Text
12 lines
254 B
Text
{% include('header') %}
|
|
|
|
<div id="view">
|
|
<div class="spinning">{{ _('Loading view…') }}</div>
|
|
<script type="text/javascript">
|
|
L.require('ui').then(function(ui) {
|
|
ui.instantiateView('{{ view }}');
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
{% include('footer') %}
|