-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…-io/MIPs#100 This change will move sites pages definition into sites.war extension to centralize the configuration of sites which will improve the maintainability and evolutivity.
- Loading branch information
Showing
8 changed files
with
57 additions
and
258 deletions.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
app-center-webapps/src/main/webapp/WEB-INF/conf/app-center/portal-configuration.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This file is part of the Meeds project (https://meeds.io/). | ||
Copyright (C) 2020 Meeds Association | ||
[email protected] | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
--> | ||
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd http://www.exoplatform.org/xml/ns/kernel_1_3.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd"> | ||
|
||
<external-component-plugins> | ||
<target-component>org.exoplatform.commons.addons.AddOnService</target-component> | ||
<component-plugin> | ||
<name>addPlugin</name> | ||
<set-method>addPlugin</set-method> | ||
<type>org.exoplatform.commons.addons.AddOnPluginImpl</type> | ||
<description>add AppCenterAppLauncherPortlet Config</description> | ||
<init-params> | ||
<value-param> | ||
<name>priority</name> | ||
<value>20</value> | ||
</value-param> | ||
<value-param> | ||
<name>containerName</name> | ||
<value>middle-topNavigation-container</value> | ||
</value-param> | ||
<object-param> | ||
<name>AppCenterAppLauncherApplication</name> | ||
<description>AppCenter appLauncher portlet</description> | ||
<object type="org.exoplatform.portal.config.serialize.PortletApplication"> | ||
<field name="state"> | ||
<object type="org.exoplatform.portal.config.model.TransientApplicationState"> | ||
<field name="contentId"> | ||
<string>app-center/AppCenterAppLauncherPortlet</string> | ||
</field> | ||
</object> | ||
</field> | ||
</object> | ||
</object-param> | ||
</init-params> | ||
</component-plugin> | ||
</external-component-plugins> | ||
|
||
</configuration> |
30 changes: 0 additions & 30 deletions
30
...c/main/webapp/WEB-INF/conf/app-center/portal/group/platform/administrators/navigation.xml
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
...ps/src/main/webapp/WEB-INF/conf/app-center/portal/group/platform/administrators/pages.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 0 additions & 33 deletions
33
...enter-webapps/src/main/webapp/WEB-INF/conf/app-center/portal/portal/global/navigation.xml
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
app-center-webapps/src/main/webapp/WEB-INF/conf/app-center/portal/portal/global/pages.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
app-center-webapps/src/main/webapp/html/myApplications.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,3 @@ | ||
<!-- | ||
This file is part of the Meeds project (https://meeds.io/). | ||
Copyright (C) 2020 Meeds Association | ||
[email protected] | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
--> | ||
<div class="VuetifyApp"> | ||
<div id="myApplications"> | ||
<script> | ||
|