Skip to content

Commit df071d0

Browse files
committed
Update the set of data with which a user will start when testing
Silverpeas. Now the H2 database is no more accessed directly through its database file but through a database server that will be launched before Silverpeas.
1 parent 53049bf commit df071d0

File tree

396 files changed

+155
-444
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

396 files changed

+155
-444
lines changed

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,10 @@ RUN wget -nc https://www.silverpeas.org/files/silverpeas-${SILVERPEAS_VERSION}-w
9797
# the Silverpeas Nexus Repository
9898
COPY src/repository /root/.m2/repository
9999
COPY src/settings.xml /root/.m2/
100-
COPY src/config.properties /opt/silverpeas/configuration/
101-
COPY src/CustomerSettings.xml /opt/silverpeas/configuration/silverpeas/
102-
COPY src/99-confAuroraLooks.groovy /opt/silverpeas/configuration/silverpeas/
103100
COPY src/h2 /opt/silverpeas/h2
101+
COPY src/configuration /opt/silverpeas/configuration
104102
COPY src/data /opt/silverpeas/data
105-
COPY src/silverpeas.gradle /opt/silverpeas/bin/
103+
COPY src/bin /opt/silverpeas/bin
106104

107105
RUN sed -i -e "s/APP_VER/${SILVERPEAS_VERSION}/g" /opt/silverpeas/bin/silverpeas.gradle
108106

@@ -111,7 +109,6 @@ WORKDIR ${SILVERPEAS_HOME}/bin
111109

112110
# Copy this container init script that will be run each time the container is ran
113111
COPY src/run.sh /opt/
114-
COPY src/setup.sh ${SILVERPEAS_HOME}/bin
115112

116113
# Assemble Silverpeas
117114
RUN ./setup.sh ${SILVERPEAS_VERSION}

README.md

Lines changed: 3 additions & 3 deletions

src/bin/h2database

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env bash
2+
3+
H2_JAR=`ls ${JBOSS_HOME}/modules/system/layers/base/com/h2database/h2/main/h2-*.jar`
4+
5+
print_help() {
6+
echo "$0 start|stop"
7+
echo "requires SILVERPEAS_HOME and JBOSS_HOME to be set"
8+
}
9+
10+
case "$1" in
11+
start)
12+
echo "Start H2 database..."
13+
exec java -classpath "$H2_JAR" org.h2.tools.Server -tcp -baseDir "$SILVERPEAS_HOME/h2" &
14+
;;
15+
stop)
16+
echo "Stop H2 database..."
17+
exec java -classpath "$H2_JAR" org.h2.tools.Server -tcpShutdown tcp://localhost:9092
18+
;;
19+
-h)
20+
print_help
21+
;;
22+
*)
23+
print_help
24+
exit 1
25+
esac

src/bin/setup.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
echo "Installation of Silverpeas $1"
4+
./h2database start
5+
./silverpeas clean install
6+
ret=$?
7+
if [ $ret -eq 0 ]; then
8+
rm ../log/build-*
9+
touch .install
10+
else
11+
echo "An error has occurred :-("
12+
echo
13+
for f in ../log/build-*; do
14+
cat "$f"
15+
done
16+
fi
17+
./h2database stop
18+
exit $ret
File renamed without changes.

src/config.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/configuration/config.properties

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright (C) 2000 - 2022 Silverpeas
2+
#
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU Affero General Public License as
5+
# published by the Free Software Foundation, either version 3 of the
6+
# License, or (at your option) any later version.
7+
#
8+
# As a special exception to the terms and conditions of version 3.0 of
9+
# the GPL, you may redistribute this Program in connection withWriter Free/Libre
10+
# Open Source Software ("FLOSS") applications as described in Silverpeas's
11+
# FLOSS exception. You should have recieved a copy of the text describing
12+
# the FLOSS exception, and it is also available here:
13+
# "http://www.silverpeas.org/legal/licensing"
14+
#
15+
# This program is distributed in the hope that it will be useful,
16+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
# GNU Affero General Public License for more details.
19+
#
20+
# You should have received a copy of the GNU Affero General Public License
21+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
22+
23+
DB_SERVERTYPE=H2
24+
DB_SERVER=localhost
25+
DB_USER=silverpeas
26+
DB_PASSWORD=silverpeas
27+
DB_NAME=Silverpeas

src/99-confAuroraLooks.groovy renamed to src/configuration/silverpeas/99-confAuroraLooks.groovy

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ def auroraProps = [
1717
'home.events.appId': 'almnanach5',
1818
'home.faq.appId': 'questionReply7',
1919
'zoom.componentId': 'kmelia4',
20-
'Shortcut.home.1.Url': '/silverpeas/Component/kmelia4',
21-
'Shortcut.home.2.Url': '/silverpeas/Component/gallery9',
20+
'Shortcut.home.1.Url': 'http://localhost:8000/silverpeas/Component/kmelia4',
21+
'Shortcut.home.2.Url': 'http://localhost:8000/silverpeas/Component/gallery9',
2222
'Shortcut.home.2.AltText': 'M&eacute;diath&egrave;que',
23-
'Shortcut.home.3.Url': '/silverpeas/Rdirectory/jsp/Main?Sort=NEWEST',
24-
'Shortcut.home.4.Url': '/silverpeas/Space/WA3',
23+
'Shortcut.home.3.Url': 'http://localhost:8000/silverpeas/Rdirectory/jsp/Main?Sort=NEWEST',
24+
'Shortcut.home.4.Url': 'http://localhost:8000/silverpeas/Space/WA3',
2525
'Shortcut.home.4.AltText': 'Demandes en ligne',
26-
'Shortcut.home.5.Url': '/silverpeas/Component/forums11',
26+
'Shortcut.home.5.Url': 'http://localhost:8000/silverpeas/Component/forums11',
2727
'Shortcut.home.5.AltText': 'Forums',
28-
'Shortcut.home.6.Url': '/silverpeas/Component/suggestionBox12',
28+
'Shortcut.home.6.Url': 'http://localhost:8000/silverpeas/Component/suggestionBox12',
2929
'Shortcut.home.6.AltText': 'Vos id&eacute;es',
3030
]
3131
service.updateProperties(

src/CustomerSettings.xml renamed to src/configuration/silverpeas/CustomerSettings.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@
5959
<parameter key="attachment.data.fromMetadata">true</parameter>
6060
</configfile>
6161

62+
<!-- H2 doesn't support the COUNT() OVER() windowing function -->
63+
<configfile name="general.properties">
64+
<parameter key="jdbc.pagination.method.countOver">false</parameter>
65+
</configfile>
66+
6267
</fileset>
6368

6469
</silverpeas-settings>
623 Bytes
Binary file not shown.
84 Bytes
Binary file not shown.
1.27 KB
Binary file not shown.
98 Bytes
Binary file not shown.
232 Bytes
Binary file not shown.

src/data/index/Components/index/_h.si

533 Bytes
Binary file not shown.
226 Bytes
Binary file not shown.
192 Bytes
Binary file not shown.
Binary file not shown.
374 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.15 KB
Binary file not shown.

src/data/index/Components/index/_i.si

403 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.12 KB
Binary file not shown.

src/data/index/Components/index/_j.si

403 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.21 KB
Binary file not shown.

src/data/index/Components/index/_k.si

403 Bytes
Binary file not shown.
-1.09 KB
Binary file not shown.
-84 Bytes
Binary file not shown.
-1.25 KB
Binary file not shown.
-111 Bytes
Binary file not shown.
-232 Bytes
Binary file not shown.

src/data/index/Components/index/_o.si

-514 Bytes
Binary file not shown.
-243 Bytes
Binary file not shown.
-325 Bytes
Binary file not shown.
Binary file not shown.
-382 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-2.96 KB
Binary file not shown.

src/data/index/Components/index/_q.si

-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-2.98 KB
Binary file not shown.

src/data/index/Components/index/_r.si

-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-3.04 KB
Binary file not shown.

src/data/index/Components/index/_s.si

-384 Bytes
Binary file not shown.
319 Bytes
Binary file not shown.
-319 Bytes
Binary file not shown.

src/data/index/Spaces/index/_d.fdt

293 Bytes
Binary file not shown.

src/data/index/Spaces/index/_d.fdx

84 Bytes
Binary file not shown.

src/data/index/Spaces/index/_d.fnm

1.27 KB
Binary file not shown.

src/data/index/Spaces/index/_d.nvd

74 Bytes
Binary file not shown.

src/data/index/Spaces/index/_d.nvm

232 Bytes
Binary file not shown.

src/data/index/Spaces/index/_d.si

533 Bytes
Binary file not shown.
162 Bytes
Binary file not shown.
130 Bytes
Binary file not shown.
926 Bytes
Binary file not shown.
374 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r.fdt

-792 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r.fdx

-84 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r.fnm

-1.25 KB
Binary file not shown.

src/data/index/Spaces/index/_r.nvd

-79 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r.nvm

-232 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r.si

-514 Bytes
Binary file not shown.

src/data/index/Spaces/index/_r_1.liv

-67 Bytes
Binary file not shown.
-199 Bytes
Binary file not shown.
-266 Bytes
Binary file not shown.
-2.21 KB
Binary file not shown.
-374 Bytes
Binary file not shown.

src/data/index/Spaces/index/_x.cfe

-299 Bytes
Binary file not shown.

src/data/index/Spaces/index/_x.cfs

-2.91 KB
Binary file not shown.

src/data/index/Spaces/index/_x.si

-384 Bytes
Binary file not shown.
136 Bytes
Binary file not shown.
-197 Bytes
Binary file not shown.

src/data/index/blog/index/_0.cfe

299 Bytes
Binary file not shown.

src/data/index/blog/index/_0.cfs

3.45 KB
Binary file not shown.

src/data/index/blog/index/_0.si

403 Bytes
Binary file not shown.

src/data/index/blog/index/segments_1

136 Bytes
Binary file not shown.

src/data/index/blog10/index/_0.cfe

-299 Bytes
Binary file not shown.

src/data/index/blog10/index/_0.cfs

-3.29 KB
Binary file not shown.

src/data/index/blog10/index/_0.si

-384 Bytes
Binary file not shown.
-136 Bytes
Binary file not shown.
72 Bytes
Binary file not shown.

src/data/index/forums11/index/_0.cfe

-299 Bytes
Binary file not shown.

src/data/index/forums11/index/_0.cfs

-3.34 KB
Binary file not shown.

src/data/index/forums11/index/_0.si

-384 Bytes
Binary file not shown.

src/data/index/forums11/index/_1.cfe

-299 Bytes
Binary file not shown.

src/data/index/forums11/index/_1.cfs

-3.2 KB
Binary file not shown.

src/data/index/forums11/index/_1.si

-384 Bytes
Binary file not shown.

src/data/index/forums11/index/_2.cfe

-299 Bytes
Binary file not shown.

src/data/index/forums11/index/_2.cfs

-2.95 KB
Binary file not shown.

src/data/index/forums11/index/_2.si

-384 Bytes
Binary file not shown.

src/data/index/forums11/index/_3.cfe

-299 Bytes
Binary file not shown.

src/data/index/forums11/index/_3.cfs

-2.98 KB
Binary file not shown.

src/data/index/forums11/index/_3.si

-384 Bytes
Binary file not shown.
-319 Bytes
Binary file not shown.

src/data/index/gallery/index/_0.cfe

299 Bytes
Binary file not shown.

src/data/index/gallery/index/_0.cfs

3.41 KB
Binary file not shown.

src/data/index/gallery/index/_0.si

403 Bytes
Binary file not shown.
136 Bytes
Binary file not shown.

src/data/index/gallery9/index/_5.fdt

-424 Bytes
Binary file not shown.

src/data/index/gallery9/index/_5.fdx

-84 Bytes
Binary file not shown.

src/data/index/gallery9/index/_5.fnm

-2.03 KB
Binary file not shown.

src/data/index/gallery9/index/_5.nvd

-167 Bytes
Binary file not shown.

src/data/index/gallery9/index/_5.nvm

-430 Bytes
Binary file not shown.

src/data/index/gallery9/index/_5.si

-514 Bytes
Binary file not shown.
-67 Bytes
Binary file not shown.
-228 Bytes
Binary file not shown.
-187 Bytes
Binary file not shown.
-1.7 KB
Binary file not shown.
-558 Bytes
Binary file not shown.

src/data/index/gallery9/index/_6.cfe

-299 Bytes
Binary file not shown.

src/data/index/gallery9/index/_6.cfs

-4.78 KB
Binary file not shown.

src/data/index/gallery9/index/_6.si

-384 Bytes
Binary file not shown.

src/data/index/gallery9/index/_7.cfe

-299 Bytes
Binary file not shown.

src/data/index/gallery9/index/_7.cfs

-4.76 KB
Binary file not shown.

src/data/index/gallery9/index/_7.si

-384 Bytes
Binary file not shown.
-258 Bytes
Binary file not shown.

src/data/index/groups/index/_2.cfe

-299 Bytes
Binary file not shown.

src/data/index/groups/index/_2.cfs

-3.69 KB
Binary file not shown.

src/data/index/groups/index/_2.si

-384 Bytes
Binary file not shown.

src/data/index/groups/index/_5.cfe

-299 Bytes
Binary file not shown.

src/data/index/groups/index/_5.cfs

-3.65 KB
Binary file not shown.

src/data/index/groups/index/_5.si

-384 Bytes
Binary file not shown.
-197 Bytes
Binary file not shown.

src/data/index/kmelia/index/_5.fdt

431 Bytes
Binary file not shown.

src/data/index/kmelia/index/_5.fdx

84 Bytes
Binary file not shown.

src/data/index/kmelia/index/_5.fnm

1.34 KB
Binary file not shown.

src/data/index/kmelia/index/_5.nvd

86 Bytes
Binary file not shown.

src/data/index/kmelia/index/_5.nvm

232 Bytes
Binary file not shown.

src/data/index/kmelia/index/_5.si

533 Bytes
Binary file not shown.
280 Bytes
Binary file not shown.
205 Bytes
Binary file not shown.
1.25 KB
Binary file not shown.
397 Bytes
Binary file not shown.
136 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_0.cfe

-299 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_0.cfs

-3.61 KB
Binary file not shown.

src/data/index/kmelia14/index/_0.si

-384 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_1.cfe

-299 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_1.cfs

-2.91 KB
Binary file not shown.

src/data/index/kmelia14/index/_1.si

-384 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_2.cfe

-299 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_2.cfs

-2.95 KB
Binary file not shown.

src/data/index/kmelia14/index/_2.si

-384 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_3.cfe

-299 Bytes
Binary file not shown.

src/data/index/kmelia14/index/_3.cfs

-2.94 KB
Binary file not shown.

src/data/index/kmelia14/index/_3.si

-384 Bytes
Binary file not shown.
-319 Bytes
Binary file not shown.

src/data/index/kmelia4/index/_6.fdt

-775 Bytes
Binary file not shown.

src/data/index/kmelia4/index/_6.fdx

-84 Bytes
Binary file not shown.

src/data/index/kmelia4/index/_6.fnm

-1.52 KB
Binary file not shown.

src/data/index/kmelia4/index/_6.nvd

-119 Bytes
Binary file not shown.

src/data/index/kmelia4/index/_6.nvm

-298 Bytes
Binary file not shown.

src/data/index/kmelia4/index/_6.si

-514 Bytes
Binary file not shown.
-4.02 KB
Binary file not shown.
-18.9 KB
Binary file not shown.
-18.5 KB
Binary file not shown.
-852 Bytes
Binary file not shown.
-136 Bytes
Binary file not shown.

src/data/index/pdc/index/_22.fdt

-1.18 KB
Binary file not shown.

src/data/index/pdc/index/_22.fdx

-84 Bytes
Binary file not shown.

src/data/index/pdc/index/_22.fnm

-1.18 KB
Binary file not shown.

src/data/index/pdc/index/_22.nvd

-230 Bytes
Binary file not shown.

src/data/index/pdc/index/_22.nvm

-232 Bytes
Binary file not shown.

src/data/index/pdc/index/_22.si

-524 Bytes
Binary file not shown.
-616 Bytes
Binary file not shown.
-504 Bytes
Binary file not shown.
-3.37 KB
Binary file not shown.
-397 Bytes
Binary file not shown.

src/data/index/pdc/index/segments_1p

-138 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-2.9 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-136 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-3.36 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-4.92 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-197 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-8.52 KB
Binary file not shown.

src/data/index/quickinfo3/index/_0.si

-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-5.46 KB
Binary file not shown.

src/data/index/quickinfo3/index/_1.si

-384 Bytes
Binary file not shown.
-197 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.19 KB
Binary file not shown.
403 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.24 KB
Binary file not shown.
403 Bytes
Binary file not shown.
67 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.23 KB
Binary file not shown.
403 Bytes
Binary file not shown.
67 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.18 KB
Binary file not shown.
403 Bytes
Binary file not shown.
319 Bytes
Binary file not shown.
-362 Bytes
Binary file not shown.
-84 Bytes
Binary file not shown.
-1.18 KB
Binary file not shown.
-86 Bytes
Binary file not shown.
-232 Bytes
Binary file not shown.
-514 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-299 Bytes
Binary file not shown.
-3.07 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-3 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-3.1 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-67 Bytes
Binary file not shown.
-319 Bytes
Binary file not shown.
-299 Bytes
Binary file not shown.
-2.91 KB
Binary file not shown.
-384 Bytes
Binary file not shown.
-67 Bytes
Binary file not shown.
-136 Bytes
Binary file not shown.

src/data/index/user@0_todo/index/write.lock

Whitespace-only changes.

src/data/index/users/index/_0.cfe

299 Bytes
Binary file not shown.

src/data/index/users/index/_0.cfs

3.88 KB
Binary file not shown.

src/data/index/users/index/_0.si

403 Bytes
Binary file not shown.

src/data/index/users/index/_5.fdt

-245 Bytes
Binary file not shown.

src/data/index/users/index/_5.fdx

-84 Bytes
Binary file not shown.

src/data/index/users/index/_5.fnm

-1.55 KB
Binary file not shown.

src/data/index/users/index/_5.nvd

-92 Bytes
Binary file not shown.

src/data/index/users/index/_5.nvm

-364 Bytes
Binary file not shown.

src/data/index/users/index/_5.si

-514 Bytes
Binary file not shown.

src/data/index/users/index/_5_3.liv

-67 Bytes
Binary file not shown.
-183 Bytes
Binary file not shown.
-146 Bytes
Binary file not shown.
-1.01 KB
Binary file not shown.
-443 Bytes
Binary file not shown.

src/data/index/users/index/_c.cfe

-299 Bytes
Binary file not shown.

src/data/index/users/index/_c.cfs

-3.66 KB
Binary file not shown.

src/data/index/users/index/_c.si

-384 Bytes
Binary file not shown.

src/data/index/users/index/_d.cfe

-299 Bytes
Binary file not shown.

src/data/index/users/index/_d.cfs

-3.65 KB
Binary file not shown.

src/data/index/users/index/_d.si

-384 Bytes
Binary file not shown.

src/data/index/users/index/_e.cfe

-299 Bytes
Binary file not shown.

src/data/index/users/index/_e.cfs

-3.48 KB
Binary file not shown.

src/data/index/users/index/_e.si

-384 Bytes
Binary file not shown.

src/data/index/users/index/segments_1

136 Bytes
Binary file not shown.

src/data/index/users/index/segments_e

-319 Bytes
Binary file not shown.
299 Bytes
Binary file not shown.
3.77 KB
Binary file not shown.
403 Bytes
Binary file not shown.
136 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
561 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.

src/data/jcr/repository/namespaces/ns_idx.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Thu Feb 08 16:05:12 CET 2018
1+
#Thu Dec 03 18:44:52 CET 2020
22
http\://www.jcp.org/jcr/1.0=1570322
33
http\://www.jcp.org/jcr/mix/1.0=14361695
44
internal=16762557

src/data/jcr/repository/namespaces/ns_reg.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Thu Feb 08 16:05:12 CET 2018
1+
#Thu Dec 03 18:44:52 CET 2020
22
fn_old=http\://www.w3.org/2004/10/xpath-functions
33
xs=http\://www.w3.org/2001/XMLSchema
44
slv=http\://www.silverpeas.com/jcr/1.0

src/data/jcr/repository/nodetypes/custom_nodetypes.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
455 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-36 Bytes
Binary file not shown.

src/data/portlets/data/portlet-app-registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

src/data/portlets/data/portlet-window-preference-registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

src/data/portlets/data/portlet-window-registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

src/data/temp/readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This the temporary directory into which uploaded files are put.

src/data/templateRepository/model1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="ISO-8859-1"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

src/data/templateRepository/model1/data.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="ISO-8859-1"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

src/data/templateRepository/model1/search.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="ISO-8859-1"?>
22
<!--
33
4-
Copyright (C) 2000 - 2018 Silverpeas
4+
Copyright (C) 2000 - 2022 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as

0 commit comments

Comments
 (0)