<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Add link to Admin section? in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101226#M29100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to add another link to the home screen of alfresco. All the links you see in the attached screen shot are added to the index.jsp page packaged as part of the alfresco.war file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not aware of any other approach but If you can overlay the war file during the build, you should be able to add additional link to the index.jsp page and package it as part of alfresco.war along with all your custom modules.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have highlighted all the links which you already see and added a custom link into it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;&lt;P&gt;Here is the index.jsp file:&lt;/P&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;%--&lt;BR /&gt; #%L&lt;BR /&gt; Alfresco Repository WAR Community&lt;BR /&gt; %%&lt;BR /&gt; Copyright (C) 2005 - 2016 Alfresco Software Limited&lt;BR /&gt; %%&lt;BR /&gt; This file is part of the Alfresco software. &lt;BR /&gt; If the software was purchased under a paid Alfresco license, the terms of &lt;BR /&gt; the paid license agreement will prevail. Otherwise, the software is &lt;BR /&gt; provided under the following open source license terms:&lt;BR /&gt; &lt;BR /&gt; Alfresco is free software: you can redistribute it and/or modify&lt;BR /&gt; it under the terms of the GNU Lesser General Public License as published by&lt;BR /&gt; the Free Software Foundation, either version 3 of the License, or&lt;BR /&gt; (at your option) any later version.&lt;BR /&gt; &lt;BR /&gt; Alfresco is distributed in the hope that it will be useful,&lt;BR /&gt; but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;BR /&gt; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;BR /&gt; GNU Lesser General Public License for more details.&lt;BR /&gt; &lt;BR /&gt; You should have received a copy of the GNU Lesser General Public License&lt;BR /&gt; along with Alfresco. If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;BR /&gt; #L%&lt;BR /&gt; --%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;%@ page import="org.springframework.web.context.WebApplicationContext" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.springframework.web.context.support.WebApplicationContextUtils" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.repo.admin.SysAdminParams" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.descriptor.DescriptorService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.transaction.TransactionService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.util.UrlUtil" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleDetails" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleInstallState" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="java.util.Calendar" %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Enterprise index-jsp placeholder --&amp;gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt;// route WebDAV requests&lt;BR /&gt;if (request.getMethod().equalsIgnoreCase("PROPFIND") || request.getMethod().equalsIgnoreCase("OPTIONS"))&lt;BR /&gt;{&lt;BR /&gt; response.sendRedirect(request.getContextPath() + "/webdav/");&lt;BR /&gt;}&lt;BR /&gt;%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;%&lt;BR /&gt;WebApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(session.getServletContext());&lt;BR /&gt;SysAdminParams sysAdminParams = (SysAdminParams)context.getBean("sysAdminParams");&lt;BR /&gt;DescriptorService descriptorService = (DescriptorService)context.getBean("descriptorComponent");&lt;BR /&gt;TransactionService transactionService = (TransactionService)context.getBean("transactionService");&lt;BR /&gt;ModuleService moduleService = (ModuleService) context.getBean("moduleService");&lt;BR /&gt;ModuleDetails shareServicesModule = moduleService.getModule("alfresco-share-services");&lt;BR /&gt;%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&amp;gt;&lt;BR /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Alfresco&amp;lt;/title&amp;gt;&lt;BR /&gt; &amp;lt;link rel="stylesheet" type="text/css" href="./css/reset.css" /&amp;gt;&lt;BR /&gt; &amp;lt;link rel="stylesheet" type="text/css" href="./css/alfresco.css" /&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div class="sticky-wrapper"&amp;gt;&lt;BR /&gt; &amp;lt;div class="index"&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;div class="title"&amp;gt;&lt;BR /&gt; &amp;lt;span class="logo"&amp;gt;&amp;lt;a href="http://www.alfresco.com"&amp;gt;&amp;lt;img src="./images/logo/logo.png" width="145" height="48" alt="" border="0" /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;BR /&gt; &amp;lt;span class="logo-separator"&amp;gt;&amp;nbsp;&amp;lt;/span&amp;gt;&lt;BR /&gt; &amp;lt;h1&amp;gt;Welcome to Alfresco&amp;lt;/h1&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;div class="index-list"&amp;gt;&lt;BR /&gt; &amp;lt;h4&amp;gt;&amp;lt;%=descriptorService.getServerDescriptor().getEdition()%&amp;gt;&amp;nbsp;-&amp;nbsp;&amp;lt;%=descriptorService.getServerDescriptor().getVersion()%&amp;gt;&amp;lt;/h4&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://docs.alfresco.com/"&amp;gt;Online Documentation&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;%&lt;BR /&gt; if (shareServicesModule != null &amp;amp;&amp;amp; ModuleInstallState.INSTALLED.equals(shareServicesModule.getInstallState()))&lt;BR /&gt; {&lt;BR /&gt; %&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="&amp;lt;%=UrlUtil.getShareUrl(sysAdminParams)%&amp;gt;"&amp;gt;Alfresco Share&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;%&lt;BR /&gt; }&lt;BR /&gt; %&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./webdav"&amp;gt;Alfresco WebDav&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/index"&amp;gt;Alfresco WebScripts Home&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; if (descriptorService.getLicenseDescriptor() == null &amp;amp;&amp;amp; transactionService.isReadOnly())&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;WARNING: The system is in Read Only mode, the License may have failed to deploy. Please visit the &amp;lt;a href="./s/enterprise/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;% &lt;BR /&gt; }&lt;BR /&gt; if (descriptorService.getLicenseDescriptor() != null &amp;amp;&amp;amp; descriptorService.getLicenseDescriptor().getLicenseMode().toString().equals("ENTERPRISE"))&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/enterprise/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://support.alfresco.com"&amp;gt;Alfresco Support&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://forums.alfresco.com/"&amp;gt;Alfresco Forums&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://issues.alfresco.com/"&amp;gt;Alfresco JIRA&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; }&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.0/atom"&amp;gt;CMIS 1.0 AtomPub Service Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./cmisws/cmis?wsdl"&amp;gt;CMIS 1.0 Web Services WSDL Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.1/atom"&amp;gt;CMIS 1.1 AtomPub Service Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.1/browser"&amp;gt;CMIS 1.1 Browser Binding URL&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Your new link here:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="www.xyz.com"&amp;gt;Custom Link&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div class="push"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div class="footer"&amp;gt;&lt;BR /&gt; Alfresco Software, Inc. &amp;amp;copy; 2005-&amp;lt;%=Calendar.getInstance().get(Calendar.YEAR)%&amp;gt; All rights reserved.&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jul 2019 15:07:37 GMT</pubDate>
    <dc:creator>abhinavmishra14</dc:creator>
    <dc:date>2019-07-10T15:07:37Z</dc:date>
    <item>
      <title>Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101223#M29097</link>
      <description>How can I add a new link to this section?</description>
      <pubDate>Wed, 10 Jul 2019 08:43:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101223#M29097</guid>
      <dc:creator>selimelitas</dc:creator>
      <dc:date>2019-07-10T08:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101224#M29098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which admin screen you are referring to ? Share admin tools or Alfresco admin console ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For adding addition option to Share admin tools, you need to create a custom component and append to the admin tools AIKAU page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same way you can customize for Alfresco Admin console.&lt;/P&gt;&lt;P&gt;Refer:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/6.1/concepts/adminconsole-custom-example.html" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/6.1/concepts/adminconsole-custom-example.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/6.1/references/dev-extension-points-custom-admin-console.html" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/6.1/references/dev-extension-points-custom-admin-console.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 14:42:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101224#M29098</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2019-07-10T14:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101225#M29099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for my English İ add the pic my post İdont know its share or alfresco admin page...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 14:58:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101225#M29099</guid>
      <dc:creator>selimelitas</dc:creator>
      <dc:date>2019-07-10T14:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101226#M29100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to add another link to the home screen of alfresco. All the links you see in the attached screen shot are added to the index.jsp page packaged as part of the alfresco.war file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not aware of any other approach but If you can overlay the war file during the build, you should be able to add additional link to the index.jsp page and package it as part of alfresco.war along with all your custom modules.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have highlighted all the links which you already see and added a custom link into it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;&lt;P&gt;Here is the index.jsp file:&lt;/P&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;%--&lt;BR /&gt; #%L&lt;BR /&gt; Alfresco Repository WAR Community&lt;BR /&gt; %%&lt;BR /&gt; Copyright (C) 2005 - 2016 Alfresco Software Limited&lt;BR /&gt; %%&lt;BR /&gt; This file is part of the Alfresco software. &lt;BR /&gt; If the software was purchased under a paid Alfresco license, the terms of &lt;BR /&gt; the paid license agreement will prevail. Otherwise, the software is &lt;BR /&gt; provided under the following open source license terms:&lt;BR /&gt; &lt;BR /&gt; Alfresco is free software: you can redistribute it and/or modify&lt;BR /&gt; it under the terms of the GNU Lesser General Public License as published by&lt;BR /&gt; the Free Software Foundation, either version 3 of the License, or&lt;BR /&gt; (at your option) any later version.&lt;BR /&gt; &lt;BR /&gt; Alfresco is distributed in the hope that it will be useful,&lt;BR /&gt; but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;BR /&gt; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;BR /&gt; GNU Lesser General Public License for more details.&lt;BR /&gt; &lt;BR /&gt; You should have received a copy of the GNU Lesser General Public License&lt;BR /&gt; along with Alfresco. If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;BR /&gt; #L%&lt;BR /&gt; --%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;%@ page import="org.springframework.web.context.WebApplicationContext" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.springframework.web.context.support.WebApplicationContextUtils" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.repo.admin.SysAdminParams" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.descriptor.DescriptorService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.transaction.TransactionService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.util.UrlUtil" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleService" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleDetails" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="org.alfresco.service.cmr.module.ModuleInstallState" %&amp;gt;&lt;BR /&gt;&amp;lt;%@ page import="java.util.Calendar" %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Enterprise index-jsp placeholder --&amp;gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt;// route WebDAV requests&lt;BR /&gt;if (request.getMethod().equalsIgnoreCase("PROPFIND") || request.getMethod().equalsIgnoreCase("OPTIONS"))&lt;BR /&gt;{&lt;BR /&gt; response.sendRedirect(request.getContextPath() + "/webdav/");&lt;BR /&gt;}&lt;BR /&gt;%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;%&lt;BR /&gt;WebApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(session.getServletContext());&lt;BR /&gt;SysAdminParams sysAdminParams = (SysAdminParams)context.getBean("sysAdminParams");&lt;BR /&gt;DescriptorService descriptorService = (DescriptorService)context.getBean("descriptorComponent");&lt;BR /&gt;TransactionService transactionService = (TransactionService)context.getBean("transactionService");&lt;BR /&gt;ModuleService moduleService = (ModuleService) context.getBean("moduleService");&lt;BR /&gt;ModuleDetails shareServicesModule = moduleService.getModule("alfresco-share-services");&lt;BR /&gt;%&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&amp;gt;&lt;BR /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Alfresco&amp;lt;/title&amp;gt;&lt;BR /&gt; &amp;lt;link rel="stylesheet" type="text/css" href="./css/reset.css" /&amp;gt;&lt;BR /&gt; &amp;lt;link rel="stylesheet" type="text/css" href="./css/alfresco.css" /&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div class="sticky-wrapper"&amp;gt;&lt;BR /&gt; &amp;lt;div class="index"&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;div class="title"&amp;gt;&lt;BR /&gt; &amp;lt;span class="logo"&amp;gt;&amp;lt;a href="http://www.alfresco.com"&amp;gt;&amp;lt;img src="./images/logo/logo.png" width="145" height="48" alt="" border="0" /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;BR /&gt; &amp;lt;span class="logo-separator"&amp;gt;&amp;nbsp;&amp;lt;/span&amp;gt;&lt;BR /&gt; &amp;lt;h1&amp;gt;Welcome to Alfresco&amp;lt;/h1&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;div class="index-list"&amp;gt;&lt;BR /&gt; &amp;lt;h4&amp;gt;&amp;lt;%=descriptorService.getServerDescriptor().getEdition()%&amp;gt;&amp;nbsp;-&amp;nbsp;&amp;lt;%=descriptorService.getServerDescriptor().getVersion()%&amp;gt;&amp;lt;/h4&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://docs.alfresco.com/"&amp;gt;Online Documentation&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;%&lt;BR /&gt; if (shareServicesModule != null &amp;amp;&amp;amp; ModuleInstallState.INSTALLED.equals(shareServicesModule.getInstallState()))&lt;BR /&gt; {&lt;BR /&gt; %&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="&amp;lt;%=UrlUtil.getShareUrl(sysAdminParams)%&amp;gt;"&amp;gt;Alfresco Share&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;%&lt;BR /&gt; }&lt;BR /&gt; %&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./webdav"&amp;gt;Alfresco WebDav&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/index"&amp;gt;Alfresco WebScripts Home&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; if (descriptorService.getLicenseDescriptor() == null &amp;amp;&amp;amp; transactionService.isReadOnly())&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;WARNING: The system is in Read Only mode, the License may have failed to deploy. Please visit the &amp;lt;a href="./s/enterprise/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;% &lt;BR /&gt; }&lt;BR /&gt; if (descriptorService.getLicenseDescriptor() != null &amp;amp;&amp;amp; descriptorService.getLicenseDescriptor().getLicenseMode().toString().equals("ENTERPRISE"))&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/enterprise/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://support.alfresco.com"&amp;gt;Alfresco Support&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./s/admin"&amp;gt;Alfresco Administration Console&amp;lt;/a&amp;gt; (admin only)&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://forums.alfresco.com/"&amp;gt;Alfresco Forums&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="http://issues.alfresco.com/"&amp;gt;Alfresco JIRA&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;%&lt;BR /&gt; }&lt;BR /&gt;%&amp;gt;&lt;BR /&gt; &amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.0/atom"&amp;gt;CMIS 1.0 AtomPub Service Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./cmisws/cmis?wsdl"&amp;gt;CMIS 1.0 Web Services WSDL Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.1/atom"&amp;gt;CMIS 1.1 AtomPub Service Document&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;lt;p&amp;gt;&amp;lt;a href="./api/-default-/public/cmis/versions/1.1/browser"&amp;gt;CMIS 1.1 Browser Binding URL&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Your new link here:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;p&amp;gt;&amp;lt;a href="www.xyz.com"&amp;gt;Custom Link&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div class="push"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div class="footer"&amp;gt;&lt;BR /&gt; Alfresco Software, Inc. &amp;amp;copy; 2005-&amp;lt;%=Calendar.getInstance().get(Calendar.YEAR)%&amp;gt; All rights reserved.&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 15:07:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101226#M29100</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2019-07-10T15:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101227#M29101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.Have a nice days&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 15:13:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101227#M29101</guid>
      <dc:creator>selimelitas</dc:creator>
      <dc:date>2019-07-10T15:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add link to Admin section?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101228#M29102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE border="1" cellpadding="10"&gt;&lt;THEAD align="left"&gt;&lt;TR valign="bottom"&gt;&lt;TH align="left"&gt;Change&lt;/TH&gt;&lt;TH align="left"&gt;Hot deployment&lt;/TH&gt;&lt;TH align="left"&gt;Dynamic reloading&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__chgjsp" rel="nofollow noopener noreferrer"&gt;Change an existing JavaServer Pages file.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__newjsp" rel="nofollow noopener noreferrer"&gt;Add a new JSP file to an existing application.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__edit" rel="nofollow noopener noreferrer"&gt;Change an existing servlet class by editing and recompiling.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__dep" rel="nofollow noopener noreferrer"&gt;Change a dependent class of an existing servlet class.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__inv" rel="nofollow noopener noreferrer"&gt;Add a new servlet using the Invoker (Serve Servlets by class name) facility or add a dependent class to an existing application.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__newser" rel="nofollow noopener noreferrer"&gt;Add a new servlet, including a new definition of the servlet in the web.xml deployment descriptor for the application.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__web" rel="nofollow noopener noreferrer"&gt;Change the web.xml file of a WAR file.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__ext" rel="nofollow noopener noreferrer"&gt;Change the ibm-web-ext.xmi file of a WAR file.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD valign="top"&gt;&lt;A href="http://setgetweb.com/p/WAS61/ae/Change_or_adding_WAR_files1784.html#trun_app_hotupgrade_war__webxmi" rel="nofollow noopener noreferrer"&gt;Change the ibm-web-bnd.xmi file of a WAR file.&lt;/A&gt;&lt;/TD&gt;&lt;TD valign="top"&gt;Not applicable&lt;/TD&gt;&lt;TD valign="top"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find the war files in alfresco&amp;nbsp; /tomcat/webapps/alfresco/index.jsp and edit like &lt;SPAN class=""&gt;&lt;A _jive_internal="true" data-userid="185106" data-username="abhinavmishra14_alfresco" href="https://community.alfresco.com/people/abhinavmishra14_alfresco" rel="nofollow noopener noreferrer"&gt;Abhinav Mishra&lt;/A&gt;&lt;/SPAN&gt; answer than save and exit.&lt;/P&gt;&lt;P&gt;Bingo *jsp file means new file will be automatically detected and compiled on the first request to the page...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 11:49:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-link-to-admin-section/m-p/101228#M29102</guid>
      <dc:creator>selimelitas</dc:creator>
      <dc:date>2019-07-11T11:49:03Z</dc:date>
    </item>
  </channel>
</rss>

