- Timestamp:
- Sep 18, 2024, 9:30:33 PM (2 months ago)
- Location:
- trunk/Server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/install.nsi
r57 r60 13 13 CreateDirectory "$INSTDIR\etc" 14 14 CreateDirectory "$INSTDIR\www" 15 CreateDirectory "$INSTDIR\www\icons" 15 16 CreateDirectory "$INSTDIR\bin" 16 17 SetOutPath "$INSTDIR\bin" … … 20 21 SetOutPath "$INSTDIR\www" 21 22 File /oname=index.html "../itworks.html" 23 SetOutPath "$INSTDIR\www\icons" 24 File "../Icons/*.png" 22 25 23 26 CreateDirectory "$SMPROGRAMS\Tewi HTTPd" -
trunk/Server/server.c
r46 r60 621 621 addstring(&str, " <td><img src=\"%s\" alt=\"icon\"></td>\n", icon); 622 622 addstring(&str, " <td><a href=\"%l\"><code>%h</code></a></td>\n", items[i], itm); 623 addstring(&str, " <td><code>   %h  </code></td>\n", showmime);624 addstring(&str, " <td><code>   %s  </code></td>\n", size);623 addstring(&str, " <td><code> %h </code></td>\n", showmime); 624 addstring(&str, " <td><code> %s </code></td>\n", size); 625 625 addstring(&str, "</tr>\n"); 626 626 free(itm);
Note:
See TracChangeset
for help on using the changeset viewer.