Skip to content

Fixes before release #896

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:

# if there is a change on the translation
if git diff --name-only HEAD^ HEAD | grep -q "^locale/${{ matrix.language }}" ; then echo "PROCESS=true" >> $GITHUB_ENV; fi
# if the change involves a link
if git diff HEAD^ "locale/${{ matrix.language }}" | grep "http" | grep -q "+" ; then echo "CHK_LINK=true" >> $GITHUB_ENV; fi
# if the change involves a link (TODO eneable when detecting which link is making it stall)
# if git diff HEAD^ "locale/${{ matrix.language }}" | grep "http" | grep -q "+" ; then echo "CHK_LINK=true" >> $GITHUB_ENV; fi

- name: Install python
if: env.PROCESS == 'true' || env.CHK_LINK == 'true'
Expand Down
4 changes: 2 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

%:
dh $@ --builddirectory=build

override_dh_auto_configure:
dh_auto_configure -- -DHTML=ON -DFI=ON -DIT=ON -DJA=ON -DES=ON -DFR=ON -DDE=ON -DHU=ON
dh_auto_configure -- -DHTML=ON -DFI=ON -DIT=ON -DJA=ON -DES=ON -DFR=ON -DDE=ON -DHU=ON -DSV=ON

override_dh_auto_build:
dh_auto_build
Expand Down
10 changes: 10 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,16 @@
# used in overview/mapserver_overview
'http://www.dnr.state.mn.us/maps/compass.html',

# 404
r'https://docs.qgis.org/3.10/en/docs/server_manual/',
r'https://earthdata.nasa.gov/esdis/eso/standards-and-references/directory-interchange-format-dif-standard',
r'https://istsos.org/en/trunk/doc/index.html',
r'https://istsos.org/tutorial/'


# 504
r'https://help.ubuntu.com/',

# intermittent 502 server errors
r'https://demo.pycsw.org',

Expand Down
Loading