The Omicron scan html output page
-
Could its name be changed from index.html
to<anything but index>.html
? With the current name, it is impossible to browse the Omicron output directory as the webpage is automatically displayed. -
Omicron run by:unknown (...)Maybe that has been there for a while, but now that I have looked at it more carefully, I see (...)
Where/how should this unknown
variable be initialized?
-
The html code is extremely clear and has a nice block structure. So it should not be too difficult to merge N "full" Omicron (sub)scans processing each N_{channels}/N channels -- I finally had to implement such splitting in the DQR as I had a high failure rate (some tens of percents) for the full scan of the high-frequency channels (> 8192 Hz) with the v3, more memory-demanding, Omicron version. To ease this process, could some comments be added to the html file that would be used by a parsing script as markers to delimit the different blocks of code which would each require a specific processing? Something like:
<html>
<!-- Begin header -->
<head>
(...)
</head>
<body>
<!-- End header -->
(...)
<!-- Beging summary -->
(...)
<!-- End summary -->
(...)
[There are a few more such blocks in the html file]
(...)
<!-- Begin channel index -->
(...)
<!-- End channel index -->
(...)
<!-- Begin display results channel by channel -->
(...)
<!-- End display results channel by channel -->
(...)
<!-- Begin footer -->
(...)
<!-- End footer -->
</body>
</html>
Edited by Florent Robinet