This repository was archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcommonpages.c
More file actions
51 lines (48 loc) · 1.39 KB
/
commonpages.c
File metadata and controls
51 lines (48 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* commonpages.c.in
* contains some commonly used pages
*/
const char errorpagetext[] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"\n"
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n"
" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n"
"\n"
"<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\">\n"
" <head>\n"
" <meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=utf-8\" />\n"
"\n"
" <meta name=\"generator\" content=\"Dissemina\" />\n"
"\n"
" <title>%s</title>\n"
" </head>\n"
"\n"
" <body>\n"
" <div id=\"content\">\n"
" %s\n"
" </div>\n"
" </body>\n"
"</html>\n"
"\n"
;
const char simplepagetext[] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"\n"
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n"
" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n"
"\n"
"<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\">\n"
" <head>\n"
" <meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=utf-8\" />\n"
"\n"
" <meta name=\"generator\" content=\"Dissemina\" />\n"
"\n"
" <title>%s</title>\n"
" </head>\n"
"\n"
" <body>\n"
" <div id=\"content\">\n"
" %s\n"
" </div>\n"
" </body>\n"
"</html>\n"
"\n"
;