git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitweb: configurable width for the projects list Description column
@ 2007-07-05  0:36 Michael Hendricks
  2007-07-11 18:28 ` Jakub Narebski
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Hendricks @ 2007-07-05  0:36 UTC (permalink / raw)
  To: git; +Cc: Michael Hendricks

This allows gitweb users to set $projects_list_description_width
in their gitweb.conf to determine how many characters of a project
description are displayed before being truncated with an ellipsis.

Signed-off-by: Michael Hendricks <michael@ndrix.org>
---
 gitweb/gitweb.perl |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index dbfb044..29d058c 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -71,6 +71,9 @@ our $logo_label = "git homepage";
 # source of projects list
 our $projects_list = "++GITWEB_LIST++";
 
+# the width (in characters) of the projects list "Description" column
+our $projects_list_description_width = 25;
+
 # default order of projects list
 # valid values are none, project, descr, owner, and age
 our $default_projects_order = "project";
@@ -3163,7 +3166,7 @@ sub git_project_list_body {
 		if (!defined $pr->{'descr'}) {
 			my $descr = git_get_project_description($pr->{'path'}) || "";
 			$pr->{'descr_long'} = to_utf8($descr);
-			$pr->{'descr'} = chop_str($descr, 25, 5);
+			$pr->{'descr'} = chop_str($descr, $projects_list_description_width, 5);
 		}
 		if (!defined $pr->{'owner'}) {
 			$pr->{'owner'} = get_file_owner("$projectroot/$pr->{'path'}") || "";
-- 
1.5.3.rc0.14.gebe8f

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] gitweb: configurable width for the projects list Description column
  2007-07-05  0:36 [PATCH] gitweb: configurable width for the projects list Description column Michael Hendricks
@ 2007-07-11 18:28 ` Jakub Narebski
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Narebski @ 2007-07-11 18:28 UTC (permalink / raw)
  To: git

Michael Hendricks wrote:

> This allows gitweb users to set $projects_list_description_width
> in their gitweb.conf to determine how many characters of a project
> description are displayed before being truncated with an ellipsis.

Ack.

-- 
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-07-11 18:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-05  0:36 [PATCH] gitweb: configurable width for the projects list Description column Michael Hendricks
2007-07-11 18:28 ` Jakub Narebski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).