Liferay keeps lot of variables inside template context. Following variables available in Velocity & FreeMarker templates.
First check the variable you are looking for is already presents in template init file
/portal-master/modules/apps/foundation/frontend-theme/frontend-theme-unstyled/src/main/resources/META-INF/resources/_unstyled/templates/init.ftl
<#-- ---------- Common variables ---------- -->
<#assign theme_display = themeDisplay />
<#assign portlet_display = portletDisplay />
<#assign theme_timestamp = themeDisplay.getTheme().getTimestamp() />
<#assign theme_settings = themeDisplay.getThemeSettings() />
<#assign root_css_class = languageUtil.get(locale, "lang.dir") />
<#assign css_class = htmlUtil.escape(bodyCssClass!) />
<#assign css_class = css_class + " " + htmlUtil.escape(theme_display.getColorScheme().getCssClass()) + " yui3-skin-sam" />
<#if layout??>
<#assign page_group = layout.getGroup() />
</#if>
<#if layoutTypePortlet.hasStateMax()>
<#assign css_class = css_class + " page-maximized" />
</#if>
<#assign css_folder = theme_display.getPathThemeCss() />
<#assign images_folder = theme_display.getPathThemeImages() />
<#assign javascript_folder = theme_display.getPathThemeJavaScript() />
<#assign templates_folder = theme_display.getPathThemeTemplates() />
<#assign full_css_path = fullCssPath />
<#assign full_templates_path = fullTemplatesPath />
<#assign css_main_file = htmlUtil.escape(portalUtil.getStaticResourceURL(request, "${css_folder}/main.css")) />
<#assign js_main_file = htmlUtil.escape(portalUtil.getStaticResourceURL(request, "${javascript_folder}/main.js")) />
<#assign company_id = company.getCompanyId() />
<#assign company_name = company.getName() />
<#assign company_logo = htmlUtil.escape(theme_display.getCompanyLogo()) />
<#assign company_logo_height = theme_display.getCompanyLogoHeight() />
<#assign company_logo_width = theme_display.getCompanyLogoWidth() />
<#assign company_url = theme_display.getURLHome() />
<#if !request.isRequestedSessionIdFromCookie()>
<#assign company_url = portalUtil.getURLWithSessionId(company_url, request.getSession().getId()) />
</#if>
<#-- ---------- LPS-66428 ---------- -->
<#assign is_default_user = user.isDefaultUser() />
<#assign is_female = user.isFemale() />
<#assign is_male = user.isMale() />
<#assign is_setup_complete = user.isSetupComplete() />
<#assign language = locale.getLanguage() />
<#assign language_id = user.getLanguageId() />
<#assign time_zone = user.getTimeZoneId() />
<#assign user_birthday = user.getBirthday() />
<#assign user_comments = user.getComments() />
<#assign user_email_address = user.getEmailAddress() />
<#assign user_first_name = user.getFirstName() />
<#assign user_greeting = htmlUtil.escape(user.getGreeting()) />
<#assign user_id = user.getUserId() />
<#assign user_last_login_ip = user.getLastLoginIP() />
<#assign user_last_name = user.getLastName() />
<#assign user_login_ip = user.getLoginIP() />
<#assign user_middle_name = user.getMiddleName() />
<#assign user_name = user.getFullName() />
<#assign w3c_language_id = localeUtil.toW3cLanguageId(theme_display.getLanguageId()) />
<#assign is_login_redirect_required = portalUtil.isLoginRedirectRequired(request) />
<#assign is_signed_in = theme_display.isSignedIn() />
<#assign group_id = theme_display.getScopeGroupId() />
<#-- ---------- URLs ---------- -->
<#assign show_control_panel = theme_display.isShowControlPanelIcon() />
<#if show_control_panel>
<#assign control_panel_text = languageUtil.get(locale, "control-panel") />
<#assign control_panel_url = htmlUtil.escape(theme_display.getURLControlPanel()) />
</#if>
<#assign show_home = theme_display.isShowHomeIcon() />
<#if show_home>
<#assign home_text = languageUtil.get(locale, "home") />
<#assign home_url = htmlUtil.escape(theme_display.getURLHome()) />
<#if !request.isRequestedSessionIdFromCookie()>
<#assign home_url = htmlUtil.escape(portalUtil.getURLWithSessionId(home_url, request.getSession().getId())) />
</#if>
</#if>
<#assign show_my_account = theme_display.isShowMyAccountIcon() />
<#if show_my_account>
<#assign my_account_text = languageUtil.get(locale, "my-account") />
<#if theme_display.getURLMyAccount()??>
<#assign my_account_url = htmlUtil.escape(theme_display.getURLMyAccount().toString()) />
</#if>
</#if>
<#assign show_sign_in = theme_display.isShowSignInIcon() />
<#if show_sign_in>
<#assign sign_in_text = languageUtil.get(locale, "sign-in") />
<#assign sign_in_url = htmlUtil.escape(theme_display.getURLSignIn()) />
</#if>
<#assign show_sign_out = theme_display.isShowSignOutIcon() />
<#if show_sign_out>
<#assign sign_out_text = languageUtil.get(locale, "sign-out") />
<#assign sign_out_url = htmlUtil.escape(theme_display.getURLSignOut()) />
</#if>
<#-- ---------- Page ---------- -->
<#assign the_title = "" />
<#assign selectable = theme_display.isTilesSelectable() />
<#assign is_maximized = layoutTypePortlet.hasStateMax() />
<#assign is_freeform = themeDisplay.isFreeformLayout() />
<#assign page_javascript_1 = "" />
<#assign page_javascript_2 = "" />
<#assign page_javascript_3 = "" />
<#if layout??>
<#assign page = layout />
<#assign is_first_child = page.isFirstChild() />
<#assign is_first_parent = page.isFirstParent() />
<#assign the_title = languageUtil.get(locale, the_title, page.getName(locale)) />
<#assign is_portlet_page = false />
<#if page.getType() = "portlet">
<#assign is_portlet_page = true />
</#if>
<#assign typeSettingsProperties = layout.getTypeSettingsProperties() />
<#if typeSettingsProperties??>
<#assign page_javascript = typeSettingsProperties["javascript"]! />
</#if>
<#assign site_name = htmlUtil.escape(page_group.getDescriptiveName()) />
<#assign community_name = site_name />
<#assign is_guest_group = page_group.isGuest() />
<#if is_guest_group>
<#assign css_class = css_class + " guest-site" />
</#if>
<#if is_signed_in>
<#assign css_class = css_class + " signed-in" />
<#else>
<#assign css_class = css_class + " signed-out" />
</#if>
<#if layout.isPublicLayout()>
<#assign css_class = css_class + " public-page" />
<#else>
<#assign css_class = css_class + " private-page" />
</#if>
<#if page_group.isLayoutPrototype()>
<#assign css_class = css_class + " page-template" />
</#if>
<#if page_group.isLayoutSetPrototype()>
<#assign css_class = css_class + " site-template" />
</#if>
<#if page_group.isCompany()>
<#assign site_type = "company-site" />
<#elseif page_group.isOrganization()>
<#assign site_type = "organization-site" />
<#elseif page_group.isUser()>
<#assign site_type = "user-site" />
<#else>
<#assign site_type = "site" />
</#if>
<#assign css_class = css_class + " " + site_type />
<#assign site_default_public_url = htmlUtil.escape(page_group.getDisplayURL(theme_display, false)) />
<#assign community_default_public_url = site_default_public_url />
<#assign site_default_private_url = htmlUtil.escape(page_group.getDisplayURL(theme_display, true)) />
<#assign community_default_private_url = site_default_private_url />
<#assign site_default_url = site_default_public_url />
<#assign community_default_url = site_default_url />
<#if layout.isPrivateLayout()>
<#assign site_default_url = site_default_private_url />
<#assign community_default_url = site_default_url />
</#if>
</#if>
<#assign the_title = "" />
<#if layout.getHTMLTitle(locale)??>
<#assign the_title = layout.getHTMLTitle(locale) />
</#if>
<#if pageTitle??>
<#assign the_title = pageTitle />
</#if>
<#if pageSubtitle??>
<#assign the_title = pageSubtitle + " - " + the_title />
</#if>
<#if tilesTitle?has_content>
<#assign the_title = languageUtil.get(locale, tilesTitle) />
</#if>
<#if page_group.isLayoutPrototype()>
<#assign the_title = page_group.getDescriptiveName(locale) />
</#if>
<#if !tilesTitle?has_content>
<#assign the_title = htmlUtil.escape(the_title) />
</#if>
<#if the_title ?has_content && company_name != site_name && !page_group.isLayoutPrototype()>
<#assign the_title = the_title + " - " + site_name />
</#if>
<#if layouts??>
<#assign pages = layouts />
</#if>
<#-- ---------- Logo ---------- -->
<#assign logo_css_class = "logo" />
<#assign use_company_logo = !layout.layoutSet.isLogo() />
<#assign site_logo_height = company_logo_height />
<#assign site_logo_width = company_logo_width />
<#if (company.getLogoId() == 0) && use_company_logo>
<#assign logo_css_class = logo_css_class + " default-logo" />
<#else>
<#assign logo_css_class = logo_css_class + " custom-logo" />
</#if>
<#assign show_site_name_supported = getterUtil.getBoolean(theme_settings["show-site-name-supported"]!"", true) />
<#assign show_site_name_default = getterUtil.getBoolean(theme_settings["show-site-name-default"]!"", show_site_name_supported) />
<#assign show_site_name = getterUtil.getBoolean(layout.layoutSet.getSettingsProperty("showSiteName"), show_site_name_default) />
<#assign site_logo = company_logo />
<#assign logo_description = "" />
<#if !show_site_name>
<#assign logo_description = htmlUtil.escape(site_name) />
</#if>
<#-- ---------- Navigation ---------- -->
<#assign has_navigation = false />
<#if navItems??>
<#assign nav_items = navItems />
<#assign has_navigation = (nav_items?size > 0) />
</#if>
<#assign nav_css_class = "sort-pages modify-pages" />
<#if !has_navigation>
<#assign nav_css_class = nav_css_class + " hide" />
</#if>
<#-- ---------- My sites ---------- -->
<#assign show_my_sites = user.hasMySites() />
<#assign show_my_places = show_my_sites />
<#if show_my_sites>
<#assign my_sites_text = languageUtil.get(locale, "my-sites") />
<#assign my_places_text = my_sites_text />
</#if>
<#-- ---------- Includes ---------- -->
<#assign dir_include = "/html" />
<#assign body_bottom_include = "${dir_include}/common/themes/body_bottom.jsp" />
<#assign body_top_include = "${dir_include}/common/themes/body_top.jsp" />
<#assign bottom_include = "${dir_include}/common/themes/bottom.jsp" />
<#assign bottom_ext_include = bottom_include />
<#if tilesContent?has_content>
<#assign content_include = "${dir_include}${tilesContent}" />
</#if>
<#assign top_head_include = "${dir_include}/common/themes/top_head.jsp" />
<#assign top_messages_include = "${dir_include}/common/themes/top_messages.jsp" />
<#-- ---------- Date ---------- -->
<#assign date = dateUtil />
<#assign current_time = date.newDate() />
<#assign the_year = current_time?date?string("yyyy") />
<#-- ---------- Custom init ---------- -->
If you are still looking for new ones, you can define int_custom.ftl file;
These variables comes to context through Liferay code /portal-master/portal-impl/src/com/liferay/portal/template/TemplateContextHelper.java
variables.put("arrayUtil", ArrayUtil_IW.getInstance());
variables.put("auditMessageFactoryUtil",AuditMessageFactoryUtil.getAuditMessageFactory());
variables.put("auditRouterUtil", AuditRouterUtil.getAuditRouter());
variables.put( "browserSniffer", BrowserSnifferUtil.getBrowserSniffer());
variables.put("calendarFactory", CalendarFactoryUtil.getCalendarFactory());
variables.put("dateFormatFactory",FastDateFormatFactoryUtil.getFastDateFormatFactory());
variables.put("dateUtil", DateUtil_IW.getInstance());
variables.put("serviceLocator", serviceLocator);
variables.put("expandoColumnLocalService",serviceLocator.findService(ExpandoColumnLocalService.class.getName()));
variables.put("expandoRowLocalService",serviceLocator.findService(ExpandoRowLocalService.class.getName()));
variables.put("expandoTableLocalService",serviceLocator.findService(ExpandoTableLocalService.class.getName()));
variables.put("expandoValueLocalService",serviceLocator.findService(ExpandoValueLocalService.class.getName()));
variables.put("getterUtil", GetterUtil_IW.getInstance());
variables.put("htmlUtil", HtmlUtil.getHtml());
variables.put("httpUtil", HttpUtil.getHttp());
variables.put("imageToolUtil", ImageToolUtil.getImageTool());
variables.put("jsonFactoryUtil", JSONFactoryUtil.getJSONFactory());
variables.put("languageUtil", LanguageUtil.getLanguage());
variables.put("unicodeLanguageUtil",UnicodeLanguageUtil.getUnicodeLanguage());
variables.put("localeUtil", LocaleUtil.getInstance());
variables.put("paramUtil", ParamUtil_IW.getInstance());
variables.put("portalUtil", PortalUtil.getPortal());
variables.put("portal", PortalUtil.getPortal());
variables.put("prefsPropsUtil", PrefsPropsUtil.getPrefsProps());
variables.put("propsUtil", PropsUtil.getProps());
variables.put("portletModeFactory", PortletModeFactory_IW.getInstance());
variables.put("portletURLFactory",PortletURLFactoryUtil.getPortletURLFactory());
variables.put("utilLocator", utilLocator);
variables.put("saxReaderUtil",utilLocator.findUtil(SAXReader.class.getName()));
variables.put("sessionClicks", SessionClicks_IW.getInstance());
variables.put("staticFieldGetter", StaticFieldGetter.getInstance());
variables.put("stringUtil", StringUtil_IW.getInstance());
variables.put("timeZoneUtil", TimeZoneUtil_IW.getInstance());
variables.put("unicodeFormatter", UnicodeFormatter_IW.getInstance());
variables.put("validator", Validator_IW.getInstance());
variables.put("webServerToken", WebServerServletTokenUtil.getWebServerServletToken());
variables.put("windowStateFactory", WindowStateFactory_IW.getInstance());
variables.put("accountPermission",AccountPermissionUtil.getAccountPermission());
variables.put("commonPermission", CommonPermissionUtil.getCommonPermission());
variables.put("groupPermission", GroupPermissionUtil.getGroupPermission());
variables.put("layoutPermission", LayoutPermissionUtil.getLayoutPermission());
variables.put("organizationPermission", OrganizationPermissionUtil.getOrganizationPermission());
variables.put("passwordPolicyPermission",PasswordPolicyPermissionUtil.getPasswordPolicyPermission());
variables.put("portalPermission", PortalPermissionUtil.getPortalPermission());
variables.put("portletPermission",PortletPermissionUtil.getPortletPermission());
variables.put("portletProviderAction", portletProviderActionMap);
variables.put("rolePermission", RolePermissionUtil.getRolePermission());
variables.put("userGroupPermission",UserGroupPermissionUtil.getUserGroupPermission());
variables.put("userPermission", UserPermissionUtil.getUserPermission());
variables.put("dateFormats",FastDateFormatFactoryUtil.getFastDateFormatFactory());
variables.put("imageToken",WebServerServletTokenUtil.getWebServerServletToken());
variables.put("locationPermission", OrganizationPermissionUtil.getOrganizationPermission());
variables.put("randomizer", randomizer.getWrappedInstance());
Liferay DXP
Thursday, November 3, 2016
Sunday, October 2, 2016
Liferay CE Doesn't support Oracle DB and SQL Server DB
When we start Liferay 7 CE configured with Microsoft SQL Server, we see error like "Unsupported data type".
Yes, It's true Liferay removed support to these databases in CE edition.
Liferay CE Support
Liferay Portal 7 Community does not have "out of the box" support for clustering, non-open source app servers (Oracle WebLogic, IBM WebSphere), and non-open source databases (Oracle Database, Microsoft SQL Server, IBM DB2, Sybase DB).
Also Removed Audience Targeting in CE edition.
Liferay CE Edition Audience Targetting
Yes, It's true Liferay removed support to these databases in CE edition.
Liferay CE Support
Liferay Portal 7 Community does not have "out of the box" support for clustering, non-open source app servers (Oracle WebLogic, IBM WebSphere), and non-open source databases (Oracle Database, Microsoft SQL Server, IBM DB2, Sybase DB).
Also Removed Audience Targeting in CE edition.
Liferay CE Edition Audience Targetting
Wednesday, September 28, 2016
Liferay DXP OSGi Modules
g! lb
START LEVEL 20
ID|State |Level|Name
0|Active | 0|OSGi System Bundle (3.10.200.v20150831-0856)
1|Active | 6|Liferay Util Taglib (2.4.0)
2|Active | 6|Liferay OSGi Utilities (3.0.2)
3|Active | 6|Liferay Petra XML (1.0.3)
4|Active | 6|Liferay Portal Configuration Metatype (2.0.2)
5|Active | 6|Liferay Portal Configuration Persistence (2.0.1)
6|Active | 6|Liferay Portal Log4j Extender (2.0.2)
7|Active | 6|Liferay Portal LPKG Deployer (2.0.3)
8|Active | 6|Liferay Portal OSGi Web Portlet Tracker (2.0.2)
9|Active | 6|Liferay Portal OSGi Web Servlet Context Helper (2.1.0)
10|Active | 6|Liferay Portal OSGi Web Servlet JSP Compiler (2.0.5)
11|Active | 6|Liferay Portal OSGi Web WAB Extender (2.0.6)
12|Active | 6|Liferay Portal OSGi Web WAB Generator (2.1.7)
13|Active | 6|Liferay Portal OSGi Web WAB Reference Support (1.0.3)
14|Active | 6|Liferay Portal Profile (1.0.2)
15|Resolved | 1|Liferay Portal Remote Dependency Manager TCCL (2.0.1)
16|Active | 6|Liferay Portal Target Platform Indexer (3.0.2)
17|Active | 6|Expression Language 3.0 (3.0.0)
18|Active | 6|JavaServer Pages(TM) API (2.3.2.b01)
19|Active | 6|javax.servlet.jsp.jstl (1.2.3.LIFERAY-PATCHED-2)
20|Active | 6|JavaServer Pages(TM) Standard Tag Library API (1.2.1)
21|Active | 6|Apache Aries JMX API (1.1.1)
22|Active | 6|Apache Aries JMX Core (1.1.3)
23|Active | 6|Apache Aries Util (1.0.0)
24|Active | 6|Apache Commons FileUpload Bundle (1.2.1)
25|Active | 6|Apache Commons IO Bundle (1.4.0)
26|Active | 6|Apache Felix Bundle Repository (2.0.2)
27|Active | 6|Apache Felix Configuration Admin Service (1.8.8)
28|Active | 6|Apache Felix Dependency Manager (3.2.0)
29|Active | 6|Apache Felix Dependency Manager Shell (3.2.0)
30|Active | 6|Apache Felix EventAdmin (1.4.6)
31|Active | 6|Apache Felix File Install (3.5.1.SNAPSHOT)
32|Active | 6|Apache Felix Gogo Command (0.12.0)
33|Active | 6|Apache Felix Gogo Runtime (0.10.0)
34|Active | 6|Apache Felix Gogo Shell (0.10.0)
35|Active | 6|Apache Felix Declarative Services (2.0.2)
36|Active | 6|Console plug-in (1.1.100.v20141023-1406)
37|Active | 6|Http Services Servlet (1.2.2.v20160401-1842)
38|Active | 6|Meta Type (1.4.200.v20150715-1528)
39|Active | 6|org.osgi.service.http (3.5.0.LIFERAY-PATCHED-2)
40|Active | 6|org.osgi:org.osgi.service.metatype (1.3.0.201505202024)
41|Active | 10|Liferay Collaboration (7.0.0)
42|Active | 10|Liferay Announcements Web (1.0.5)
43|Active | 10|Liferay Blogs API (3.0.1)
44|Active | 10|Liferay Blogs Editor Configuration (1.0.1)
45|Active | 10|Liferay Blogs Item Selector API (1.0.1)
46|Active | 10|Liferay Blogs Item Selector Web (1.0.2)
47|Active | 10|Liferay Blogs Layout Prototype (2.0.2)
48|Active | 10|Liferay Blogs Recent Bloggers Web (1.0.3)
49|Active | 10|Liferay Blogs Service (1.0.3)
50|Active | 10|Liferay Blogs Web (1.0.11)
51|Active | 10|Liferay Bookmarks API (2.0.1)
52|Active | 10|Liferay Bookmarks Service (1.0.7)
53|Active | 10|Liferay Bookmarks Web (1.0.9)
54|Active | 10|Liferay Comment API (2.0.1)
55|Active | 10|Liferay Comment Editor Configuration (1.0.1)
56|Active | 10|Liferay Comment Page Comments Web (1.0.2)
57|Active | 10|Liferay Comment Ratings Definition (2.0.1)
58|Active | 10|Liferay Comment Sanitizer (2.0.1)
59|Active | 10|Liferay Comment Web (1.0.5)
60|Active | 10|Liferay Directory Web (1.0.5)
61|Active | 10|Liferay Document Library API (3.0.2)
62|Active | 10|Liferay Document Library Item Selector Web (1.0.2)
63|Active | 10|Liferay Document Library Layout Set Prototype (2.0.2)
64|Active | 10|Liferay Document Library Repository CMIS API (1.0.3)
65|Active | 10|Liferay Document Library Repository CMIS Implementation (2.0.3)
66|Active | 10|Liferay Document Library Repository Search (2.0.1)
67|Active | 10|Liferay Document Library Service (1.1.2)
68|Active | 10|Liferay Document Library Web (1.0.10)
69|Active | 10|Liferay Flags API (2.0.1)
70|Active | 10|Liferay Flags Service (2.0.3)
71|Active | 10|Liferay Flags Taglib (2.0.2)
72|Active | 10|Liferay Flags Web (2.0.2)
73|Active | 10|Liferay Image Uploader Web (1.0.4)
74|Active | 10|Liferay Invitation Invite Members API (2.0.1)
75|Active | 10|Liferay Invitation Invite Members Service (2.0.4)
76|Active | 10|Liferay Invitation Invite Members Web (1.0.8)
77|Active | 10|Liferay Item Selector API (2.0.1)
78|Active | 10|Liferay Item Selector Criteria API (2.0.1)
79|Active | 10|Liferay Item Selector Editor Configuration (2.0.1)
80|Active | 10|Liferay Item Selector Taglib (1.0.6)
81|Active | 10|Liferay Item Selector Upload Web (2.0.1)
82|Active | 10|Liferay Item Selector URL Web (2.0.1)
83|Active | 10|Liferay Item Selector Web (2.0.2)
84|Active | 10|Liferay Mentions API (2.0.1)
85|Active | 10|Liferay Mentions Service (2.0.1)
86|Active | 10|Liferay Mentions Web (1.0.4)
87|Active | 10|Liferay Message Boards API (3.0.1)
88|Active | 10|Liferay Message Boards Comment (2.0.2)
89|Active | 10|Liferay Message Boards Layout Set Prototype (1.0.5)
90|Active | 10|Liferay Message Boards Parser BBCode (2.0.1)
91|Active | 10|Liferay Message Boards Service (1.0.5)
92|Active | 10|Liferay Message Boards Web (1.0.8)
93|Active | 10|Liferay Microblogs API (2.0.1)
94|Active | 10|Liferay Microblogs Service (2.0.3)
95|Active | 10|Liferay Microblogs Web (2.0.5)
96|Active | 10|Liferay Notifications Web (1.0.8)
97|Active | 10|Liferay Quick Note Web (2.0.1)
98|Active | 10|Liferay Ratings API (2.0.1)
99|Active | 10|Liferay Ratings Page Ratings Web (2.0.2)
100|Active | 10|Liferay Ratings Service (1.0.3)
101|Active | 10|Liferay Recent Documents Web (2.0.2)
102|Active | 10|Liferay Social Activities Web (1.0.3)
103|Active | 10|Liferay Social Activity API (1.0.1)
104|Active | 10|Liferay Social Activity Web (2.0.2)
105|Active | 10|Liferay Social Group Statistics Web (2.0.1)
106|Active | 10|Liferay Social Private Messaging API (2.0.1)
107|Active | 10|Liferay Social Private Messaging Service (1.1.2)
108|Active | 10|Liferay Social Private Messaging Web (1.0.6)
109|Active | 10|Liferay Social Requests Web (1.0.2)
110|Active | 10|Liferay Social User Statistics Web (2.0.2)
111|Active | 10|Liferay Wiki API (2.1.0)
112|Active | 10|Liferay Wiki Editor Configuration (1.0.2)
113|Active | 10|Liferay Wiki Engine Creole (2.0.1)
114|Active | 10|Liferay Wiki Engine HTML (2.0.1)
115|Active | 10|Liferay Wiki Engine Input Editor Common (2.0.1)
116|Active | 10|Liferay Wiki Engine Text (2.0.1)
117|Active | 10|Liferay Wiki Layout Prototype (1.0.3)
118|Active | 10|Liferay Wiki Navigation Web (2.0.4)
119|Active | 10|Liferay Wiki Service (1.1.3)
120|Active | 10|Liferay Wiki Web (1.0.11)
121|Active | 10|Liferay Connected Services Client (2.0.2)
122|Active | 10|Liferay Connected Services Client-lcs-portlet-wrapper (7.0.10.2)
123|Active | 10|Liferay Documentum Connector (3.0.0)
124|Active | 10|Liferay Documentum Connector-documentum-hook-wrapper (7.0.10.3)
125|Active | 10|Liferay Forms and Workflow (7.0.0)
126|Active | 10|Liferay Calendar API (2.0.1)
127|Active | 10|Liferay Calendar Service (2.0.5)
128|Active | 10|Liferay Calendar Web (1.0.7)
129|Active | 10|Liferay Dynamic Data Lists API (2.0.3)
130|Active | 10|Liferay Dynamic Data Lists Form Web (1.0.9)
131|Active | 10|Liferay Dynamic Data Lists Service (1.1.2)
132|Active | 10|Liferay Dynamic Data Lists Web (1.1.5)
133|Active | 10|Liferay Dynamic Data Mapping API (3.3.0)
134|Active | 10|Liferay Dynamic Data Mapping Data Provider (2.0.2)
135|Active | 10|Liferay Dynamic Data Mapping Data Provider REST (2.0.2)
136|Active | 10|Liferay Dynamic Data Mapping Data Provider Web (1.0.4)
137|Active | 10|Liferay Dynamic Data Mapping Expression (2.0.1)
138|Active | 10|Liferay Dynamic Data Mapping Form Evaluator (2.0.2)
139|Active | 10|Liferay Dynamic Data Mapping Form Field Type (2.0.2)
140|Active | 10|Liferay Dynamic Data Mapping Form Renderer (2.1.1)
141|Active | 10|Liferay Dynamic Data Mapping Form Values Factory (2.0.3)
142|Active | 10|Liferay Dynamic Data Mapping Form Values Query (2.0.3)
143|Active | 10|Liferay Dynamic Data Mapping IO (2.0.5)
144|Active | 10|Liferay Dynamic Data Mapping Lang (2.0.2)
145|Active | 10|Liferay Dynamic Data Mapping Service (2.1.4)
146|Active | 10|Liferay Dynamic Data Mapping Taglib (2.0.2)
147|Active | 10|Liferay Dynamic Data Mapping Type Captcha (2.0.2)
148|Active | 10|Liferay Dynamic Data Mapping Type Checkbox (2.0.6)
149|Active | 10|Liferay Dynamic Data Mapping Type Date (2.0.6)
150|Active | 10|Liferay Dynamic Data Mapping Type Editor (2.0.6)
151|Active | 10|Liferay Dynamic Data Mapping Type Key Value (2.0.4)
152|Active | 10|Liferay Dynamic Data Mapping Type Options (2.0.4)
153|Active | 10|Liferay Dynamic Data Mapping Type Paragraph (2.0.5)
154|Active | 10|Liferay Dynamic Data Mapping Type Radio (2.0.7)
155|Active | 10|Liferay Dynamic Data Mapping Type Select (2.0.6)
156|Active | 10|Liferay Dynamic Data Mapping Type Text (2.0.6)
157|Active | 10|Liferay Dynamic Data Mapping Type Validation (2.0.3)
158|Active | 10|Liferay Dynamic Data Mapping Validator (2.1.0)
159|Active | 10|Liferay Dynamic Data Mapping Web (1.0.9)
160|Active | 10|Liferay Polls API (4.0.0)
161|Active | 10|Liferay Polls Service (3.0.2)
162|Active | 10|Liferay Polls Web (2.0.5)
163|Active | 10|Liferay Portal Reports Engine API (3.0.0)
164|Active | 10|Liferay Portal Rules Engine API (2.0.1)
165|Active | 10|Liferay Portal Rules Engine Drools (1.0.1)
166|Active | 10|Liferay Portal Rules Engine Wiring (2.0.1)
167|Active | 10|Liferay Portal Workflow Definition Link Web (1.0.3)
168|Active | 10|Liferay Portal Workflow Definition Web (1.0.4)
169|Active | 10|Liferay Portal Workflow Instance Web (1.0.5)
170|Active | 10|Liferay Portal Workflow Kaleo API (2.0.1)
171|Active | 10|Liferay Portal Workflow Kaleo Definition API (2.0.1)
172|Active | 10|Liferay Portal Workflow Kaleo Definition Implementation (2.0.1)
173|Active | 10|Liferay Portal Workflow Kaleo Designer API (1.0.1)
174|Active | 10|Liferay Portal Workflow Kaleo Designer Service (1.0.1)
175|Active | 10|Liferay Portal Workflow Kaleo Designer Web (1.0.1)
176|Active | 10|Liferay Portal Workflow Kaleo Forms API (1.0.1)
177|Active | 10|Liferay Portal Workflow Kaleo Forms Service (1.0.0)
178|Active | 10|Liferay Portal Workflow Kaleo Forms Web (1.0.1)
179|Active | 10|Liferay Portal Workflow Kaleo Runtime API (2.1.0)
180|Active | 10|Liferay Portal Workflow Kaleo Runtime Implementation (2.0.5)
181|Active | 10|Liferay Portal Workflow Kaleo Runtime Scripting Implementation (1.0.1)
182|Active | 10|Liferay Portal Workflow Kaleo Service (2.0.5)
183|Active | 10|Liferay Portal Workflow Lang (2.0.2)
184|Active | 10|Liferay Portal Workflow Task Web (1.0.5)
185|Active | 10|Liferay Foundation (7.0.2)
186|Active | 10|Woodstox XML-processor (4.4.1)
187|Active | 10|Liferay Configuration Admin Web (1.0.5)
188|Active | 10|Liferay Contacts API (2.0.3)
189|Active | 10|Liferay Contacts Service (2.0.2)
190|Active | 10|Liferay Contacts Web (1.0.10)
191|Active | 10|Liferay Expando Web (1.0.3)
192|Active | 10|Liferay Frontend CSS Common (2.0.1)
193|Active | 10|Liferay Frontend CSS RTL Converter (1.0.2)
194|Active | 10|Liferay Frontend CSS RTL Servlet (1.0.2)
195|Active | 10|Liferay Frontend CSS Web (1.0.8)
196|Active | 10|Liferay Frontend Editor AlloyEditor Web (1.0.5)
197|Active | 10|Liferay Frontend Editor CKEditor Web (1.0.5)
198|Active | 10|Liferay Frontend Editor Lang (1.0.2)
199|Active | 10|Liferay Frontend Editor Simple Web (1.0.2)
200|Active | 10|Liferay Frontend Editor TinyMCE Web (1.0.2)
201|Active | 10|Liferay Frontend Image Editor API (1.0.2)
202|Active | 10|Liferay Frontend Image Editor Capability Brightness (1.0.2)
203|Active | 10|Liferay Frontend Image Editor Capability Contrast (1.0.2)
204|Active | 10|Liferay Frontend Image Editor Capability Crop (1.0.2)
205|Active | 10|Liferay Frontend Image Editor Capability Effects (1.0.2)
206|Active | 10|Liferay Frontend Image Editor Capability Resize (1.0.2)
207|Active | 10|Liferay Frontend Image Editor Capability Rotate (1.0.2)
208|Active | 10|Liferay Frontend Image Editor Capability Saturation (1.0.2)
209|Active | 10|Liferay Frontend Image Editor Integration Document Library (1.0.2)
210|Active | 10|Liferay Frontend Image Editor Web (1.0.1)
211|Active | 10|Liferay Frontend JS Bundle Config Extender (1.0.3)
212|Active | 10|Liferay Frontend JS Loader Modules Extender (1.0.2)
213|Active | 10|Liferay Frontend JS Metal Web (1.0.7)
214|Active | 10|Liferay Frontend JS Polyfill Babel Web (1.0.2)
215|Active | 10|Liferay Frontend JS Soyutils Web (1.0.3)
216|Active | 10|Liferay Frontend JS SPA Web (1.0.7)
217|Active | 10|Liferay Frontend JS Web (1.0.8)
218|Active | 10|Liferay Frontend Taglib Util FreeMarker Contributor (1.0.2)
219|Active | 10|Liferay Frontend Taglib (2.0.3)
220|Active | 10|Liferay Frontend Theme Contributor Extender (1.0.2)
221|Active | 10|Liferay Frontend Theme Styled (2.0.4)
222|Active | 10|Liferay Frontend Theme Unstyled (2.0.5)
223|Active | 10|Liferay Hello Soy Web (1.0.1)
224|Active | 10|Liferay Hello Velocity Web (2.0.2)
225|Active | 10|Liferay Hello World Web (2.0.1)
226|Active | 10|Liferay License Manager Web (2.0.1)
227|Active | 10|Liferay Login Authentication Facebook Connect Web (2.0.2)
228|Active | 10|Liferay Login Authentication Google Web (2.0.1)
229|Active | 10|Liferay Login Authentication OpenID Web (2.0.2)
230|Active | 10|Liferay Login Web (1.0.5)
231|Active | 10|Liferay Map API (2.0.1)
232|Active | 10|Liferay Map Common (2.0.1)
233|Active | 10|Liferay Map Google Maps (1.0.5)
234|Active | 10|Liferay Map OpenStreetMap (2.0.1)
235|Active | 10|Liferay Map Taglib (1.0.4)
236|Active | 10|Liferay Mobile Device Rules API (2.0.1)
237|Active | 10|Liferay Mobile Device Rules Service (1.1.2)
238|Active | 10|Liferay Mobile Device Rules Web (1.0.8)
239|Active | 10|Liferay Monitoring Web (1.0.4)
240|Active | 10|Liferay My Account Web (1.0.2)
241|Active | 10|Liferay Password Policies Admin API (2.0.1)
242|Active | 10|Liferay Password Policies Admin Implementation (1.0.3)
243|Active | 10|Liferay Password Policies Admin Web (1.0.10)
244|Active | 10|Liferay Petra Collection (1.0.2)
245|Active | 10|Liferay Petra Content (1.0.1)
246|Active | 10|Liferay Petra Doulos (3.1.2)
247|Active | 10|Liferay Petra Encryptor (1.0.2)
248|Active | 10|Liferay Petra IO Delta (1.0.3)
249|Active | 10|Liferay Petra Log4j (1.0.2)
250|Active | 10|Liferay Petra Mail (1.0.2)
251|Active | 10|Liferay Plugins Admin Web (1.0.3)
252|Active | 10|Liferay Portal Background Task API (2.1.0)
253|Active | 10|Liferay Portal Background Task Service (2.0.4)
254|Active | 10|Liferay Portal Background Task Web (2.0.1)
255|Active | 10|Liferay Portal Cache Ehcache Provider (2.0.1)
256|Active | 10|Liferay Portal Cache Ehcache (2.1.0)
257|Active | 10|Liferay Portal Cache Multiple (1.0.1)
258|Active | 10|Liferay Portal Cache Single (2.0.1)
259|Active | 10|Liferay Portal Cache (2.1.0)
260|Active | 10|Liferay Portal Cluster Multiple (1.0.1)
261|Active | 10|Liferay Portal Cluster Single (2.0.1)
262|Active | 10|Liferay Portal Compound Session ID (2.0.1)
263|Active | 10|Liferay Portal Configuration Cluster (2.1.0)
264|Active | 10|Liferay Portal Configuration Extender (2.0.1)
265|Active | 10|Liferay Portal Configuration Metatype Definitions Annotations (2.0.1)
266|Active | 10|Liferay Portal Configuration Metatype Definitions Equinox (2.0.2)
267|Active | 10|Liferay Portal Configuration Module Configuration (2.0.2)
268|Active | 10|Liferay Portal Configuration Settings (2.0.2)
269|Active | 10|Liferay Portal DAO ORM Custom SQL (1.0.3)
270|Active | 10|Liferay Portal Executor (2.0.1)
271|Active | 10|Liferay Portal Init Servlet Filter (2.0.1)
272|Active | 10|Liferay Portal Instance Lifecycle (3.0.1)
273|Active | 10|Liferay Portal Instances Web (1.0.3)
274|Active | 10|Liferay Portal JMX (3.0.1)
275|Active | 10|Liferay Portal Language Extender (2.0.1)
276|Active | 10|Liferay Portal Language Servlet Filter (2.0.1)
277|Active | 10|Liferay Portal License Deployer (1.0.3)
278|Active | 10|Liferay Portal Lock API (2.0.1)
279|Active | 10|Liferay Portal Lock Service (2.0.2)
280|Active | 10|Liferay Portal Messaging (3.0.1)
281|Active | 10|Liferay Portal Mobile Device Recognition API (1.0.1)
282|Active | 10|Liferay Portal Monitoring (3.0.4)
283|Active | 10|Liferay Portal Output Stream Container (2.0.1)
284|Active | 10|Liferay Portal POP Notifications (2.0.1)
285|Active | 10|Liferay Portal Portlet Bridge Soy (3.0.1)
286|Active | 10|Liferay Portal Properties Swapper (1.0.1)
287|Active | 10|Liferay Portal Remote Axis Extender (1.0.1)
288|Active | 10|Liferay Portal Remote CXF Common (2.0.5)
289|Resolved | 10|Liferay Portal Remote CXF JAX-RS Common (2.0.2)
290|Active | 10|Liferay Portal Remote HTTP Tunnel Extender (2.0.1)
291|Active | 10|Liferay Portal Remote JSON Web Service Extender (2.0.2)
292|Active | 10|Liferay Portal Remote REST Extender (2.0.2)
293|Active | 10|Liferay Portal Remote SOAP Extender (2.0.1)
294|Active | 10|Liferay Portal Scheduler Multiple (1.0.1)
295|Active | 10|Liferay Portal Scheduler Quartz (2.0.3)
296|Active | 10|Liferay Portal Scheduler Single (2.0.2)
297|Active | 10|Liferay Portal Scheduler (3.0.1)
298|Active | 10|Liferay Portal Scripting API (1.0.1)
299|Active | 10|Liferay Portal Scripting Executor (2.1.0)
300|Active | 10|Liferay Portal Scripting Groovy (2.0.2)
301|Active | 10|Liferay Portal Search Elasticsearch (2.0.4)
302|Active | 10|Liferay Portal Search Facet (2.0.1)
303|Active | 10|Liferay Portal Search Web (1.1.2)
304|Active | 10|Liferay Portal Search (3.1.2)
305|Active | 10|Liferay Portal Security AntiSamy (2.0.1)
306|Active | 10|Liferay Portal Security Audit API (2.0.1)
307|Active | 10|Liferay Portal Security Audit Event Generators (1.0.1)
308|Active | 10|Liferay Portal Security Audit Router (1.0.2)
309|Active | 10|Liferay Portal Security Audit Storage API (1.0.1)
310|Active | 10|Liferay Portal Security Audit Storage Service (1.0.1)
311|Active | 10|Liferay Portal Security Audit Web (1.0.2)
312|Active | 10|Liferay Portal Security Audit Wiring (2.0.1)
313|Active | 10|Liferay Portal Security Auth Verifier (2.0.1)
314|Active | 10|Liferay Portal Security Auto Login (2.0.2)
315|Active | 10|Liferay Portal Security Export Import API (2.0.1)
316|Active | 10|Liferay Portal Security LDAP (2.0.4)
317|Active | 10|Liferay Portal Security Service Access Policy API (2.0.2)
318|Active | 10|Liferay Portal Security Service Access Policy Service (2.0.2)
319|Active | 10|Liferay Portal Security Service Access Policy Web (1.0.5)
320|Active | 10|Liferay Portal Security SSO CAS (3.0.3)
321|Active | 10|Liferay Portal Security SSO Facebook Connect (3.0.1)
322|Active | 10|Liferay Portal Security SSO Google (2.0.2)
323|Active | 10|Liferay Portal Security SSO NTLM (3.0.1)
324|Active | 10|Liferay Portal Security SSO OpenID (3.0.1)
325|Active | 10|Liferay Portal Security SSO OpenSSO (3.0.1)
326|Active | 10|Liferay Portal Security SSO Token (3.0.1)
327|Active | 10|Liferay Portal Settings API (2.0.1)
328|Active | 10|Liferay Portal Settings Authentication CAS Web (1.0.3)
329|Active | 10|Liferay Portal Settings Authentication Facebook Connect Web (1.0.3)
330|Active | 10|Liferay Portal Settings Authentication Google Web (1.0.2)
331|Active | 10|Liferay Portal Settings Authentication LDAP Web (1.0.4)
332|Active | 10|Liferay Portal Settings Authentication NTLM Web (1.0.3)
333|Active | 10|Liferay Portal Settings Authentication OpenID Web (1.0.3)
334|Active | 10|Liferay Portal Settings Authentication OpenSSO Web (1.0.3)
335|Active | 10|Liferay Portal Settings Lang (1.0.2)
336|Active | 10|Liferay Portal Settings Web (1.0.5)
337|Active | 10|Liferay Portal Spring Extender (2.0.3)
338|Active | 10|Liferay Portal Store CMIS (2.0.1)
339|Active | 10|Liferay Portal Store DB (2.0.1)
340|Active | 10|Liferay Portal Store File System (2.0.1)
341|Active | 10|Liferay Portal Store JCR (2.0.1)
342|Active | 10|Liferay Portal Store S3 (2.0.2)
343|Active | 10|Liferay Portal Store Safe File Name Wrapper (1.0.1)
344|Active | 10|Liferay Portal Template FreeMarker (2.0.7)
345|Active | 10|Liferay Portal Template Soy (2.0.2)
346|Active | 10|Liferay Portal Template Velocity (2.0.3)
347|Active | 10|Liferay Portal Template XSL (2.0.1)
348|Active | 10|Liferay Portal Upgrade (2.4.0)
349|Active | 10|Liferay Portal Verify Extender (2.0.1)
350|Active | 10|Liferay Portal Weblogic Support (2.0.1)
351|Active | 10|Liferay Roles Admin API (2.0.1)
352|Active | 10|Liferay Roles Admin Implementation (1.0.3)
353|Active | 10|Liferay Roles Admin Web (1.0.9)
354|Active | 10|Liferay Roles Selector Web (1.0.4)
355|Active | 10|Liferay Server Admin Web (1.0.6)
356|Active | 10|Liferay User Groups Admin API (2.0.1)
357|Active | 10|Liferay User Groups Admin Implementation (1.0.3)
358|Active | 10|Liferay User Groups Admin Web (1.0.5)
359|Active | 10|Liferay Users Admin API (2.0.1)
360|Active | 10|Liferay Users Admin Implementation (1.0.3)
361|Active | 10|Liferay Users Admin Web (2.0.5)
362|Active | 10|Liferay Web Proxy Web (1.0.2)
363|Active | 10|Liferay XStream Configurator API (2.0.1)
364|Active | 10|Stax2 API (3.1.4)
365|Active | 10|Liferay Foundation-admin-theme-wrapper (1.0.2)
366|Active | 10|Liferay Foundation-classic-theme-wrapper (1.0.2)
367|Active | 10|Liferay Foundation-user-dashboard-theme-wrapper (1.0.2)
368|Active | 10|Liferay Foundation-user-profile-theme-wrapper (1.0.2)
369|Active | 10|Liferay Marketplace (5.0.0)
370|Active | 10|Liferay Marketplace API (4.1.0)
371|Active | 10|Liferay Marketplace App Manager Web (1.0.7)
372|Active | 10|Liferay Marketplace Deployer (2.0.5)
373|Active | 10|Liferay Marketplace Service (2.1.6)
374|Active | 10|Liferay Marketplace Store Web (2.0.2)
375|Active | 10|Liferay Sharepoint Connector (3.0.2)
376|Active | 10|Liferay Sharepoint Connector-sharepoint-hook-wrapper (7.0.10.3)
377|Active | 10|Liferay Static (7.0.2)
378|Active | 10|Liferay Sync Connector (4.0.0)
379|Active | 10|Liferay Sync API (1.1.0)
380|Active | 10|Liferay Sync Security (2.0.3)
381|Active | 10|Liferay Sync Service (1.0.5)
382|Active | 10|Liferay Sync Web (1.0.2)
383|Active | 10|Liferay Web Experience (7.0.2)
384|Active | 10|Liferay Application List API (2.1.1)
385|Active | 10|Liferay Application List Taglib (2.0.4)
386|Active | 10|Liferay Application List User Personal Site Permissions (2.0.2)
387|Active | 10|Liferay Asset Browser Web (1.0.6)
388|Active | 10|Liferay Asset Categories Admin Web (1.0.9)
389|Active | 10|Liferay Asset Categories Navigation Web (1.0.4)
390|Active | 10|Liferay Asset Categories Service (1.0.5)
391|Active | 10|Liferay Asset Display Web (1.0.1)
392|Active | 10|Liferay Asset Entry Query Processor Custom User Attributes (2.0.2)
393|Active | 10|Liferay Asset Publisher Layout Prototype (1.0.3)
394|Active | 10|Liferay Asset Publisher Web (1.1.5)
395|Active | 10|Liferay Asset Taglib (2.0.3)
396|Active | 10|Liferay Asset Tags Admin Web (1.0.3)
397|Active | 10|Liferay Asset Tags Compiler Web (2.0.1)
398|Active | 10|Liferay Asset Tags Navigation Web (2.0.2)
399|Active | 10|Liferay Asset Tags Service (2.0.1)
400|Active | 10|Liferay Asset Web (2.0.1)
401|Active | 10|Liferay Export Import API (2.1.0)
402|Active | 10|Liferay Export Import Resources Importer (1.1.3)
403|Active | 10|Liferay Export Import Service (3.0.1)
404|Active | 10|Liferay Export Import Web (1.0.9)
405|Active | 10|Liferay IFrame Web (1.0.4)
406|Active | 10|Liferay Journal API (2.1.1)
407|Active | 10|Liferay Journal Content Asset Addon Entry Comments (1.0.3)
408|Active | 10|Liferay Journal Content Asset Addon Entry Common (2.0.2)
409|Active | 10|Liferay Journal Content Asset Addon Entry Conversions (2.0.1)
410|Active | 10|Liferay Journal Content Asset Addon Entry Locales (1.0.2)
411|Active | 10|Liferay Journal Content Asset Addon Entry Print (2.0.1)
412|Active | 10|Liferay Journal Content Asset Addon Entry Ratings (2.0.1)
413|Active | 10|Liferay Journal Content Asset Addon Entry Related Assets (2.0.1)
414|Active | 10|Liferay Journal Content Search Web (1.0.2)
415|Active | 10|Liferay Journal Content Web (1.0.7)
416|Active | 10|Liferay Journal Editor Configuration (1.0.1)
417|Active | 10|Liferay Journal Item Selector API (1.0.1)
418|Active | 10|Liferay Journal Item Selector Web (1.0.2)
419|Active | 10|Liferay Journal Lang (2.0.2)
420|Active | 10|Liferay Journal Ratings Definition (2.0.1)
421|Active | 10|Liferay Journal Service (2.1.5)
422|Active | 10|Liferay Journal Terms Of Use (2.0.6)
423|Active | 10|Liferay Journal Web (1.2.2)
424|Active | 10|Liferay Layout Admin Web (1.0.10)
425|Active | 10|Liferay Layout Implementation (2.0.2)
426|Active | 10|Liferay Layout Item Selector API (1.0.1)
427|Active | 10|Liferay Layout Item Selector Web (1.1.0)
428|Active | 10|Liferay Layout Prototype API (1.0.1)
429|Active | 10|Liferay Layout Prototype Implementation (1.0.2)
430|Active | 10|Liferay Layout Prototype Web (1.0.6)
431|Active | 10|Liferay Layout Set Prototype API (1.0.1)
432|Active | 10|Liferay Layout Set Prototype Implementation (1.0.2)
433|Active | 10|Liferay Layout Set Prototype Web (1.0.7)
434|Active | 10|Liferay Layout Taglib (2.0.5)
435|Active | 10|Liferay Layout Type Controller Control Panel (2.0.1)
436|Active | 10|Liferay Layout Type Controller Full Page Application (2.0.1)
437|Active | 10|Liferay Layout Type Controller Node (2.0.1)
438|Active | 10|Liferay Layout Type Controller Shared Portlet (2.0.1)
439|Active | 10|Liferay Nested Portlets Web (2.0.2)
440|Active | 10|Liferay Portlet Configuration CSS Web (2.0.2)
441|Active | 10|Liferay Portlet Configuration Icon Close (2.0.1)
442|Active | 10|Liferay Portlet Configuration Icon Edit Defaults (2.0.1)
443|Active | 10|Liferay Portlet Configuration Icon Edit Guest (2.0.1)
444|Active | 10|Liferay Portlet Configuration Icon Edit (2.0.1)
445|Active | 10|Liferay Portlet Configuration Icon Help (2.0.1)
446|Active | 10|Liferay Portlet Configuration Icon Locator API (2.0.1)
447|Active | 10|Liferay Portlet Configuration Icon Maximize (2.0.1)
448|Active | 10|Liferay Portlet Configuration Icon Minimize (2.0.1)
449|Active | 10|Liferay Portlet Configuration Icon Print (2.0.1)
450|Active | 10|Liferay Portlet Configuration Icon Refresh (2.0.1)
451|Active | 10|Liferay Portlet Configuration Sharing Web (2.0.2)
452|Active | 10|Liferay Portlet Configuration Toolbar Contributor Locator API (2.0.1)
453|Active | 10|Liferay Portlet Configuration Web (1.0.6)
454|Active | 10|Liferay Portlet Display Template Web (2.0.2)
455|Active | 10|Liferay Portlet Display Template (2.0.2)
456|Active | 10|Liferay Product Navigation Control Menu API (3.0.0)
457|Active | 10|Liferay Product Navigation Control Menu DXP Theme Contributor (1.0.4)
458|Active | 10|Liferay Product Navigation Control Menu Web (2.0.4)
459|Active | 10|Liferay Product Navigation Control Panel (2.0.1)
460|Active | 10|Liferay Product Navigation Product Menu DXP Theme Contributor (1.0.2)
461|Active | 10|Liferay Product Navigation Product Menu Web (2.0.2)
462|Active | 10|Liferay Product Navigation Simulation Device (2.0.2)
463|Active | 10|Liferay Product Navigation Simulation Theme Contributor (2.0.1)
464|Active | 10|Liferay Product Navigation Simulation Web (2.0.2)
465|Active | 10|Liferay Product Navigation Simulation (2.0.1)
466|Active | 10|Liferay Product Navigation Site Administration (2.0.1)
467|Active | 10|Liferay Product Navigation Taglib (2.0.3)
468|Active | 10|Liferay Product Navigation User Personal Bar Web (2.0.1)
469|Active | 10|Liferay Product Navigation User (2.0.1)
470|Active | 10|Liferay RSS Utilities (1.0.3)
471|Active | 10|Liferay RSS Web (2.0.2)
472|Active | 10|Liferay Site Admin Web (1.0.9)
473|Active | 10|Liferay Site API (2.0.2)
474|Active | 10|Liferay Site Browser Web (2.0.5)
475|Active | 10|Liferay Site Item Selector API (1.0.1)
476|Active | 10|Liferay Site Item Selector Web (2.0.4)
477|Active | 10|Liferay Site Memberships Web (1.0.11)
478|Active | 10|Liferay Site My Sites Web (1.0.5)
479|Active | 10|Liferay Site Navigation Breadcrumb Web (2.0.2)
480|Active | 10|Liferay Site Navigation Directory Web (2.0.2)
481|Active | 10|Liferay Site Navigation Language Web (2.0.1)
482|Active | 10|Liferay Site Navigation Menu Web (2.0.2)
483|Active | 10|Liferay Site Navigation Site Map Web (2.0.1)
484|Active | 10|Liferay Site Navigation Taglib (2.0.3)
485|Active | 10|Liferay Site Teams Web (1.0.8)
486|Active | 10|Liferay Staging API (2.0.1)
487|Active | 10|Liferay Staging Bar Web (1.0.4)
488|Active | 10|Liferay Staging Configuration Web (1.0.4)
489|Active | 10|Liferay Staging Lang (2.0.3)
490|Active | 10|Liferay Staging Portlet Data Handler (2.0.1)
491|Active | 10|Liferay Staging Processes Web (1.0.5)
492|Active | 10|Liferay Staging Security (2.0.3)
493|Active | 10|Liferay Staging Taglib (3.1.3)
494|Active | 10|Liferay Trash Taglib (2.0.3)
495|Active | 10|Liferay Trash Web (1.0.6)
496|Active | 10|Liferay XSL Content Web (2.0.2)
497|Active | 10|admin-theme (1.0.2)
498|Active | 10|lcs-portlet (7.0.10.2)
499|Active | 10|documentum-hook (7.0.10.3)
500|Active | 10|user-profile-theme (1.0.2)
501|Active | 10|classic-theme (1.0.2)
502|Active | 10|user-dashboard-theme (1.0.2)
503|Active | 10|sharepoint-hook (7.0.10.3)
504|Active | 10|training.component (1.0.0)
g!
START LEVEL 20
ID|State |Level|Name
0|Active | 0|OSGi System Bundle (3.10.200.v20150831-0856)
1|Active | 6|Liferay Util Taglib (2.4.0)
2|Active | 6|Liferay OSGi Utilities (3.0.2)
3|Active | 6|Liferay Petra XML (1.0.3)
4|Active | 6|Liferay Portal Configuration Metatype (2.0.2)
5|Active | 6|Liferay Portal Configuration Persistence (2.0.1)
6|Active | 6|Liferay Portal Log4j Extender (2.0.2)
7|Active | 6|Liferay Portal LPKG Deployer (2.0.3)
8|Active | 6|Liferay Portal OSGi Web Portlet Tracker (2.0.2)
9|Active | 6|Liferay Portal OSGi Web Servlet Context Helper (2.1.0)
10|Active | 6|Liferay Portal OSGi Web Servlet JSP Compiler (2.0.5)
11|Active | 6|Liferay Portal OSGi Web WAB Extender (2.0.6)
12|Active | 6|Liferay Portal OSGi Web WAB Generator (2.1.7)
13|Active | 6|Liferay Portal OSGi Web WAB Reference Support (1.0.3)
14|Active | 6|Liferay Portal Profile (1.0.2)
15|Resolved | 1|Liferay Portal Remote Dependency Manager TCCL (2.0.1)
16|Active | 6|Liferay Portal Target Platform Indexer (3.0.2)
17|Active | 6|Expression Language 3.0 (3.0.0)
18|Active | 6|JavaServer Pages(TM) API (2.3.2.b01)
19|Active | 6|javax.servlet.jsp.jstl (1.2.3.LIFERAY-PATCHED-2)
20|Active | 6|JavaServer Pages(TM) Standard Tag Library API (1.2.1)
21|Active | 6|Apache Aries JMX API (1.1.1)
22|Active | 6|Apache Aries JMX Core (1.1.3)
23|Active | 6|Apache Aries Util (1.0.0)
24|Active | 6|Apache Commons FileUpload Bundle (1.2.1)
25|Active | 6|Apache Commons IO Bundle (1.4.0)
26|Active | 6|Apache Felix Bundle Repository (2.0.2)
27|Active | 6|Apache Felix Configuration Admin Service (1.8.8)
28|Active | 6|Apache Felix Dependency Manager (3.2.0)
29|Active | 6|Apache Felix Dependency Manager Shell (3.2.0)
30|Active | 6|Apache Felix EventAdmin (1.4.6)
31|Active | 6|Apache Felix File Install (3.5.1.SNAPSHOT)
32|Active | 6|Apache Felix Gogo Command (0.12.0)
33|Active | 6|Apache Felix Gogo Runtime (0.10.0)
34|Active | 6|Apache Felix Gogo Shell (0.10.0)
35|Active | 6|Apache Felix Declarative Services (2.0.2)
36|Active | 6|Console plug-in (1.1.100.v20141023-1406)
37|Active | 6|Http Services Servlet (1.2.2.v20160401-1842)
38|Active | 6|Meta Type (1.4.200.v20150715-1528)
39|Active | 6|org.osgi.service.http (3.5.0.LIFERAY-PATCHED-2)
40|Active | 6|org.osgi:org.osgi.service.metatype (1.3.0.201505202024)
41|Active | 10|Liferay Collaboration (7.0.0)
42|Active | 10|Liferay Announcements Web (1.0.5)
43|Active | 10|Liferay Blogs API (3.0.1)
44|Active | 10|Liferay Blogs Editor Configuration (1.0.1)
45|Active | 10|Liferay Blogs Item Selector API (1.0.1)
46|Active | 10|Liferay Blogs Item Selector Web (1.0.2)
47|Active | 10|Liferay Blogs Layout Prototype (2.0.2)
48|Active | 10|Liferay Blogs Recent Bloggers Web (1.0.3)
49|Active | 10|Liferay Blogs Service (1.0.3)
50|Active | 10|Liferay Blogs Web (1.0.11)
51|Active | 10|Liferay Bookmarks API (2.0.1)
52|Active | 10|Liferay Bookmarks Service (1.0.7)
53|Active | 10|Liferay Bookmarks Web (1.0.9)
54|Active | 10|Liferay Comment API (2.0.1)
55|Active | 10|Liferay Comment Editor Configuration (1.0.1)
56|Active | 10|Liferay Comment Page Comments Web (1.0.2)
57|Active | 10|Liferay Comment Ratings Definition (2.0.1)
58|Active | 10|Liferay Comment Sanitizer (2.0.1)
59|Active | 10|Liferay Comment Web (1.0.5)
60|Active | 10|Liferay Directory Web (1.0.5)
61|Active | 10|Liferay Document Library API (3.0.2)
62|Active | 10|Liferay Document Library Item Selector Web (1.0.2)
63|Active | 10|Liferay Document Library Layout Set Prototype (2.0.2)
64|Active | 10|Liferay Document Library Repository CMIS API (1.0.3)
65|Active | 10|Liferay Document Library Repository CMIS Implementation (2.0.3)
66|Active | 10|Liferay Document Library Repository Search (2.0.1)
67|Active | 10|Liferay Document Library Service (1.1.2)
68|Active | 10|Liferay Document Library Web (1.0.10)
69|Active | 10|Liferay Flags API (2.0.1)
70|Active | 10|Liferay Flags Service (2.0.3)
71|Active | 10|Liferay Flags Taglib (2.0.2)
72|Active | 10|Liferay Flags Web (2.0.2)
73|Active | 10|Liferay Image Uploader Web (1.0.4)
74|Active | 10|Liferay Invitation Invite Members API (2.0.1)
75|Active | 10|Liferay Invitation Invite Members Service (2.0.4)
76|Active | 10|Liferay Invitation Invite Members Web (1.0.8)
77|Active | 10|Liferay Item Selector API (2.0.1)
78|Active | 10|Liferay Item Selector Criteria API (2.0.1)
79|Active | 10|Liferay Item Selector Editor Configuration (2.0.1)
80|Active | 10|Liferay Item Selector Taglib (1.0.6)
81|Active | 10|Liferay Item Selector Upload Web (2.0.1)
82|Active | 10|Liferay Item Selector URL Web (2.0.1)
83|Active | 10|Liferay Item Selector Web (2.0.2)
84|Active | 10|Liferay Mentions API (2.0.1)
85|Active | 10|Liferay Mentions Service (2.0.1)
86|Active | 10|Liferay Mentions Web (1.0.4)
87|Active | 10|Liferay Message Boards API (3.0.1)
88|Active | 10|Liferay Message Boards Comment (2.0.2)
89|Active | 10|Liferay Message Boards Layout Set Prototype (1.0.5)
90|Active | 10|Liferay Message Boards Parser BBCode (2.0.1)
91|Active | 10|Liferay Message Boards Service (1.0.5)
92|Active | 10|Liferay Message Boards Web (1.0.8)
93|Active | 10|Liferay Microblogs API (2.0.1)
94|Active | 10|Liferay Microblogs Service (2.0.3)
95|Active | 10|Liferay Microblogs Web (2.0.5)
96|Active | 10|Liferay Notifications Web (1.0.8)
97|Active | 10|Liferay Quick Note Web (2.0.1)
98|Active | 10|Liferay Ratings API (2.0.1)
99|Active | 10|Liferay Ratings Page Ratings Web (2.0.2)
100|Active | 10|Liferay Ratings Service (1.0.3)
101|Active | 10|Liferay Recent Documents Web (2.0.2)
102|Active | 10|Liferay Social Activities Web (1.0.3)
103|Active | 10|Liferay Social Activity API (1.0.1)
104|Active | 10|Liferay Social Activity Web (2.0.2)
105|Active | 10|Liferay Social Group Statistics Web (2.0.1)
106|Active | 10|Liferay Social Private Messaging API (2.0.1)
107|Active | 10|Liferay Social Private Messaging Service (1.1.2)
108|Active | 10|Liferay Social Private Messaging Web (1.0.6)
109|Active | 10|Liferay Social Requests Web (1.0.2)
110|Active | 10|Liferay Social User Statistics Web (2.0.2)
111|Active | 10|Liferay Wiki API (2.1.0)
112|Active | 10|Liferay Wiki Editor Configuration (1.0.2)
113|Active | 10|Liferay Wiki Engine Creole (2.0.1)
114|Active | 10|Liferay Wiki Engine HTML (2.0.1)
115|Active | 10|Liferay Wiki Engine Input Editor Common (2.0.1)
116|Active | 10|Liferay Wiki Engine Text (2.0.1)
117|Active | 10|Liferay Wiki Layout Prototype (1.0.3)
118|Active | 10|Liferay Wiki Navigation Web (2.0.4)
119|Active | 10|Liferay Wiki Service (1.1.3)
120|Active | 10|Liferay Wiki Web (1.0.11)
121|Active | 10|Liferay Connected Services Client (2.0.2)
122|Active | 10|Liferay Connected Services Client-lcs-portlet-wrapper (7.0.10.2)
123|Active | 10|Liferay Documentum Connector (3.0.0)
124|Active | 10|Liferay Documentum Connector-documentum-hook-wrapper (7.0.10.3)
125|Active | 10|Liferay Forms and Workflow (7.0.0)
126|Active | 10|Liferay Calendar API (2.0.1)
127|Active | 10|Liferay Calendar Service (2.0.5)
128|Active | 10|Liferay Calendar Web (1.0.7)
129|Active | 10|Liferay Dynamic Data Lists API (2.0.3)
130|Active | 10|Liferay Dynamic Data Lists Form Web (1.0.9)
131|Active | 10|Liferay Dynamic Data Lists Service (1.1.2)
132|Active | 10|Liferay Dynamic Data Lists Web (1.1.5)
133|Active | 10|Liferay Dynamic Data Mapping API (3.3.0)
134|Active | 10|Liferay Dynamic Data Mapping Data Provider (2.0.2)
135|Active | 10|Liferay Dynamic Data Mapping Data Provider REST (2.0.2)
136|Active | 10|Liferay Dynamic Data Mapping Data Provider Web (1.0.4)
137|Active | 10|Liferay Dynamic Data Mapping Expression (2.0.1)
138|Active | 10|Liferay Dynamic Data Mapping Form Evaluator (2.0.2)
139|Active | 10|Liferay Dynamic Data Mapping Form Field Type (2.0.2)
140|Active | 10|Liferay Dynamic Data Mapping Form Renderer (2.1.1)
141|Active | 10|Liferay Dynamic Data Mapping Form Values Factory (2.0.3)
142|Active | 10|Liferay Dynamic Data Mapping Form Values Query (2.0.3)
143|Active | 10|Liferay Dynamic Data Mapping IO (2.0.5)
144|Active | 10|Liferay Dynamic Data Mapping Lang (2.0.2)
145|Active | 10|Liferay Dynamic Data Mapping Service (2.1.4)
146|Active | 10|Liferay Dynamic Data Mapping Taglib (2.0.2)
147|Active | 10|Liferay Dynamic Data Mapping Type Captcha (2.0.2)
148|Active | 10|Liferay Dynamic Data Mapping Type Checkbox (2.0.6)
149|Active | 10|Liferay Dynamic Data Mapping Type Date (2.0.6)
150|Active | 10|Liferay Dynamic Data Mapping Type Editor (2.0.6)
151|Active | 10|Liferay Dynamic Data Mapping Type Key Value (2.0.4)
152|Active | 10|Liferay Dynamic Data Mapping Type Options (2.0.4)
153|Active | 10|Liferay Dynamic Data Mapping Type Paragraph (2.0.5)
154|Active | 10|Liferay Dynamic Data Mapping Type Radio (2.0.7)
155|Active | 10|Liferay Dynamic Data Mapping Type Select (2.0.6)
156|Active | 10|Liferay Dynamic Data Mapping Type Text (2.0.6)
157|Active | 10|Liferay Dynamic Data Mapping Type Validation (2.0.3)
158|Active | 10|Liferay Dynamic Data Mapping Validator (2.1.0)
159|Active | 10|Liferay Dynamic Data Mapping Web (1.0.9)
160|Active | 10|Liferay Polls API (4.0.0)
161|Active | 10|Liferay Polls Service (3.0.2)
162|Active | 10|Liferay Polls Web (2.0.5)
163|Active | 10|Liferay Portal Reports Engine API (3.0.0)
164|Active | 10|Liferay Portal Rules Engine API (2.0.1)
165|Active | 10|Liferay Portal Rules Engine Drools (1.0.1)
166|Active | 10|Liferay Portal Rules Engine Wiring (2.0.1)
167|Active | 10|Liferay Portal Workflow Definition Link Web (1.0.3)
168|Active | 10|Liferay Portal Workflow Definition Web (1.0.4)
169|Active | 10|Liferay Portal Workflow Instance Web (1.0.5)
170|Active | 10|Liferay Portal Workflow Kaleo API (2.0.1)
171|Active | 10|Liferay Portal Workflow Kaleo Definition API (2.0.1)
172|Active | 10|Liferay Portal Workflow Kaleo Definition Implementation (2.0.1)
173|Active | 10|Liferay Portal Workflow Kaleo Designer API (1.0.1)
174|Active | 10|Liferay Portal Workflow Kaleo Designer Service (1.0.1)
175|Active | 10|Liferay Portal Workflow Kaleo Designer Web (1.0.1)
176|Active | 10|Liferay Portal Workflow Kaleo Forms API (1.0.1)
177|Active | 10|Liferay Portal Workflow Kaleo Forms Service (1.0.0)
178|Active | 10|Liferay Portal Workflow Kaleo Forms Web (1.0.1)
179|Active | 10|Liferay Portal Workflow Kaleo Runtime API (2.1.0)
180|Active | 10|Liferay Portal Workflow Kaleo Runtime Implementation (2.0.5)
181|Active | 10|Liferay Portal Workflow Kaleo Runtime Scripting Implementation (1.0.1)
182|Active | 10|Liferay Portal Workflow Kaleo Service (2.0.5)
183|Active | 10|Liferay Portal Workflow Lang (2.0.2)
184|Active | 10|Liferay Portal Workflow Task Web (1.0.5)
185|Active | 10|Liferay Foundation (7.0.2)
186|Active | 10|Woodstox XML-processor (4.4.1)
187|Active | 10|Liferay Configuration Admin Web (1.0.5)
188|Active | 10|Liferay Contacts API (2.0.3)
189|Active | 10|Liferay Contacts Service (2.0.2)
190|Active | 10|Liferay Contacts Web (1.0.10)
191|Active | 10|Liferay Expando Web (1.0.3)
192|Active | 10|Liferay Frontend CSS Common (2.0.1)
193|Active | 10|Liferay Frontend CSS RTL Converter (1.0.2)
194|Active | 10|Liferay Frontend CSS RTL Servlet (1.0.2)
195|Active | 10|Liferay Frontend CSS Web (1.0.8)
196|Active | 10|Liferay Frontend Editor AlloyEditor Web (1.0.5)
197|Active | 10|Liferay Frontend Editor CKEditor Web (1.0.5)
198|Active | 10|Liferay Frontend Editor Lang (1.0.2)
199|Active | 10|Liferay Frontend Editor Simple Web (1.0.2)
200|Active | 10|Liferay Frontend Editor TinyMCE Web (1.0.2)
201|Active | 10|Liferay Frontend Image Editor API (1.0.2)
202|Active | 10|Liferay Frontend Image Editor Capability Brightness (1.0.2)
203|Active | 10|Liferay Frontend Image Editor Capability Contrast (1.0.2)
204|Active | 10|Liferay Frontend Image Editor Capability Crop (1.0.2)
205|Active | 10|Liferay Frontend Image Editor Capability Effects (1.0.2)
206|Active | 10|Liferay Frontend Image Editor Capability Resize (1.0.2)
207|Active | 10|Liferay Frontend Image Editor Capability Rotate (1.0.2)
208|Active | 10|Liferay Frontend Image Editor Capability Saturation (1.0.2)
209|Active | 10|Liferay Frontend Image Editor Integration Document Library (1.0.2)
210|Active | 10|Liferay Frontend Image Editor Web (1.0.1)
211|Active | 10|Liferay Frontend JS Bundle Config Extender (1.0.3)
212|Active | 10|Liferay Frontend JS Loader Modules Extender (1.0.2)
213|Active | 10|Liferay Frontend JS Metal Web (1.0.7)
214|Active | 10|Liferay Frontend JS Polyfill Babel Web (1.0.2)
215|Active | 10|Liferay Frontend JS Soyutils Web (1.0.3)
216|Active | 10|Liferay Frontend JS SPA Web (1.0.7)
217|Active | 10|Liferay Frontend JS Web (1.0.8)
218|Active | 10|Liferay Frontend Taglib Util FreeMarker Contributor (1.0.2)
219|Active | 10|Liferay Frontend Taglib (2.0.3)
220|Active | 10|Liferay Frontend Theme Contributor Extender (1.0.2)
221|Active | 10|Liferay Frontend Theme Styled (2.0.4)
222|Active | 10|Liferay Frontend Theme Unstyled (2.0.5)
223|Active | 10|Liferay Hello Soy Web (1.0.1)
224|Active | 10|Liferay Hello Velocity Web (2.0.2)
225|Active | 10|Liferay Hello World Web (2.0.1)
226|Active | 10|Liferay License Manager Web (2.0.1)
227|Active | 10|Liferay Login Authentication Facebook Connect Web (2.0.2)
228|Active | 10|Liferay Login Authentication Google Web (2.0.1)
229|Active | 10|Liferay Login Authentication OpenID Web (2.0.2)
230|Active | 10|Liferay Login Web (1.0.5)
231|Active | 10|Liferay Map API (2.0.1)
232|Active | 10|Liferay Map Common (2.0.1)
233|Active | 10|Liferay Map Google Maps (1.0.5)
234|Active | 10|Liferay Map OpenStreetMap (2.0.1)
235|Active | 10|Liferay Map Taglib (1.0.4)
236|Active | 10|Liferay Mobile Device Rules API (2.0.1)
237|Active | 10|Liferay Mobile Device Rules Service (1.1.2)
238|Active | 10|Liferay Mobile Device Rules Web (1.0.8)
239|Active | 10|Liferay Monitoring Web (1.0.4)
240|Active | 10|Liferay My Account Web (1.0.2)
241|Active | 10|Liferay Password Policies Admin API (2.0.1)
242|Active | 10|Liferay Password Policies Admin Implementation (1.0.3)
243|Active | 10|Liferay Password Policies Admin Web (1.0.10)
244|Active | 10|Liferay Petra Collection (1.0.2)
245|Active | 10|Liferay Petra Content (1.0.1)
246|Active | 10|Liferay Petra Doulos (3.1.2)
247|Active | 10|Liferay Petra Encryptor (1.0.2)
248|Active | 10|Liferay Petra IO Delta (1.0.3)
249|Active | 10|Liferay Petra Log4j (1.0.2)
250|Active | 10|Liferay Petra Mail (1.0.2)
251|Active | 10|Liferay Plugins Admin Web (1.0.3)
252|Active | 10|Liferay Portal Background Task API (2.1.0)
253|Active | 10|Liferay Portal Background Task Service (2.0.4)
254|Active | 10|Liferay Portal Background Task Web (2.0.1)
255|Active | 10|Liferay Portal Cache Ehcache Provider (2.0.1)
256|Active | 10|Liferay Portal Cache Ehcache (2.1.0)
257|Active | 10|Liferay Portal Cache Multiple (1.0.1)
258|Active | 10|Liferay Portal Cache Single (2.0.1)
259|Active | 10|Liferay Portal Cache (2.1.0)
260|Active | 10|Liferay Portal Cluster Multiple (1.0.1)
261|Active | 10|Liferay Portal Cluster Single (2.0.1)
262|Active | 10|Liferay Portal Compound Session ID (2.0.1)
263|Active | 10|Liferay Portal Configuration Cluster (2.1.0)
264|Active | 10|Liferay Portal Configuration Extender (2.0.1)
265|Active | 10|Liferay Portal Configuration Metatype Definitions Annotations (2.0.1)
266|Active | 10|Liferay Portal Configuration Metatype Definitions Equinox (2.0.2)
267|Active | 10|Liferay Portal Configuration Module Configuration (2.0.2)
268|Active | 10|Liferay Portal Configuration Settings (2.0.2)
269|Active | 10|Liferay Portal DAO ORM Custom SQL (1.0.3)
270|Active | 10|Liferay Portal Executor (2.0.1)
271|Active | 10|Liferay Portal Init Servlet Filter (2.0.1)
272|Active | 10|Liferay Portal Instance Lifecycle (3.0.1)
273|Active | 10|Liferay Portal Instances Web (1.0.3)
274|Active | 10|Liferay Portal JMX (3.0.1)
275|Active | 10|Liferay Portal Language Extender (2.0.1)
276|Active | 10|Liferay Portal Language Servlet Filter (2.0.1)
277|Active | 10|Liferay Portal License Deployer (1.0.3)
278|Active | 10|Liferay Portal Lock API (2.0.1)
279|Active | 10|Liferay Portal Lock Service (2.0.2)
280|Active | 10|Liferay Portal Messaging (3.0.1)
281|Active | 10|Liferay Portal Mobile Device Recognition API (1.0.1)
282|Active | 10|Liferay Portal Monitoring (3.0.4)
283|Active | 10|Liferay Portal Output Stream Container (2.0.1)
284|Active | 10|Liferay Portal POP Notifications (2.0.1)
285|Active | 10|Liferay Portal Portlet Bridge Soy (3.0.1)
286|Active | 10|Liferay Portal Properties Swapper (1.0.1)
287|Active | 10|Liferay Portal Remote Axis Extender (1.0.1)
288|Active | 10|Liferay Portal Remote CXF Common (2.0.5)
289|Resolved | 10|Liferay Portal Remote CXF JAX-RS Common (2.0.2)
290|Active | 10|Liferay Portal Remote HTTP Tunnel Extender (2.0.1)
291|Active | 10|Liferay Portal Remote JSON Web Service Extender (2.0.2)
292|Active | 10|Liferay Portal Remote REST Extender (2.0.2)
293|Active | 10|Liferay Portal Remote SOAP Extender (2.0.1)
294|Active | 10|Liferay Portal Scheduler Multiple (1.0.1)
295|Active | 10|Liferay Portal Scheduler Quartz (2.0.3)
296|Active | 10|Liferay Portal Scheduler Single (2.0.2)
297|Active | 10|Liferay Portal Scheduler (3.0.1)
298|Active | 10|Liferay Portal Scripting API (1.0.1)
299|Active | 10|Liferay Portal Scripting Executor (2.1.0)
300|Active | 10|Liferay Portal Scripting Groovy (2.0.2)
301|Active | 10|Liferay Portal Search Elasticsearch (2.0.4)
302|Active | 10|Liferay Portal Search Facet (2.0.1)
303|Active | 10|Liferay Portal Search Web (1.1.2)
304|Active | 10|Liferay Portal Search (3.1.2)
305|Active | 10|Liferay Portal Security AntiSamy (2.0.1)
306|Active | 10|Liferay Portal Security Audit API (2.0.1)
307|Active | 10|Liferay Portal Security Audit Event Generators (1.0.1)
308|Active | 10|Liferay Portal Security Audit Router (1.0.2)
309|Active | 10|Liferay Portal Security Audit Storage API (1.0.1)
310|Active | 10|Liferay Portal Security Audit Storage Service (1.0.1)
311|Active | 10|Liferay Portal Security Audit Web (1.0.2)
312|Active | 10|Liferay Portal Security Audit Wiring (2.0.1)
313|Active | 10|Liferay Portal Security Auth Verifier (2.0.1)
314|Active | 10|Liferay Portal Security Auto Login (2.0.2)
315|Active | 10|Liferay Portal Security Export Import API (2.0.1)
316|Active | 10|Liferay Portal Security LDAP (2.0.4)
317|Active | 10|Liferay Portal Security Service Access Policy API (2.0.2)
318|Active | 10|Liferay Portal Security Service Access Policy Service (2.0.2)
319|Active | 10|Liferay Portal Security Service Access Policy Web (1.0.5)
320|Active | 10|Liferay Portal Security SSO CAS (3.0.3)
321|Active | 10|Liferay Portal Security SSO Facebook Connect (3.0.1)
322|Active | 10|Liferay Portal Security SSO Google (2.0.2)
323|Active | 10|Liferay Portal Security SSO NTLM (3.0.1)
324|Active | 10|Liferay Portal Security SSO OpenID (3.0.1)
325|Active | 10|Liferay Portal Security SSO OpenSSO (3.0.1)
326|Active | 10|Liferay Portal Security SSO Token (3.0.1)
327|Active | 10|Liferay Portal Settings API (2.0.1)
328|Active | 10|Liferay Portal Settings Authentication CAS Web (1.0.3)
329|Active | 10|Liferay Portal Settings Authentication Facebook Connect Web (1.0.3)
330|Active | 10|Liferay Portal Settings Authentication Google Web (1.0.2)
331|Active | 10|Liferay Portal Settings Authentication LDAP Web (1.0.4)
332|Active | 10|Liferay Portal Settings Authentication NTLM Web (1.0.3)
333|Active | 10|Liferay Portal Settings Authentication OpenID Web (1.0.3)
334|Active | 10|Liferay Portal Settings Authentication OpenSSO Web (1.0.3)
335|Active | 10|Liferay Portal Settings Lang (1.0.2)
336|Active | 10|Liferay Portal Settings Web (1.0.5)
337|Active | 10|Liferay Portal Spring Extender (2.0.3)
338|Active | 10|Liferay Portal Store CMIS (2.0.1)
339|Active | 10|Liferay Portal Store DB (2.0.1)
340|Active | 10|Liferay Portal Store File System (2.0.1)
341|Active | 10|Liferay Portal Store JCR (2.0.1)
342|Active | 10|Liferay Portal Store S3 (2.0.2)
343|Active | 10|Liferay Portal Store Safe File Name Wrapper (1.0.1)
344|Active | 10|Liferay Portal Template FreeMarker (2.0.7)
345|Active | 10|Liferay Portal Template Soy (2.0.2)
346|Active | 10|Liferay Portal Template Velocity (2.0.3)
347|Active | 10|Liferay Portal Template XSL (2.0.1)
348|Active | 10|Liferay Portal Upgrade (2.4.0)
349|Active | 10|Liferay Portal Verify Extender (2.0.1)
350|Active | 10|Liferay Portal Weblogic Support (2.0.1)
351|Active | 10|Liferay Roles Admin API (2.0.1)
352|Active | 10|Liferay Roles Admin Implementation (1.0.3)
353|Active | 10|Liferay Roles Admin Web (1.0.9)
354|Active | 10|Liferay Roles Selector Web (1.0.4)
355|Active | 10|Liferay Server Admin Web (1.0.6)
356|Active | 10|Liferay User Groups Admin API (2.0.1)
357|Active | 10|Liferay User Groups Admin Implementation (1.0.3)
358|Active | 10|Liferay User Groups Admin Web (1.0.5)
359|Active | 10|Liferay Users Admin API (2.0.1)
360|Active | 10|Liferay Users Admin Implementation (1.0.3)
361|Active | 10|Liferay Users Admin Web (2.0.5)
362|Active | 10|Liferay Web Proxy Web (1.0.2)
363|Active | 10|Liferay XStream Configurator API (2.0.1)
364|Active | 10|Stax2 API (3.1.4)
365|Active | 10|Liferay Foundation-admin-theme-wrapper (1.0.2)
366|Active | 10|Liferay Foundation-classic-theme-wrapper (1.0.2)
367|Active | 10|Liferay Foundation-user-dashboard-theme-wrapper (1.0.2)
368|Active | 10|Liferay Foundation-user-profile-theme-wrapper (1.0.2)
369|Active | 10|Liferay Marketplace (5.0.0)
370|Active | 10|Liferay Marketplace API (4.1.0)
371|Active | 10|Liferay Marketplace App Manager Web (1.0.7)
372|Active | 10|Liferay Marketplace Deployer (2.0.5)
373|Active | 10|Liferay Marketplace Service (2.1.6)
374|Active | 10|Liferay Marketplace Store Web (2.0.2)
375|Active | 10|Liferay Sharepoint Connector (3.0.2)
376|Active | 10|Liferay Sharepoint Connector-sharepoint-hook-wrapper (7.0.10.3)
377|Active | 10|Liferay Static (7.0.2)
378|Active | 10|Liferay Sync Connector (4.0.0)
379|Active | 10|Liferay Sync API (1.1.0)
380|Active | 10|Liferay Sync Security (2.0.3)
381|Active | 10|Liferay Sync Service (1.0.5)
382|Active | 10|Liferay Sync Web (1.0.2)
383|Active | 10|Liferay Web Experience (7.0.2)
384|Active | 10|Liferay Application List API (2.1.1)
385|Active | 10|Liferay Application List Taglib (2.0.4)
386|Active | 10|Liferay Application List User Personal Site Permissions (2.0.2)
387|Active | 10|Liferay Asset Browser Web (1.0.6)
388|Active | 10|Liferay Asset Categories Admin Web (1.0.9)
389|Active | 10|Liferay Asset Categories Navigation Web (1.0.4)
390|Active | 10|Liferay Asset Categories Service (1.0.5)
391|Active | 10|Liferay Asset Display Web (1.0.1)
392|Active | 10|Liferay Asset Entry Query Processor Custom User Attributes (2.0.2)
393|Active | 10|Liferay Asset Publisher Layout Prototype (1.0.3)
394|Active | 10|Liferay Asset Publisher Web (1.1.5)
395|Active | 10|Liferay Asset Taglib (2.0.3)
396|Active | 10|Liferay Asset Tags Admin Web (1.0.3)
397|Active | 10|Liferay Asset Tags Compiler Web (2.0.1)
398|Active | 10|Liferay Asset Tags Navigation Web (2.0.2)
399|Active | 10|Liferay Asset Tags Service (2.0.1)
400|Active | 10|Liferay Asset Web (2.0.1)
401|Active | 10|Liferay Export Import API (2.1.0)
402|Active | 10|Liferay Export Import Resources Importer (1.1.3)
403|Active | 10|Liferay Export Import Service (3.0.1)
404|Active | 10|Liferay Export Import Web (1.0.9)
405|Active | 10|Liferay IFrame Web (1.0.4)
406|Active | 10|Liferay Journal API (2.1.1)
407|Active | 10|Liferay Journal Content Asset Addon Entry Comments (1.0.3)
408|Active | 10|Liferay Journal Content Asset Addon Entry Common (2.0.2)
409|Active | 10|Liferay Journal Content Asset Addon Entry Conversions (2.0.1)
410|Active | 10|Liferay Journal Content Asset Addon Entry Locales (1.0.2)
411|Active | 10|Liferay Journal Content Asset Addon Entry Print (2.0.1)
412|Active | 10|Liferay Journal Content Asset Addon Entry Ratings (2.0.1)
413|Active | 10|Liferay Journal Content Asset Addon Entry Related Assets (2.0.1)
414|Active | 10|Liferay Journal Content Search Web (1.0.2)
415|Active | 10|Liferay Journal Content Web (1.0.7)
416|Active | 10|Liferay Journal Editor Configuration (1.0.1)
417|Active | 10|Liferay Journal Item Selector API (1.0.1)
418|Active | 10|Liferay Journal Item Selector Web (1.0.2)
419|Active | 10|Liferay Journal Lang (2.0.2)
420|Active | 10|Liferay Journal Ratings Definition (2.0.1)
421|Active | 10|Liferay Journal Service (2.1.5)
422|Active | 10|Liferay Journal Terms Of Use (2.0.6)
423|Active | 10|Liferay Journal Web (1.2.2)
424|Active | 10|Liferay Layout Admin Web (1.0.10)
425|Active | 10|Liferay Layout Implementation (2.0.2)
426|Active | 10|Liferay Layout Item Selector API (1.0.1)
427|Active | 10|Liferay Layout Item Selector Web (1.1.0)
428|Active | 10|Liferay Layout Prototype API (1.0.1)
429|Active | 10|Liferay Layout Prototype Implementation (1.0.2)
430|Active | 10|Liferay Layout Prototype Web (1.0.6)
431|Active | 10|Liferay Layout Set Prototype API (1.0.1)
432|Active | 10|Liferay Layout Set Prototype Implementation (1.0.2)
433|Active | 10|Liferay Layout Set Prototype Web (1.0.7)
434|Active | 10|Liferay Layout Taglib (2.0.5)
435|Active | 10|Liferay Layout Type Controller Control Panel (2.0.1)
436|Active | 10|Liferay Layout Type Controller Full Page Application (2.0.1)
437|Active | 10|Liferay Layout Type Controller Node (2.0.1)
438|Active | 10|Liferay Layout Type Controller Shared Portlet (2.0.1)
439|Active | 10|Liferay Nested Portlets Web (2.0.2)
440|Active | 10|Liferay Portlet Configuration CSS Web (2.0.2)
441|Active | 10|Liferay Portlet Configuration Icon Close (2.0.1)
442|Active | 10|Liferay Portlet Configuration Icon Edit Defaults (2.0.1)
443|Active | 10|Liferay Portlet Configuration Icon Edit Guest (2.0.1)
444|Active | 10|Liferay Portlet Configuration Icon Edit (2.0.1)
445|Active | 10|Liferay Portlet Configuration Icon Help (2.0.1)
446|Active | 10|Liferay Portlet Configuration Icon Locator API (2.0.1)
447|Active | 10|Liferay Portlet Configuration Icon Maximize (2.0.1)
448|Active | 10|Liferay Portlet Configuration Icon Minimize (2.0.1)
449|Active | 10|Liferay Portlet Configuration Icon Print (2.0.1)
450|Active | 10|Liferay Portlet Configuration Icon Refresh (2.0.1)
451|Active | 10|Liferay Portlet Configuration Sharing Web (2.0.2)
452|Active | 10|Liferay Portlet Configuration Toolbar Contributor Locator API (2.0.1)
453|Active | 10|Liferay Portlet Configuration Web (1.0.6)
454|Active | 10|Liferay Portlet Display Template Web (2.0.2)
455|Active | 10|Liferay Portlet Display Template (2.0.2)
456|Active | 10|Liferay Product Navigation Control Menu API (3.0.0)
457|Active | 10|Liferay Product Navigation Control Menu DXP Theme Contributor (1.0.4)
458|Active | 10|Liferay Product Navigation Control Menu Web (2.0.4)
459|Active | 10|Liferay Product Navigation Control Panel (2.0.1)
460|Active | 10|Liferay Product Navigation Product Menu DXP Theme Contributor (1.0.2)
461|Active | 10|Liferay Product Navigation Product Menu Web (2.0.2)
462|Active | 10|Liferay Product Navigation Simulation Device (2.0.2)
463|Active | 10|Liferay Product Navigation Simulation Theme Contributor (2.0.1)
464|Active | 10|Liferay Product Navigation Simulation Web (2.0.2)
465|Active | 10|Liferay Product Navigation Simulation (2.0.1)
466|Active | 10|Liferay Product Navigation Site Administration (2.0.1)
467|Active | 10|Liferay Product Navigation Taglib (2.0.3)
468|Active | 10|Liferay Product Navigation User Personal Bar Web (2.0.1)
469|Active | 10|Liferay Product Navigation User (2.0.1)
470|Active | 10|Liferay RSS Utilities (1.0.3)
471|Active | 10|Liferay RSS Web (2.0.2)
472|Active | 10|Liferay Site Admin Web (1.0.9)
473|Active | 10|Liferay Site API (2.0.2)
474|Active | 10|Liferay Site Browser Web (2.0.5)
475|Active | 10|Liferay Site Item Selector API (1.0.1)
476|Active | 10|Liferay Site Item Selector Web (2.0.4)
477|Active | 10|Liferay Site Memberships Web (1.0.11)
478|Active | 10|Liferay Site My Sites Web (1.0.5)
479|Active | 10|Liferay Site Navigation Breadcrumb Web (2.0.2)
480|Active | 10|Liferay Site Navigation Directory Web (2.0.2)
481|Active | 10|Liferay Site Navigation Language Web (2.0.1)
482|Active | 10|Liferay Site Navigation Menu Web (2.0.2)
483|Active | 10|Liferay Site Navigation Site Map Web (2.0.1)
484|Active | 10|Liferay Site Navigation Taglib (2.0.3)
485|Active | 10|Liferay Site Teams Web (1.0.8)
486|Active | 10|Liferay Staging API (2.0.1)
487|Active | 10|Liferay Staging Bar Web (1.0.4)
488|Active | 10|Liferay Staging Configuration Web (1.0.4)
489|Active | 10|Liferay Staging Lang (2.0.3)
490|Active | 10|Liferay Staging Portlet Data Handler (2.0.1)
491|Active | 10|Liferay Staging Processes Web (1.0.5)
492|Active | 10|Liferay Staging Security (2.0.3)
493|Active | 10|Liferay Staging Taglib (3.1.3)
494|Active | 10|Liferay Trash Taglib (2.0.3)
495|Active | 10|Liferay Trash Web (1.0.6)
496|Active | 10|Liferay XSL Content Web (2.0.2)
497|Active | 10|admin-theme (1.0.2)
498|Active | 10|lcs-portlet (7.0.10.2)
499|Active | 10|documentum-hook (7.0.10.3)
500|Active | 10|user-profile-theme (1.0.2)
501|Active | 10|classic-theme (1.0.2)
502|Active | 10|user-dashboard-theme (1.0.2)
503|Active | 10|sharepoint-hook (7.0.10.3)
504|Active | 10|training.component (1.0.0)
g!
Subscribe to:
Posts (Atom)