svn commit: r431997 - /incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r431997 - /incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp

sichen
Author: sichen
Date: Wed Aug 16 12:24:36 2006
New Revision: 431997

URL: http://svn.apache.org/viewvc?rev=431997&view=rev
Log:
Joblist in webtools now has a link back to the service reference for the services

Modified:
    incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp

Modified: incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp?rev=431997&r1=431996&r2=431997&view=diff
==============================================================================
--- incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp (original)
+++ incubator/ofbiz/trunk/framework/webtools/webapp/webtools/service/jobs.jsp Wed Aug 16 12:24:36 2006
@@ -55,13 +55,14 @@
       if (endTime == null) {
           endTime = cancelTime;
       }
+      String serviceName = job.getString("serviceName");
   %>
   <tr>
     <td><a href="#" class="buttontext"><%=UtilFormatOut.checkNull(job.getString("jobName"),"&nbsp;")%></a></td>
     <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("poolId"), "&nbsp;")%></div></td>
     <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("runTime"),"&nbsp;")%></div></td>
     <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("startDateTime"),"&nbsp;")%></div></td>
-    <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("serviceName"),"&nbsp;")%></div></td>
+    <td><div class="tabletext"><a href="<ofbiz:url>/availableServices?sel_service_name=<%=serviceName%></ofbiz:url>" class="buttontext"><%=UtilFormatOut.checkNull(serviceName,"&nbsp;")%></a></div></td>
     <td>
       <div class="tabletext">
         <%if (endTime != null && cancelTime != null && endTime.equals(cancelTime)) {%>
@@ -90,4 +91,4 @@
 <%}else{%>
   <hr>
   <div>You do not have permission to use this page.</div>
-<%}%>
\ No newline at end of file
+<%}%>