summaryrefslogtreecommitdiffabout
authorLars 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)
commit8596cda71d04cd49cb983aee7968d14cc58c030d (patch) (unidiff)
tree6f8053d21fecd718d3493fe665240dc7892d44d2
parent4a9dea5c0104471324f01663420685e45fe3b480 (diff)
downloadcgit-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>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css23
-rw-r--r--ui-shared.c5
2 files changed, 16 insertions, 12 deletions
diff --git a/cgit.css b/cgit.css
index d2c0d0b..63acd78 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,122 +1,125 @@
1body { 1body {
2 font-family: arial; 2 font-family: arial;
3 font-size: normal; 3 font-size: normal;
4 background: white; 4 background: white;
5 padding: 0em; 5 padding: 0em;
6 margin: 0.5em 1em; 6 margin: 0em;
7} 7}
8 8
9 9
10h2 { 10h2 {
11 font-size: 120%; 11 font-size: 120%;
12 font-weight: bold; 12 font-weight: bold;
13 margin-bottom: 0.5em; 13 margin-bottom: 0.5em;
14} 14}
15 15
16a { 16a {
17 color: blue; 17 color: blue;
18 text-decoration: none; 18 text-decoration: none;
19} 19}
20 20
21a:hover { 21a:hover {
22 text-decoration: underline; 22 text-decoration: underline;
23} 23}
24 24
25table.list { 25table.list {
26 border: none; 26 border: none;
27 border-collapse: collapse; 27 border-collapse: collapse;
28} 28}
29table.list tr { 29table.list tr {
30 background: white; 30 background: white;
31} 31}
32table.list tr:hover { 32table.list tr:hover {
33 background: #eee; 33 background: #eee;
34} 34}
35table.list tr.nohover:hover { 35table.list tr.nohover:hover {
36 background: white; 36 background: white;
37} 37}
38table.list th { 38table.list th {
39 font-weight: normal; 39 font-weight: normal;
40 border-bottom: solid 1px #777; 40 border-bottom: solid 1px #777;
41 padding: 0.1em 0.5em 0.1em 0.5em; 41 padding: 0.1em 0.5em 0.1em 0.5em;
42 vertical-align: baseline; 42 vertical-align: baseline;
43} 43}
44table.list td { 44table.list td {
45 border: none; 45 border: none;
46 padding: 0.1em 0.5em 0.1em 0.5em; 46 padding: 0.1em 0.5em 0.1em 0.5em;
47} 47}
48img { 48img {
49 border: none; 49 border: none;
50} 50}
51 51table#layout {
52div#header { 52 width: 100%;
53 border-collapse: collapse;
54 margin: 0px;
55}
56td#header {
53 background-color: #ddd; 57 background-color: #ddd;
54 padding: 0.25em 0.25em 0.25em 0.5em; 58 padding: 0.25em 0.25em 0.25em 0.5em;
55 font-size: 150%; 59 font-size: 150%;
56 font-weight: bold; 60 font-weight: bold;
57 border: solid 1px #aaa; 61 border-bottom: solid 1px #aaa;
58 vertical-align: middle; 62 vertical-align: middle;
59 margin-bottom: 2em;
60} 63}
61div#header img#logo { 64td#header img#logo {
62 float: right; 65 float: right;
63} 66}
64 67
65div#header input { 68td#header input {
66 float: right; 69 float: right;
67 margin: 0.25em 1em; 70 margin: 0.25em 1em;
68} 71}
69div#header a { 72td#header a {
70 color: black; 73 color: black;
71} 74}
72 75
73div#content { 76td#content {
74 margin: 0.5em 0.5em; 77 padding: 1em 0.5em;
75} 78}
76 79
77div#blob { 80div#blob {
78 border: solid 1px black; 81 border: solid 1px black;
79} 82}
80 83
81div.error { 84div.error {
82 color: red; 85 color: red;
83 font-weight: bold; 86 font-weight: bold;
84 margin: 1em 2em; 87 margin: 1em 2em;
85} 88}
86div.ls-blob, div.ls-dir { 89div.ls-blob, div.ls-dir {
87 font-family: monospace; 90 font-family: monospace;
88} 91}
89div.ls-dir a { 92div.ls-dir a {
90 font-weight: bold; 93 font-weight: bold;
91} 94}
92th.filesize, td.filesize { 95th.filesize, td.filesize {
93 text-align: right; 96 text-align: right;
94} 97}
95td.filesize { 98td.filesize {
96 font-family: monospace; 99 font-family: monospace;
97} 100}
98td.filemode { 101td.filemode {
99 font-family: monospace; 102 font-family: monospace;
100} 103}
101 104
102td.blob { 105td.blob {
103 white-space: pre; 106 white-space: pre;
104 font-family: monospace; 107 font-family: monospace;
105 background-color: white; 108 background-color: white;
106} 109}
107 110
108table.nowrap td { 111table.nowrap td {
109 white-space: nowrap; 112 white-space: nowrap;
110} 113}
111 114
112table.commit-info { 115table.commit-info {
113 border-collapse: collapse; 116 border-collapse: collapse;
114 margin-top: 1.5em; 117 margin-top: 1.5em;
115} 118}
116table.commit-info th { 119table.commit-info th {
117 text-align: left; 120 text-align: left;
118 font-weight: normal; 121 font-weight: normal;
119 padding: 0.1em 1em 0.1em 0.1em; 122 padding: 0.1em 1em 0.1em 0.1em;
120} 123}
121table.commit-info td { 124table.commit-info td {
122 font-weight: normal; 125 font-weight: normal;
diff --git a/ui-shared.c b/ui-shared.c
index bebd3e0..6300516 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -62,78 +62,79 @@ char *cgit_pageurl(const char *reponame, const char *pagename,
62 62
63char *cgit_currurl() 63char *cgit_currurl()
64{ 64{
65 if (!cgit_virtual_root) 65 if (!cgit_virtual_root)
66 return "./cgit.cgi"; 66 return "./cgit.cgi";
67 else if (cgit_query_page) 67 else if (cgit_query_page)
68 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); 68 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
69 else if (cgit_query_repo) 69 else if (cgit_query_repo)
70 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); 70 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
71 else 71 else
72 return fmt("%s/", cgit_virtual_root); 72 return fmt("%s/", cgit_virtual_root);
73} 73}
74 74
75 75
76void cgit_print_date(unsigned long secs) 76void cgit_print_date(unsigned long secs)
77{ 77{
78 char buf[32]; 78 char buf[32];
79 struct tm *time; 79 struct tm *time;
80 80
81 time = gmtime(&secs); 81 time = gmtime(&secs);
82 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); 82 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time);
83 html_txt(buf); 83 html_txt(buf);
84 84
85} 85}
86 86
87void cgit_print_docstart(char *title, struct cacheitem *item) 87void cgit_print_docstart(char *title, struct cacheitem *item)
88{ 88{
89 html("Content-Type: text/html; charset=utf-8\n"); 89 html("Content-Type: text/html; charset=utf-8\n");
90 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 90 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
91 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 91 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
92 ttl_seconds(item->ttl))); 92 ttl_seconds(item->ttl)));
93 html("\n"); 93 html("\n");
94 html(cgit_doctype); 94 html(cgit_doctype);
95 html("<html>\n"); 95 html("<html>\n");
96 html("<head>\n"); 96 html("<head>\n");
97 html("<title>"); 97 html("<title>");
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
108void cgit_print_docend() 108void 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
113void cgit_print_pageheader(char *title, int show_search) 114void 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}