Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
58 righe
2.8 KiB
58 righe
2.8 KiB
5 anni fa
|
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
|
||
|
|
||
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||
|
|
||
|
<%@ taglib uri="http://liferay.com/tld/aui" prefix="aui" %>
|
||
|
<%@ taglib uri="http://liferay.com/tld/portlet" prefix="liferay-portlet" %>
|
||
|
<%@ taglib uri="http://liferay.com/tld/security" prefix="liferay-security" %>
|
||
|
<%@ taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %>
|
||
|
<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>
|
||
|
<%@ taglib uri="http://liferay.com/tld/util" prefix="liferay-util" %>
|
||
|
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.DisplayTerms" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.SearchContainer" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.json.JSONException" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.json.JSONFactoryUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.json.JSONObject" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.language.LanguageUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.portlet.LiferayWindowState" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.CalendarFactoryUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.ClassResolverUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.FastDateFormatFactoryUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.MethodKey" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.OrderByComparator" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.OrderByComparatorFactoryUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.ParamUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.PortalClassInvoker" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.PortalClassLoaderUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.StackTraceUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.StringPool" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.StringUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.Validator" %>
|
||
|
<%@ page import="com.liferay.portal.util.PortalUtil" %>
|
||
|
|
||
|
<%@ page import="java.text.Format" %>
|
||
|
<%@ page import="java.text.SimpleDateFormat" %>
|
||
|
<%@ page import="java.util.Calendar" %>
|
||
|
<%@ page import="java.util.Date" %>
|
||
|
<%@ page import="java.util.Iterator" %>
|
||
|
|
||
|
<%@ page import="javax.portlet.PortletMode" %>
|
||
|
<%@ page import="javax.portlet.WindowState" %>
|
||
|
|
||
|
<%@ page import="it.tref.liferay.portos.audit.model.AuditEvent" %>
|
||
|
<%@ page import="it.tref.liferay.portos.audit.model.impl.AuditEventImpl" %>
|
||
|
<%@ page import="it.tref.liferay.portos.audit.service.AuditEventLocalServiceUtil" %>
|
||
|
|
||
|
<portlet:defineObjects />
|
||
|
<liferay-theme:defineObjects />
|
||
|
|
||
|
<%
|
||
|
WindowState windowState = renderRequest.getWindowState();
|
||
|
PortletMode portletMode = renderRequest.getPortletMode();
|
||
|
|
||
|
String currentURL = PortalUtil.getCurrentURL(request);
|
||
|
|
||
|
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
|
||
|
SimpleDateFormat dateTimeFormat = new SimpleDateFormat("dd-MM-yyyy hh:mm:ss");
|
||
|
%>
|