char* page_icon;
char* page_shortdesc;
bool page_index;
+bool page_do_not_index;
char* page_title2;
char* page_data2;
if(strcmp(el, "icon") == 0) typearr[depth] = ELEM_ICON;
if(strcmp(el, "short-description") == 0) typearr[depth] = ELEM_SHORTDESC;
if(strcmp(el, "index") == 0) page_index = true;
+ if(strcmp(el, "do-not-index") == 0) page_do_not_index = true;
if(depth == 0 && typearr[depth] != ELEM_METADATA) {
fprintf(stderr, "toplevel must be metadata\n");
exit(1);
XML_ParserFree(sparser);
if(!page_do_not_index2){
fprintf(f, "<dt><a href=\"%s%s\">", http_path, http);
- if(page_icon2 != NULL) fprintf(f, "<img src=\"/static/%s\">", page_icon2);
+ if(page_icon2 != NULL) fprintf(f, "<img src=\"%s/static/%s\">", http_path, page_icon2);
if(page_icon2 != NULL) fprintf(f, "</a> ");
if(page_title2 != NULL) fprintf(f, "<b>%s </b>", page_title2);
if(page_icon2 == NULL) fprintf(f, "</a>");
} else {
fprintf(f, " <title>%s</title>\n", title);
}
- fprintf(f, " <link rel=\"icon\" href=\"/static/%s\">\n", icon);
+ fprintf(f, " <link rel=\"icon\" href=\"%s/static/%s\">\n", http_path, icon);
fprintf(f, " </head>\n");
fprintf(f, " <body>\n");
- fprintf(f, " <a href=\"%s\"><img src=\"/static/%s\"></a>\n", http_path, icon);
+ fprintf(f, " <a href=\"%s\"><img src=\"%s/static/%s\"></a>\n", http_path, http_path, icon);
if(page_icon != NULL){
char* from_path = concat3_str(static_dir, "/", page_icon);
char* to_path = concat3_str(output_dir, "/static/", page_icon);