page: generalize html support
This commit is contained in:
parent
6bf47606de
commit
35fcb73f86
1 changed files with 5 additions and 3 deletions
|
@ -148,7 +148,7 @@ createtmp(ulong id, char *pfx)
|
|||
{
|
||||
char nam[64];
|
||||
|
||||
snprint(nam, sizeof nam, "%s%s%.12d%.8lux", pagespool, pfx, getpid(), id ^ 0xcafebabe);
|
||||
snprint(nam, sizeof nam, "%s%s%.12d%.8lux", pagespool, pfx, getpid(), id);
|
||||
return create(nam, OEXCL|ORCLOSE|ORDWR, 0600);
|
||||
}
|
||||
|
||||
|
@ -323,10 +323,10 @@ popenepub(Page *p)
|
|||
addpage(p, shortname(buf), popenfile, strdup(buf), -1);
|
||||
}
|
||||
close(fd);
|
||||
p->text = strdup(p->label);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
typedef struct Ghost Ghost;
|
||||
struct Ghost
|
||||
{
|
||||
|
@ -623,7 +623,9 @@ popenfile(Page *p)
|
|||
p->data = "lp -dstdout";
|
||||
p->open = popengs;
|
||||
}
|
||||
else if(memcmp(buf, "<?xml", 5) == 0){
|
||||
else if(cistrncmp(buf, "<?xml", 5) == 0 ||
|
||||
cistrncmp(buf, "<!DOCTYPE", 9) == 0 ||
|
||||
cistrncmp(buf, "<HTML", 5) == 0){
|
||||
p->data = "htmlfmt -c utf8 | lp -dstdout";
|
||||
p->open = popengs;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue