Mercurial > libervia-templates
comparison default/base/base.html @ 84:b2ef34e602cf
base, js (websocket), css (main style): dynamic pages implementation, first draft:
this patch introduces the browser part of dynamic pages.
Dynamic pages work by establishing a websocket between server and the current page, if requested by server (which means that needed arguments are present in template).
Once the connection is established, the server can, for now, reload the page, append HTML elements, or receive arbitrary data (without reloading the page, in opposition to data post).
If connection can't be established, a popup will be displayed and connection will be retried many times after variable timeouts.
The browser will finally give up and display an alert to client if the number of retries is too high (20 for now).
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 03 Jan 2018 01:12:16 +0100 |
parents | 6ba0129a9a4e |
children | 304cbb690f15 |
comparison
equal
deleted
inserted
replaced
83:caab77328b1c | 84:b2ef34e602cf |
---|---|
32 background-size: 15em; | 32 background-size: 15em; |
33 } | 33 } |
34 </style> | 34 </style> |
35 {% endif %} | 35 {% endif %} |
36 | 36 |
37 {# JS handling #} | |
38 {% if websocket is defined %} | |
39 {{ script.include('websocket', '') }} | |
40 {% endif %} | |
37 {{ script.generate_scripts() }} | 41 {{ script.generate_scripts() }} |
42 {% if websocket is defined %} | |
43 <script>var socket=new WSHandler("{{websocket.url}}", "{{websocket.token}}", {{websocket.debug}});</script> | |
44 {% endif %} | |
38 </head> | 45 </head> |
39 <body> | 46 <body> |
40 {% if main_menu is defined %} | 47 {% if main_menu is defined %} |
41 {% block main_menu %} | 48 {% block main_menu %} |
42 {{ component.menu(main_menu, class="main_menu") }} | 49 {{ component.menu(main_menu, class="main_menu") }} |