Reply To: Web interface & Firefox

#6568
CCRDude
Participant

@rpedde wrote:

I didn’t see that patch in my email? 😉

Maybe because most errors are related to those (nulls) for now 😉

Patch for hdr.html adding new style file, making script lines shorting by removing closing tag and adding terminating to end of opening tag instead, and removing invalid li:

--- hdr.html	2006-07-06 06:42:30.000000000 +0200
+++ hdr.html 2006-09-27 16:15:39.000000000 +0200
@@ -4,22 +4,23 @@
Firefly Media Server


- @ispage index.html::@
- @ispage index.html::@
- @ispage index.html::@
- @ispage index.html::@
- @ispage config.html::@
- @ispage config.html::@
- @ispage config.html::@
- @ispage config.html::@
- @ispage smart.html::@
- @ispage smart.html::@
- @ispage smart.html::@
- @ispage playlist.html::@
- @ispage playlist.html::@
- @ispage playlist.html::@
- @ispage playlist.html::@
- @ispage playlist.html::@
+ @ispage index.html::@
+ @ispage index.html::@
+ @ispage index.html::@
+ @ispage index.html::@
+ @ispage index.html::@
+ @ispage config.html::@
+ @ispage config.html::@
+ @ispage config.html::@
+ @ispage config.html::@
+ @ispage smart.html::@
+ @ispage smart.html::@
+ @ispage smart.html::@
+ @ispage playlist.html::@
+ @ispage playlist.html::@
+ @ispage playlist.html::@
+ @ispage playlist.html::@
+ @ispage playlist.html::@



@@ -49,7 +50,6 @@

  • about firefly

  • thanks

  • -



  • Patch creating new css file for index.html since style inside the body is not allowed:

    --- index.css	1970-01-01 01:00:00.000000000 +0100
    +++ index.css 2006-09-27 16:07:23.000000000 +0200
    @@ -0,0 +1,31 @@
    +#service, #stat {
    + width: 70ex;
    +}
    +#thread {
    + width: 80ex;
    +}
    +#server_stopped_message {
    + position: absolute;
    + background-color: yellow;
    + padding: 1em;
    +/* border: 1px solid #8CACBB;*/
    + font-size: 120%;
    + margin-bottom: 1em;
    + z-index: 100;
    +
    +}
    +#grey_screen {
    + position: absolute;
    + top: 0;
    + left: 0;
    + width: 100%;
    + height: 1000px;
    + background-color: #000;
    + filter:alpha(opacity=60);
    + opacity: 0.6;
    + z-index: 10;
    +}
    +#button_stop_server, #button_start_scan, #button_start_full_scan {
    + width: 10em;
    + margin-bottom: .2em;
    +}

    Patch removing invalid style definition from index.html:

    --- index.html	2006-07-06 06:42:31.000000000 +0200
    +++ index.html 2006-09-27 16:07:37.000000000 +0200
    @@ -1,37 +1,4 @@
    @include hdr.html@
    -

    Server Status

    update: By the way, by shortening the length of the script lines (closing the tags inside the opening tag instead of the additional closing tag), the number of (null)s was reduced. So the problem about the (null) seems to have to do with the length cutting as well (maybe when I made that list above, the files in subdirectories where just unlucky to have a longer total line length).