Changeset 60 in Main for trunk


Ignore:
Timestamp:
Sep 18, 2024, 9:30:33 PM (2 months ago)
Author:
Nishi
Message:

use space not emsp

Location:
trunk/Server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/install.nsi

    r57 r60  
    1313        CreateDirectory "$INSTDIR\etc"
    1414        CreateDirectory "$INSTDIR\www"
     15        CreateDirectory "$INSTDIR\www\icons"
    1516        CreateDirectory "$INSTDIR\bin"
    1617        SetOutPath "$INSTDIR\bin"
     
    2021        SetOutPath "$INSTDIR\www"
    2122        File /oname=index.html "../itworks.html"
     23        SetOutPath "$INSTDIR\www\icons"
     24        File "../Icons/*.png"
    2225
    2326        CreateDirectory "$SMPROGRAMS\Tewi HTTPd"
  • trunk/Server/server.c

    r46 r60  
    621621                                                                        addstring(&str, "       <td><img src=\"%s\" alt=\"icon\"></td>\n", icon);
    622622                                                                        addstring(&str, "       <td><a href=\"%l\"><code>%h</code></a></td>\n", items[i], itm);
    623                                                                         addstring(&str, "       <td><code>&emsp;&emsp;%h&emsp;&emsp;</code></td>\n", showmime);
    624                                                                         addstring(&str, "       <td><code>&emsp;&emsp;%s&emsp;&emsp;</code></td>\n", size);
     623                                                                        addstring(&str, "       <td><code>  %h  </code></td>\n", showmime);
     624                                                                        addstring(&str, "       <td><code>  %s  </code></td>\n", size);
    625625                                                                        addstring(&str, "</tr>\n");
    626626                                                                        free(itm);
Note: See TracChangeset for help on using the changeset viewer.