r147 - in trunk/chorem-webmotion/src/main: java/org/chorem/webmotion/actions webapp/WEB-INF/jsp
Author: ymartel Date: 2012-05-11 17:14:32 +0200 (Fri, 11 May 2012) New Revision: 147 Url: http://chorem.org/repositories/revision/chorem/147 Log: show empty asked extension in search page Modified: trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/GenericAction.java trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/decorator.jsp Modified: trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/GenericAction.java =================================================================== --- trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/GenericAction.java 2012-05-10 16:03:28 UTC (rev 146) +++ trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/GenericAction.java 2012-05-11 15:14:32 UTC (rev 147) @@ -256,6 +256,7 @@ LinkedHashMultimap<String, Wikitty> map = LinkedHashMultimap.create(); for (WikittyQueryResult<Wikitty> result : results) { String ext = result.getQueryName(); + map.put(ext, null); for (Wikitty w : result) { map.put(ext, w); } Modified: trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/decorator.jsp =================================================================== --- trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/decorator.jsp 2012-05-10 16:03:28 UTC (rev 146) +++ trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/decorator.jsp 2012-05-11 15:14:32 UTC (rev 147) @@ -44,7 +44,7 @@ <ul class="nav"> <li class="dropdown nav-group"> - <a href="<c:url value="/wikitty/search?extension=Company&extension=Person&extension=Contact"/>">Contact</a> + <a href="<c:url value="/wikitty/search?extension=Company&extension=Person&extension=Employee&extension=Touch"/>">Contact</a> <a href="#" class="dropdown-toggle" data-toggle="dropdown">
participants (1)
-
ymartel@users.chorem.org