List of usage examples for com.liferay.portal.kernel.util FastDateFormatFactoryUtil getDateTime
public static Format getDateTime(Locale locale, TimeZone timeZone)
From source file:com.liferay.calendar.notification.impl.NotificationTemplateContextFactory.java
License:Open Source License
public static NotificationTemplateContext getInstance(NotificationType notificationType, NotificationTemplateType notificationTemplateType, CalendarBooking calendarBooking, User user) throws Exception { CalendarBooking parentCalendarBooking = calendarBooking.getParentCalendarBooking(); Calendar calendar = parentCalendarBooking.getCalendar(); NotificationTemplateContext notificationTemplateContext = new NotificationTemplateContext(); CalendarNotificationTemplate calendarNotificationTemplate = CalendarNotificationTemplateLocalServiceUtil .fetchCalendarNotificationTemplate(calendar.getCalendarId(), notificationType, notificationTemplateType); notificationTemplateContext.setCalendarNotificationTemplate(calendarNotificationTemplate); notificationTemplateContext.setCompanyId(calendarBooking.getCompanyId()); notificationTemplateContext.setGroupId(calendarBooking.getGroupId()); notificationTemplateContext.setCalendarId(calendar.getCalendarId()); notificationTemplateContext.setNotificationTemplateType(notificationTemplateType); notificationTemplateContext.setNotificationType(notificationType); // Attributes Map<String, Serializable> attributes = new HashMap<>(); TimeZone userTimezone = user.getTimeZone(); Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(user.getLocale(), CalendarUtil.getCalendarBookingDisplayTimeZone(calendarBooking, userTimezone)); String userTimezoneDisplayName = userTimezone.getDisplayName(false, TimeZone.SHORT, user.getLocale()); String endTime = dateFormatDateTime.format(calendarBooking.getEndTime()) + StringPool.SPACE + userTimezoneDisplayName;// w ww . ja v a 2 s .c om attributes.put("endTime", endTime); attributes.put("location", calendarBooking.getLocation()); Group group = GroupLocalServiceUtil.getGroup(user.getCompanyId(), GroupConstants.GUEST); String portalURL = _getPortalURL(group.getCompanyId(), group.getGroupId()); attributes.put("portalURL", portalURL); PortletConfig portletConfig = getPortletConfig(); ResourceBundle resourceBundle = portletConfig.getResourceBundle(user.getLocale()); attributes.put("portletName", LanguageUtil.get(resourceBundle, "javax.portlet.title.".concat(CalendarPortletKeys.CALENDAR))); String startTime = dateFormatDateTime.format(calendarBooking.getStartTime()) + StringPool.SPACE + userTimezoneDisplayName; attributes.put("startTime", startTime); attributes.put("title", calendarBooking.getTitle(user.getLocale())); String calendarBookingURL = _getCalendarBookingURL(user, calendarBooking.getCalendarBookingId()); attributes.put("url", calendarBookingURL); notificationTemplateContext.setAttributes(attributes); return notificationTemplateContext; }
From source file:com.liferay.calendar.notification.NotificationTemplateContextFactory.java
License:Open Source License
public static NotificationTemplateContext getInstance(NotificationType notificationType, NotificationTemplateType notificationTemplateType, CalendarBooking calendarBooking, User user) throws Exception { CalendarBooking parentCalendarBooking = calendarBooking.getParentCalendarBooking(); Calendar calendar = parentCalendarBooking.getCalendar(); NotificationTemplateContext notificationTemplateContext = new NotificationTemplateContext(); CalendarNotificationTemplate calendarNotificationTemplate = CalendarNotificationTemplateLocalServiceUtil .fetchCalendarNotificationTemplate(calendar.getCalendarId(), notificationType, notificationTemplateType); notificationTemplateContext.setCalendarNotificationTemplate(calendarNotificationTemplate); notificationTemplateContext.setCompanyId(calendarBooking.getCompanyId()); notificationTemplateContext.setGroupId(calendarBooking.getGroupId()); notificationTemplateContext.setCalendarId(calendar.getCalendarId()); notificationTemplateContext.setNotificationTemplateType(notificationTemplateType); notificationTemplateContext.setNotificationType(notificationType); // Attributes Map<String, Serializable> attributes = new HashMap<String, Serializable>(); TimeZone userTimezone = user.getTimeZone(); Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(user.getLocale(), userTimezone); String userTimezoneDisplayName = userTimezone.getDisplayName(false, TimeZone.SHORT, user.getLocale()); String endTime = dateFormatDateTime.format(calendarBooking.getEndTime()) + StringPool.SPACE + userTimezoneDisplayName;/*from ww w . j av a2 s.com*/ attributes.put("endTime", endTime); attributes.put("location", calendarBooking.getLocation()); Group group = user.getGroup(); String portalURL = _getPortalURL(group.getCompanyId(), group.getGroupId()); attributes.put("portalURL", portalURL); PortletConfig portletConfig = getPortletConfig(); ResourceBundle resourceBundle = portletConfig.getResourceBundle(user.getLocale()); attributes.put("portletName", LanguageUtil.get(resourceBundle, "javax.portlet.title.".concat(PortletKeys.CALENDAR))); String startTime = dateFormatDateTime.format(calendarBooking.getStartTime()) + StringPool.SPACE + userTimezoneDisplayName; attributes.put("startTime", startTime); attributes.put("title", calendarBooking.getTitle(user.getLocale())); String calendarBookingURL = _getCalendarBookingURL(user, calendarBooking.getCalendarBookingId()); attributes.put("url", calendarBookingURL); notificationTemplateContext.setAttributes(attributes); return notificationTemplateContext; }
From source file:com.liferay.calendar.util.RSSUtil.java
License:Open Source License
public static String getContent(CalendarBooking calendarBooking, String displayStyle, ThemeDisplay themeDisplay) {/*from w w w .j ava 2s. co m*/ if (displayStyle.equals(DISPLAY_STYLE_ABSTRACT)) { return StringUtil.shorten(calendarBooking.getDescription(themeDisplay.getLocale()), 200); } if (displayStyle.equals(DISPLAY_STYLE_TITLE)) { return calendarBooking.getTitle(themeDisplay.getLocale()); } String content = ContentUtil.get(PortletProps.get(PortletPropsKeys.CALENDAR_RSS_TEMPLATE)); Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(themeDisplay.getLocale(), themeDisplay.getTimeZone()); content = StringUtil.replace(content, new String[] { "[$EVENT_DESCRIPTION$]", "[$EVENT_END_DATE$]", "[$EVENT_LOCATION$]", "[$EVENT_START_DATE$]", "[$EVENT_TITLE$]" }, new String[] { calendarBooking.getDescription(themeDisplay.getLocale()), dateFormatDateTime.format(calendarBooking.getEndTime()), calendarBooking.getLocation(), dateFormatDateTime.format(calendarBooking.getStartTime()), calendarBooking.getTitle(themeDisplay.getLocale()) }); return content; }
From source file:com.liferay.portlet.calendar.service.impl.CalEventLocalServiceImpl.java
License:Open Source License
protected void remindUser(CalEvent event, User user, Calendar startDate) { int remindBy = event.getRemindBy(); if (remindBy == CalEventConstants.REMIND_BY_NONE) { return;//from w w w. j a va 2 s . c o m } try { long ownerId = event.getGroupId(); int ownerType = PortletKeys.PREFS_OWNER_TYPE_GROUP; long plid = PortletKeys.PREFS_PLID_SHARED; String portletId = PortletKeys.CALENDAR; PortletPreferences preferences = portletPreferencesLocalService.getPreferences(event.getCompanyId(), ownerId, ownerType, plid, portletId); Company company = companyPersistence.findByPrimaryKey(user.getCompanyId()); Contact contact = user.getContact(); String portletName = PortalUtil.getPortletTitle(PortletKeys.CALENDAR, user); String fromName = CalUtil.getEmailFromName(preferences, event.getCompanyId()); String fromAddress = CalUtil.getEmailFromAddress(preferences, event.getCompanyId()); String toName = user.getFullName(); String toAddress = user.getEmailAddress(); if (remindBy == CalEventConstants.REMIND_BY_SMS) { toAddress = contact.getSmsSn(); } String subject = CalUtil.getEmailEventReminderSubject(preferences); String body = CalUtil.getEmailEventReminderBody(preferences); Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(user.getLocale(), user.getTimeZone()); subject = StringUtil.replace(subject, new String[] { "[$EVENT_LOCATION$]", "[$EVENT_START_DATE$]", "[$EVENT_TITLE$]", "[$FROM_ADDRESS$]", "[$FROM_NAME$]", "[$PORTAL_URL$]", "[$PORTLET_NAME$]", "[$TO_ADDRESS$]", "[$TO_NAME$]" }, new String[] { event.getLocation(), dateFormatDateTime.format(startDate.getTime()), event.getTitle(), fromAddress, fromName, company.getPortalURL(event.getGroupId()), portletName, HtmlUtil.escape(toAddress), HtmlUtil.escape(toName), }); body = StringUtil.replace(body, new String[] { "[$EVENT_LOCATION$]", "[$EVENT_START_DATE$]", "[$EVENT_TITLE$]", "[$FROM_ADDRESS$]", "[$FROM_NAME$]", "[$PORTAL_URL$]", "[$PORTLET_NAME$]", "[$TO_ADDRESS$]", "[$TO_NAME$]" }, new String[] { event.getLocation(), dateFormatDateTime.format(startDate.getTime()), event.getTitle(), fromAddress, fromName, company.getPortalURL(event.getGroupId()), portletName, HtmlUtil.escape(toAddress), HtmlUtil.escape(toName), }); if ((remindBy == CalEventConstants.REMIND_BY_EMAIL) || (remindBy == CalEventConstants.REMIND_BY_SMS)) { InternetAddress from = new InternetAddress(fromAddress, fromName); InternetAddress to = new InternetAddress(toAddress, toName); MailMessage message = new MailMessage(from, to, subject, body, true); mailService.sendEmail(message); } else if ((remindBy == CalEventConstants.REMIND_BY_AIM) && (Validator.isNotNull(contact.getAimSn()))) { AIMConnector.send(contact.getAimSn(), body); } else if ((remindBy == CalEventConstants.REMIND_BY_ICQ) && (Validator.isNotNull(contact.getIcqSn()))) { ICQConnector.send(contact.getIcqSn(), body); } else if ((remindBy == CalEventConstants.REMIND_BY_MSN) && (Validator.isNotNull(contact.getMsnSn()))) { MSNConnector.send(contact.getMsnSn(), body); } else if ((remindBy == CalEventConstants.REMIND_BY_YM) && (Validator.isNotNull(contact.getYmSn()))) { YMConnector.send(contact.getYmSn(), body); } } catch (Exception e) { _log.error(e, e); } }
From source file:com.liferay.so.activities.hook.social.TasksActivityInterpreter.java
License:Open Source License
protected String getBody(String className, long classPK, ServiceContext serviceContext) throws Exception { StringBundler sb = new StringBundler(14); sb.append("<div class=\"activity-body-container "); TasksEntry tasksEntry = TasksEntryLocalServiceUtil.getTasksEntry(classPK); sb.append(tasksEntry.getPriorityLabel()); sb.append("\"><div class=\"activity-body\"><div class=\"title\">"); sb.append(getPageTitle(className, classPK, serviceContext)); sb.append("</div><div class=\"tasks-entry-content\">"); sb.append("<span class=\"tasks-entry-status\"><strong>"); sb.append(serviceContext.translate("assigned-to")); sb.append(": </strong>"); if (tasksEntry.getAssigneeUserId() > 0) { String assigneeDisplayURL = null; User assigneeUser = UserLocalServiceUtil.fetchUser(tasksEntry.getAssigneeUserId()); if (assigneeUser != null) { assigneeDisplayURL = assigneeUser.getDisplayURL(serviceContext.getThemeDisplay()); }/*from w w w .j a v a2s . co m*/ String assigneeUserLink = wrapLink(assigneeDisplayURL, tasksEntry.getAssigneeFullName()); sb.append(assigneeUserLink); } else { sb.append(serviceContext.translate("unassigned")); } sb.append("</span><span class=\"tasks-entry-due-date\"><strong>"); sb.append(serviceContext.translate("due-date")); sb.append(": </strong>"); if (tasksEntry.getDueDate() != null) { Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(serviceContext.getLocale(), serviceContext.getTimeZone()); sb.append(dateFormatDateTime.format(tasksEntry.getDueDate())); } else { sb.append(serviceContext.translate("none")); } sb.append("</span></div></div></div>"); return sb.toString(); }
From source file:com.liferay.trash.internal.TrashHelperImpl.java
License:Open Source License
@Override public String getNewName(ThemeDisplay themeDisplay, String className, long classPK, String oldName) throws PortalException { TrashRenderer trashRenderer = null;//from w w w. ja va 2 s .c o m if (Validator.isNotNull(className) && (classPK > 0)) { TrashHandler trashHandler = TrashHandlerRegistryUtil.getTrashHandler(className); trashRenderer = trashHandler.getTrashRenderer(classPK); } StringBundler sb = new StringBundler(3); sb.append(StringPool.OPEN_PARENTHESIS); Format format = FastDateFormatFactoryUtil.getDateTime(themeDisplay.getLocale(), themeDisplay.getTimeZone()); sb.append(StringUtil.replace(format.format(new Date()), new char[] { CharPool.SLASH, CharPool.COLON }, new char[] { CharPool.PERIOD, CharPool.PERIOD })); sb.append(StringPool.CLOSE_PARENTHESIS); if (trashRenderer != null) { return trashRenderer.getNewName(oldName, sb.toString()); } else { return _getNewName(oldName, sb.toString()); } }
From source file:org.apache.jsp.html.portlet.communities.tree_005fjs_jsp.java
License:Open Source License
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException { PageContext pageContext = null;/*from w w w . j a v a 2 s.c o m*/ HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; JspWriter _jspx_out = null; PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); // liferay-theme:defineObjects com.liferay.taglib.theme.DefineObjectsTag _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 = (com.liferay.taglib.theme.DefineObjectsTag) _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .get(com.liferay.taglib.theme.DefineObjectsTag.class); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setParent(null); int _jspx_eval_liferay_002dtheme_005fdefineObjects_005f0 = _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doStartTag(); if (_jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); com.liferay.portal.theme.ThemeDisplay themeDisplay = null; com.liferay.portal.model.Company company = null; com.liferay.portal.model.Account account = null; com.liferay.portal.model.User user = null; com.liferay.portal.model.User realUser = null; com.liferay.portal.model.Contact contact = null; com.liferay.portal.model.Layout layout = null; java.util.List layouts = null; java.lang.Long plid = null; com.liferay.portal.model.LayoutTypePortlet layoutTypePortlet = null; java.lang.Long scopeGroupId = null; com.liferay.portal.security.permission.PermissionChecker permissionChecker = null; java.util.Locale locale = null; java.util.TimeZone timeZone = null; com.liferay.portal.model.Theme theme = null; com.liferay.portal.model.ColorScheme colorScheme = null; com.liferay.portal.theme.PortletDisplay portletDisplay = null; java.lang.Long portletGroupId = null; themeDisplay = (com.liferay.portal.theme.ThemeDisplay) _jspx_page_context.findAttribute("themeDisplay"); company = (com.liferay.portal.model.Company) _jspx_page_context.findAttribute("company"); account = (com.liferay.portal.model.Account) _jspx_page_context.findAttribute("account"); user = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("user"); realUser = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("realUser"); contact = (com.liferay.portal.model.Contact) _jspx_page_context.findAttribute("contact"); layout = (com.liferay.portal.model.Layout) _jspx_page_context.findAttribute("layout"); layouts = (java.util.List) _jspx_page_context.findAttribute("layouts"); plid = (java.lang.Long) _jspx_page_context.findAttribute("plid"); layoutTypePortlet = (com.liferay.portal.model.LayoutTypePortlet) _jspx_page_context .findAttribute("layoutTypePortlet"); scopeGroupId = (java.lang.Long) _jspx_page_context.findAttribute("scopeGroupId"); permissionChecker = (com.liferay.portal.security.permission.PermissionChecker) _jspx_page_context .findAttribute("permissionChecker"); locale = (java.util.Locale) _jspx_page_context.findAttribute("locale"); timeZone = (java.util.TimeZone) _jspx_page_context.findAttribute("timeZone"); theme = (com.liferay.portal.model.Theme) _jspx_page_context.findAttribute("theme"); colorScheme = (com.liferay.portal.model.ColorScheme) _jspx_page_context.findAttribute("colorScheme"); portletDisplay = (com.liferay.portal.theme.PortletDisplay) _jspx_page_context .findAttribute("portletDisplay"); portletGroupId = (java.lang.Long) _jspx_page_context.findAttribute("portletGroupId"); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); // portlet:defineObjects com.liferay.taglib.portlet.DefineObjectsTag _jspx_th_portlet_005fdefineObjects_005f0 = (com.liferay.taglib.portlet.DefineObjectsTag) _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .get(com.liferay.taglib.portlet.DefineObjectsTag.class); _jspx_th_portlet_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_portlet_005fdefineObjects_005f0.setParent(null); int _jspx_eval_portlet_005fdefineObjects_005f0 = _jspx_th_portlet_005fdefineObjects_005f0.doStartTag(); if (_jspx_th_portlet_005fdefineObjects_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); javax.portlet.ActionRequest actionRequest = null; javax.portlet.ActionResponse actionResponse = null; javax.portlet.EventRequest eventRequest = null; javax.portlet.EventResponse eventResponse = null; javax.portlet.PortletConfig portletConfig = null; java.lang.String portletName = null; javax.portlet.PortletPreferences portletPreferences = null; java.util.Map portletPreferencesValues = null; javax.portlet.PortletSession portletSession = null; java.util.Map portletSessionScope = null; javax.portlet.RenderRequest renderRequest = null; javax.portlet.RenderResponse renderResponse = null; javax.portlet.ResourceRequest resourceRequest = null; javax.portlet.ResourceResponse resourceResponse = null; actionRequest = (javax.portlet.ActionRequest) _jspx_page_context.findAttribute("actionRequest"); actionResponse = (javax.portlet.ActionResponse) _jspx_page_context.findAttribute("actionResponse"); eventRequest = (javax.portlet.EventRequest) _jspx_page_context.findAttribute("eventRequest"); eventResponse = (javax.portlet.EventResponse) _jspx_page_context.findAttribute("eventResponse"); portletConfig = (javax.portlet.PortletConfig) _jspx_page_context.findAttribute("portletConfig"); portletName = (java.lang.String) _jspx_page_context.findAttribute("portletName"); portletPreferences = (javax.portlet.PortletPreferences) _jspx_page_context .findAttribute("portletPreferences"); portletPreferencesValues = (java.util.Map) _jspx_page_context.findAttribute("portletPreferencesValues"); portletSession = (javax.portlet.PortletSession) _jspx_page_context.findAttribute("portletSession"); portletSessionScope = (java.util.Map) _jspx_page_context.findAttribute("portletSessionScope"); renderRequest = (javax.portlet.RenderRequest) _jspx_page_context.findAttribute("renderRequest"); renderResponse = (javax.portlet.RenderResponse) _jspx_page_context.findAttribute("renderResponse"); resourceRequest = (javax.portlet.ResourceRequest) _jspx_page_context.findAttribute("resourceRequest"); resourceResponse = (javax.portlet.ResourceResponse) _jspx_page_context .findAttribute("resourceResponse"); out.write('\n'); out.write('\n'); WindowState windowState = null; PortletMode portletMode = null; PortletURL currentURLObj = null; if (renderRequest != null) { windowState = renderRequest.getWindowState(); portletMode = renderRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(renderRequest, renderResponse); } else if (resourceRequest != null) { windowState = resourceRequest.getWindowState(); portletMode = resourceRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(resourceRequest, resourceResponse); } String currentURL = currentURLObj.toString(); //String currentURL = PortalUtil.getCurrentURL(request); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); Format dateFormatDate = FastDateFormatFactoryUtil.getDate(locale, timeZone); Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone); out.write('\n'); out.write('\n'); long groupId = ((Long) request.getAttribute("edit_pages.jsp-groupId")).longValue(); long selPlid = ((Long) request.getAttribute("edit_pages.jsp-selPlid")).longValue(); boolean privateLayout = ((Boolean) request.getAttribute("edit_pages.jsp-privateLayout")).booleanValue(); String rootNodeName = (String) request.getAttribute("edit_pages.jsp-rootNodeName"); boolean selectableTree = ParamUtil.getBoolean(request, "selectableTree"); String treeId = ParamUtil.getString(request, "treeId"); PortletURL portletURL = (PortletURL) request.getAttribute("edit_pages.jsp-portletURL"); out.write("\n"); out.write("\n"); out.write("<div class=\"lfr-tree-loading\" id=\""); if (_jspx_meth_portlet_005fnamespace_005f0(_jspx_page_context)) return; out.write("treeLoading\">\n"); out.write("\t<span class=\"aui-icon aui-icon-loading lfr-tree-loading-icon\"></span>\n"); out.write("</div>\n"); out.write("\n"); out.write("<div class=\"lfr-tree\" id=\""); if (_jspx_meth_portlet_005fnamespace_005f1(_jspx_page_context)) return; out.print(HtmlUtil.escape(treeId)); out.write("Output\"></div>\n"); out.write("\n"); // aui:script com.liferay.taglib.aui.ScriptTag _jspx_th_aui_005fscript_005f0 = (com.liferay.taglib.aui.ScriptTag) _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse .get(com.liferay.taglib.aui.ScriptTag.class); _jspx_th_aui_005fscript_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fscript_005f0.setParent(null); // /html/portlet/communities/tree_js.jsp(38,0) name = use type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fscript_005f0.setUse("aui-io-request,aui-tree-view,dataschema-xml,datatype-xml"); int _jspx_eval_aui_005fscript_005f0 = _jspx_th_aui_005fscript_005f0.doStartTag(); if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005fscript_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005fscript_005f0.doInitBody(); } do { out.write("\n"); out.write("\tvar TreeUtil = {\n"); out.write("\t\tDEFAULT_PARENT_LAYOUT_ID: "); out.print(LayoutConstants.DEFAULT_PARENT_LAYOUT_ID); out.write(",\n"); out.write("\t\tOPEN_NODES: '"); out.print(SessionTreeJSClicks.getOpenNodes(request, treeId)); out.write("'.split(','),\n"); out.write("\t\tPREFIX_LAYOUT_ID: '_layoutId_',\n"); out.write("\t\tPREFIX_PLID: '_plid_',\n"); out.write("\t\tSELECTED_NODES: '"); out.print(SessionTreeJSClicks.getOpenNodes(request, treeId + "SelectedNode")); out.write("'.split(','),\n"); out.write("\n"); out.write("\t\tafterRenderTree: function(event) {\n"); out.write("\t\t\tvar treeInstance = event.target;\n"); out.write("\n"); out.write("\t\t\tvar rootNode = treeInstance.item(0);\n"); out.write("\t\t\tvar loadingEl = A.one('#"); if (_jspx_meth_portlet_005fnamespace_005f2(_jspx_th_aui_005fscript_005f0, _jspx_page_context)) return; out.write("treeLoading');\n"); out.write("\n"); out.write("\t\t\tloadingEl.hide();\n"); out.write("\n"); out.write("\t\t\tTreeUtil.restoreNodeState(rootNode);\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tcreateId: function(layoutId, plid) {\n"); out.write("\t\t\treturn '"); out.print(HtmlUtil.escape(treeId)); out.write("' + TreeUtil.PREFIX_LAYOUT_ID + layoutId + TreeUtil.PREFIX_PLID + plid;\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tcreateLink: function(label, plid) {\n"); out.write("\t\t\treturn '<a href=\""); out.print(portletURL + StringPool.AMPERSAND + portletDisplay.getNamespace() + "selPlid="); out.write("'+ plid +'\">'+ Liferay.Util.escapeHTML(label) +'</a>';\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\textractLayoutId: function(node) {\n"); out.write("\t\t\treturn node.get('id').match(/layoutId_(\\d+)/)[1];\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\textractPlid: function(node) {\n"); out.write("\t\t\treturn node.get('id').match(/plid_(\\d+)/)[1];\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tformatJSONResults: function(json) {\n"); out.write("\t\t\tvar output = [];\n"); out.write("\n"); out.write("\t\t\tA.each(\n"); out.write("\t\t\t\tjson,\n"); out.write("\t\t\t\tfunction(node) {\n"); out.write("\t\t\t\t\tvar nameXML = A.DataType.XML.parse(node.name);\n"); out.write("\n"); out.write("\t\t\t\t\tvar schema = {\n"); out.write("\t\t\t\t\t\tresultListLocator: 'root',\n"); out.write("\t\t\t\t\t\tresultFields: [\n"); out.write("\t\t\t\t\t\t\t{\n"); out.write("\t\t\t\t\t\t\t\tkey: 'label',\n"); out.write("\t\t\t\t\t\t\t\tlocator: 'name'\n"); out.write("\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t]\n"); out.write("\t\t\t\t\t};\n"); out.write("\n"); out.write("\t\t\t\t\tvar nodeBase = A.DataSchema.XML.apply(schema, nameXML).results[0];\n"); out.write("\n"); out.write("\t\t\t\t\tvar newNode = A.mix(\n"); out.write("\t\t\t\t\t\tnodeBase,\n"); out.write("\t\t\t\t\t\t{\n"); out.write("\t\t\t\t\t\t\tafter: {\n"); out.write("\t\t\t\t\t\t\t\tcheck: function(event) {\n"); out.write("\t\t\t\t\t\t\t\t\tvar plid = TreeUtil.extractPlid(event.target);\n"); out.write("\n"); out.write("\t\t\t\t\t\t\t\t\tTreeUtil.updateSessionTreeClick(plid, true, '"); out.print(HtmlUtil.escape(treeId)); out.write("SelectedNode');\n"); out.write("\t\t\t\t\t\t\t\t},\n"); out.write("\t\t\t\t\t\t\t\tuncheck: function(event) {\n"); out.write("\t\t\t\t\t\t\t\t\tvar plid = TreeUtil.extractPlid(event.target);\n"); out.write("\n"); out.write("\t\t\t\t\t\t\t\t\tTreeUtil.updateSessionTreeClick(plid, false, '"); out.print(HtmlUtil.escape(treeId)); out.write("SelectedNode');\n"); out.write("\t\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t\t},\n"); out.write("\t\t\t\t\t\t\talwaysShowHitArea: node.hasChildren,\n"); out.write("\t\t\t\t\t\t\tid: TreeUtil.createId(node.layoutId, node.plid),\n"); out.write("\t\t\t\t\t\t\ttype: '"); out.print(selectableTree ? "task" : "io"); out.write("'\n"); out.write("\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t);\n"); out.write("\n"); out.write("\t\t\t\t\tif (!"); out.print(selectableTree); out.write(") {\n"); out.write("\t\t\t\t\t\tnewNode.label = TreeUtil.createLink(newNode.label, node.plid);\n"); out.write("\t\t\t\t\t}\n"); out.write("\n"); out.write("\t\t\t\t\toutput.push(newNode);\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t);\n"); out.write("\n"); out.write("\t\t\treturn output;\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\trestoreNodeState: function(node) {\n"); out.write("\t\t\tvar instance = this;\n"); out.write("\n"); out.write("\t\t\tvar id = node.get('id');\n"); out.write("\t\t\tvar plid = TreeUtil.extractPlid(node);\n"); out.write("\n"); out.write("\t\t\tif (plid == '"); out.print(selPlid); out.write("') {\n"); out.write("\t\t\t\tnode.select();\n"); out.write("\t\t\t}\n"); out.write("\n"); out.write("\t\t\tif (A.Array.indexOf(TreeUtil.OPEN_NODES, id) > -1) {\n"); out.write("\t\t\t\tnode.expand();\n"); out.write("\t\t\t}\n"); out.write("\n"); out.write("\t\t\tif (A.Array.indexOf(TreeUtil.SELECTED_NODES, plid) > -1) {\n"); out.write("\t\t\t\tif (node.check) {\n"); out.write("\t\t\t\t\tnode.check();\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t}\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tupdateLayout: function(data) {\n"); out.write( "\t\t\tvar updateURL = themeDisplay.getPathMain() + '/layout_management/update_page';\n"); out.write("\n"); out.write("\t\t\tA.io.request(\n"); out.write("\t\t\t\tupdateURL,\n"); out.write("\t\t\t\t{\n"); out.write("\t\t\t\t\tdata: data\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t);\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tupdateLayoutParent: function(dragPlid, dropPlid) {\n"); out.write("\t\t\tTreeUtil.updateLayout(\n"); out.write("\t\t\t\t{\n"); out.write("\t\t\t\t\tcmd: 'parent_layout_id',\n"); out.write("\t\t\t\t\tparentPlid: dropPlid,\n"); out.write("\t\t\t\t\tplid: dragPlid\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t);\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tupdateLayoutPriority: function(dragPlid, index) {\n"); out.write("\t\t\tTreeUtil.updateLayout(\n"); out.write("\t\t\t\t{\n"); out.write("\t\t\t\t\tcmd: 'priority',\n"); out.write("\t\t\t\t\tplid: dragPlid,\n"); out.write("\t\t\t\t\tpriority: index\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t);\n"); out.write("\t\t},\n"); out.write("\n"); out.write("\t\tupdateSessionTreeClick: function(id, open, treeId) {\n"); out.write( "\t\t\tvar sessionClickURL = themeDisplay.getPathMain() + '/portal/session_tree_js_click';\n"); out.write("\n"); out.write("\t\t\tvar data = {\n"); out.write("\t\t\t\tnodeId: id,\n"); out.write("\t\t\t\topenNode: open || false,\n"); out.write("\t\t\t\ttreeId: treeId\n"); out.write("\t\t\t};\n"); out.write("\n"); out.write("\t\t\tA.io.request(\n"); out.write("\t\t\t\tsessionClickURL,\n"); out.write("\t\t\t\t{\n"); out.write("\t\t\t\t\tdata: data\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t);\n"); out.write("\t\t}\n"); out.write("\t};\n"); out.write("\n"); out.write( "\tvar getLayoutsURL = themeDisplay.getPathMain() + '/layout_management/get_layouts';\n"); out.write("\tvar rootId = TreeUtil.createId(TreeUtil.DEFAULT_PARENT_LAYOUT_ID, 0);\n"); out.write("\tvar rootLabel = '"); out.print(HtmlUtil.escape(rootNodeName)); out.write("';\n"); out.write("\tvar treeElId = '"); if (_jspx_meth_portlet_005fnamespace_005f3(_jspx_th_aui_005fscript_005f0, _jspx_page_context)) return; out.print(HtmlUtil.escape(treeId)); out.write("Output';\n"); out.write("\n"); out.write("\tvar RootNodeType = A.TreeNodeTask;\n"); out.write("\tvar TreeViewType = A.TreeView;\n"); out.write("\n"); out.write("\tif (!"); out.print(selectableTree); out.write(") {\n"); out.write("\t\tRootNodeType = A.TreeNodeIO;\n"); out.write("\t\tTreeViewType = A.TreeViewDD;\n"); out.write("\n"); out.write( "\t\trootLabel = TreeUtil.createLink(rootLabel, TreeUtil.DEFAULT_PARENT_LAYOUT_ID);\n"); out.write("\t}\n"); out.write("\n"); out.write("\tvar rootNode = new RootNodeType(\n"); out.write("\t\t{\n"); out.write("\t\t\talwaysShowHitArea: true,\n"); out.write("\t\t\tdraggable: false,\n"); out.write("\t\t\tid: rootId,\n"); out.write("\t\t\tlabel: rootLabel,\n"); out.write("\t\t\tleaf: false\n"); out.write("\t\t}\n"); out.write("\t);\n"); out.write("\n"); out.write("\trootNode.get('contentBox').addClass('lfr-root-node');\n"); out.write("\n"); out.write("\tvar treeview = new TreeViewType(\n"); out.write("\t\t{\n"); out.write("\t\t\tafter: {\n"); out.write("\t\t\t\tcollapse: function(event) {\n"); out.write("\t\t\t\t\tvar id = event.tree.node.get('id');\n"); out.write("\n"); out.write("\t\t\t\t\tTreeUtil.updateSessionTreeClick(id, false, '"); out.print(HtmlUtil.escape(treeId)); out.write("');\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\texpand: function(event) {\n"); out.write("\t\t\t\t\tvar id = event.tree.node.get('id');\n"); out.write("\n"); out.write("\t\t\t\t\tTreeUtil.updateSessionTreeClick(id, true, '"); out.print(HtmlUtil.escape(treeId)); out.write("');\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\trender: TreeUtil.afterRenderTree\n"); out.write("\t\t\t},\n"); out.write("\t\t\tboundingBox: '#' + treeElId,\n"); out.write("\t\t\tchildren: [rootNode],\n"); out.write("\t\t\tio: {\n"); out.write("\t\t\t\tcfg: {\n"); out.write("\t\t\t\t\tdata: function(node) {\n"); out.write("\t\t\t\t\t\tvar parentLayoutId = TreeUtil.extractLayoutId(node);\n"); out.write("\n"); out.write("\t\t\t\t\t\treturn {\n"); out.write("\t\t\t\t\t\t\tgroupId: "); out.print(groupId); out.write(",\n"); out.write("\t\t\t\t\t\t\tprivateLayout: "); out.print(privateLayout); out.write(",\n"); out.write("\t\t\t\t\t\t\tparentLayoutId: parentLayoutId\n"); out.write("\t\t\t\t\t\t};\n"); out.write("\t\t\t\t\t},\n"); out.write("\t\t\t\t\tmethod: AUI.defaults.io.method\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\tformatter: TreeUtil.formatJSONResults,\n"); out.write("\t\t\t\turl: getLayoutsURL\n"); out.write("\t\t\t},\n"); out.write("\t\t\ton: {\n"); out.write("\t\t\t\tappend: function(event) {\n"); out.write("\t\t\t\t\tTreeUtil.restoreNodeState(event.tree.node);\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\tdrop: function(event) {\n"); out.write("\t\t\t\t\tvar tree = event.tree;\n"); out.write("\n"); out.write("\t\t\t\t\tvar index = tree.dragNode.get('parentNode').indexOf(tree.dragNode);\n"); out.write("\n"); out.write("\t\t\t\t\tTreeUtil.updateLayoutPriority(\n"); out.write("\t\t\t\t\t\tTreeUtil.extractPlid(tree.dragNode),\n"); out.write("\t\t\t\t\t\tindex\n"); out.write("\t\t\t\t\t);\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\tdropAppend: function(event) {\n"); out.write("\t\t\t\t\tvar tree = event.tree;\n"); out.write("\n"); out.write("\t\t\t\t\tTreeUtil.updateLayoutParent(\n"); out.write("\t\t\t\t\t\tTreeUtil.extractPlid(tree.dragNode),\n"); out.write("\t\t\t\t\t\tTreeUtil.extractPlid(tree.dropNode)\n"); out.write("\t\t\t\t\t);\n"); out.write("\t\t\t\t},\n"); out.write("\t\t\t\tdropInsert: function(event) {\n"); out.write("\t\t\t\t\tvar tree = event.tree;\n"); out.write("\n"); out.write("\t\t\t\t\tTreeUtil.updateLayoutParent(\n"); out.write("\t\t\t\t\t\tTreeUtil.extractPlid(tree.dragNode),\n"); out.write("\t\t\t\t\t\tTreeUtil.extractPlid(tree.dropNode.get('parentNode'))\n"); out.write("\t\t\t\t\t);\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t},\n"); out.write("\t\t\ttype: 'pages'\n"); out.write("\t\t}\n"); out.write("\t).render();\n"); int evalDoAfterBody = _jspx_th_aui_005fscript_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005fscript_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse.reuse(_jspx_th_aui_005fscript_005f0); return; } _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse.reuse(_jspx_th_aui_005fscript_005f0); } catch (Throwable t) { if (!(t instanceof SkipPageException)) { out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { out.clearBuffer(); } catch (java.io.IOException e) { } if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } }
From source file:org.apache.jsp.html.portlet.enterprise_005fadmin.edit_005frole_005ftabs_jsp.java
License:Open Source License
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException { PageContext pageContext = null;//from ww w .j a v a2s. c o m HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; JspWriter _jspx_out = null; PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); // liferay-theme:defineObjects com.liferay.taglib.theme.DefineObjectsTag _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 = (com.liferay.taglib.theme.DefineObjectsTag) _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .get(com.liferay.taglib.theme.DefineObjectsTag.class); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setParent(null); int _jspx_eval_liferay_002dtheme_005fdefineObjects_005f0 = _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doStartTag(); if (_jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); com.liferay.portal.theme.ThemeDisplay themeDisplay = null; com.liferay.portal.model.Company company = null; com.liferay.portal.model.Account account = null; com.liferay.portal.model.User user = null; com.liferay.portal.model.User realUser = null; com.liferay.portal.model.Contact contact = null; com.liferay.portal.model.Layout layout = null; java.util.List layouts = null; java.lang.Long plid = null; com.liferay.portal.model.LayoutTypePortlet layoutTypePortlet = null; java.lang.Long scopeGroupId = null; com.liferay.portal.security.permission.PermissionChecker permissionChecker = null; java.util.Locale locale = null; java.util.TimeZone timeZone = null; com.liferay.portal.model.Theme theme = null; com.liferay.portal.model.ColorScheme colorScheme = null; com.liferay.portal.theme.PortletDisplay portletDisplay = null; java.lang.Long portletGroupId = null; themeDisplay = (com.liferay.portal.theme.ThemeDisplay) _jspx_page_context.findAttribute("themeDisplay"); company = (com.liferay.portal.model.Company) _jspx_page_context.findAttribute("company"); account = (com.liferay.portal.model.Account) _jspx_page_context.findAttribute("account"); user = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("user"); realUser = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("realUser"); contact = (com.liferay.portal.model.Contact) _jspx_page_context.findAttribute("contact"); layout = (com.liferay.portal.model.Layout) _jspx_page_context.findAttribute("layout"); layouts = (java.util.List) _jspx_page_context.findAttribute("layouts"); plid = (java.lang.Long) _jspx_page_context.findAttribute("plid"); layoutTypePortlet = (com.liferay.portal.model.LayoutTypePortlet) _jspx_page_context .findAttribute("layoutTypePortlet"); scopeGroupId = (java.lang.Long) _jspx_page_context.findAttribute("scopeGroupId"); permissionChecker = (com.liferay.portal.security.permission.PermissionChecker) _jspx_page_context .findAttribute("permissionChecker"); locale = (java.util.Locale) _jspx_page_context.findAttribute("locale"); timeZone = (java.util.TimeZone) _jspx_page_context.findAttribute("timeZone"); theme = (com.liferay.portal.model.Theme) _jspx_page_context.findAttribute("theme"); colorScheme = (com.liferay.portal.model.ColorScheme) _jspx_page_context.findAttribute("colorScheme"); portletDisplay = (com.liferay.portal.theme.PortletDisplay) _jspx_page_context .findAttribute("portletDisplay"); portletGroupId = (java.lang.Long) _jspx_page_context.findAttribute("portletGroupId"); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); // portlet:defineObjects com.liferay.taglib.portlet.DefineObjectsTag _jspx_th_portlet_005fdefineObjects_005f0 = (com.liferay.taglib.portlet.DefineObjectsTag) _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .get(com.liferay.taglib.portlet.DefineObjectsTag.class); _jspx_th_portlet_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_portlet_005fdefineObjects_005f0.setParent(null); int _jspx_eval_portlet_005fdefineObjects_005f0 = _jspx_th_portlet_005fdefineObjects_005f0.doStartTag(); if (_jspx_th_portlet_005fdefineObjects_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); javax.portlet.ActionRequest actionRequest = null; javax.portlet.ActionResponse actionResponse = null; javax.portlet.EventRequest eventRequest = null; javax.portlet.EventResponse eventResponse = null; javax.portlet.PortletConfig portletConfig = null; java.lang.String portletName = null; javax.portlet.PortletPreferences portletPreferences = null; java.util.Map portletPreferencesValues = null; javax.portlet.PortletSession portletSession = null; java.util.Map portletSessionScope = null; javax.portlet.RenderRequest renderRequest = null; javax.portlet.RenderResponse renderResponse = null; javax.portlet.ResourceRequest resourceRequest = null; javax.portlet.ResourceResponse resourceResponse = null; actionRequest = (javax.portlet.ActionRequest) _jspx_page_context.findAttribute("actionRequest"); actionResponse = (javax.portlet.ActionResponse) _jspx_page_context.findAttribute("actionResponse"); eventRequest = (javax.portlet.EventRequest) _jspx_page_context.findAttribute("eventRequest"); eventResponse = (javax.portlet.EventResponse) _jspx_page_context.findAttribute("eventResponse"); portletConfig = (javax.portlet.PortletConfig) _jspx_page_context.findAttribute("portletConfig"); portletName = (java.lang.String) _jspx_page_context.findAttribute("portletName"); portletPreferences = (javax.portlet.PortletPreferences) _jspx_page_context .findAttribute("portletPreferences"); portletPreferencesValues = (java.util.Map) _jspx_page_context.findAttribute("portletPreferencesValues"); portletSession = (javax.portlet.PortletSession) _jspx_page_context.findAttribute("portletSession"); portletSessionScope = (java.util.Map) _jspx_page_context.findAttribute("portletSessionScope"); renderRequest = (javax.portlet.RenderRequest) _jspx_page_context.findAttribute("renderRequest"); renderResponse = (javax.portlet.RenderResponse) _jspx_page_context.findAttribute("renderResponse"); resourceRequest = (javax.portlet.ResourceRequest) _jspx_page_context.findAttribute("resourceRequest"); resourceResponse = (javax.portlet.ResourceResponse) _jspx_page_context .findAttribute("resourceResponse"); out.write('\n'); out.write('\n'); WindowState windowState = null; PortletMode portletMode = null; PortletURL currentURLObj = null; if (renderRequest != null) { windowState = renderRequest.getWindowState(); portletMode = renderRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(renderRequest, renderResponse); } else if (resourceRequest != null) { windowState = resourceRequest.getWindowState(); portletMode = resourceRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(resourceRequest, resourceResponse); } String currentURL = currentURLObj.toString(); //String currentURL = PortalUtil.getCurrentURL(request); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); String tabs1 = ParamUtil.getString(request, "tabs1"); boolean showTabs1 = false; boolean showActiveUserSelect = true; if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USERS)) { tabs1 = "users"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ORGANIZATIONS)) { if (!tabs1.equals("users")) { tabs1 = "organizations"; } } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USER_GROUPS) && !tabs1.equals("users")) { tabs1 = "user-groups"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ROLES) && !tabs1.equals("users")) { tabs1 = "roles"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PASSWORD_POLICIES)) { tabs1 = "password-policies"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_SETTINGS)) { tabs1 = "settings"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_MONITORING)) { tabs1 = "monitoring"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PLUGINS)) { tabs1 = "plugins"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN)) { showTabs1 = true; } else { showActiveUserSelect = false; if (tabs1.equals("roles") || tabs1.equals("password-policies") || tabs1.equals("settings") || tabs1.equals("monitoring") || tabs1.equals("plugins")) { tabs1 = "users"; } } if (Validator.isNull(tabs1)) { tabs1 = "users"; } boolean filterManageableGroups = true; boolean filterManageableOrganizations = true; boolean filterManageableRoles = true; boolean filterManageableUserGroupRoles = true; boolean filterManageableUserGroups = true; if (portletName.equals(PortletKeys.MY_ACCOUNT)) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableRoles = false; filterManageableUserGroupRoles = false; filterManageableUserGroups = false; } else if (permissionChecker.isCompanyAdmin()) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableUserGroups = false; } boolean includeSystemPortlets = true; int maxNumberOfRolesChecked = 500; Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); String cmd = ParamUtil.getString(request, Constants.CMD); tabs1 = ParamUtil.getString(request, "tabs1"); String redirect = ParamUtil.getString(request, "redirect"); String backURL = ParamUtil.getString(request, "backURL", redirect); Role role = (Role) request.getAttribute(WebKeys.ROLE); String portletResource = ParamUtil.getString(request, "portletResource"); String portletResourceLabel = null; if (Validator.isNotNull(portletResource)) { Portlet portlet = PortletLocalServiceUtil.getPortletById(company.getCompanyId(), portletResource); portletResourceLabel = PortalUtil.getPortletTitle(portlet, application, locale); } // Edit PortletURL editRoleURL = renderResponse.createRenderURL(); editRoleURL.setParameter("struts_action", "/enterprise_admin/edit_role"); editRoleURL.setParameter("redirect", backURL); editRoleURL.setParameter(Constants.CMD, Constants.VIEW); editRoleURL.setParameter("roleId", String.valueOf(role.getRoleId())); // Define permissions PortletURL definePermissionsURL = renderResponse.createRenderURL(); definePermissionsURL.setParameter("struts_action", "/enterprise_admin/edit_role_permissions"); definePermissionsURL.setParameter("redirect", backURL); definePermissionsURL.setParameter(Constants.CMD, Constants.VIEW); definePermissionsURL.setParameter("roleId", String.valueOf(role.getRoleId())); // Assign members PortletURL assignMembersURL = renderResponse.createRenderURL(); assignMembersURL.setParameter("struts_action", "/enterprise_admin/edit_role_assignments"); assignMembersURL.setParameter("redirect", backURL); assignMembersURL.setParameter("roleId", String.valueOf(role.getRoleId())); int pos = 0; String tabs1Names = StringPool.BLANK; if (RolePermissionUtil.contains(permissionChecker, role.getRoleId(), ActionKeys.UPDATE)) { tabs1Names += ",edit"; request.setAttribute("liferay-ui:tabs:url" + pos++, editRoleURL.toString()); } String name = role.getName(); if (!name.equals(RoleConstants.ADMINISTRATOR) && !name.equals(RoleConstants.COMMUNITY_ADMINISTRATOR) && !name.equals(RoleConstants.COMMUNITY_OWNER) && !name.equals(RoleConstants.ORGANIZATION_ADMINISTRATOR) && !name.equals(RoleConstants.ORGANIZATION_OWNER) && !name.equals(RoleConstants.OWNER) && RolePermissionUtil.contains(permissionChecker, role.getRoleId(), ActionKeys.DEFINE_PERMISSIONS)) { tabs1Names += ",define-permissions"; request.setAttribute("liferay-ui:tabs:url" + pos++, definePermissionsURL.toString()); } boolean unassignableRole = false; if (name.equals(RoleConstants.GUEST) || name.equals(RoleConstants.OWNER) || name.equals(RoleConstants.USER)) { unassignableRole = true; } if (!unassignableRole && (role.getType() == RoleConstants.TYPE_REGULAR) && RolePermissionUtil .contains(permissionChecker, role.getRoleId(), ActionKeys.ASSIGN_MEMBERS)) { tabs1Names += ",assign-members"; request.setAttribute("liferay-ui:tabs:url" + pos++, assignMembersURL.toString()); } if (tabs1Names.startsWith(",")) { tabs1Names = tabs1Names.substring(1); } // Breadcrumbs PortalUtil.addPortletBreadcrumbEntry(request, role.getTitle(locale), null); request.setAttribute("edit_role_permissions.jsp-role", role); request.setAttribute("edit_role_permissions.jsp-portletResource", portletResource); out.write('\n'); out.write('\n'); // liferay-ui:tabs com.liferay.taglib.ui.TabsTag _jspx_th_liferay_002dui_005ftabs_005f0 = (com.liferay.taglib.ui.TabsTag) _005fjspx_005ftagPool_005fliferay_002dui_005ftabs_0026_005fnames_005fnobody .get(com.liferay.taglib.ui.TabsTag.class); _jspx_th_liferay_002dui_005ftabs_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ftabs_005f0.setParent(null); // /html/portlet/enterprise_admin/edit_role_tabs.jsp(108,0) name = names type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ftabs_005f0.setNames(tabs1Names); int _jspx_eval_liferay_002dui_005ftabs_005f0 = _jspx_th_liferay_002dui_005ftabs_005f0.doStartTag(); if (_jspx_th_liferay_002dui_005ftabs_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ftabs_0026_005fnames_005fnobody .reuse(_jspx_th_liferay_002dui_005ftabs_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ftabs_0026_005fnames_005fnobody .reuse(_jspx_th_liferay_002dui_005ftabs_005f0); } catch (Throwable t) { if (!(t instanceof SkipPageException)) { out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { out.clearBuffer(); } catch (java.io.IOException e) { } if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } }
From source file:org.apache.jsp.html.portlet.enterprise_005fadmin.user.additional_005femail_005faddresses_jsp.java
License:Open Source License
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException { PageContext pageContext = null;/*from www . j a va 2s .c om*/ HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; JspWriter _jspx_out = null; PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\r\n"); out.write("\r\n"); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); // liferay-theme:defineObjects com.liferay.taglib.theme.DefineObjectsTag _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 = (com.liferay.taglib.theme.DefineObjectsTag) _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .get(com.liferay.taglib.theme.DefineObjectsTag.class); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setParent(null); int _jspx_eval_liferay_002dtheme_005fdefineObjects_005f0 = _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doStartTag(); if (_jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); com.liferay.portal.theme.ThemeDisplay themeDisplay = null; com.liferay.portal.model.Company company = null; com.liferay.portal.model.Account account = null; com.liferay.portal.model.User user = null; com.liferay.portal.model.User realUser = null; com.liferay.portal.model.Contact contact = null; com.liferay.portal.model.Layout layout = null; java.util.List layouts = null; java.lang.Long plid = null; com.liferay.portal.model.LayoutTypePortlet layoutTypePortlet = null; java.lang.Long scopeGroupId = null; com.liferay.portal.security.permission.PermissionChecker permissionChecker = null; java.util.Locale locale = null; java.util.TimeZone timeZone = null; com.liferay.portal.model.Theme theme = null; com.liferay.portal.model.ColorScheme colorScheme = null; com.liferay.portal.theme.PortletDisplay portletDisplay = null; java.lang.Long portletGroupId = null; themeDisplay = (com.liferay.portal.theme.ThemeDisplay) _jspx_page_context.findAttribute("themeDisplay"); company = (com.liferay.portal.model.Company) _jspx_page_context.findAttribute("company"); account = (com.liferay.portal.model.Account) _jspx_page_context.findAttribute("account"); user = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("user"); realUser = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("realUser"); contact = (com.liferay.portal.model.Contact) _jspx_page_context.findAttribute("contact"); layout = (com.liferay.portal.model.Layout) _jspx_page_context.findAttribute("layout"); layouts = (java.util.List) _jspx_page_context.findAttribute("layouts"); plid = (java.lang.Long) _jspx_page_context.findAttribute("plid"); layoutTypePortlet = (com.liferay.portal.model.LayoutTypePortlet) _jspx_page_context .findAttribute("layoutTypePortlet"); scopeGroupId = (java.lang.Long) _jspx_page_context.findAttribute("scopeGroupId"); permissionChecker = (com.liferay.portal.security.permission.PermissionChecker) _jspx_page_context .findAttribute("permissionChecker"); locale = (java.util.Locale) _jspx_page_context.findAttribute("locale"); timeZone = (java.util.TimeZone) _jspx_page_context.findAttribute("timeZone"); theme = (com.liferay.portal.model.Theme) _jspx_page_context.findAttribute("theme"); colorScheme = (com.liferay.portal.model.ColorScheme) _jspx_page_context.findAttribute("colorScheme"); portletDisplay = (com.liferay.portal.theme.PortletDisplay) _jspx_page_context .findAttribute("portletDisplay"); portletGroupId = (java.lang.Long) _jspx_page_context.findAttribute("portletGroupId"); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); // portlet:defineObjects com.liferay.taglib.portlet.DefineObjectsTag _jspx_th_portlet_005fdefineObjects_005f0 = (com.liferay.taglib.portlet.DefineObjectsTag) _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .get(com.liferay.taglib.portlet.DefineObjectsTag.class); _jspx_th_portlet_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_portlet_005fdefineObjects_005f0.setParent(null); int _jspx_eval_portlet_005fdefineObjects_005f0 = _jspx_th_portlet_005fdefineObjects_005f0.doStartTag(); if (_jspx_th_portlet_005fdefineObjects_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); javax.portlet.ActionRequest actionRequest = null; javax.portlet.ActionResponse actionResponse = null; javax.portlet.EventRequest eventRequest = null; javax.portlet.EventResponse eventResponse = null; javax.portlet.PortletConfig portletConfig = null; java.lang.String portletName = null; javax.portlet.PortletPreferences portletPreferences = null; java.util.Map portletPreferencesValues = null; javax.portlet.PortletSession portletSession = null; java.util.Map portletSessionScope = null; javax.portlet.RenderRequest renderRequest = null; javax.portlet.RenderResponse renderResponse = null; javax.portlet.ResourceRequest resourceRequest = null; javax.portlet.ResourceResponse resourceResponse = null; actionRequest = (javax.portlet.ActionRequest) _jspx_page_context.findAttribute("actionRequest"); actionResponse = (javax.portlet.ActionResponse) _jspx_page_context.findAttribute("actionResponse"); eventRequest = (javax.portlet.EventRequest) _jspx_page_context.findAttribute("eventRequest"); eventResponse = (javax.portlet.EventResponse) _jspx_page_context.findAttribute("eventResponse"); portletConfig = (javax.portlet.PortletConfig) _jspx_page_context.findAttribute("portletConfig"); portletName = (java.lang.String) _jspx_page_context.findAttribute("portletName"); portletPreferences = (javax.portlet.PortletPreferences) _jspx_page_context .findAttribute("portletPreferences"); portletPreferencesValues = (java.util.Map) _jspx_page_context.findAttribute("portletPreferencesValues"); portletSession = (javax.portlet.PortletSession) _jspx_page_context.findAttribute("portletSession"); portletSessionScope = (java.util.Map) _jspx_page_context.findAttribute("portletSessionScope"); renderRequest = (javax.portlet.RenderRequest) _jspx_page_context.findAttribute("renderRequest"); renderResponse = (javax.portlet.RenderResponse) _jspx_page_context.findAttribute("renderResponse"); resourceRequest = (javax.portlet.ResourceRequest) _jspx_page_context.findAttribute("resourceRequest"); resourceResponse = (javax.portlet.ResourceResponse) _jspx_page_context .findAttribute("resourceResponse"); out.write('\n'); out.write('\n'); WindowState windowState = null; PortletMode portletMode = null; PortletURL currentURLObj = null; if (renderRequest != null) { windowState = renderRequest.getWindowState(); portletMode = renderRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(renderRequest, renderResponse); } else if (resourceRequest != null) { windowState = resourceRequest.getWindowState(); portletMode = resourceRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(resourceRequest, resourceResponse); } String currentURL = currentURLObj.toString(); //String currentURL = PortalUtil.getCurrentURL(request); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); String tabs1 = ParamUtil.getString(request, "tabs1"); boolean showTabs1 = false; boolean showActiveUserSelect = true; if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USERS)) { tabs1 = "users"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ORGANIZATIONS)) { if (!tabs1.equals("users")) { tabs1 = "organizations"; } } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USER_GROUPS) && !tabs1.equals("users")) { tabs1 = "user-groups"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ROLES) && !tabs1.equals("users")) { tabs1 = "roles"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PASSWORD_POLICIES)) { tabs1 = "password-policies"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_SETTINGS)) { tabs1 = "settings"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_MONITORING)) { tabs1 = "monitoring"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PLUGINS)) { tabs1 = "plugins"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN)) { showTabs1 = true; } else { showActiveUserSelect = false; if (tabs1.equals("roles") || tabs1.equals("password-policies") || tabs1.equals("settings") || tabs1.equals("monitoring") || tabs1.equals("plugins")) { tabs1 = "users"; } } if (Validator.isNull(tabs1)) { tabs1 = "users"; } boolean filterManageableGroups = true; boolean filterManageableOrganizations = true; boolean filterManageableRoles = true; boolean filterManageableUserGroupRoles = true; boolean filterManageableUserGroups = true; if (portletName.equals(PortletKeys.MY_ACCOUNT)) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableRoles = false; filterManageableUserGroupRoles = false; filterManageableUserGroups = false; } else if (permissionChecker.isCompanyAdmin()) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableUserGroups = false; } boolean includeSystemPortlets = true; int maxNumberOfRolesChecked = 500; Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\r\n"); out.write("\r\n"); String className = (String) request.getAttribute("emailAddresses.className"); long classPK = (Long) request.getAttribute("emailAddresses.classPK"); List<EmailAddress> emailAddresses = Collections.EMPTY_LIST; int[] emailAddressesIndexes = null; String emailAddressesIndexesParam = ParamUtil.getString(request, "emailAddressesIndexes"); if (Validator.isNotNull(emailAddressesIndexesParam)) { emailAddresses = new ArrayList<EmailAddress>(); emailAddressesIndexes = StringUtil.split(emailAddressesIndexesParam, 0); for (int emailAddressesIndex : emailAddressesIndexes) { emailAddresses.add(new EmailAddressImpl()); } } else { if (classPK > 0) { emailAddresses = EmailAddressServiceUtil.getEmailAddresses(className, classPK); emailAddressesIndexes = new int[emailAddresses.size()]; for (int i = 0; i < emailAddresses.size(); i++) { emailAddressesIndexes[i] = i; } } if (emailAddresses.isEmpty()) { emailAddresses = new ArrayList<EmailAddress>(); emailAddresses.add(new EmailAddressImpl()); emailAddressesIndexes = new int[] { 0 }; } if (emailAddressesIndexes == null) { emailAddressesIndexes = new int[0]; } } out.write("\r\n"); out.write("\r\n"); if (_jspx_meth_liferay_002dui_005ferror_002dmarker_005f0(_jspx_page_context)) return; out.write("\r\n"); out.write("\r\n"); out.write("<h3>"); if (_jspx_meth_liferay_002dui_005fmessage_005f0(_jspx_page_context)) return; out.write("</h3>\r\n"); out.write("\r\n"); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f0 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f0.setParent(null); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(67,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f0.setException(EmailAddressException.class); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(67,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f0.setMessage("please-enter-a-valid-email-address"); int _jspx_eval_liferay_002dui_005ferror_005f0 = _jspx_th_liferay_002dui_005ferror_005f0.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f0); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f1 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f1.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f1.setParent(null); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(68,0) name = key type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f1 .setKey(NoSuchListTypeException.class.getName() + className + ListTypeConstants.EMAIL_ADDRESS); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(68,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f1.setMessage("please-select-a-type"); int _jspx_eval_liferay_002dui_005ferror_005f1 = _jspx_th_liferay_002dui_005ferror_005f1.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f1); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f1); out.write("\r\n"); out.write("\r\n"); // aui:fieldset com.liferay.taglib.aui.FieldsetTag _jspx_th_aui_005ffieldset_005f0 = (com.liferay.taglib.aui.FieldsetTag) _005fjspx_005ftagPool_005faui_005ffieldset .get(com.liferay.taglib.aui.FieldsetTag.class); _jspx_th_aui_005ffieldset_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005ffieldset_005f0.setParent(null); int _jspx_eval_aui_005ffieldset_005f0 = _jspx_th_aui_005ffieldset_005f0.doStartTag(); if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005ffieldset_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005ffieldset_005f0.doInitBody(); } do { out.write("\r\n"); out.write("\r\n"); out.write("\t"); for (int i = 0; i < emailAddressesIndexes.length; i++) { int emailAddressesIndex = emailAddressesIndexes[i]; EmailAddress emailAddress = emailAddresses.get(i); out.write("\r\n"); out.write("\r\n"); out.write("\t\t"); // aui:model-context com.liferay.taglib.aui.ModelContextTag _jspx_th_aui_005fmodel_002dcontext_005f0 = (com.liferay.taglib.aui.ModelContextTag) _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .get(com.liferay.taglib.aui.ModelContextTag.class); _jspx_th_aui_005fmodel_002dcontext_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fmodel_002dcontext_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(79,2) name = bean type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fmodel_002dcontext_005f0.setBean(emailAddress); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(79,2) name = model type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fmodel_002dcontext_005f0.setModel(EmailAddress.class); int _jspx_eval_aui_005fmodel_002dcontext_005f0 = _jspx_th_aui_005fmodel_002dcontext_005f0 .doStartTag(); if (_jspx_th_aui_005fmodel_002dcontext_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .reuse(_jspx_th_aui_005fmodel_002dcontext_005f0); return; } _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .reuse(_jspx_th_aui_005fmodel_002dcontext_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t<div class=\"lfr-form-row lfr-form-row-inline\">\r\n"); out.write("\t\t\t<div class=\"row-fields\">\r\n"); out.write("\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f0 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(83,4) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setName("emailAddressId" + emailAddressesIndex); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(83,4) name = type type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setType("hidden"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(83,4) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setValue(emailAddress.getEmailAddressId()); int _jspx_eval_aui_005finput_005f0 = _jspx_th_aui_005finput_005f0.doStartTag(); if (_jspx_th_aui_005finput_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .reuse(_jspx_th_aui_005finput_005f0); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .reuse(_jspx_th_aui_005finput_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f1 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005flabel_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f1.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f1 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(85,4) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f1.setFieldParam("emailAddressAddress" + emailAddressesIndex); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(85,4) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f1.setLabel("email-address"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(85,4) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f1.setName("address"); int _jspx_eval_aui_005finput_005f1 = _jspx_th_aui_005finput_005f1.doStartTag(); if (_jspx_th_aui_005finput_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005flabel_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f1); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005flabel_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f1); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t"); // aui:select com.liferay.taglib.aui.SelectTag _jspx_th_aui_005fselect_005f0 = (com.liferay.taglib.aui.SelectTag) _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .get(com.liferay.taglib.aui.SelectTag.class); _jspx_th_aui_005fselect_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fselect_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(87,4) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f0.setLabel("type"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(87,4) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f0.setName("emailAddressTypeId" + emailAddressesIndex); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(87,4) name = listType type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f0.setListType(className + ListTypeConstants.EMAIL_ADDRESS); int _jspx_eval_aui_005fselect_005f0 = _jspx_th_aui_005fselect_005f0.doStartTag(); if (_jspx_th_aui_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f0); return; } _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f2 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f2.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f2 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = checked type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setChecked(emailAddress.isPrimary()); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = cssClass type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setCssClass("primary-ctrl"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = id type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setId("emailAddressPrimary" + emailAddressesIndex); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = inlineLabel type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setInlineLabel("left"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setLabel("primary"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setName("emailAddressPrimary"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = type type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setType("radio"); // /html/portlet/enterprise_admin/common/additional_email_addresses.jsp(89,4) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setValue(emailAddressesIndex); int _jspx_eval_aui_005finput_005f2 = _jspx_th_aui_005finput_005f2.doStartTag(); if (_jspx_th_aui_005finput_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .reuse(_jspx_th_aui_005finput_005f2); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .reuse(_jspx_th_aui_005finput_005f2); out.write("\r\n"); out.write("\t\t\t</div>\r\n"); out.write("\t\t</div>\r\n"); out.write("\r\n"); out.write("\t"); } out.write("\r\n"); out.write("\r\n"); int evalDoAfterBody = _jspx_th_aui_005ffieldset_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005ffieldset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005ffieldset.reuse(_jspx_th_aui_005ffieldset_005f0); return; } _005fjspx_005ftagPool_005faui_005ffieldset.reuse(_jspx_th_aui_005ffieldset_005f0); out.write("\r\n"); out.write("\r\n"); if (_jspx_meth_aui_005fscript_005f0(_jspx_page_context)) return; } catch (Throwable t) { if (!(t instanceof SkipPageException)) { out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { out.clearBuffer(); } catch (java.io.IOException e) { } if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } }
From source file:org.apache.jsp.html.portlet.enterprise_005fadmin.user.addresses_jsp.java
License:Open Source License
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException { PageContext pageContext = null;/*from w w w .j av a 2 s .co m*/ HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; JspWriter _jspx_out = null; PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\r\n"); out.write("\r\n"); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); // liferay-theme:defineObjects com.liferay.taglib.theme.DefineObjectsTag _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 = (com.liferay.taglib.theme.DefineObjectsTag) _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .get(com.liferay.taglib.theme.DefineObjectsTag.class); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dtheme_005fdefineObjects_005f0.setParent(null); int _jspx_eval_liferay_002dtheme_005fdefineObjects_005f0 = _jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doStartTag(); if (_jspx_th_liferay_002dtheme_005fdefineObjects_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dtheme_005fdefineObjects_005fnobody .reuse(_jspx_th_liferay_002dtheme_005fdefineObjects_005f0); com.liferay.portal.theme.ThemeDisplay themeDisplay = null; com.liferay.portal.model.Company company = null; com.liferay.portal.model.Account account = null; com.liferay.portal.model.User user = null; com.liferay.portal.model.User realUser = null; com.liferay.portal.model.Contact contact = null; com.liferay.portal.model.Layout layout = null; java.util.List layouts = null; java.lang.Long plid = null; com.liferay.portal.model.LayoutTypePortlet layoutTypePortlet = null; java.lang.Long scopeGroupId = null; com.liferay.portal.security.permission.PermissionChecker permissionChecker = null; java.util.Locale locale = null; java.util.TimeZone timeZone = null; com.liferay.portal.model.Theme theme = null; com.liferay.portal.model.ColorScheme colorScheme = null; com.liferay.portal.theme.PortletDisplay portletDisplay = null; java.lang.Long portletGroupId = null; themeDisplay = (com.liferay.portal.theme.ThemeDisplay) _jspx_page_context.findAttribute("themeDisplay"); company = (com.liferay.portal.model.Company) _jspx_page_context.findAttribute("company"); account = (com.liferay.portal.model.Account) _jspx_page_context.findAttribute("account"); user = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("user"); realUser = (com.liferay.portal.model.User) _jspx_page_context.findAttribute("realUser"); contact = (com.liferay.portal.model.Contact) _jspx_page_context.findAttribute("contact"); layout = (com.liferay.portal.model.Layout) _jspx_page_context.findAttribute("layout"); layouts = (java.util.List) _jspx_page_context.findAttribute("layouts"); plid = (java.lang.Long) _jspx_page_context.findAttribute("plid"); layoutTypePortlet = (com.liferay.portal.model.LayoutTypePortlet) _jspx_page_context .findAttribute("layoutTypePortlet"); scopeGroupId = (java.lang.Long) _jspx_page_context.findAttribute("scopeGroupId"); permissionChecker = (com.liferay.portal.security.permission.PermissionChecker) _jspx_page_context .findAttribute("permissionChecker"); locale = (java.util.Locale) _jspx_page_context.findAttribute("locale"); timeZone = (java.util.TimeZone) _jspx_page_context.findAttribute("timeZone"); theme = (com.liferay.portal.model.Theme) _jspx_page_context.findAttribute("theme"); colorScheme = (com.liferay.portal.model.ColorScheme) _jspx_page_context.findAttribute("colorScheme"); portletDisplay = (com.liferay.portal.theme.PortletDisplay) _jspx_page_context .findAttribute("portletDisplay"); portletGroupId = (java.lang.Long) _jspx_page_context.findAttribute("portletGroupId"); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write('\n'); out.write('\n'); // portlet:defineObjects com.liferay.taglib.portlet.DefineObjectsTag _jspx_th_portlet_005fdefineObjects_005f0 = (com.liferay.taglib.portlet.DefineObjectsTag) _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .get(com.liferay.taglib.portlet.DefineObjectsTag.class); _jspx_th_portlet_005fdefineObjects_005f0.setPageContext(_jspx_page_context); _jspx_th_portlet_005fdefineObjects_005f0.setParent(null); int _jspx_eval_portlet_005fdefineObjects_005f0 = _jspx_th_portlet_005fdefineObjects_005f0.doStartTag(); if (_jspx_th_portlet_005fdefineObjects_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); return; } _005fjspx_005ftagPool_005fportlet_005fdefineObjects_005fnobody .reuse(_jspx_th_portlet_005fdefineObjects_005f0); javax.portlet.ActionRequest actionRequest = null; javax.portlet.ActionResponse actionResponse = null; javax.portlet.EventRequest eventRequest = null; javax.portlet.EventResponse eventResponse = null; javax.portlet.PortletConfig portletConfig = null; java.lang.String portletName = null; javax.portlet.PortletPreferences portletPreferences = null; java.util.Map portletPreferencesValues = null; javax.portlet.PortletSession portletSession = null; java.util.Map portletSessionScope = null; javax.portlet.RenderRequest renderRequest = null; javax.portlet.RenderResponse renderResponse = null; javax.portlet.ResourceRequest resourceRequest = null; javax.portlet.ResourceResponse resourceResponse = null; actionRequest = (javax.portlet.ActionRequest) _jspx_page_context.findAttribute("actionRequest"); actionResponse = (javax.portlet.ActionResponse) _jspx_page_context.findAttribute("actionResponse"); eventRequest = (javax.portlet.EventRequest) _jspx_page_context.findAttribute("eventRequest"); eventResponse = (javax.portlet.EventResponse) _jspx_page_context.findAttribute("eventResponse"); portletConfig = (javax.portlet.PortletConfig) _jspx_page_context.findAttribute("portletConfig"); portletName = (java.lang.String) _jspx_page_context.findAttribute("portletName"); portletPreferences = (javax.portlet.PortletPreferences) _jspx_page_context .findAttribute("portletPreferences"); portletPreferencesValues = (java.util.Map) _jspx_page_context.findAttribute("portletPreferencesValues"); portletSession = (javax.portlet.PortletSession) _jspx_page_context.findAttribute("portletSession"); portletSessionScope = (java.util.Map) _jspx_page_context.findAttribute("portletSessionScope"); renderRequest = (javax.portlet.RenderRequest) _jspx_page_context.findAttribute("renderRequest"); renderResponse = (javax.portlet.RenderResponse) _jspx_page_context.findAttribute("renderResponse"); resourceRequest = (javax.portlet.ResourceRequest) _jspx_page_context.findAttribute("resourceRequest"); resourceResponse = (javax.portlet.ResourceResponse) _jspx_page_context .findAttribute("resourceResponse"); out.write('\n'); out.write('\n'); WindowState windowState = null; PortletMode portletMode = null; PortletURL currentURLObj = null; if (renderRequest != null) { windowState = renderRequest.getWindowState(); portletMode = renderRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(renderRequest, renderResponse); } else if (resourceRequest != null) { windowState = resourceRequest.getWindowState(); portletMode = resourceRequest.getPortletMode(); currentURLObj = PortletURLUtil.getCurrent(resourceRequest, resourceResponse); } String currentURL = currentURLObj.toString(); //String currentURL = PortalUtil.getCurrentURL(request); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); String tabs1 = ParamUtil.getString(request, "tabs1"); boolean showTabs1 = false; boolean showActiveUserSelect = true; if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USERS)) { tabs1 = "users"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ORGANIZATIONS)) { if (!tabs1.equals("users")) { tabs1 = "organizations"; } } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_USER_GROUPS) && !tabs1.equals("users")) { tabs1 = "user-groups"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_ROLES) && !tabs1.equals("users")) { tabs1 = "roles"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PASSWORD_POLICIES)) { tabs1 = "password-policies"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_SETTINGS)) { tabs1 = "settings"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_MONITORING)) { tabs1 = "monitoring"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN_PLUGINS)) { tabs1 = "plugins"; } else if (portletName.equals(PortletKeys.ENTERPRISE_ADMIN)) { showTabs1 = true; } else { showActiveUserSelect = false; if (tabs1.equals("roles") || tabs1.equals("password-policies") || tabs1.equals("settings") || tabs1.equals("monitoring") || tabs1.equals("plugins")) { tabs1 = "users"; } } if (Validator.isNull(tabs1)) { tabs1 = "users"; } boolean filterManageableGroups = true; boolean filterManageableOrganizations = true; boolean filterManageableRoles = true; boolean filterManageableUserGroupRoles = true; boolean filterManageableUserGroups = true; if (portletName.equals(PortletKeys.MY_ACCOUNT)) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableRoles = false; filterManageableUserGroupRoles = false; filterManageableUserGroups = false; } else if (permissionChecker.isCompanyAdmin()) { filterManageableGroups = false; filterManageableOrganizations = false; filterManageableUserGroups = false; } boolean includeSystemPortlets = true; int maxNumberOfRolesChecked = 500; Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone); out.write('\n'); out.write('\n'); /** * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ out.write("\r\n"); out.write("\r\n"); String className = (String) request.getAttribute("addresses.className"); long classPK = (Long) request.getAttribute("addresses.classPK"); List<Address> addresses = Collections.EMPTY_LIST; int[] addressesIndexes = null; String addressesIndexesParam = ParamUtil.getString(request, "addressesIndexes"); if (Validator.isNotNull(addressesIndexesParam)) { addresses = new ArrayList<Address>(); addressesIndexes = StringUtil.split(addressesIndexesParam, 0); for (int addressesIndex : addressesIndexes) { addresses.add(new AddressImpl()); } } else { if (classPK > 0) { addresses = AddressServiceUtil.getAddresses(className, classPK); addressesIndexes = new int[addresses.size()]; for (int i = 0; i < addresses.size(); i++) { addressesIndexes[i] = i; } } if (addresses.isEmpty()) { addresses = new ArrayList<Address>(); addresses.add(new AddressImpl()); addressesIndexes = new int[] { 0 }; } if (addressesIndexes == null) { addressesIndexes = new int[0]; } } out.write("\r\n"); out.write("\r\n"); if (_jspx_meth_liferay_002dui_005ferror_002dmarker_005f0(_jspx_page_context)) return; out.write("\r\n"); out.write("\r\n"); out.write("<h3>"); if (_jspx_meth_liferay_002dui_005fmessage_005f0(_jspx_page_context)) return; out.write("</h3>\r\n"); out.write("\r\n"); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f0 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f0.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f0.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(67,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f0.setException(AddressCityException.class); // /html/portlet/enterprise_admin/common/addresses.jsp(67,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f0.setMessage("please-enter-a-valid-city"); int _jspx_eval_liferay_002dui_005ferror_005f0 = _jspx_th_liferay_002dui_005ferror_005f0.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f0); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f0); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f1 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f1.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f1.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(68,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f1.setException(AddressStreetException.class); // /html/portlet/enterprise_admin/common/addresses.jsp(68,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f1.setMessage("please-enter-a-valid-street"); int _jspx_eval_liferay_002dui_005ferror_005f1 = _jspx_th_liferay_002dui_005ferror_005f1.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f1); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f1); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f2 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f2.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f2.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(69,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f2.setException(AddressZipException.class); // /html/portlet/enterprise_admin/common/addresses.jsp(69,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f2.setMessage("please-enter-a-valid-zip"); int _jspx_eval_liferay_002dui_005ferror_005f2 = _jspx_th_liferay_002dui_005ferror_005f2.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f2); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f2); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f3 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f3.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f3.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(70,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f3.setException(NoSuchCountryException.class); // /html/portlet/enterprise_admin/common/addresses.jsp(70,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f3.setMessage("please-select-a-country"); int _jspx_eval_liferay_002dui_005ferror_005f3 = _jspx_th_liferay_002dui_005ferror_005f3.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f3); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f3); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f4 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f4.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f4.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(71,0) name = key type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f4 .setKey(NoSuchListTypeException.class.getName() + className + ListTypeConstants.ADDRESS); // /html/portlet/enterprise_admin/common/addresses.jsp(71,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f4.setMessage("please-select-a-type"); int _jspx_eval_liferay_002dui_005ferror_005f4 = _jspx_th_liferay_002dui_005ferror_005f4.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f4); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fkey_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f4); out.write('\r'); out.write('\n'); // liferay-ui:error com.liferay.taglib.ui.ErrorTag _jspx_th_liferay_002dui_005ferror_005f5 = (com.liferay.taglib.ui.ErrorTag) _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .get(com.liferay.taglib.ui.ErrorTag.class); _jspx_th_liferay_002dui_005ferror_005f5.setPageContext(_jspx_page_context); _jspx_th_liferay_002dui_005ferror_005f5.setParent(null); // /html/portlet/enterprise_admin/common/addresses.jsp(72,0) name = exception type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f5.setException(NoSuchRegionException.class); // /html/portlet/enterprise_admin/common/addresses.jsp(72,0) name = message type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_liferay_002dui_005ferror_005f5.setMessage("please-select-a-region"); int _jspx_eval_liferay_002dui_005ferror_005f5 = _jspx_th_liferay_002dui_005ferror_005f5.doStartTag(); if (_jspx_th_liferay_002dui_005ferror_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f5); return; } _005fjspx_005ftagPool_005fliferay_002dui_005ferror_0026_005fmessage_005fexception_005fnobody .reuse(_jspx_th_liferay_002dui_005ferror_005f5); out.write("\r\n"); out.write("\r\n"); // aui:fieldset com.liferay.taglib.aui.FieldsetTag _jspx_th_aui_005ffieldset_005f0 = (com.liferay.taglib.aui.FieldsetTag) _005fjspx_005ftagPool_005faui_005ffieldset .get(com.liferay.taglib.aui.FieldsetTag.class); _jspx_th_aui_005ffieldset_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005ffieldset_005f0.setParent(null); int _jspx_eval_aui_005ffieldset_005f0 = _jspx_th_aui_005ffieldset_005f0.doStartTag(); if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005ffieldset_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005ffieldset_005f0.doInitBody(); } do { out.write("\r\n"); out.write("\r\n"); out.write("\t"); for (int i = 0; i < addressesIndexes.length; i++) { int addressesIndex = addressesIndexes[i]; Address address = addresses.get(i); long countryId = ParamUtil.getLong(request, "addressCountryId" + addressesIndex, address.getCountryId()); long regionId = ParamUtil.getLong(request, "addressRegionId" + addressesIndex, address.getRegionId()); out.write("\r\n"); out.write("\r\n"); out.write("\t\t"); // aui:model-context com.liferay.taglib.aui.ModelContextTag _jspx_th_aui_005fmodel_002dcontext_005f0 = (com.liferay.taglib.aui.ModelContextTag) _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .get(com.liferay.taglib.aui.ModelContextTag.class); _jspx_th_aui_005fmodel_002dcontext_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fmodel_002dcontext_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(86,2) name = bean type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fmodel_002dcontext_005f0.setBean(address); // /html/portlet/enterprise_admin/common/addresses.jsp(86,2) name = model type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fmodel_002dcontext_005f0.setModel(Address.class); int _jspx_eval_aui_005fmodel_002dcontext_005f0 = _jspx_th_aui_005fmodel_002dcontext_005f0 .doStartTag(); if (_jspx_th_aui_005fmodel_002dcontext_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .reuse(_jspx_th_aui_005fmodel_002dcontext_005f0); return; } _005fjspx_005ftagPool_005faui_005fmodel_002dcontext_0026_005fmodel_005fbean_005fnobody .reuse(_jspx_th_aui_005fmodel_002dcontext_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t<div class=\"lfr-form-row\">\r\n"); out.write("\t\t\t<div class=\"row-fields\">\r\n"); out.write("\t\t\t\t"); // aui:column com.liferay.taglib.aui.ColumnTag _jspx_th_aui_005fcolumn_005f0 = (com.liferay.taglib.aui.ColumnTag) _005fjspx_005ftagPool_005faui_005fcolumn .get(com.liferay.taglib.aui.ColumnTag.class); _jspx_th_aui_005fcolumn_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fcolumn_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); int _jspx_eval_aui_005fcolumn_005f0 = _jspx_th_aui_005fcolumn_005f0.doStartTag(); if (_jspx_eval_aui_005fcolumn_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005fcolumn_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005fcolumn_005f0 .setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005fcolumn_005f0.doInitBody(); } do { out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f0 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(91,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setName("addressId" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(91,5) name = type type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setType("hidden"); // /html/portlet/enterprise_admin/common/addresses.jsp(91,5) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f0.setValue(address.getAddressId()); int _jspx_eval_aui_005finput_005f0 = _jspx_th_aui_005finput_005f0.doStartTag(); if (_jspx_th_aui_005finput_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .reuse(_jspx_th_aui_005finput_005f0); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005fnobody .reuse(_jspx_th_aui_005finput_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f1 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f1.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f1 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(93,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f1.setFieldParam("addressStreet1_" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(93,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f1.setName("street1"); int _jspx_eval_aui_005finput_005f1 = _jspx_th_aui_005finput_005f1.doStartTag(); if (_jspx_th_aui_005finput_005f1 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f1); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f1); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f2 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f2.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f2 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(95,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setFieldParam("addressStreet2_" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(95,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f2.setName("street2"); int _jspx_eval_aui_005finput_005f2 = _jspx_th_aui_005finput_005f2.doStartTag(); if (_jspx_th_aui_005finput_005f2 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f2); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f2); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f3 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f3.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f3 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(97,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f3.setFieldParam("addressStreet3_" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(97,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f3.setName("street3"); int _jspx_eval_aui_005finput_005f3 = _jspx_th_aui_005finput_005f3.doStartTag(); if (_jspx_th_aui_005finput_005f3 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f3); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f3); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:select com.liferay.taglib.aui.SelectTag _jspx_th_aui_005fselect_005f0 = (com.liferay.taglib.aui.SelectTag) _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .get(com.liferay.taglib.aui.SelectTag.class); _jspx_th_aui_005fselect_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fselect_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(99,5) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f0.setLabel("country"); // /html/portlet/enterprise_admin/common/addresses.jsp(99,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f0.setName("addressCountryId" + addressesIndex); int _jspx_eval_aui_005fselect_005f0 = _jspx_th_aui_005fselect_005f0.doStartTag(); if (_jspx_th_aui_005fselect_005f0 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f0); return; } _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:select com.liferay.taglib.aui.SelectTag _jspx_th_aui_005fselect_005f1 = (com.liferay.taglib.aui.SelectTag) _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .get(com.liferay.taglib.aui.SelectTag.class); _jspx_th_aui_005fselect_005f1.setPageContext(_jspx_page_context); _jspx_th_aui_005fselect_005f1 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(101,5) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f1.setLabel("region"); // /html/portlet/enterprise_admin/common/addresses.jsp(101,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f1.setName("addressRegionId" + addressesIndex); int _jspx_eval_aui_005fselect_005f1 = _jspx_th_aui_005fselect_005f1.doStartTag(); if (_jspx_th_aui_005fselect_005f1 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f1); return; } _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f1); out.write("\r\n"); out.write("\t\t\t\t"); int evalDoAfterBody = _jspx_th_aui_005fcolumn_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005fcolumn_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005fcolumn_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fcolumn.reuse(_jspx_th_aui_005fcolumn_005f0); return; } _005fjspx_005ftagPool_005faui_005fcolumn.reuse(_jspx_th_aui_005fcolumn_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t"); // aui:column com.liferay.taglib.aui.ColumnTag _jspx_th_aui_005fcolumn_005f1 = (com.liferay.taglib.aui.ColumnTag) _005fjspx_005ftagPool_005faui_005fcolumn .get(com.liferay.taglib.aui.ColumnTag.class); _jspx_th_aui_005fcolumn_005f1.setPageContext(_jspx_page_context); _jspx_th_aui_005fcolumn_005f1 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); int _jspx_eval_aui_005fcolumn_005f1 = _jspx_th_aui_005fcolumn_005f1.doStartTag(); if (_jspx_eval_aui_005fcolumn_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005fcolumn_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005fcolumn_005f1 .setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005fcolumn_005f1.doInitBody(); } do { out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:select com.liferay.taglib.aui.SelectTag _jspx_th_aui_005fselect_005f2 = (com.liferay.taglib.aui.SelectTag) _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .get(com.liferay.taglib.aui.SelectTag.class); _jspx_th_aui_005fselect_005f2.setPageContext(_jspx_page_context); _jspx_th_aui_005fselect_005f2 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f1); // /html/portlet/enterprise_admin/common/addresses.jsp(105,5) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f2.setLabel("type"); // /html/portlet/enterprise_admin/common/addresses.jsp(105,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f2.setName("addressTypeId" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(105,5) name = listType type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fselect_005f2.setListType(className + ListTypeConstants.ADDRESS); int _jspx_eval_aui_005fselect_005f2 = _jspx_th_aui_005fselect_005f2.doStartTag(); if (_jspx_th_aui_005fselect_005f2 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f2); return; } _005fjspx_005ftagPool_005faui_005fselect_0026_005fname_005flistType_005flabel_005fnobody .reuse(_jspx_th_aui_005fselect_005f2); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f4 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f4.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f4 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f1); // /html/portlet/enterprise_admin/common/addresses.jsp(107,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f4.setName("zip"); // /html/portlet/enterprise_admin/common/addresses.jsp(107,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f4.setFieldParam("addressZip" + addressesIndex); int _jspx_eval_aui_005finput_005f4 = _jspx_th_aui_005finput_005f4.doStartTag(); if (_jspx_th_aui_005finput_005f4 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f4); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f4); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f5 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f5.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f5 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f1); // /html/portlet/enterprise_admin/common/addresses.jsp(109,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f5.setName("city"); // /html/portlet/enterprise_admin/common/addresses.jsp(109,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f5.setFieldParam("addressCity" + addressesIndex); int _jspx_eval_aui_005finput_005f5 = _jspx_th_aui_005finput_005f5.doStartTag(); if (_jspx_th_aui_005finput_005f5 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f5); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005ffieldParam_005fnobody .reuse(_jspx_th_aui_005finput_005f5); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f6 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f6.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f6 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f1); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = checked type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setChecked(address.isPrimary()); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = cssClass type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setCssClass("primary-ctrl"); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = id type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setId("addressPrimary" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = inlineLabel type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setInlineLabel("left"); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = label type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setLabel("primary"); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setName("addressPrimary"); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = type type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setType("radio"); // /html/portlet/enterprise_admin/common/addresses.jsp(111,5) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f6.setValue(addressesIndex); int _jspx_eval_aui_005finput_005f6 = _jspx_th_aui_005finput_005f6.doStartTag(); if (_jspx_th_aui_005finput_005f6 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .reuse(_jspx_th_aui_005finput_005f6); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fvalue_005ftype_005fname_005flabel_005finlineLabel_005fid_005fcssClass_005fchecked_005fnobody .reuse(_jspx_th_aui_005finput_005f6); out.write("\r\n"); out.write("\r\n"); out.write("\t\t\t\t\t"); // aui:input com.liferay.taglib.aui.InputTag _jspx_th_aui_005finput_005f7 = (com.liferay.taglib.aui.InputTag) _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005finlineLabel_005ffieldParam_005fcssClass_005fnobody .get(com.liferay.taglib.aui.InputTag.class); _jspx_th_aui_005finput_005f7.setPageContext(_jspx_page_context); _jspx_th_aui_005finput_005f7 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005fcolumn_005f1); // /html/portlet/enterprise_admin/common/addresses.jsp(113,5) name = cssClass type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f7.setCssClass("mailing-ctrl"); // /html/portlet/enterprise_admin/common/addresses.jsp(113,5) name = fieldParam type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f7.setFieldParam("addressMailing" + addressesIndex); // /html/portlet/enterprise_admin/common/addresses.jsp(113,5) name = inlineLabel type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f7.setInlineLabel("left"); // /html/portlet/enterprise_admin/common/addresses.jsp(113,5) name = name type = null reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005finput_005f7.setName("mailing"); int _jspx_eval_aui_005finput_005f7 = _jspx_th_aui_005finput_005f7.doStartTag(); if (_jspx_th_aui_005finput_005f7 .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005finlineLabel_005ffieldParam_005fcssClass_005fnobody .reuse(_jspx_th_aui_005finput_005f7); return; } _005fjspx_005ftagPool_005faui_005finput_0026_005fname_005finlineLabel_005ffieldParam_005fcssClass_005fnobody .reuse(_jspx_th_aui_005finput_005f7); out.write("\r\n"); out.write("\t\t\t\t"); int evalDoAfterBody = _jspx_th_aui_005fcolumn_005f1.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005fcolumn_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005fcolumn_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fcolumn.reuse(_jspx_th_aui_005fcolumn_005f1); return; } _005fjspx_005ftagPool_005faui_005fcolumn.reuse(_jspx_th_aui_005fcolumn_005f1); out.write("\r\n"); out.write("\t\t\t</div>\r\n"); out.write("\t\t</div>\r\n"); out.write("\r\n"); out.write("\t\t"); // aui:script com.liferay.taglib.aui.ScriptTag _jspx_th_aui_005fscript_005f0 = (com.liferay.taglib.aui.ScriptTag) _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse .get(com.liferay.taglib.aui.ScriptTag.class); _jspx_th_aui_005fscript_005f0.setPageContext(_jspx_page_context); _jspx_th_aui_005fscript_005f0 .setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_aui_005ffieldset_005f0); // /html/portlet/enterprise_admin/common/addresses.jsp(118,2) name = use type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_aui_005fscript_005f0.setUse("liferay-dynamic-select"); int _jspx_eval_aui_005fscript_005f0 = _jspx_th_aui_005fscript_005f0.doStartTag(); if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.pushBody(); _jspx_th_aui_005fscript_005f0 .setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); _jspx_th_aui_005fscript_005f0.doInitBody(); } do { out.write("\r\n"); out.write("\t\t\tnew Liferay.DynamicSelect(\r\n"); out.write("\t\t\t\t[\r\n"); out.write("\t\t\t\t\t{\r\n"); out.write("\t\t\t\t\t\tselect: '"); if (_jspx_meth_portlet_005fnamespace_005f0(_jspx_th_aui_005fscript_005f0, _jspx_page_context)) return; out.write("addressCountryId"); out.print(addressesIndex); out.write("',\r\n"); out.write("\t\t\t\t\t\tselectData: Liferay.Address.getCountries,\r\n"); out.write("\t\t\t\t\t\tselectDesc: 'name',\r\n"); out.write("\t\t\t\t\t\tselectId: 'countryId',\r\n"); out.write("\t\t\t\t\t\tselectVal: '"); out.print(countryId); out.write("'\r\n"); out.write("\t\t\t\t\t},\r\n"); out.write("\t\t\t\t\t{\r\n"); out.write("\t\t\t\t\t\tselect: '"); if (_jspx_meth_portlet_005fnamespace_005f1(_jspx_th_aui_005fscript_005f0, _jspx_page_context)) return; out.write("addressRegionId"); out.print(addressesIndex); out.write("',\r\n"); out.write("\t\t\t\t\t\tselectData: Liferay.Address.getRegions,\r\n"); out.write("\t\t\t\t\t\tselectDesc: 'name',\r\n"); out.write("\t\t\t\t\t\tselectId: 'regionId',\r\n"); out.write("\t\t\t\t\t\tselectVal: '"); out.print(regionId); out.write("'\r\n"); out.write("\t\t\t\t\t}\r\n"); out.write("\t\t\t\t]\r\n"); out.write("\t\t\t);\r\n"); out.write("\t\t"); int evalDoAfterBody = _jspx_th_aui_005fscript_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005fscript_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005fscript_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse .reuse(_jspx_th_aui_005fscript_005f0); return; } _005fjspx_005ftagPool_005faui_005fscript_0026_005fuse.reuse(_jspx_th_aui_005fscript_005f0); out.write("\r\n"); out.write("\r\n"); out.write("\t"); } out.write("\r\n"); out.write("\r\n"); int evalDoAfterBody = _jspx_th_aui_005ffieldset_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); if (_jspx_eval_aui_005ffieldset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { out = _jspx_page_context.popBody(); } } if (_jspx_th_aui_005ffieldset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { _005fjspx_005ftagPool_005faui_005ffieldset.reuse(_jspx_th_aui_005ffieldset_005f0); return; } _005fjspx_005ftagPool_005faui_005ffieldset.reuse(_jspx_th_aui_005ffieldset_005f0); out.write("\r\n"); out.write("\r\n"); if (_jspx_meth_aui_005fscript_005f1(_jspx_page_context)) return; } catch (Throwable t) { if (!(t instanceof SkipPageException)) { out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { out.clearBuffer(); } catch (java.io.IOException e) { } if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } }