summaryrefslogtreecommitdiffabout
path: root/html.c
authorLars Hjemli <hjemli@gmail.com>2008-08-06 08:53:50 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-08-06 09:21:30 (UTC)
commite5da4bca54574522b28f88cab0dc8ebad9e35a73 (patch) (unidiff)
tree08e02b9e0962a12040faab27e7841a74a800ddf2 /html.c
parent02a545e63454530c1639014d3239c14ced2022c6 (diff)
downloadcgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.zip
cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.gz
cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.bz2
Implement plain view
This implements a way to access plain blobs by path (similar to the tree view) instead of by sha1. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'html.c') (more/less context) (show whitespace changes)
-rw-r--r--html.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/html.c b/html.c
index 1237076..83fc7a9 100644
--- a/html.c
+++ b/html.c
@@ -1,229 +1,234 @@
1/* html.c: helper functions for html output 1/* html.c: helper functions for html output
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include <unistd.h> 9#include <unistd.h>
10#include <stdio.h> 10#include <stdio.h>
11#include <stdlib.h> 11#include <stdlib.h>
12#include <stdarg.h> 12#include <stdarg.h>
13#include <string.h> 13#include <string.h>
14#include <errno.h> 14#include <errno.h>
15 15
16int htmlfd = STDOUT_FILENO; 16int htmlfd = STDOUT_FILENO;
17 17
18char *fmt(const char *format, ...) 18char *fmt(const char *format, ...)
19{ 19{
20 static char buf[8][1024]; 20 static char buf[8][1024];
21 static int bufidx; 21 static int bufidx;
22 int len; 22 int len;
23 va_list args; 23 va_list args;
24 24
25 bufidx++; 25 bufidx++;
26 bufidx &= 7; 26 bufidx &= 7;
27 27
28 va_start(args, format); 28 va_start(args, format);
29 len = vsnprintf(buf[bufidx], sizeof(buf[bufidx]), format, args); 29 len = vsnprintf(buf[bufidx], sizeof(buf[bufidx]), format, args);
30 va_end(args); 30 va_end(args);
31 if (len>sizeof(buf[bufidx])) { 31 if (len>sizeof(buf[bufidx])) {
32 fprintf(stderr, "[html.c] string truncated: %s\n", format); 32 fprintf(stderr, "[html.c] string truncated: %s\n", format);
33 exit(1); 33 exit(1);
34 } 34 }
35 return buf[bufidx]; 35 return buf[bufidx];
36} 36}
37 37
38void html_raw(const char *data, size_t size)
39{
40 write(htmlfd, data, size);
41}
42
38void html(const char *txt) 43void html(const char *txt)
39{ 44{
40 write(htmlfd, txt, strlen(txt)); 45 write(htmlfd, txt, strlen(txt));
41} 46}
42 47
43void htmlf(const char *format, ...) 48void htmlf(const char *format, ...)
44{ 49{
45 static char buf[65536]; 50 static char buf[65536];
46 va_list args; 51 va_list args;
47 52
48 va_start(args, format); 53 va_start(args, format);
49 vsnprintf(buf, sizeof(buf), format, args); 54 vsnprintf(buf, sizeof(buf), format, args);
50 va_end(args); 55 va_end(args);
51 html(buf); 56 html(buf);
52} 57}
53 58
54void html_status(int code, int more_headers) 59void html_status(int code, int more_headers)
55{ 60{
56 htmlf("Status: %d\n", code); 61 htmlf("Status: %d\n", code);
57 if (!more_headers) 62 if (!more_headers)
58 html("\n"); 63 html("\n");
59} 64}
60 65
61void html_txt(char *txt) 66void html_txt(char *txt)
62{ 67{
63 char *t = txt; 68 char *t = txt;
64 while(t && *t){ 69 while(t && *t){
65 int c = *t; 70 int c = *t;
66 if (c=='<' || c=='>' || c=='&') { 71 if (c=='<' || c=='>' || c=='&') {
67 write(htmlfd, txt, t - txt); 72 write(htmlfd, txt, t - txt);
68 if (c=='>') 73 if (c=='>')
69 html("&gt;"); 74 html("&gt;");
70 else if (c=='<') 75 else if (c=='<')
71 html("&lt;"); 76 html("&lt;");
72 else if (c=='&') 77 else if (c=='&')
73 html("&amp;"); 78 html("&amp;");
74 txt = t+1; 79 txt = t+1;
75 } 80 }
76 t++; 81 t++;
77 } 82 }
78 if (t!=txt) 83 if (t!=txt)
79 html(txt); 84 html(txt);
80} 85}
81 86
82void html_ntxt(int len, char *txt) 87void html_ntxt(int len, char *txt)
83{ 88{
84 char *t = txt; 89 char *t = txt;
85 while(t && *t && len--){ 90 while(t && *t && len--){
86 int c = *t; 91 int c = *t;
87 if (c=='<' || c=='>' || c=='&') { 92 if (c=='<' || c=='>' || c=='&') {
88 write(htmlfd, txt, t - txt); 93 write(htmlfd, txt, t - txt);
89 if (c=='>') 94 if (c=='>')
90 html("&gt;"); 95 html("&gt;");
91 else if (c=='<') 96 else if (c=='<')
92 html("&lt;"); 97 html("&lt;");
93 else if (c=='&') 98 else if (c=='&')
94 html("&amp;"); 99 html("&amp;");
95 txt = t+1; 100 txt = t+1;
96 } 101 }
97 t++; 102 t++;
98 } 103 }
99 if (t!=txt) 104 if (t!=txt)
100 write(htmlfd, txt, t - txt); 105 write(htmlfd, txt, t - txt);
101 if (len<0) 106 if (len<0)
102 html("..."); 107 html("...");
103} 108}
104 109
105void html_attr(char *txt) 110void html_attr(char *txt)
106{ 111{
107 char *t = txt; 112 char *t = txt;
108 while(t && *t){ 113 while(t && *t){
109 int c = *t; 114 int c = *t;
110 if (c=='<' || c=='>' || c=='\'') { 115 if (c=='<' || c=='>' || c=='\'') {
111 write(htmlfd, txt, t - txt); 116 write(htmlfd, txt, t - txt);
112 if (c=='>') 117 if (c=='>')
113 html("&gt;"); 118 html("&gt;");
114 else if (c=='<') 119 else if (c=='<')
115 html("&lt;"); 120 html("&lt;");
116 else if (c=='\'') 121 else if (c=='\'')
117 html("&quote;"); 122 html("&quote;");
118 txt = t+1; 123 txt = t+1;
119 } 124 }
120 t++; 125 t++;
121 } 126 }
122 if (t!=txt) 127 if (t!=txt)
123 html(txt); 128 html(txt);
124} 129}
125 130
126void html_hidden(char *name, char *value) 131void html_hidden(char *name, char *value)
127{ 132{
128 html("<input type='hidden' name='"); 133 html("<input type='hidden' name='");
129 html_attr(name); 134 html_attr(name);
130 html("' value='"); 135 html("' value='");
131 html_attr(value); 136 html_attr(value);
132 html("'/>"); 137 html("'/>");
133} 138}
134 139
135void html_option(char *value, char *text, char *selected_value) 140void html_option(char *value, char *text, char *selected_value)
136{ 141{
137 html("<option value='"); 142 html("<option value='");
138 html_attr(value); 143 html_attr(value);
139 html("'"); 144 html("'");
140 if (selected_value && !strcmp(selected_value, value)) 145 if (selected_value && !strcmp(selected_value, value))
141 html(" selected='selected'"); 146 html(" selected='selected'");
142 html(">"); 147 html(">");
143 html_txt(text); 148 html_txt(text);
144 html("</option>\n"); 149 html("</option>\n");
145} 150}
146 151
147void html_link_open(char *url, char *title, char *class) 152void html_link_open(char *url, char *title, char *class)
148{ 153{
149 html("<a href='"); 154 html("<a href='");
150 html_attr(url); 155 html_attr(url);
151 if (title) { 156 if (title) {
152 html("' title='"); 157 html("' title='");
153 html_attr(title); 158 html_attr(title);
154 } 159 }
155 if (class) { 160 if (class) {
156 html("' class='"); 161 html("' class='");
157 html_attr(class); 162 html_attr(class);
158 } 163 }
159 html("'>"); 164 html("'>");
160} 165}
161 166
162void html_link_close(void) 167void html_link_close(void)
163{ 168{
164 html("</a>"); 169 html("</a>");
165} 170}
166 171
167void html_fileperm(unsigned short mode) 172void html_fileperm(unsigned short mode)
168{ 173{
169 htmlf("%c%c%c", (mode & 4 ? 'r' : '-'), 174 htmlf("%c%c%c", (mode & 4 ? 'r' : '-'),
170 (mode & 2 ? 'w' : '-'), (mode & 1 ? 'x' : '-')); 175 (mode & 2 ? 'w' : '-'), (mode & 1 ? 'x' : '-'));
171} 176}
172 177
173int html_include(const char *filename) 178int html_include(const char *filename)
174{ 179{
175 FILE *f; 180 FILE *f;
176 char buf[4096]; 181 char buf[4096];
177 size_t len; 182 size_t len;
178 183
179 if (!(f = fopen(filename, "r"))) { 184 if (!(f = fopen(filename, "r"))) {
180 fprintf(stderr, "[cgit] Failed to include file %s: %s (%d).\n", 185 fprintf(stderr, "[cgit] Failed to include file %s: %s (%d).\n",
181 filename, strerror(errno), errno); 186 filename, strerror(errno), errno);
182 return -1; 187 return -1;
183 } 188 }
184 while((len = fread(buf, 1, 4096, f)) > 0) 189 while((len = fread(buf, 1, 4096, f)) > 0)
185 write(htmlfd, buf, len); 190 write(htmlfd, buf, len);
186 fclose(f); 191 fclose(f);
187 return 0; 192 return 0;
188} 193}
189 194
190int hextoint(char c) 195int hextoint(char c)
191{ 196{
192 if (c >= 'a' && c <= 'f') 197 if (c >= 'a' && c <= 'f')
193 return 10 + c - 'a'; 198 return 10 + c - 'a';
194 else if (c >= 'A' && c <= 'F') 199 else if (c >= 'A' && c <= 'F')
195 return 10 + c - 'A'; 200 return 10 + c - 'A';
196 else if (c >= '0' && c <= '9') 201 else if (c >= '0' && c <= '9')
197 return c - '0'; 202 return c - '0';
198 else 203 else
199 return -1; 204 return -1;
200} 205}
201 206
202char *convert_query_hexchar(char *txt) 207char *convert_query_hexchar(char *txt)
203{ 208{
204 int d1, d2; 209 int d1, d2;
205 if (strlen(txt) < 3) { 210 if (strlen(txt) < 3) {
206 *txt = '\0'; 211 *txt = '\0';
207 return txt-1; 212 return txt-1;
208 } 213 }
209 d1 = hextoint(*(txt+1)); 214 d1 = hextoint(*(txt+1));
210 d2 = hextoint(*(txt+2)); 215 d2 = hextoint(*(txt+2));
211 if (d1<0 || d2<0) { 216 if (d1<0 || d2<0) {
212 strcpy(txt, txt+3); 217 strcpy(txt, txt+3);
213 return txt-1; 218 return txt-1;
214 } else { 219 } else {
215 *txt = d1 * 16 + d2; 220 *txt = d1 * 16 + d2;
216 strcpy(txt+1, txt+3); 221 strcpy(txt+1, txt+3);
217 return txt; 222 return txt;
218 } 223 }
219} 224}
220 225
221int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)) 226int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value))
222{ 227{
223 char *t, *value = NULL, c; 228 char *t, *value = NULL, c;
224 229
225 if (!txt) 230 if (!txt)
226 return 0; 231 return 0;
227 232
228 t = txt = strdup(txt); 233 t = txt = strdup(txt);
229 if (t == NULL) { 234 if (t == NULL) {