Index: portal/system/page/lists.php
===================================================================
--- portal/system/page/lists.php	(révision 2183)
+++ portal/system/page/lists.php	(copie de travail)
@@ -1,5 +1,5 @@
 <?php
-// $Id: developers.php,v 1.1 2007-09-13 12:00:47 mha Exp $
+// $Id$
 // Lists
 class Page_Lists extends PgPage {
    function __construct() {
@@ -12,11 +12,12 @@
        while ($row = pg_fetch_row($rs)) {
            $this->tpl->setVariable('group_name', $row[1]);
 
-           $lrs = $this->pg_query_params('SELECT name,description FROM lists WHERE grp=$1 ORDER BY name', 
+           $lrs = $this->pg_query_params('SELECT name,coalesce(shortdesc, name), description FROM lists WHERE grp=$1 ORDER BY name', 
                array($row[0]));
            while ($lrow = pg_fetch_row($lrs)) {
                $this->tpl->setVariable('list_name', $lrow[0]);
-               $this->tpl->setVariable('list_description', $lrow[1]);
+               $this->tpl->setVariable('list_shortdesc', $lrow[1]);
+               $this->tpl->setVariable('list_description', $lrow[2]);
                $this->tpl->parse('list_loop');
            }
 

Modification de propriétés sur portal/system/page/lists.php
___________________________________________________________________
Ajouté : svn:keywords
   + Id

Index: portal/template/community/lists.html
===================================================================
--- portal/template/community/lists.html	(révision 2198)
+++ portal/template/community/lists.html	(copie de travail)
@@ -35,7 +35,7 @@
 </tr>
 <!-- BEGIN list_loop -->
 <tr>
-    <td class="colFirst"><a href="http://archives.postgresql.org/{list_name}/">{list_name}</a></td>
+    <td class="colFirst"><a href="http://archives.postgresql.org/{list_name}/">{list_shortdesc}</a></td>
     <td class="colLast">{list_description}</td>
     <!-- END list_loop -->
 </table>
