-
Notifications
You must be signed in to change notification settings - Fork 0
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
- Loading branch information
1 parent
6d8b2b4
commit c89bc26
Showing
5 changed files
with
140 additions
and
1 deletion.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
digital-workplace-webapps/src/main/resources/locale/navigation/portal/intranet_en.properties
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,21 @@ | ||
# | ||
# Copyright (C) 2023 eXo Platform SAS. | ||
# | ||
# This 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 software 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 software; if not, write to the Free | ||
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
# 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
# | ||
portal.intranet.homepage= Home Page | ||
portal.intranet.spaces=Spaces | ||
portal.intranet.people=People |
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
48 changes: 48 additions & 0 deletions
48
...ace-webapps/src/main/webapp/WEB-INF/conf/digital-workplace/portal/intranet/navigation.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,48 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<!-- | ||
* Copyright (C) 2023 eXo Platform SAS. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
--> | ||
<node-navigation | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.gatein.org/xml/ns/gatein_objects_1_6 http://www.gatein.org/xml/ns/gatein_objects_1_6" | ||
xmlns="http://www.gatein.org/xml/ns/gatein_objects_1_6"> | ||
<priority>3</priority> | ||
|
||
<page-nodes> | ||
<node> | ||
<name>homepage</name> | ||
<label>#{portal.intranet.homepage}</label> | ||
<icon>fa-newspaper</icon> | ||
<visibility>DISPLAYED</visibility> | ||
<page-reference>portal::dw::homepage</page-reference> | ||
<node> | ||
<name>spaces</name> | ||
<label>#{portal.intranet.spaces}</label> | ||
<icon>fa-people-arrows</icon> | ||
<visibility>DISPLAYED</visibility> | ||
<page-reference>portal::global::all-spaces</page-reference> | ||
</node> | ||
<node> | ||
<name>people</name> | ||
<label>#{portal.intranet.people}</label> | ||
<icon>fa-users</icon> | ||
<visibility>DISPLAYED</visibility> | ||
<page-reference>portal::global::all-people</page-reference> | ||
</node> | ||
</node> | ||
</page-nodes> | ||
</node-navigation> |
35 changes: 35 additions & 0 deletions
35
...rkplace-webapps/src/main/webapp/WEB-INF/conf/digital-workplace/portal/intranet/portal.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,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
* Copyright (C) 2023 eXo Platform SAS. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
--> | ||
<portal-config> | ||
<portal-name>intranet</portal-name> | ||
<label>Intranet</label> | ||
<description>Develop your communication with a modern intranet</description> | ||
<locale>en</locale> | ||
<access-permissions>member:/platform/users;member:/platform/externals</access-permissions> | ||
<edit-permission>manager:platform/administrators</edit-permission> | ||
<properties> | ||
<entry key="sessionAlive">onDemand</entry> | ||
<entry key="showPortletInfo">0</entry> | ||
</properties> | ||
<portal-layout> | ||
<page-body> </page-body> | ||
</portal-layout> | ||
<displayed>true</displayed> | ||
<display-order>1</display-order> | ||
</portal-config> |
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