summaryrefslogtreecommitdiffstats
path: root/src/htmlconst.h
blob: 1afaac3940f0d14d783f471a82389b433eb17d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#ifdef NDEBUG
#define SERVERVERSION "harvid " ICSVERSION " ["ICSARCH"]"
#else
#define SERVERVERSION "harvid " ICSVERSION " ["ICSARCH" debug]"
#endif

#define HTMLBODYPERC(P) \
  "<body style=\"width:900px; margin:110px auto 0 auto;\">" \
  "<div style=\"position:fixed; height:100px; width:100%"P"; top:0; left:0; background:#000; text-align:center;\"><a href=\"/\"><img alt=\"Harvid\" src=\"/logo.jpg\" style=\"border:0px;\"/></a></div>\n"

#define HTMLBODY HTMLBODYPERC("%")

#define CENTERDIV \
  "<div style=\"width:38em; margin:0 auto;\">\n"

#define HTMLFOOTER \
  "<hr/><div style=\"text-align:center; color:#888;\">"SERVERVERSION" at %s:%i</div>"

#define ERRFOOTER \
  "<hr/><div style=\"text-align:center; color:#888;\">"SERVERVERSION"</div>\n</body></html>"

#define OK200MSG(TXT) \
  DOCTYPE HTMLOPEN "<title>harvid admin</title></head>" HTMLBODYPERC("") "<p>OK. " TXT " command successful</p>" ERRFOOTER