Skip to content
Snippets Groups Projects
Commit 6ab3a51f authored by Claudiu Cristea's avatar Claudiu Cristea
Browse files

Merge branch 'ISAICP-8402' into 'develop'

ISAICP-8402: Fix Joinup publiccode.yml editor typo ("Maintainance").

See merge request digit/digit-joinup-dev!1562
parents dcce81fe 6f678a3e
No related branches found
No related tags found
1 merge request!183Release v1.112.0
...@@ -18,7 +18,6 @@ cp web/themes/ventuno/assets/images/favicon/favicon-32x32.png $EDITOR_DIR/src/as ...@@ -18,7 +18,6 @@ cp web/themes/ventuno/assets/images/favicon/favicon-32x32.png $EDITOR_DIR/src/as
# Build the distribution. It needs Node 10 :( # Build the distribution. It needs Node 10 :(
nvm install 10 nvm install 10
yarn --cwd $EDITOR_DIR install yarn --cwd $EDITOR_DIR install
yarn --cwd $EDITOR_DIR build
yarn --cwd $EDITOR_DIR build-prod yarn --cwd $EDITOR_DIR build-prod
# Copy the distribution under webroot. # Copy the distribution under webroot.
......
...@@ -12,6 +12,8 @@ webimage_extra_packages: ...@@ -12,6 +12,8 @@ webimage_extra_packages:
# Both required by mydumper. # Both required by mydumper.
- libatomic1 - libatomic1
- zstd - zstd
# Required by python2.
- mime-support
# It's not possible to use fpfis/httpd-php because DDEV is strongly advising # It's not possible to use fpfis/httpd-php because DDEV is strongly advising
# against using a non-DDEV image. But this has no impact on the Joinup code runs # against using a non-DDEV image. But this has no impact on the Joinup code runs
......
...@@ -51,6 +51,19 @@ index 6c2e55c..e6373f9 100644 ...@@ -51,6 +51,19 @@ index 6c2e55c..e6373f9 100644
+export const validatorUrl = `https://publiccode-validator.developers.italia.it/pc/validate`; +export const validatorUrl = `https://publiccode-validator.developers.italia.it/pc/validate`;
+export const validatorRemoteUrl = `https://publiccode-validator.developers.italia.it/pc/validateURL`; +export const validatorRemoteUrl = `https://publiccode-validator.developers.italia.it/pc/validateURL`;
export const APP_FORM = "appForm"; export const APP_FORM = "appForm";
diff --git a/src/app/contents/fields/index.js b/src/app/contents/fields/index.js
index 4b4550a..715fd00 100644
--- a/src/app/contents/fields/index.js
+++ b/src/app/contents/fields/index.js
@@ -11,7 +11,7 @@ const sections = [
"Description & Features",
"Logo & Screenshots",
"Purpose & Audience",
- "Maintainance"
+ "Maintenance"
];
const groups = [
diff --git a/src/asset/language_switcher.scss b/src/asset/language_switcher.scss diff --git a/src/asset/language_switcher.scss b/src/asset/language_switcher.scss
index 5c6068b..263ca74 100644 index 5c6068b..263ca74 100644
--- a/src/asset/language_switcher.scss --- a/src/asset/language_switcher.scss
......
# Install python2
RUN architecture=$(dpkg --print-architecture) && \
debian_shapshot_url="https://ftp.debian.org/debian/pool/main" && \
mkdir -p /tmp/python2 && \
wget -O /tmp/python2/libffi7.deb $debian_shapshot_url/libf/libffi/libffi7_3.3-6_${architecture}.deb && \
wget -O /tmp/python2/libssl1.1.deb $debian_shapshot_url/o/openssl/libssl1.1_1.1.1w-0+deb11u1_${architecture}.deb && \
wget -O /tmp/python2/libpython2.7-minimal.deb $debian_shapshot_url/p/python2.7/libpython2.7-minimal_2.7.18-8+deb11u1_${architecture}.deb && \
wget -O /tmp/python2/python2.7-minimal.deb $debian_shapshot_url/p/python2.7/python2.7-minimal_2.7.18-8+deb11u1_${architecture}.deb && \
wget -O /tmp/python2/libpython2.7-stdlib.deb $debian_shapshot_url/p/python2.7/libpython2.7-stdlib_2.7.18-8+deb11u1_${architecture}.deb && \
wget -O /tmp/python2/python2.7.deb $debian_shapshot_url/p/python2.7/python2.7_2.7.18-8+deb11u1_${architecture}.deb && \
dpkg -i /tmp/python2/*.deb && \
rm -rf /tmp/python2 && \
ln -s /usr/bin/python2.7 /usr/local/bin/python
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment