author | Lars Hjemli <larsh@slaptop.hjemli.net> | 2007-01-28 10:33:55 (UTC) |
---|---|---|
committer | Lars Hjemli <larsh@slaptop.hjemli.net> | 2007-01-28 10:33:55 (UTC) |
commit | 8596cda71d04cd49cb983aee7968d14cc58c030d (patch) (unidiff) | |
tree | 6f8053d21fecd718d3493fe665240dc7892d44d2 /ui-shared.c | |
parent | 4a9dea5c0104471324f01663420685e45fe3b480 (diff) | |
download | cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.zip cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.gz cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.bz2 |
Change global document layout
Use a document-wide table for the main layout
Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
-rw-r--r-- | ui-shared.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c index bebd3e0..6300516 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -98,42 +98,43 @@ void cgit_print_docstart(char *title, struct cacheitem *item) | |||
98 | html_txt(title); | 98 | html_txt(title); |
99 | html("</title>\n"); | 99 | html("</title>\n"); |
100 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); | 100 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); |
101 | html("<link rel='stylesheet' type='text/css' href='"); | 101 | html("<link rel='stylesheet' type='text/css' href='"); |
102 | html_attr(cgit_css); | 102 | html_attr(cgit_css); |
103 | html("'/>\n"); | 103 | html("'/>\n"); |
104 | html("</head>\n"); | 104 | html("</head>\n"); |
105 | html("<body>\n"); | 105 | html("<body>\n"); |
106 | } | 106 | } |
107 | 107 | ||
108 | void cgit_print_docend() | 108 | void cgit_print_docend() |
109 | { | 109 | { |
110 | html("</td></tr></table>"); | ||
110 | html("</body>\n</html>\n"); | 111 | html("</body>\n</html>\n"); |
111 | } | 112 | } |
112 | 113 | ||
113 | void cgit_print_pageheader(char *title, int show_search) | 114 | void cgit_print_pageheader(char *title, int show_search) |
114 | { | 115 | { |
115 | html("<div id='header'>"); | 116 | html("<table id='layout'><tr><td id='header'>"); |
116 | htmlf("<a href='%s'>", cgit_logo_link); | 117 | htmlf("<a href='%s'>", cgit_logo_link); |
117 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); | 118 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
118 | htmlf("</a>"); | 119 | htmlf("</a>"); |
119 | if (show_search) { | 120 | if (show_search) { |
120 | html("<form method='get' href='"); | 121 | html("<form method='get' href='"); |
121 | html_attr(cgit_currurl()); | 122 | html_attr(cgit_currurl()); |
122 | html("'>"); | 123 | html("'>"); |
123 | if (cgit_query_head) | 124 | if (cgit_query_head) |
124 | html_hidden("h", cgit_query_head); | 125 | html_hidden("h", cgit_query_head); |
125 | if (cgit_query_sha1) | 126 | if (cgit_query_sha1) |
126 | html_hidden("id", cgit_query_sha1); | 127 | html_hidden("id", cgit_query_sha1); |
127 | if (cgit_query_sha2) | 128 | if (cgit_query_sha2) |
128 | html_hidden("id2", cgit_query_sha2); | 129 | html_hidden("id2", cgit_query_sha2); |
129 | html("<input type='text' name='q' value='"); | 130 | html("<input type='text' name='q' value='"); |
130 | html_attr(cgit_query_search); | 131 | html_attr(cgit_query_search); |
131 | html("'/></form>"); | 132 | html("'/></form>"); |
132 | } | 133 | } |
133 | if (cgit_query_repo) | 134 | if (cgit_query_repo) |
134 | htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); | 135 | htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); |
135 | html_txt(title); | 136 | html_txt(title); |
136 | if (cgit_query_repo) | 137 | if (cgit_query_repo) |
137 | html("</a>"); | 138 | html("</a>"); |
138 | html("</div>"); | 139 | html("</td></tr><tr><td id='content'>"); |
139 | } | 140 | } |