كتب صحيح البخاري - مكتبة المعرفة

كتب الحديث

حصل خطأ عند معالجة القالب.
Denied resolving class org.apache.catalina.core.ApplicationHttpRequest by org.apache
1#set($service = $serviceLocator.findService("com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService")) 
2#set($gid = $getterUtil.getLong($request.get("theme-display").get("scope-group-id"))) 
3#set($fid = $getterUtil.getLong($folderid.getData())) 
4 
5#set($files = $service.getFileEntries($gid, $fid, -1, -1, null)) 
6<h2> 
7$name.getData() </h2> 
8<br/> 
9<table style="width:90%; text-align: right; border-style: solid; 
10    border-width: 1px;"> 
11 <tbody> 
12<tr> <th style="width:80%;  text-align: center; border-style: solid; 
13    border-width: 1px;"> الكتب</th> <th  style=" padding-right: 5px;width:20%; text-align: right; border-style: solid; 
14    border-width: 1px;"> عدد مرات التنزيل</th>  
15 </tr>  
16#foreach($doc in $files) 
17 
18  #set($uet = $httpUtil.encodeURL($htmlUtil.unescape($doc.getTitle()))) 
19 
20 <tr> 
21<td style="width:80%;  text-align: center; border-style: solid; 
22    border-width: 1px;"> <a href="/documents/$gid/$fid/$uet"> $doc.getTitle() </a> </td> <td style=" padding-right: 5px;width:20%; text-align: right; border-style: solid; 
23    border-width: 1px;">$doc.getReadCount()</td>  
24 
25#end 
26</tbody></table>