summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--cgit.c13
-rw-r--r--cgit.css98
-rw-r--r--ui-diff.c1
-rw-r--r--ui-log.c1
-rw-r--r--ui-repolist.c1
-rw-r--r--ui-shared.c37
-rw-r--r--ui-summary.c6
-rw-r--r--ui-tree.c1
-rw-r--r--ui-view.c1
9 files changed, 127 insertions, 32 deletions
diff --git a/cgit.c b/cgit.c
index 7b7afba..fedf355 100644
--- a/cgit.c
+++ b/cgit.c
@@ -90,7 +90,16 @@ static void cgit_print_repo_page(struct cacheitem *item)
90 show_search = 1; 90 show_search = 1;
91
91 cgit_print_docstart(title, item); 92 cgit_print_docstart(title, item);
92 cgit_print_pageheader(title, show_search); 93
94
93 if (!cgit_query_page) { 95 if (!cgit_query_page) {
96 cgit_print_pageheader("summary", show_search);
94 cgit_print_summary(); 97 cgit_print_summary();
95 } else if (!strcmp(cgit_query_page, "log")) { 98 cgit_print_docend();
99 return;
100 }
101
102 cgit_print_pageheader(cgit_query_page, show_search);
103
104 if (!strcmp(cgit_query_page, "log")) {
96 cgit_print_log(cgit_query_head, cgit_query_ofs, 100, 105 cgit_print_log(cgit_query_head, cgit_query_ofs, 100,
diff --git a/cgit.css b/cgit.css
index 5c4b15b..640bbc9 100644
--- a/cgit.css
+++ b/cgit.css
@@ -12,3 +12,9 @@ h2 {
12 font-weight: bold; 12 font-weight: bold;
13 margin-bottom: 0.5em; 13 margin-bottom: 0.25em;
14}
15
16h3 {
17 margin-top: 0em;
18 font-size: 100%;
19 font-weight: normal;
14} 20}
@@ -28,2 +34,3 @@ table.list {
28} 34}
35
29table.list tr { 36table.list tr {
@@ -31,2 +38,3 @@ table.list tr {
31} 38}
39
32table.list tr:hover { 40table.list tr:hover {
@@ -34,2 +42,3 @@ table.list tr:hover {
34} 42}
43
35table.list tr.nohover:hover { 44table.list tr.nohover:hover {
@@ -37,2 +46,3 @@ table.list tr.nohover:hover {
37} 46}
47
38table.list th { 48table.list th {
@@ -43,2 +53,3 @@ table.list th {
43} 53}
54
44table.list td { 55table.list td {
@@ -47,2 +58,3 @@ table.list td {
47} 58}
59
48img { 60img {
@@ -50,25 +62,67 @@ img {
50} 62}
63
51table#layout { 64table#layout {
52 width: 100%; 65 width: 100%;
53 border-collapse: collapse; 66 border-collapse: separate;
67 border-spacing: 0px;
54 margin: 0px; 68 margin: 0px;
55} 69}
56td#header { 70
71td#header, td#logo {
72 color: #666;
57 background-color: #ddd; 73 background-color: #ddd;
58 padding: 0.25em 0.25em 0.25em 0.5em; 74 border-bottom: solid 1px #000;
75}
76
77td#header {
59 font-size: 150%; 78 font-size: 150%;
60 font-weight: bold; 79 font-weight: bold;
61 border-bottom: solid 1px #aaa; 80 padding: 0.2em 0.5em;
81 vertical-align: text-bottom;
82}
83
84td#logo {
85 text-align: right;
62 vertical-align: middle; 86 vertical-align: middle;
87 padding-right: 0.5em;
88}
89
90td#crumb, td#search {
91 color: #ccc;
92 border-top: solid 3px #555;
93 background-color: #666;
94 border-bottom: solid 1px #333;
95 padding: 2px 1em;
96}
97
98td#crumb {
99 font-weight: bold;
100}
101
102td#crumb a {
103 color: #ccc;
63} 104}
64td#header img#logo { 105
65 float: right; 106td#crumb a:hover {
107 color: #eee;
66} 108}
67 109
68td#header input { 110td#search {
69 float: right; 111 text-align: right;
70 margin: 0.25em 1em; 112 vertical-align: center;
113 padding-right: 0.5em;
71} 114}
72td#header a { 115
73 color: black; 116td#search form {
117 margin: 0px;
118 padding: 0px;
119}
120
121td#search input {
122 font-size: 9pt;
123 padding: 0px;
124 width: 10em;
125 border: solid 1px #333;
126 color: #333;
127 background-color: #fff;
74} 128}
@@ -88,2 +142,3 @@ div.error {
88} 142}
143
89div.ls-blob, div.ls-dir { 144div.ls-blob, div.ls-dir {
@@ -91,2 +146,3 @@ div.ls-blob, div.ls-dir {
91} 146}
147
92div.ls-dir a { 148div.ls-dir a {
@@ -94,2 +150,3 @@ div.ls-dir a {
94} 150}
151
95th.filesize, td.filesize { 152th.filesize, td.filesize {
@@ -97,2 +154,3 @@ th.filesize, td.filesize {
97} 154}
155
98td.filesize { 156td.filesize {
@@ -100,2 +158,3 @@ td.filesize {
100} 158}
159
101td.filemode { 160td.filemode {
@@ -118,2 +177,3 @@ table.commit-info {
118} 177}
178
119table.commit-info th { 179table.commit-info th {
@@ -123,2 +183,3 @@ table.commit-info th {
123} 183}
184
124table.commit-info td { 185table.commit-info td {
@@ -127,2 +188,3 @@ table.commit-info td {
127} 188}
189
128div.commit-subject { 190div.commit-subject {
@@ -133,2 +195,3 @@ div.commit-subject {
133} 195}
196
134div.commit-msg { 197div.commit-msg {
@@ -137,2 +200,3 @@ div.commit-msg {
137} 200}
201
138table.diffstat { 202table.diffstat {
@@ -141,2 +205,3 @@ table.diffstat {
141} 205}
206
142table.diffstat th { 207table.diffstat th {
@@ -148,2 +213,3 @@ table.diffstat th {
148} 213}
214
149table.diffstat td { 215table.diffstat td {
@@ -152,2 +218,3 @@ table.diffstat td {
152} 218}
219
153table.diffstat td span.modechange { 220table.diffstat td span.modechange {
@@ -156,2 +223,3 @@ table.diffstat td span.modechange {
156} 223}
224
157table.diffstat td.add a { 225table.diffstat td.add a {
@@ -159,2 +227,3 @@ table.diffstat td.add a {
159} 227}
228
160table.diffstat td.del a { 229table.diffstat td.del a {
@@ -162,2 +231,3 @@ table.diffstat td.del a {
162} 231}
232
163table.diffstat td.upd a { 233table.diffstat td.upd a {
@@ -165,4 +235,4 @@ table.diffstat td.upd a {
165} 235}
236
166table.diffstat td.summary { 237table.diffstat td.summary {
167 /* border-top: solid 1px black; */
168 color: #888; 238 color: #888;
@@ -193,2 +263,3 @@ table.diff td div.del {
193} 263}
264
194.left { 265.left {
@@ -196,2 +267,3 @@ table.diff td div.del {
196} 267}
268
197.right { 269.right {
diff --git a/ui-diff.c b/ui-diff.c
index 0bd9ade..b6486f1 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -126,3 +126,2 @@ void cgit_print_diff(const char *old_hex, const char *new_hex)
126 126
127 html("<h2>diff</h2>\n");
128 html("<table class='diff'><tr><td>"); 127 html("<table class='diff'><tr><td>");
diff --git a/ui-log.c b/ui-log.c
index 24d571d..159393a 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -56,3 +56,2 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep)
56 56
57 html("<h2>Log</h2>");
58 html("<table class='list nowrap'>"); 57 html("<table class='list nowrap'>");
diff --git a/ui-repolist.c b/ui-repolist.c
index 011ec95..2ce0d6a 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -18,3 +18,2 @@ void cgit_print_repolist(struct cacheitem *item)
18 18
19 html("<h2>Repositories</h2>\n");
20 html("<table class='list nowrap'>"); 19 html("<table class='list nowrap'>");
diff --git a/ui-shared.c b/ui-shared.c
index 172499c..bca50aa 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -42,2 +42,10 @@ void cgit_print_error(char *msg)
42 42
43char *cgit_rooturl()
44{
45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root);
47 else
48 return "./cgit.cgi";
49}
50
43char *cgit_repourl(const char *reponame) 51char *cgit_repourl(const char *reponame)
@@ -115,6 +123,19 @@ void cgit_print_pageheader(char *title, int show_search)
115{ 123{
116 html("<table id='layout'><tr><td id='header'>"); 124 html("<table id='layout'>");
117 htmlf("<a href='%s'>", cgit_logo_link); 125 html("<tr><td id='header'>");
118 htmlf("<img id='logo' src='%s'/>\n", cgit_logo); 126 html(cgit_root_title);
119 htmlf("</a>"); 127 html("</td><td id='logo'>");
128 html("<a href='");
129 html_attr(cgit_logo_link);
130 htmlf("'><img src='%s'/></a>", cgit_logo);
131 html("</td></tr>");
132 html("<tr><td id='crumb'>");
133 htmlf("<a href='%s'>root</a>", cgit_rooturl());
134 if (cgit_query_repo) {
135 htmlf(" : <a href='%s'>", cgit_repourl(cgit_repo->url));
136 html_txt(cgit_repo->name);
137 htmlf("</a> : %s", title);
138 }
139 html("</td>");
140 html("<td id='search'>");
120 if (show_search) { 141 if (show_search) {
@@ -139,8 +160,4 @@ void cgit_print_pageheader(char *title, int show_search)
139 } 160 }
140 if (cgit_query_repo) 161 html("</td></tr>");
141 htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); 162 html("<tr><td id='content' colspan='2'>");
142 html_txt(title);
143 if (cgit_query_repo)
144 html("</a>");
145 html("</td></tr><tr><td id='content'>");
146} 163}
diff --git a/ui-summary.c b/ui-summary.c
index ff3ed4d..42f4300 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -131,4 +131,6 @@ void cgit_print_summary()
131 html("<h2>"); 131 html("<h2>");
132 html_txt("Repo summary page"); 132 html(cgit_repo->name);
133 html("</h2>"); 133 html("</h2><h3>");
134 html(cgit_repo->desc);
135 html("</h3>");
134 html("<table class='list nowrap'>"); 136 html("<table class='list nowrap'>");
diff --git a/ui-tree.c b/ui-tree.c
index 1d07e70..b00670e 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -68,3 +68,2 @@ void cgit_print_tree(const char *hex, char *path)
68 68
69 html("<h2>Tree content</h2>\n");
70 html_txt(path); 69 html_txt(path);
diff --git a/ui-view.c b/ui-view.c
index 07cd8be..85e223c 100644
--- a/ui-view.c
+++ b/ui-view.c
@@ -34,3 +34,2 @@ void cgit_print_view(const char *hex)
34 buf[size] = '\0'; 34 buf[size] = '\0';
35 html("<h2>Object content</h2>\n");
36 html("<table class='list'>\n"); 35 html("<table class='list'>\n");