aboutsummaryrefslogtreecommitdiff
path: root/gitweb/static
diff options
context:
space:
mode:
authorSebastien Cevey <seb@cine7.net>2011-04-29 19:52:01 +0200
committerJunio C Hamano <gitster@pobox.com>2011-04-29 14:21:48 -0700
commitd940c9015d1a770b4f8ed8e9b38cf3d16f47a6cd (patch)
tree14b80514a14b138755130ff70a43da3010c5175d /gitweb/static
parente4e3b32bd2317ab73f03d692ab3f7231e2e6787d (diff)
downloadgit-d940c9015d1a770b4f8ed8e9b38cf3d16f47a6cd.tar.gz
git-d940c9015d1a770b4f8ed8e9b38cf3d16f47a6cd.tar.xz
gitweb: Optional grouping of projects by category
This adds the $projects_list_group_categories option which, if enabled, will result in grouping projects by category on the project list page. The category is specified for each project by the $GIT_DIR/category file or the 'gitweb.category' variable in its configuration file. By default, projects are put in the $project_list_default_category category. Note: - Categories are always sorted alphabetically, with projects in each category sorted according to the globally selected $order. - When displaying a subset of all the projects (page limiting), the category headers are only displayed for projects present on the page. The feature is inspired from Sham Chukoury's patch for the XMMS2 gitweb, but has been rewritten for the current gitweb code. The CSS for categories is inspired from Gustavo Sverzut Barbieri's patch to group projects by path. Thanks to Florian Ragwitz for Perl tips. [jn: Updated to post restructuring projects list generation, fixed bugs, added very basic test in t9500 that there are no warnings from Perl.] Signed-off-by: Sebastien Cevey <seb@cine7.net> Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb/static')
-rw-r--r--gitweb/static/gitweb.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/gitweb/static/gitweb.css b/gitweb/static/gitweb.css
index 79d7eebba..4df2d163c 100644
--- a/gitweb/static/gitweb.css
+++ b/gitweb/static/gitweb.css
@@ -295,6 +295,13 @@ td.current_head {
text-decoration: underline;
}
+td.category {
+ background-color: #d9d8d1;
+ border-top: 1px solid #000000;
+ border-left: 1px solid #000000;
+ font-weight: bold;
+}
+
table.diff_tree span.file_status.new {
color: #008000;
}