about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-11-03 14:05:12 +0100
committerLars Hjemli <hjemli@gmail.com>2007-11-03 14:05:12 +0100
commit601c76eb15a298ac9529f4dded5dd4297b9c3768 (patch)
treecb81350b624cb7ef0cdf9cdd23804cc674b8b5d5
parentCGIT 0.7 (diff)
downloadcgit-pink-601c76eb15a298ac9529f4dded5dd4297b9c3768.tar.gz
cgit-pink-601c76eb15a298ac9529f4dded5dd4297b9c3768.zip
Do not require javascript-enabled clients
A simple submit-button is all that's required to make the branch selector
drop-down work on any client, so lets add one.

Noticed-by: Olivier Ramonat <olivier@ramonat.fr>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--cgit.css12
-rw-r--r--ui-shared.c4
2 files changed, 16 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 1e768b8..1b2e9d6 100644
--- a/cgit.css
+++ b/cgit.css
@@ -134,6 +134,18 @@ div#sidebar div.infobox select {
 	padding: 0px;
 }
 
+td#branch-dropdown-cell {
+	width: 99%;
+}
+
+input#switch-btn {
+	width: 20px;
+	border: solid 1px #aaa;
+	background-color: #bbb;
+	margin: 2px 0px 0px 0px;
+	padding: 0px;
+}
+
 div#sidebar div.infobox input.txt {
 	width: 100%;
 	border: solid 1px #aaa;
diff --git a/ui-shared.c b/ui-shared.c
index ca8dd3d..bd34cc3 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -487,9 +487,13 @@ void cgit_print_pageheader(char *title, int show_search)
 		html("<p>\n<h1>branch</h1>\n");
 		html("<form method='get' action=''>\n");
 		add_hidden_formfields(0, 1, cgit_query_page);
+		html("<table class='grid'><tr><td id='branch-dropdown-cell'>");
 		html("<select name='h' onchange='this.form.submit();'>\n");
 		for_each_branch_ref(print_branch_option, cgit_query_head);
 		html("</select>\n");
+		html("</td><td>");
+		html("<input type='submit' id='switch-btn' value='..'>\n");
+		html("</td></tr></table>");
 		html("</form>\n");
 
 		html("<p>\n<h1>search</h1>\n");
d> 2009-07-31ui-commit: add support for 'commit-filter' optionLars Hjemli 2009-07-31ui-tree: add support for source-filter optionLars Hjemli 2009-07-31ui-snapshot: use cgit_{open|close}_filter() to execute compressorsLars Hjemli 2009-07-31Add generic filter/plugin infrastructureLars Hjemli 2009-07-25Add support for mime type registration and lookupLars Hjemli 2009-07-25cgit.h: keep config flags sortedLars Hjemli 2009-07-25cgitrc.5.txt: document 'embedded' and 'noheader'Lars Hjemli 2009-07-25Add support for 'noheader' optionLars Hjemli 2009-07-25cgitrc.5.txt: document 'head-include'Lars Hjemli 2009-07-25ui-blob: return 'application/octet-stream' for binary blobsLars Hjemli 2009-07-25ui-plain: Return 'application/octet-stream' for binary files.Remko Tronçon 2009-06-11use cgit_httpscheme() for atom feedDiego Ongaro 2009-06-11add cgit_httpscheme() -> http:// or https://Diego Ongaro 2009-06-07Return http statuscode 404 on unknown branchLars Hjemli 2009-06-07Add head-include configuration option.Mark Lodato 2009-03-15CGIT 0.8.2.1Lars Hjemli 2009-03-15Fix doc-related glitches in Makefile and .gitignoreLars Hjemli 2009-03-15ui-snapshot: avoid segfault when no filename is specifiedLars Hjemli 2009-03-15fix segfault when displaying empty blobsEric Wong 2009-02-19Add support for HEAD requestsLars Hjemli 2009-02-19Add support for ETag in 'plain' viewLars Hjemli 2009-02-12ui-tree: escape ascii-text properly in hexdump viewLars Hjemli 2009-02-12Makefile: add doc-related targetsLars Hjemli