Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
See ukf/ukf-meta#331 for details
0 contributors

Users who have contributed to this file

executable file 13 lines (13 sloc) 423 Bytes
#!/usr/bin/perl -w -p -i
#
# É is changed to HTML character entity reference É
#
# An awful bodge to fix output of IdPInfoList. Our instance of
# PMwiki encodes pages in windows-1252 (single byte character encoding),
# and IdPInfoList includes a file encoded in UTF-8. All is well until
# we have a 2-byte character in GÉANT.
#
binmode(STDOUT, ":encoding(UTF-8)");
s/É/É/g;
s/é/é/g;
s/ü/ü/g;