userplex: Corrected opening of /dev/null.
[ashd.git] / src / htls.c
index 060d1bf..f51da93 100644 (file)
@@ -73,7 +73,7 @@ static int dcmp(const void *ap, const void *bp)
 
 static void head(char *name, struct charbuf *dst)
 {
-    char *title, *tmp;
+    char *title;
     
     title = sstrdup(htmlquote(name));
     bprintf(dst, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
@@ -82,15 +82,16 @@ static void head(char *name, struct charbuf *dst)
     bprintf(dst, "<head>\n");
     bprintf(dst, "<title>Index of %s</title>\n", title);
     if(stylesheet) {
-       bprintf(dst, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n", htmlquote(tmp));
+       bprintf(dst, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n", htmlquote(stylesheet));
     } else {
-       bprintf(dst, "<style>\n");
+       bprintf(dst, "<style type=\"text/css\">\n");
        bprintf(dst, "body {font-family: sans-serif; background: #eee;}\n");
        bprintf(dst, ".dirindex {background: white; padding: 1em; border: thin solid #ccc;}\n");
        bprintf(dst, ".dirindex table {border-collapse: collapse;}\n");
        bprintf(dst, ".dirindex td {padding: 0 1em;}\n");
        bprintf(dst, ".dentry:hover {background: #ddd;}\n");
        bprintf(dst, ".dir {background: #ddf;}\n");
+       bprintf(dst, ".dir .filename:before {content: \"\342\206\263 \"}\n");
        bprintf(dst, ".exec {background: #dfd;}\n");
        bprintf(dst, "</style>\n");
     }
@@ -149,8 +150,9 @@ static void mkindex(char *name, DIR *dir, struct charbuf *dst)
        if(dirbuf.b[i].w)
            bprintf(dst, " writable");
        bprintf(dst, "\">");    
-       fn = htmlquote(dirbuf.b[i].name);
-       bprintf(dst, "<td class=\"filename\"><a href=\"%s\">%s</a></td>", fn, fn);
+       bprintf(dst, "<td class=\"filename\"><a href=\"%s\">", htmlquote(urlquote(dirbuf.b[i].name)));
+       bprintf(dst, "%s", htmlquote(dirbuf.b[i].name));
+       bprintf(dst, "</a></td>");
        if(dispsize) {
            bprintf(dst, "<td class=\"filesize\">");
            if(!S_ISDIR(dirbuf.b[i].sb.st_mode))