You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/11/21 22:09:59 UTC

svn commit: r597210 - in /lenya/trunk/src: modules-core/administration/usecases/siteOverview.jx webapp/lenya/resources/css/default.css

Author: andreas
Date: Wed Nov 21 13:09:56 2007
New Revision: 597210

URL: http://svn.apache.org/viewvc?rev=597210&view=rev
Log:
Fixed path for sort links on site overview, use arrow characters instead of images to avoid path problems

Modified:
    lenya/trunk/src/modules-core/administration/usecases/siteOverview.jx
    lenya/trunk/src/webapp/lenya/resources/css/default.css

Modified: lenya/trunk/src/modules-core/administration/usecases/siteOverview.jx
URL: http://svn.apache.org/viewvc/lenya/trunk/src/modules-core/administration/usecases/siteOverview.jx?rev=597210&r1=597209&r2=597210&view=diff
==============================================================================
--- lenya/trunk/src/modules-core/administration/usecases/siteOverview.jx (original)
+++ lenya/trunk/src/modules-core/administration/usecases/siteOverview.jx Wed Nov 21 13:09:56 2007
@@ -71,11 +71,11 @@
         <tr>
           <jx:forEach var="key" items="${usecase.getParameter('keys')}">
             <th style="white-space: nowrap"> <i18n:text><jx:out value="${key}"/></i18n:text> 
-              <a href="${request.getRequestURI()}?order=desc&amp;sort=${key}&amp;lenya.usecase=${usecase.getName()}&amp;lenya.continuation=${continuation.id}">
-                <i18n:text><img src="/cforms/forms/img/move_down.gif" class="lenya-no-border"/></i18n:text>
+              <a class="sortArrow" href="${request.pathInfo}?order=asc&amp;sort=${key}&amp;lenya.usecase=${usecase.getName()}&amp;lenya.continuation=${continuation.id}">
+                &#x25BC;
               </a>
-              <a href="${request.getRequestURI()}?order=asc&amp;sort=${key}&amp;lenya.usecase=${usecase.getName()}&amp;lenya.continuation=${continuation.id}">
-                <i18n:text><img src="/cforms/forms/img/move_up.gif" class="lenya-no-border"/></i18n:text>
+              <a class="sortArrow" href="${request.pathInfo}?order=desc&amp;sort=${key}&amp;lenya.usecase=${usecase.getName()}&amp;lenya.continuation=${continuation.id}">
+                &#x25B2;
               </a>
             </th>
           </jx:forEach>

Modified: lenya/trunk/src/webapp/lenya/resources/css/default.css
URL: http://svn.apache.org/viewvc/lenya/trunk/src/webapp/lenya/resources/css/default.css?rev=597210&r1=597209&r2=597210&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/resources/css/default.css (original)
+++ lenya/trunk/src/webapp/lenya/resources/css/default.css Wed Nov 21 13:09:56 2007
@@ -168,3 +168,9 @@
 .lenya-no-border{
   border: none;
 }
+
+a.sortArrow {
+  color: black;
+  text-decoration: none;
+  font-size: 8pt;
+}
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org