summaryrefslogtreecommitdiffabout
path: root/cgit.c
authorLars Hjemli <hjemli@gmail.com>2006-12-10 22:50:16 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-10 22:54:45 (UTC)
commit76827d8679d1d2bd46e8cddf7da2ce4178e1d676 (patch) (unidiff)
treefd098df26c13d87005a000de0a38ef97c73d04c4 /cgit.c
parent7640d90b73c01b16bb04ce4c541f52cbaae5f82a (diff)
downloadcgit-76827d8679d1d2bd46e8cddf7da2ce4178e1d676.zip
cgit-76827d8679d1d2bd46e8cddf7da2ce4178e1d676.tar.gz
cgit-76827d8679d1d2bd46e8cddf7da2ce4178e1d676.tar.bz2
Add version identifier in generated files
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/cgit.c b/cgit.c
index 808ffe9..110face 100644
--- a/cgit.c
+++ b/cgit.c
@@ -5,20 +5,22 @@
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 "cgit.h" 9#include "cgit.h"
10 10
11static const char cgit_doctype[] = 11const char cgit_version[] = CGIT_VERSION;
12
13const char cgit_doctype[] =
12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" 14"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
13" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; 15" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
14 16
15static const char cgit_error[] = 17const char cgit_error[] =
16"<div class='error'>%s</div>"; 18"<div class='error'>%s</div>";
17 19
18static const char cgit_lib_error[] = 20const char cgit_lib_error[] =
19"<div class='error'>%s: %s</div>"; 21"<div class='error'>%s: %s</div>";
20 22
21int htmlfd = 0; 23int htmlfd = 0;
22 24
23char *cgit_root = "/usr/src/git"; 25char *cgit_root = "/usr/src/git";
24char *cgit_root_title = "Git repository browser"; 26char *cgit_root_title = "Git repository browser";
@@ -197,12 +199,13 @@ static void cgit_print_docstart(char *title)
197 html(cgit_doctype); 199 html(cgit_doctype);
198 html("<html>\n"); 200 html("<html>\n");
199 html("<head>\n"); 201 html("<head>\n");
200 html("<title>"); 202 html("<title>");
201 html_txt(title); 203 html_txt(title);
202 html("</title>\n"); 204 html("</title>\n");
205 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version);
203 html("<link rel='stylesheet' type='text/css' href='"); 206 html("<link rel='stylesheet' type='text/css' href='");
204 html_attr(cgit_css); 207 html_attr(cgit_css);
205 html("'/>\n"); 208 html("'/>\n");
206 html("</head>\n"); 209 html("</head>\n");
207 html("<body>\n"); 210 html("<body>\n");
208} 211}