An Electron-based JLD2 data file viewer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

view.html 714B

1234567891011121314151617181920212223242526
  1. <html>
  2. <head>
  3. <title>JLD2view</title>
  4. <style>{{{:STYLE}}}</style>
  5. <script>{{{:SPIN_WHL}}}</script>
  6. </head>
  7. <body>
  8. <a class="key" href="#" onclick='sendMessageToJulia("back|0")'>[{{:FNAME}}]</a>
  9. {{#:PATH}}
  10. ⊳ <a class="key" href="#" onclick='sendMessageToJulia("back|{{:idx}}")'>{{:name}}</a>
  11. {{/:PATH}}
  12. {{#:WARNING}}
  13. <div id="warning"><b>WARNING:</b> {{:text}}</div>
  14. {{/:WARNING}}
  15. <table id="jld2" cellspacing="0">
  16. {{#:DATA}}
  17. <tr onclick='sendMessageToJulia("select|{{:idx}}")'>
  18. <td><span class="key">⊳ {{:key}}</span></td>
  19. <td><span class="value">{{:val}}</span></td>
  20. </tr>
  21. {{/:DATA}}
  22. </table>
  23. </body>
  24. </html>