Updating e71154fea..edfccd569 Fast-forward news/2019/news-20191125-01.nl.xhtml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 news/2019/news-20191125-01.nl.xhtml
[19:42:04] Starting phase 1 [19:42:16] * Updating XSL stylesheets [19:42:21] * Preparing subdirectory about/printable/archive [19:42:21] * Preparing subdirectory events [19:42:21] * Preparing subdirectory news [19:42:21] * Generating 2019/.news-20191125-01.nl.xml [19:42:22] * Generating tag maps [19:43:18] * Updating tag lists [19:43:39] * Updating XML lists [19:43:49] * Checking contents of XML lists [19:43:50] * Touching campaigns/publiccode/.publiccode.xmllist [19:43:52] * Touching .index.xmllist [19:43:53] * Touching news/.news.xmllist [19:43:53] * Touching press/.press.xmllist [19:43:55] * Touching tags/.tagged-front-page.xmllist [19:43:56] * Touching tags/.tagged-pmpc.xmllist [19:43:57] * Touching tags/.tagged-policy.xmllist [19:43:57] Finishing phase 1
# ----------------------------------------------------------------------------- # Makefile for FSFE website build, phase 2 # ----------------------------------------------------------------------------- .PHONY: all .DELETE_ON_ERROR: .SECONDEXPANSION: PROCESSOR = "/srv/www/fsfe.org_git/build/process_file.sh" PROCFLAGS = --build-env "fsfe.org" --source "/srv/www/fsfe.org_git" --statusdir "/srv/www/status.fsfe.org/fsfe.org" --domain "www.fsfe.org" INPUTDIR = /srv/www/fsfe.org_git OUTPUTDIR = /srv/www/fsfe.org_stage STATUSDIR = /srv/www/status.fsfe.org/fsfe.org LANGUAGES = ar bg bs ca cs da de el en es et fi fr hr hu it mk nb nl nn pl pt ro ru sk sl sq sr sv tr uk zh # ----------------------------------------------------------------------------- # Build .html files from .xhtml sources # ----------------------------------------------------------------------------- # All .xhtml source files HTML_SRC_FILES := $(shell find "$(INPUTDIR)" -name '*.??.xhtml' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files (without .<lang>.xhtml ending) # Note: $(sort ...) is used to remove duplicates HTML_SRC_BASES := $(sort $(basename $(basename $(HTML_SRC_FILES)))) # All directories containing .xhtml source files HTML_SRC_DIRS := $(sort $(dir $(HTML_SRC_BASES))) # The same as above, but moved to the output directory HTML_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(HTML_SRC_BASES)) # List of .<lang>.html files to build HTML_DST_FILES := $(foreach base,$(HTML_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).html)) # .xmllist file used to build a html file XMLLIST_DEP = $(wildcard $(INPUTDIR)/$(dir $*).$(notdir $*).xmllist) # .xsl file used to build a html file XSL_DEP = $(firstword $(wildcard $(INPUTDIR)/$*.xsl) $(INPUTDIR)/$(dir $*).default.xsl) all: $(HTML_DST_FILES) $(filter %.ar.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ar.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ar.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ar.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ar.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" > "$@" $(filter %.bg.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.bg.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bg.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bg.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bg.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" > "$@" $(filter %.bs.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.bs.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bs.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" > "$@" $(filter %.ca.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ca.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ca.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ca.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ca.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" > "$@" $(filter %.cs.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.cs.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-cs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.cs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.cs.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" > "$@" $(filter %.da.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.da.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-da.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.da.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.da.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" > "$@" $(filter %.de.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.de.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-de.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.de.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.de.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" > "$@" $(filter %.el.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.el.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-el.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.el.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.el.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" > "$@" $(filter %.en.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.en.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-en.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.en.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.en.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" > "$@" $(filter %.es.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.es.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-es.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.es.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.es.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" > "$@" $(filter %.et.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.et.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-et.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.et.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.et.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" > "$@" $(filter %.fi.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fi.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fi.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fi.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fi.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" > "$@" $(filter %.fr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" > "$@" $(filter %.hr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.hr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" > "$@" $(filter %.hu.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.hu.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hu.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hu.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hu.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" > "$@" $(filter %.it.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.it.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-it.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.it.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.it.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" > "$@" $(filter %.mk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.mk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-mk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.mk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.mk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" > "$@" $(filter %.nb.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nb.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nb.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nb.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nb.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" > "$@" $(filter %.nl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" > "$@" $(filter %.nn.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nn.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nn.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nn.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nn.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" > "$@" $(filter %.pl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.pl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" > "$@" $(filter %.pt.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.pt.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pt.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pt.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pt.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" > "$@" $(filter %.ro.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ro.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ro.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ro.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ro.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" > "$@" $(filter %.ru.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ru.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ru.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ru.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ru.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" > "$@" $(filter %.sk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" > "$@" $(filter %.sl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" > "$@" $(filter %.sq.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sq.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sq.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sq.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sq.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" > "$@" $(filter %.sr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" > "$@" $(filter %.sv.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sv.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sv.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sv.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sv.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" > "$@" $(filter %.tr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.tr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-tr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.tr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.tr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" > "$@" $(filter %.uk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.uk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-uk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.uk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.uk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" > "$@" $(filter %.zh.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.zh.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-zh.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.zh.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.zh.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" > "$@" # ----------------------------------------------------------------------------- # Create index.* symlinks # ----------------------------------------------------------------------------- # All .xhtml source files with the same name as their parent directory INDEX_SRC_FILES := $(wildcard $(foreach directory,$(HTML_SRC_DIRS),$(directory)$(notdir $(directory:/=)).??.xhtml)) # All basenames of .xhtml source files with the same name as their parent # directory INDEX_SRC_BASES := $(sort $(basename $(basename $(INDEX_SRC_FILES)))) # All directories containing .xhtml source files with the same name as their # parent directory (that is, all directories in which index files should be # created) INDEX_SRC_DIRS := $(dir $(INDEX_SRC_BASES)) # The same as above, but moved to the output directory INDEX_DST_DIRS := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(INDEX_SRC_DIRS)) # List of index.<lang>.html symlinks to create INDEX_DST_LINKS := $(foreach base,$(INDEX_DST_DIRS),$(foreach lang,$(LANGUAGES),$(base)index.$(lang).html)) all: $(INDEX_DST_LINKS) $(filter %/index.ar.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ar.html: echo "* Creating symlink $*/index.ar.html" ln -sf "$(notdir $*).ar.html" "$@" $(filter %/index.bg.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.bg.html: echo "* Creating symlink $*/index.bg.html" ln -sf "$(notdir $*).bg.html" "$@" $(filter %/index.bs.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.bs.html: echo "* Creating symlink $*/index.bs.html" ln -sf "$(notdir $*).bs.html" "$@" $(filter %/index.ca.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ca.html: echo "* Creating symlink $*/index.ca.html" ln -sf "$(notdir $*).ca.html" "$@" $(filter %/index.cs.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.cs.html: echo "* Creating symlink $*/index.cs.html" ln -sf "$(notdir $*).cs.html" "$@" $(filter %/index.da.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.da.html: echo "* Creating symlink $*/index.da.html" ln -sf "$(notdir $*).da.html" "$@" $(filter %/index.de.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.de.html: echo "* Creating symlink $*/index.de.html" ln -sf "$(notdir $*).de.html" "$@" $(filter %/index.el.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.el.html: echo "* Creating symlink $*/index.el.html" ln -sf "$(notdir $*).el.html" "$@" $(filter %/index.en.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.en.html: echo "* Creating symlink $*/index.en.html" ln -sf "$(notdir $*).en.html" "$@" $(filter %/index.es.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.es.html: echo "* Creating symlink $*/index.es.html" ln -sf "$(notdir $*).es.html" "$@" $(filter %/index.et.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.et.html: echo "* Creating symlink $*/index.et.html" ln -sf "$(notdir $*).et.html" "$@" $(filter %/index.fi.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fi.html: echo "* Creating symlink $*/index.fi.html" ln -sf "$(notdir $*).fi.html" "$@" $(filter %/index.fr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fr.html: echo "* Creating symlink $*/index.fr.html" ln -sf "$(notdir $*).fr.html" "$@" $(filter %/index.hr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.hr.html: echo "* Creating symlink $*/index.hr.html" ln -sf "$(notdir $*).hr.html" "$@" $(filter %/index.hu.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.hu.html: echo "* Creating symlink $*/index.hu.html" ln -sf "$(notdir $*).hu.html" "$@" $(filter %/index.it.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.it.html: echo "* Creating symlink $*/index.it.html" ln -sf "$(notdir $*).it.html" "$@" $(filter %/index.mk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.mk.html: echo "* Creating symlink $*/index.mk.html" ln -sf "$(notdir $*).mk.html" "$@" $(filter %/index.nb.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nb.html: echo "* Creating symlink $*/index.nb.html" ln -sf "$(notdir $*).nb.html" "$@" $(filter %/index.nl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nl.html: echo "* Creating symlink $*/index.nl.html" ln -sf "$(notdir $*).nl.html" "$@" $(filter %/index.nn.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nn.html: echo "* Creating symlink $*/index.nn.html" ln -sf "$(notdir $*).nn.html" "$@" $(filter %/index.pl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.pl.html: echo "* Creating symlink $*/index.pl.html" ln -sf "$(notdir $*).pl.html" "$@" $(filter %/index.pt.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.pt.html: echo "* Creating symlink $*/index.pt.html" ln -sf "$(notdir $*).pt.html" "$@" $(filter %/index.ro.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ro.html: echo "* Creating symlink $*/index.ro.html" ln -sf "$(notdir $*).ro.html" "$@" $(filter %/index.ru.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ru.html: echo "* Creating symlink $*/index.ru.html" ln -sf "$(notdir $*).ru.html" "$@" $(filter %/index.sk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sk.html: echo "* Creating symlink $*/index.sk.html" ln -sf "$(notdir $*).sk.html" "$@" $(filter %/index.sl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sl.html: echo "* Creating symlink $*/index.sl.html" ln -sf "$(notdir $*).sl.html" "$@" $(filter %/index.sq.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sq.html: echo "* Creating symlink $*/index.sq.html" ln -sf "$(notdir $*).sq.html" "$@" $(filter %/index.sr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sr.html: echo "* Creating symlink $*/index.sr.html" ln -sf "$(notdir $*).sr.html" "$@" $(filter %/index.sv.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sv.html: echo "* Creating symlink $*/index.sv.html" ln -sf "$(notdir $*).sv.html" "$@" $(filter %/index.tr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.tr.html: echo "* Creating symlink $*/index.tr.html" ln -sf "$(notdir $*).tr.html" "$@" $(filter %/index.uk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.uk.html: echo "* Creating symlink $*/index.uk.html" ln -sf "$(notdir $*).uk.html" "$@" $(filter %/index.zh.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.zh.html: echo "* Creating symlink $*/index.zh.html" ln -sf "$(notdir $*).zh.html" "$@" # ----------------------------------------------------------------------------- # Create symlinks from file.<lang>.html to file.html.<lang> # ----------------------------------------------------------------------------- # List of .html.<lang> symlinks to create HTML_DST_LINKS := $(foreach base,$(HTML_DST_BASES) $(addsuffix index,$(INDEX_DST_DIRS)),$(foreach lang,$(LANGUAGES),$(base).html.$(lang))) all: $(HTML_DST_LINKS) $(OUTPUTDIR)/%.html.ar: echo "* Creating symlink $*.html.ar" ln -sf "$(notdir $*).ar.html" "$@" $(OUTPUTDIR)/%.html.bg: echo "* Creating symlink $*.html.bg" ln -sf "$(notdir $*).bg.html" "$@" $(OUTPUTDIR)/%.html.bs: echo "* Creating symlink $*.html.bs" ln -sf "$(notdir $*).bs.html" "$@" $(OUTPUTDIR)/%.html.ca: echo "* Creating symlink $*.html.ca" ln -sf "$(notdir $*).ca.html" "$@" $(OUTPUTDIR)/%.html.cs: echo "* Creating symlink $*.html.cs" ln -sf "$(notdir $*).cs.html" "$@" $(OUTPUTDIR)/%.html.da: echo "* Creating symlink $*.html.da" ln -sf "$(notdir $*).da.html" "$@" $(OUTPUTDIR)/%.html.de: echo "* Creating symlink $*.html.de" ln -sf "$(notdir $*).de.html" "$@" $(OUTPUTDIR)/%.html.el: echo "* Creating symlink $*.html.el" ln -sf "$(notdir $*).el.html" "$@" $(OUTPUTDIR)/%.html.en: echo "* Creating symlink $*.html.en" ln -sf "$(notdir $*).en.html" "$@" $(OUTPUTDIR)/%.html.es: echo "* Creating symlink $*.html.es" ln -sf "$(notdir $*).es.html" "$@" $(OUTPUTDIR)/%.html.et: echo "* Creating symlink $*.html.et" ln -sf "$(notdir $*).et.html" "$@" $(OUTPUTDIR)/%.html.fi: echo "* Creating symlink $*.html.fi" ln -sf "$(notdir $*).fi.html" "$@" $(OUTPUTDIR)/%.html.fr: echo "* Creating symlink $*.html.fr" ln -sf "$(notdir $*).fr.html" "$@" $(OUTPUTDIR)/%.html.hr: echo "* Creating symlink $*.html.hr" ln -sf "$(notdir $*).hr.html" "$@" $(OUTPUTDIR)/%.html.hu: echo "* Creating symlink $*.html.hu" ln -sf "$(notdir $*).hu.html" "$@" $(OUTPUTDIR)/%.html.it: echo "* Creating symlink $*.html.it" ln -sf "$(notdir $*).it.html" "$@" $(OUTPUTDIR)/%.html.mk: echo "* Creating symlink $*.html.mk" ln -sf "$(notdir $*).mk.html" "$@" $(OUTPUTDIR)/%.html.nb: echo "* Creating symlink $*.html.nb" ln -sf "$(notdir $*).nb.html" "$@" $(OUTPUTDIR)/%.html.nl: echo "* Creating symlink $*.html.nl" ln -sf "$(notdir $*).nl.html" "$@" $(OUTPUTDIR)/%.html.nn: echo "* Creating symlink $*.html.nn" ln -sf "$(notdir $*).nn.html" "$@" $(OUTPUTDIR)/%.html.pl: echo "* Creating symlink $*.html.pl" ln -sf "$(notdir $*).pl.html" "$@" $(OUTPUTDIR)/%.html.pt: echo "* Creating symlink $*.html.pt" ln -sf "$(notdir $*).pt.html" "$@" $(OUTPUTDIR)/%.html.ro: echo "* Creating symlink $*.html.ro" ln -sf "$(notdir $*).ro.html" "$@" $(OUTPUTDIR)/%.html.ru: echo "* Creating symlink $*.html.ru" ln -sf "$(notdir $*).ru.html" "$@" $(OUTPUTDIR)/%.html.sk: echo "* Creating symlink $*.html.sk" ln -sf "$(notdir $*).sk.html" "$@" $(OUTPUTDIR)/%.html.sl: echo "* Creating symlink $*.html.sl" ln -sf "$(notdir $*).sl.html" "$@" $(OUTPUTDIR)/%.html.sq: echo "* Creating symlink $*.html.sq" ln -sf "$(notdir $*).sq.html" "$@" $(OUTPUTDIR)/%.html.sr: echo "* Creating symlink $*.html.sr" ln -sf "$(notdir $*).sr.html" "$@" $(OUTPUTDIR)/%.html.sv: echo "* Creating symlink $*.html.sv" ln -sf "$(notdir $*).sv.html" "$@" $(OUTPUTDIR)/%.html.tr: echo "* Creating symlink $*.html.tr" ln -sf "$(notdir $*).tr.html" "$@" $(OUTPUTDIR)/%.html.uk: echo "* Creating symlink $*.html.uk" ln -sf "$(notdir $*).uk.html" "$@" $(OUTPUTDIR)/%.html.zh: echo "* Creating symlink $*.html.zh" ln -sf "$(notdir $*).zh.html" "$@" # ----------------------------------------------------------------------------- # Build .rss files from .xhtml sources # ----------------------------------------------------------------------------- # All .rss.xsl scripts which can create .rss output RSS_SRC_SCRIPTS := $(shell find "$(INPUTDIR)" -name '*.rss.xsl' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files from which .rss files should be built RSS_SRC_BASES := $(sort $(basename $(basename $(RSS_SRC_SCRIPTS)))) # The same as above, but moved to the output directory RSS_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(RSS_SRC_BASES)) # List of .<lang>.rss files to build RSS_DST_FILES := $(foreach base,$(RSS_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).rss)) all: $(RSS_DST_FILES) $(OUTPUTDIR)/%.ar.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ar.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ar.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ar.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.bg.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bg.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bg.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bg.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.bs.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bs.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ca.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ca.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ca.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ca.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.cs.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-cs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.cs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.cs.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.da.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-da.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.da.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.da.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.de.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-de.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.de.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.de.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.el.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-el.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.el.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.el.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.en.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-en.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.en.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.en.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.es.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-es.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.es.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.es.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.et.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-et.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.et.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.et.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.fi.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fi.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fi.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fi.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.fr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.hr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.hu.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hu.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hu.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hu.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.it.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-it.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.it.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.it.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.mk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-mk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.mk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.mk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nb.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nb.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nb.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nb.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nn.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nn.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nn.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nn.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.pl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.pt.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pt.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pt.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pt.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ro.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ro.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ro.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ro.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ru.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ru.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ru.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ru.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sq.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sq.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sq.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sq.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sv.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sv.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sv.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sv.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.tr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-tr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.tr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.tr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.uk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-uk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.uk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.uk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.zh.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-zh.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.zh.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.zh.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" # ----------------------------------------------------------------------------- # Build .ics files from .xhtml sources # ----------------------------------------------------------------------------- # All .ics.xsl scripts which can create .ics output ICS_SRC_SCRIPTS := $(shell find "$(INPUTDIR)" -name '*.ics.xsl' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files from which .ics files should be built ICS_SRC_BASES := $(sort $(basename $(basename $(ICS_SRC_SCRIPTS)))) # The same as above, but moved to the output directory ICS_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(ICS_SRC_BASES)) # List of .<lang>.ics files to build ICS_DST_FILES := $(foreach base,$(ICS_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).ics)) all: $(ICS_DST_FILES) $(OUTPUTDIR)/%.ar.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ar.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ar.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ar.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.bg.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bg.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bg.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bg.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.bs.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-bs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.bs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.bs.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ca.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ca.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ca.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ca.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.cs.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-cs.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.cs.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.cs.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.da.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-da.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.da.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.da.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.de.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-de.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.de.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.de.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.el.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-el.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.el.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.el.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.en.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-en.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.en.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.en.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.es.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-es.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.es.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.es.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.et.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-et.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.et.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.et.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.fi.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fi.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fi.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fi.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.fr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-fr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.fr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.fr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.hr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.hu.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-hu.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.hu.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.hu.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.it.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-it.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.it.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.it.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.mk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-mk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.mk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.mk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nb.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nb.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nb.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nb.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nn.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-nn.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.nn.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.nn.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.pl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.pt.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-pt.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.pt.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.pt.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ro.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ro.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ro.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ro.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ru.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-ru.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.ru.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.ru.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sl.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sl.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sq.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sq.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sq.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sq.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sv.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-sv.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.sv.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.sv.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.tr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-tr.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.tr.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.tr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.uk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-uk.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.uk.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.uk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.zh.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/tools/menu-global.xml $(INPUTDIR)/tools/.texts-zh.xml $(INPUTDIR)/tools/texts-en.xml $(INPUTDIR)/.fundraising.zh.xml $(INPUTDIR)/fundraising.en.xml echo "* Building $*.zh.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" # ----------------------------------------------------------------------------- # Copy images, docments etc # ----------------------------------------------------------------------------- # All files which should just be copied over COPY_SRC_FILES := $(shell find "$(INPUTDIR)" -type f -not -path '$(INPUTDIR)/.git/*' -not -path '$(INPUTDIR)/build/*' -not -path '$(INPUTDIR)/tools/*' -not -name '.drone.yml' -not -name '.gitignore' -not -name 'README*' -not -name 'Makefile' -not -name '*.sources' -not -name "*.xmllist" -not -name '*.xhtml' -not -name '*.xml' -not -name '*.xsl' ) # The same as above, but moved to the output directory COPY_DST_FILES := $(sort $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(COPY_SRC_FILES))) all: $(COPY_DST_FILES) $(COPY_DST_FILES): $(OUTPUTDIR)/%: $(INPUTDIR)/% echo "* Linking file $*" ln -sf "$<" "$@" # ----------------------------------------------------------------------------- # Copy .xhtml files to "source" directory in target directory tree # ----------------------------------------------------------------------------- SOURCE_DST_FILES := $(sort $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/source/%,$(HTML_SRC_FILES))) all: $(SOURCE_DST_FILES) $(SOURCE_DST_FILES): $(OUTPUTDIR)/source/%: $(INPUTDIR)/% echo "* Linking source $*" ln -sf "$<" "$@" # ----------------------------------------------------------------------------- # Clean up excess files in target directory # ----------------------------------------------------------------------------- ALL_DST := $(HTML_DST_FILES) $(INDEX_DST_LINKS) $(HTML_DST_LINKS) $(RSS_DST_FILES) $(ICS_DST_FILES) $(COPY_DST_FILES) $(SOURCE_DST_FILES) .PHONY: clean all: clean clean: # Write all destination filenames into "manifest" file, one per line $(file >$(STATUSDIR)/manifest) $(foreach filename,$(ALL_DST),$(file >>$(STATUSDIR)/manifest,$(filename))) sort "$(STATUSDIR)/manifest" > "$(STATUSDIR)/manifest.sorted" find -L "$(OUTPUTDIR)" -type f \ | sort \ | diff - "$(STATUSDIR)/manifest.sorted" \ | sed -rn 's;^< ;;p' \ | while read file; do echo "* Deleting $${file}"; rm "$${file}"; done # -----------------------------------------------------------------------------
[19:44:00] Starting phase 2 [19:44:02] /srv/www/status.fsfe.org/fsfe.org/Makefile:604: warning: overriding recipe for target '/srv/www/fsfe.org_stage/news/2019/news-20191022-01.de.html' [19:44:02] /srv/www/status.fsfe.org/fsfe.org/Makefile:61: warning: ignoring old recipe for target '/srv/www/fsfe.org_stage/news/2019/news-20191022-01.de.html' [19:44:16] * Building campaigns/publiccode/publiccode.ar.html [19:44:16] * Building campaigns/publiccode/publiccode.bg.html [19:44:16] * Building campaigns/publiccode/publiccode.bs.html [19:44:16] * Building campaigns/publiccode/publiccode.ca.html [19:44:17] * Building campaigns/publiccode/publiccode.cs.html [19:44:17] * Building campaigns/publiccode/publiccode.da.html [19:44:18] * Building campaigns/publiccode/publiccode.de.html [19:44:18] * Building campaigns/publiccode/publiccode.el.html [19:44:18] * Building campaigns/publiccode/publiccode.en.html [19:44:18] * Building campaigns/publiccode/publiccode.es.html [19:44:19] * Building campaigns/publiccode/publiccode.et.html [19:44:19] * Building campaigns/publiccode/publiccode.fi.html [19:44:19] * Building campaigns/publiccode/publiccode.fr.html [19:44:19] * Building campaigns/publiccode/publiccode.hr.html [19:44:20] * Building campaigns/publiccode/publiccode.hu.html [19:44:20] * Building campaigns/publiccode/publiccode.it.html [19:44:21] * Building campaigns/publiccode/publiccode.mk.html [19:44:21] * Building campaigns/publiccode/publiccode.nb.html [19:44:21] * Building campaigns/publiccode/publiccode.nl.html [19:44:21] * Building campaigns/publiccode/publiccode.nn.html [19:44:22] * Building campaigns/publiccode/publiccode.pl.html [19:44:22] * Building campaigns/publiccode/publiccode.pt.html [19:44:23] * Building campaigns/publiccode/publiccode.ro.html [19:44:23] * Building campaigns/publiccode/publiccode.ru.html [19:44:23] * Building campaigns/publiccode/publiccode.sk.html [19:44:23] * Building campaigns/publiccode/publiccode.sl.html [19:44:24] * Building campaigns/publiccode/publiccode.sq.html [19:44:24] * Building campaigns/publiccode/publiccode.sr.html [19:44:24] * Building campaigns/publiccode/publiccode.sv.html [19:44:24] * Building campaigns/publiccode/publiccode.tr.html [19:44:25] * Building campaigns/publiccode/publiccode.uk.html [19:44:25] * Building campaigns/publiccode/publiccode.zh.html [19:44:26] * Building index.ar.html [19:44:27] * Building index.bg.html [19:44:27] * Building index.bs.html [19:44:28] * Building index.ca.html [19:44:28] * Building index.cs.html [19:44:29] * Building index.da.html [19:44:29] * Building index.de.html [19:44:30] * Building index.el.html [19:44:31] * Building index.en.html [19:44:31] * Building index.es.html [19:44:32] * Building index.et.html [19:44:32] * Building index.fi.html [19:44:33] * Building index.fr.html [19:44:33] * Building index.hr.html [19:44:34] * Building index.hu.html [19:44:34] * Building index.it.html [19:44:35] * Building index.mk.html [19:44:36] * Building index.nb.html [19:44:36] * Building index.nl.html [19:44:37] * Building index.nn.html [19:44:37] * Building index.pl.html [19:44:38] * Building index.pt.html [19:44:38] * Building index.ro.html [19:44:39] * Building index.ru.html [19:44:39] * Building index.sk.html [19:44:40] * Building index.sl.html [19:44:40] * Building index.sq.html [19:44:41] * Building index.sr.html [19:44:42] * Building index.sv.html [19:44:42] * Building index.tr.html [19:44:43] * Building index.uk.html [19:44:43] * Building index.zh.html [19:44:44] * Linking file news/2019/news-20191022-01.de.html [19:44:44] * Building news/2019/news-20191125-01.ar.html [19:44:45] * Building news/2019/news-20191125-01.bg.html [19:44:45] * Building news/2019/news-20191125-01.bs.html [19:44:45] * Building news/2019/news-20191125-01.ca.html [19:44:45] * Building news/2019/news-20191125-01.cs.html [19:44:45] * Building news/2019/news-20191125-01.da.html [19:44:45] * Building news/2019/news-20191125-01.de.html [19:44:46] * Building news/2019/news-20191125-01.el.html [19:44:46] * Building news/2019/news-20191125-01.en.html [19:44:46] * Building news/2019/news-20191125-01.es.html [19:44:46] * Building news/2019/news-20191125-01.et.html [19:44:46] * Building news/2019/news-20191125-01.fi.html [19:44:46] * Building news/2019/news-20191125-01.fr.html [19:44:46] * Building news/2019/news-20191125-01.hr.html [19:44:46] * Building news/2019/news-20191125-01.hu.html [19:44:46] * Building news/2019/news-20191125-01.it.html [19:44:46] * Building news/2019/news-20191125-01.mk.html [19:44:47] * Building news/2019/news-20191125-01.nb.html [19:44:47] * Building news/2019/news-20191125-01.nl.html [19:44:47] * Building news/2019/news-20191125-01.nn.html [19:44:47] * Building news/2019/news-20191125-01.pl.html [19:44:47] * Building news/2019/news-20191125-01.pt.html [19:44:47] * Building news/2019/news-20191125-01.ro.html [19:44:47] * Building news/2019/news-20191125-01.ru.html [19:44:47] * Building news/2019/news-20191125-01.sk.html [19:44:47] * Building news/2019/news-20191125-01.sl.html [19:44:48] * Building news/2019/news-20191125-01.sq.html [19:44:48] * Building news/2019/news-20191125-01.sr.html [19:44:48] * Building news/2019/news-20191125-01.sv.html [19:44:48] * Building news/2019/news-20191125-01.tr.html [19:44:48] * Building news/2019/news-20191125-01.uk.html [19:44:48] * Building news/2019/news-20191125-01.zh.html [19:44:48] * Building news/news.ar.html [19:44:48] * Building news/news.bg.html [19:44:49] * Building news/news.bs.html [19:44:49] * Building news/news.ca.html [19:44:50] * Building news/news.cs.html [19:44:50] * Building news/news.da.html [19:44:51] * Building news/news.de.html [19:44:51] * Building news/news.el.html [19:44:52] * Building news/news.en.html [19:44:52] * Building news/news.es.html [19:44:53] * Building news/news.et.html [19:44:53] * Building news/news.fi.html [19:44:54] * Building news/news.fr.html [19:44:54] * Building news/news.hr.html [19:44:55] * Building news/news.hu.html [19:44:55] * Building news/news.it.html [19:44:56] * Building news/news.mk.html [19:44:56] * Building news/news.nb.html [19:44:57] * Building news/news.nl.html [19:44:57] * Building news/news.nn.html [19:44:58] * Building news/news.pl.html [19:44:58] * Building news/news.pt.html [19:44:59] * Building news/news.ro.html [19:44:59] * Building news/news.ru.html [19:45:00] * Building news/news.sk.html [19:45:00] * Building news/news.sl.html [19:45:02] * Building news/news.sq.html [19:45:02] * Building news/news.sr.html [19:45:03] * Building news/news.sv.html [19:45:04] * Building news/news.tr.html [19:45:05] * Building news/news.uk.html [19:45:05] * Building news/news.zh.html [19:45:06] * Building press/press.ar.html [19:45:07] * Building press/press.bg.html [19:45:07] * Building press/press.bs.html [19:45:08] * Building press/press.ca.html [19:45:08] * Building press/press.cs.html [19:45:09] * Building press/press.da.html [19:45:09] * Building press/press.de.html [19:45:10] * Building press/press.el.html [19:45:10] * Building press/press.en.html [19:45:11] * Building press/press.es.html [19:45:11] * Building press/press.et.html [19:45:12] * Building press/press.fi.html [19:45:12] * Building press/press.fr.html [19:45:13] * Building press/press.hr.html [19:45:13] * Building press/press.hu.html [19:45:14] * Building press/press.it.html [19:45:14] * Building press/press.mk.html [19:45:14] * Building press/press.nb.html [19:45:14] * Building press/press.nl.html [19:45:15] * Building press/press.nn.html [19:45:15] * Building press/press.pl.html [19:45:16] * Building press/press.pt.html [19:45:16] * Building press/press.ro.html [19:45:17] * Building press/press.ru.html [19:45:17] * Building press/press.sk.html [19:45:18] * Building press/press.sl.html [19:45:18] * Building press/press.sq.html [19:45:19] * Building press/press.sr.html [19:45:19] * Building press/press.sv.html [19:45:20] * Building press/press.tr.html [19:45:20] * Building press/press.uk.html [19:45:21] * Building press/press.zh.html [19:45:21] * Building tags/tagged-pmpc.ar.html [19:45:22] * Building tags/tagged-pmpc.bg.html [19:45:22] * Building tags/tagged-pmpc.bs.html [19:45:23] * Building tags/tagged-pmpc.ca.html [19:45:23] * Building tags/tagged-pmpc.cs.html [19:45:23] * Building tags/tagged-pmpc.da.html [19:45:23] * Building tags/tagged-pmpc.de.html [19:45:24] * Building tags/tagged-pmpc.el.html [19:45:24] * Building tags/tagged-pmpc.en.html [19:45:24] * Building tags/tagged-pmpc.es.html [19:45:24] * Building tags/tagged-pmpc.et.html [19:45:25] * Building tags/tagged-pmpc.fi.html [19:45:25] * Building tags/tagged-pmpc.fr.html [19:45:26] * Building tags/tagged-pmpc.hr.html [19:45:26] * Building tags/tagged-pmpc.hu.html [19:45:26] * Building tags/tagged-pmpc.it.html [19:45:26] * Building tags/tagged-pmpc.mk.html [19:45:27] * Building tags/tagged-pmpc.nb.html [19:45:27] * Building tags/tagged-pmpc.nl.html [19:45:28] * Building tags/tagged-pmpc.nn.html [19:45:28] * Building tags/tagged-pmpc.pl.html [19:45:28] * Building tags/tagged-pmpc.pt.html [19:45:28] * Building tags/tagged-pmpc.ro.html [19:45:29] * Building tags/tagged-pmpc.ru.html [19:45:29] * Building tags/tagged-pmpc.sk.html [19:45:29] * Building tags/tagged-pmpc.sl.html [19:45:29] * Building tags/tagged-pmpc.sq.html [19:45:30] * Building tags/tagged-pmpc.sr.html [19:45:30] * Building tags/tagged-pmpc.sv.html [19:45:31] * Building tags/tagged-pmpc.tr.html [19:45:31] * Building tags/tagged-pmpc.uk.html [19:45:31] * Building tags/tagged-pmpc.zh.html [19:45:31] * Building tags/tagged-policy.ar.html [19:45:32] * Building tags/tagged-policy.bg.html [19:45:32] * Building tags/tagged-policy.bs.html [19:45:33] * Building tags/tagged-policy.ca.html [19:45:33] * Building tags/tagged-policy.cs.html [19:45:34] * Building tags/tagged-policy.da.html [19:45:34] * Building tags/tagged-policy.de.html [19:45:35] * Building tags/tagged-policy.el.html [19:45:35] * Building tags/tagged-policy.en.html [19:45:36] * Building tags/tagged-policy.es.html [19:45:36] * Building tags/tagged-policy.et.html [19:45:37] * Building tags/tagged-policy.fi.html [19:45:37] * Building tags/tagged-policy.fr.html [19:45:38] * Building tags/tagged-policy.hr.html [19:45:38] * Building tags/tagged-policy.hu.html [19:45:39] * Building tags/tagged-policy.it.html [19:45:39] * Building tags/tagged-policy.mk.html [19:45:40] * Building tags/tagged-policy.nb.html [19:45:40] * Building tags/tagged-policy.nl.html [19:45:41] * Building tags/tagged-policy.nn.html [19:45:41] * Building tags/tagged-policy.pl.html [19:45:42] * Building tags/tagged-policy.pt.html [19:45:42] * Building tags/tagged-policy.ro.html [19:45:43] * Building tags/tagged-policy.ru.html [19:45:43] * Building tags/tagged-policy.sk.html [19:45:44] * Building tags/tagged-policy.sl.html [19:45:44] * Building tags/tagged-policy.sq.html [19:45:44] * Building tags/tagged-policy.sr.html [19:45:45] * Building tags/tagged-policy.sv.html [19:45:45] * Building tags/tagged-policy.tr.html [19:45:46] * Building tags/tagged-policy.uk.html [19:45:46] * Building tags/tagged-policy.zh.html [19:45:48] * Building news/news.ar.rss [19:45:49] * Building news/news.bg.rss [19:45:49] * Building news/news.bs.rss [19:45:50] * Building news/news.ca.rss [19:45:50] * Building news/news.cs.rss [19:45:50] * Building news/news.da.rss [19:45:50] * Building news/news.de.rss [19:45:51] * Building news/news.el.rss [19:45:52] * Building news/news.en.rss [19:45:52] * Building news/news.es.rss [19:45:52] * Building news/news.et.rss [19:45:53] * Building news/news.fi.rss [19:45:53] * Building news/news.fr.rss [19:45:54] * Building news/news.hr.rss [19:45:54] * Building news/news.hu.rss [19:45:55] * Building news/news.it.rss [19:45:55] * Building news/news.mk.rss [19:45:56] * Building news/news.nb.rss [19:45:56] * Building news/news.nl.rss [19:45:57] * Building news/news.nn.rss [19:45:57] * Building news/news.pl.rss [19:45:58] * Building news/news.pt.rss [19:45:58] * Building news/news.ro.rss [19:45:59] * Building news/news.ru.rss [19:45:59] * Building news/news.sk.rss [19:46:00] * Building news/news.sl.rss [19:46:00] * Building news/news.sq.rss [19:46:01] * Building news/news.sr.rss [19:46:01] * Building news/news.sv.rss [19:46:02] * Building news/news.tr.rss [19:46:02] * Building news/news.uk.rss [19:46:03] * Building news/news.zh.rss [19:46:06] * Linking source news/2019/news-20191125-01.nl.xhtml [19:46:17] Finishing phase 2
[19:46:17] sending incremental file list [19:46:17] copying unsafe symlink ".htaccess" -> "/srv/www/fsfe.org_git/.htaccess" [19:46:17] index.ar.html [19:46:17] index.bg.html [19:46:17] index.bs.html [19:46:17] index.ca.html [19:46:17] index.cs.html [19:46:17] index.da.html [19:46:17] index.de.html [19:46:17] index.el.html [19:46:17] index.en.html [19:46:17] index.es.html [19:46:17] index.et.html [19:46:17] index.fi.html [19:46:17] index.fr.html [19:46:17] index.hr.html [19:46:17] index.hu.html [19:46:17] index.it.html [19:46:17] index.mk.html [19:46:17] index.nb.html [19:46:17] index.nl.html [19:46:17] index.nn.html [19:46:17] index.pl.html [19:46:17] index.pt.html [19:46:17] index.ro.html [19:46:17] index.ru.html [19:46:17] index.sk.html [19:46:17] index.sl.html [19:46:17] index.sq.html [19:46:17] index.sr.html [19:46:17] index.sv.html [19:46:17] index.tr.html [19:46:17] index.uk.html [19:46:17] index.zh.html [19:46:17] copying unsafe symlink "about/eiswirt/eiswirt-avatar.jpg" -> "/srv/www/fsfe.org_git/about/eiswirt/eiswirt-avatar.jpg" [19:46:17] copying unsafe symlink "about/eiswirt/eiswirt.jpg" -> "/srv/www/fsfe.org_git/about/eiswirt/eiswirt.jpg" [19:46:17] copying unsafe symlink "about/legal/fsf-relationship-framework.txt" -> "/srv/www/fsfe.org_git/about/legal/fsf-relationship-framework.txt" [19:46:17] copying unsafe symlink "about/legal/minutes/minutes-2019-10-12.en.pdf" -> "/srv/www/fsfe.org_git/about/legal/minutes/minutes-2019-10-12.en.pdf" [19:46:17] copying unsafe symlink "about/mehl/mehl.jpg" -> "/srv/www/fsfe.org_git/about/mehl/mehl.jpg" [19:46:17] copying unsafe symlink "about/mehl/mehl-avatar.jpg" -> "/srv/www/fsfe.org_git/about/mehl/mehl-avatar.jpg" [19:46:17] copying unsafe symlink "about/ockers/ockers-avatar.jpg" -> "/srv/www/fsfe.org_git/about/ockers/ockers-avatar.jpg" [19:46:17] copying unsafe symlink "about/rikken/rikken-avatar.jpg" -> "/srv/www/fsfe.org_git/about/rikken/rikken-avatar.jpg" [19:46:18] campaigns/publiccode/publiccode.ar.html [19:46:18] campaigns/publiccode/publiccode.bg.html [19:46:18] campaigns/publiccode/publiccode.bs.html [19:46:18] campaigns/publiccode/publiccode.ca.html [19:46:18] campaigns/publiccode/publiccode.cs.html [19:46:18] campaigns/publiccode/publiccode.da.html [19:46:18] campaigns/publiccode/publiccode.de.html [19:46:18] campaigns/publiccode/publiccode.el.html [19:46:18] campaigns/publiccode/publiccode.en.html [19:46:18] campaigns/publiccode/publiccode.es.html [19:46:18] campaigns/publiccode/publiccode.et.html [19:46:18] campaigns/publiccode/publiccode.fi.html [19:46:18] campaigns/publiccode/publiccode.fr.html [19:46:18] campaigns/publiccode/publiccode.hr.html [19:46:18] campaigns/publiccode/publiccode.hu.html [19:46:18] campaigns/publiccode/publiccode.it.html [19:46:18] campaigns/publiccode/publiccode.mk.html [19:46:18] campaigns/publiccode/publiccode.nb.html [19:46:18] campaigns/publiccode/publiccode.nl.html [19:46:18] campaigns/publiccode/publiccode.nn.html [19:46:18] campaigns/publiccode/publiccode.pl.html [19:46:18] campaigns/publiccode/publiccode.pt.html [19:46:18] campaigns/publiccode/publiccode.ro.html [19:46:18] campaigns/publiccode/publiccode.ru.html [19:46:18] campaigns/publiccode/publiccode.sk.html [19:46:18] campaigns/publiccode/publiccode.sl.html [19:46:18] campaigns/publiccode/publiccode.sq.html [19:46:18] campaigns/publiccode/publiccode.sr.html [19:46:18] campaigns/publiccode/publiccode.sv.html [19:46:18] campaigns/publiccode/publiccode.tr.html [19:46:18] campaigns/publiccode/publiccode.uk.html [19:46:18] campaigns/publiccode/publiccode.zh.html [19:46:18] copying unsafe symlink "cgi-bin/promotion.php" -> "/srv/www/fsfe.org_git/cgi-bin/promotion.php" [19:46:18] copying unsafe symlink "cgi-bin/mail-signup.php" -> "/srv/www/fsfe.org_git/cgi-bin/mail-signup.php" [19:46:18] copying unsafe symlink "cgi-bin/weborder.pl" -> "/srv/www/fsfe.org_git/cgi-bin/weborder.pl" [19:46:18] copying unsafe symlink "cgi-bin/expense-request.pl" -> "/srv/www/fsfe.org_git/cgi-bin/expense-request.pl" [19:46:18] copying unsafe symlink "climate-strike/index.html" -> "/srv/www/fsfe.org_git/climate-strike/index.html" [19:46:18] copying unsafe symlink "climate-strike/LICENSE" -> "/srv/www/fsfe.org_git/climate-strike/LICENSE" [19:46:18] copying unsafe symlink "climate-strike/favicon.ico" -> "/srv/www/fsfe.org_git/climate-strike/favicon.ico" [19:46:18] copying unsafe symlink "climate-strike/style.css" -> "/srv/www/fsfe.org_git/climate-strike/style.css" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-regular.eot" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-regular.eot" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-regular.woff" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-regular.woff" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-500.svg" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-500.svg" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-regular.ttf" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-regular.ttf" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-500.ttf" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-500.ttf" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-500.eot" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-500.eot" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-regular.svg" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-regular.svg" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-regular.woff2" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-regular.woff2" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-500.woff2" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-500.woff2" [19:46:18] copying unsafe symlink "climate-strike/fonts/roboto-v20-latin-500.woff" -> "/srv/www/fsfe.org_git/climate-strike/fonts/roboto-v20-latin-500.woff" [19:46:18] copying unsafe symlink "climate-strike/graphics/logo_transparent.svg" -> "/srv/www/fsfe.org_git/climate-strike/graphics/logo_transparent.svg" [19:46:18] copying unsafe symlink "climate-strike/graphics/fellowship/plussy_tile_03.svg" -> "/srv/www/fsfe.org_git/climate-strike/graphics/fellowship/plussy_tile_03.svg" [19:46:18] IO error encountered -- skipping file deletion [19:46:18] copying unsafe symlink "contribute/promopics/ilovefs-sticker-444px.jpg" -> "/srv/www/fsfe.org_git/contribute/promopics/ilovefs-sticker-444px.jpg" [19:46:18] copying unsafe symlink "drm.info/graphics/inchains_large.jpg" -> "/srv/www/fsfe.org_git/drm.info/graphics/inchains_large.jpg" [19:46:18] copying unsafe symlink "freesoftware/support/forum.png" -> "/srv/www/fsfe.org_git/freesoftware/support/forum.png" [19:46:18] copying unsafe symlink "freesoftware/support/vnc.png" -> "/srv/www/fsfe.org_git/freesoftware/support/vnc.png" [19:46:18] copying unsafe symlink "freesoftware/support/manual.png" -> "/srv/www/fsfe.org_git/freesoftware/support/manual.png" [19:46:18] copying unsafe symlink "freesoftware/support/wiki.png" -> "/srv/www/fsfe.org_git/freesoftware/support/wiki.png" [19:46:18] copying unsafe symlink "graphics/EST_button.png" -> "/srv/www/fsfe.org_git/graphics/EST_button.png" [19:46:18] copying unsafe symlink "graphics/slider-banner-FrancescaBria.png" -> "/srv/www/fsfe.org_git/graphics/slider-banner-FrancescaBria.png" [19:46:18] copying unsafe symlink "graphics/podcast-logo.png" -> "/srv/www/fsfe.org_git/graphics/podcast-logo.png" [19:46:18] copying unsafe symlink "graphics/services/podcast.svg" -> "/srv/www/fsfe.org_git/graphics/services/podcast.svg" [19:46:18] copying unsafe symlink "graphics/services/podcast_white.png" -> "/srv/www/fsfe.org_git/graphics/services/podcast_white.png" [19:46:18] copying unsafe symlink "look/fsfe.less" -> "/srv/www/fsfe.org_git/look/fsfe.less" [19:46:18] copying unsafe symlink "look/variables.less" -> "/srv/www/fsfe.org_git/look/variables.less" [19:46:18] copying unsafe symlink "look/fsfe.min.css" -> "/srv/www/fsfe.org_git/look/fsfe.min.css" [19:46:18] copying unsafe symlink "look/valentine.less" -> "/srv/www/fsfe.org_git/look/valentine.less" [19:46:18] copying unsafe symlink "look/style.less" -> "/srv/www/fsfe.org_git/look/style.less" [19:46:18] copying unsafe symlink "look/valentine.min.css" -> "/srv/www/fsfe.org_git/look/valentine.min.css" [19:46:18] copying unsafe symlink "look/elements/figure.less" -> "/srv/www/fsfe.org_git/look/elements/figure.less" [19:46:18] copying unsafe symlink "look/elements/sharebuttons.less" -> "/srv/www/fsfe.org_git/look/elements/sharebuttons.less" [19:46:18] copying unsafe symlink "look/elements/toc.less" -> "/srv/www/fsfe.org_git/look/elements/toc.less" [19:46:18] copying unsafe symlink "look/elements/podcast.less" -> "/srv/www/fsfe.org_git/look/elements/podcast.less" [19:46:18] news/news.ar.html [19:46:18] news/news.ar.rss [19:46:18] news/news.bg.html [19:46:18] news/news.bg.rss [19:46:18] news/news.bs.html [19:46:18] news/news.bs.rss [19:46:18] news/news.ca.html [19:46:18] news/news.ca.rss [19:46:18] news/news.cs.html [19:46:18] news/news.cs.rss [19:46:18] news/news.da.html [19:46:18] news/news.da.rss [19:46:18] news/news.de.html [19:46:18] news/news.de.rss [19:46:18] news/news.el.html [19:46:18] news/news.el.rss [19:46:18] news/news.en.html [19:46:18] news/news.en.rss [19:46:18] news/news.es.html [19:46:18] news/news.es.rss [19:46:18] news/news.et.html [19:46:18] news/news.et.rss [19:46:18] news/news.fi.html [19:46:18] news/news.fi.rss [19:46:18] news/news.fr.html [19:46:18] news/news.fr.rss [19:46:18] news/news.hr.html [19:46:18] news/news.hr.rss [19:46:18] news/news.hu.html [19:46:18] news/news.hu.rss [19:46:18] news/news.it.html [19:46:18] news/news.it.rss [19:46:18] news/news.mk.html [19:46:18] news/news.mk.rss [19:46:18] news/news.nb.html [19:46:18] news/news.nb.rss [19:46:18] news/news.nl.html [19:46:18] news/news.nl.rss [19:46:18] news/news.nn.html [19:46:18] news/news.nn.rss [19:46:18] news/news.pl.html [19:46:18] news/news.pl.rss [19:46:18] news/news.pt.html [19:46:18] news/news.pt.rss [19:46:18] news/news.ro.html [19:46:18] news/news.ro.rss [19:46:18] news/news.ru.html [19:46:18] news/news.ru.rss [19:46:18] news/news.sk.html [19:46:18] news/news.sk.rss [19:46:18] news/news.sl.html [19:46:18] news/news.sl.rss [19:46:18] news/news.sq.html [19:46:18] news/news.sq.rss [19:46:18] news/news.sr.html [19:46:18] news/news.sr.rss [19:46:18] news/news.sv.html [19:46:18] news/news.sv.rss [19:46:18] news/news.tr.html [19:46:18] news/news.tr.rss [19:46:18] news/news.uk.html [19:46:18] news/news.uk.rss [19:46:18] news/news.zh.html [19:46:18] news/news.zh.rss [19:46:18] copying unsafe symlink "news/2019/news-20191022-01.de.html" -> "/srv/www/fsfe.org_git/news/2019/news-20191022-01.de.html" [19:46:18] news/2019/ [19:46:18] news/2019/news-20191125-01.ar.html [19:46:18] news/2019/news-20191125-01.bg.html [19:46:18] news/2019/news-20191125-01.bs.html [19:46:18] news/2019/news-20191125-01.ca.html [19:46:18] news/2019/news-20191125-01.cs.html [19:46:18] news/2019/news-20191125-01.da.html [19:46:18] news/2019/news-20191125-01.de.html [19:46:18] news/2019/news-20191125-01.el.html [19:46:19] news/2019/news-20191125-01.en.html [19:46:19] news/2019/news-20191125-01.es.html [19:46:19] news/2019/news-20191125-01.et.html [19:46:19] news/2019/news-20191125-01.fi.html [19:46:19] news/2019/news-20191125-01.fr.html [19:46:19] news/2019/news-20191125-01.hr.html [19:46:19] news/2019/news-20191125-01.hu.html [19:46:19] news/2019/news-20191125-01.it.html [19:46:19] news/2019/news-20191125-01.mk.html [19:46:19] news/2019/news-20191125-01.nb.html [19:46:19] news/2019/news-20191125-01.nl.html [19:46:19] news/2019/news-20191125-01.nn.html [19:46:19] news/2019/news-20191125-01.pl.html [19:46:19] news/2019/news-20191125-01.pt.html [19:46:19] news/2019/news-20191125-01.ro.html [19:46:19] news/2019/news-20191125-01.ru.html [19:46:19] news/2019/news-20191125-01.sk.html [19:46:19] news/2019/news-20191125-01.sl.html [19:46:19] news/2019/news-20191125-01.sq.html [19:46:19] news/2019/news-20191125-01.sr.html [19:46:19] news/2019/news-20191125-01.sv.html [19:46:19] news/2019/news-20191125-01.tr.html [19:46:19] news/2019/news-20191125-01.uk.html [19:46:19] news/2019/news-20191125-01.zh.html [19:46:19] copying unsafe symlink "order/2017/kidstshirt-fork-red-front-large-350px.jpg" -> "/srv/www/fsfe.org_git/order/2017/kidstshirt-fork-red-front-large-350px.jpg" [19:46:19] copying unsafe symlink "order/2019/zipped-fsfs-blue-back-large.jpg" -> "/srv/www/fsfe.org_git/order/2019/zipped-fsfs-blue-back-large.jpg" [19:46:19] copying unsafe symlink "order/2019/gymsac-nocloud-black-small.jpg" -> "/srv/www/fsfe.org_git/order/2019/gymsac-nocloud-black-small.jpg" [19:46:19] copying unsafe symlink "order/2019/zipped-fsfs-blue-front-small.jpg" -> "/srv/www/fsfe.org_git/order/2019/zipped-fsfs-blue-front-small.jpg" [19:46:19] copying unsafe symlink "order/2019/gymsac-nocloud-black-large.jpg" -> "/srv/www/fsfe.org_git/order/2019/gymsac-nocloud-black-large.jpg" [19:46:19] copying unsafe symlink "order/2019/pin-fsfe-white-large.jpg" -> "/srv/www/fsfe.org_git/order/2019/pin-fsfe-white-large.jpg" [19:46:19] copying unsafe symlink "order/2019/pin-fsfe-white-small.jpg" -> "/srv/www/fsfe.org_git/order/2019/pin-fsfe-white-small.jpg" [19:46:19] copying unsafe symlink "order/2019/zipped-fsfs-blue-back-small.jpg" -> "/srv/www/fsfe.org_git/order/2019/zipped-fsfs-blue-back-small.jpg" [19:46:19] copying unsafe symlink "order/2019/zipped-fsfs-blue-front-large.jpg" -> "/srv/www/fsfe.org_git/order/2019/zipped-fsfs-blue-front-large.jpg" [19:46:19] copying unsafe symlink "picturebase/HOWTO-use-the-picturebase.txt" -> "/srv/www/fsfe.org_git/picturebase/HOWTO-use-the-picturebase.txt" [19:46:19] copying unsafe symlink "picturebase/booths/201906-booth-OpenExpo-Madrid.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201906-booth-OpenExpo-Madrid.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201908-booth-at-cccamp-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908-booth-at-cccamp-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201908-FrOSCon-booth.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908-FrOSCon-booth.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201908-FrOSCon-booth_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908-FrOSCon-booth_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201906-booth-Veganmania-Vienna-June_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201906-booth-Veganmania-Vienna-June_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201910-booth-FOSSCOM-Greece.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201910-booth-FOSSCOM-Greece.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201908_Veganmania-booth-Austria.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908_Veganmania-booth-Austria.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201911-booth-LacHol-Tilburg.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201911-booth-LacHol-Tilburg.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201908-booth-at-cccamp.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908-booth-at-cccamp.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201903-booth-at-clt-800px-cut.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201903-booth-at-clt-800px-cut.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201911-booth-LacHol-Tilburg-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201911-booth-LacHol-Tilburg-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201906-booth-Veganmania-Vienna-June.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201906-booth-Veganmania-Vienna-June.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201907-booth-Tubix.png" -> "/srv/www/fsfe.org_git/picturebase/booths/201907-booth-Tubix.png" [19:46:19] copying unsafe symlink "picturebase/booths/201906-booth-OpenExpo-Madrid_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201906-booth-OpenExpo-Madrid_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201907-booth-Tubix_800pxl.png" -> "/srv/www/fsfe.org_git/picturebase/booths/201907-booth-Tubix_800pxl.png" [19:46:19] copying unsafe symlink "picturebase/booths/201908_Veganmania-booth-Austria_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201908_Veganmania-booth-Austria_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/booths/201910-booth-FOSSCOM-Greece-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/booths/201910-booth-FOSSCOM-Greece-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/campaigns/pmpc/201906-pmpc-administration-transparency-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/campaigns/pmpc/201906-pmpc-administration-transparency-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/campaigns/routers/BEREC-NTP-locations.png" -> "/srv/www/fsfe.org_git/picturebase/campaigns/routers/BEREC-NTP-locations.png" [19:46:19] copying unsafe symlink "picturebase/campaigns/routers/ntp-transp.png" -> "/srv/www/fsfe.org_git/picturebase/campaigns/routers/ntp-transp.png" [19:46:19] copying unsafe symlink "picturebase/events/201911-SFScon-FSFE-Community-Meeting-Bolzano.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201911-SFScon-FSFE-Community-Meeting-Bolzano.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201904-llw-team.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201904-llw-team.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201910-fsfe-ga-meeting-participants.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201910-fsfe-ga-meeting-participants.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201905-webathon-group-picture.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-webathon-group-picture.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201905-towelday-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-towelday-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201910-fsfe-ga-meeting-participants-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201910-fsfe-ga-meeting-participants-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201908-CCcamp-about-freedom-talk.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201908-CCcamp-about-freedom-talk.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201905-webathon-group-picture-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-webathon-group-picture-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201908-CCcamp-about-freedom-talk_800pxl.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201908-CCcamp-about-freedom-talk_800pxl.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201905-towelday.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-towelday.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201904-llw-team-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201904-llw-team-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201911-SFScon-FSFE-Community-Meeting-Bolzano-800px.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201911-SFScon-FSFE-Community-Meeting-Bolzano-800px.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201908-CCcamp-about-freedom-at-night.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201908-CCcamp-about-freedom-at-night.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201910-Mouseopenerday-Frankfurt_800pxl.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201910-Mouseopenerday-Frankfurt_800pxl.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201910-Mouseopenerday-Frankfurt.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201910-Mouseopenerday-Frankfurt.jpeg" [19:46:19] copying unsafe symlink "picturebase/events/201905-webathon-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-webathon-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201905-webathon.jpg" -> "/srv/www/fsfe.org_git/picturebase/events/201905-webathon.jpg" [19:46:19] copying unsafe symlink "picturebase/events/201908-CCcamp-about-freedom-at-night_800pxl.jpeg" -> "/srv/www/fsfe.org_git/picturebase/events/201908-CCcamp-about-freedom-at-night_800pxl.jpeg" [19:46:19] copying unsafe symlink "picturebase/fundraising/2019-christmas-picture-merchandise.JPG" -> "/srv/www/fsfe.org_git/picturebase/fundraising/2019-christmas-picture-merchandise.JPG" [19:46:19] copying unsafe symlink "picturebase/fundraising/2019-christmas-picture-merchandise-800.JPG" -> "/srv/www/fsfe.org_git/picturebase/fundraising/2019-christmas-picture-merchandise-800.JPG" [19:46:19] copying unsafe symlink "picturebase/fundraising/2019-06-Christine-Prayon-1200x630.nl.png" -> "/srv/www/fsfe.org_git/picturebase/fundraising/2019-06-Christine-Prayon-1200x630.nl.png" [19:46:19] copying unsafe symlink "picturebase/fundraising/2019-christmas-picture-merchandise-800px.JPG" -> "/srv/www/fsfe.org_git/picturebase/fundraising/2019-christmas-picture-merchandise-800px.JPG" [19:46:19] copying unsafe symlink "picturebase/graphics/2019-Boris-Mijatovic-Greens-Kassel-2.png" -> "/srv/www/fsfe.org_git/picturebase/graphics/2019-Boris-Mijatovic-Greens-Kassel-2.png" [19:46:19] copying unsafe symlink "picturebase/graphics/2019-Boris-Mijatovic-Greens-Kassel-1.png" -> "/srv/www/fsfe.org_git/picturebase/graphics/2019-Boris-Mijatovic-Greens-Kassel-1.png" [19:46:19] copying unsafe symlink "picturebase/graphics/logos/NGI-logo.png" -> "/srv/www/fsfe.org_git/picturebase/graphics/logos/NGI-logo.png" [19:46:19] copying unsafe symlink "picturebase/graphics/logos/NGI0-Logo.png" -> "/srv/www/fsfe.org_git/picturebase/graphics/logos/NGI0-Logo.png" [19:46:19] copying unsafe symlink "picturebase/miscellaneous/20191113-ANSOL-DRM-action-video.png" -> "/srv/www/fsfe.org_git/picturebase/miscellaneous/20191113-ANSOL-DRM-action-video.png" [19:46:19] copying unsafe symlink "picturebase/miscellaneous/20191113-ANSOL-DRM-Portuguese-Parliament.png" -> "/srv/www/fsfe.org_git/picturebase/miscellaneous/20191113-ANSOL-DRM-Portuguese-Parliament.png" [19:46:19] copying unsafe symlink "picturebase/miscellaneous/201908-reuse-tool.png" -> "/srv/www/fsfe.org_git/picturebase/miscellaneous/201908-reuse-tool.png" [19:46:19] copying unsafe symlink "picturebase/miscellaneous/20191113-ANSOL-DRM-CD.png" -> "/srv/www/fsfe.org_git/picturebase/miscellaneous/20191113-ANSOL-DRM-CD.png" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Reinhard-Muller-Tubex_800pxl.png" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Reinhard-Muller-Tubex_800pxl.png" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Max-Mehl-Pass-the-Salt-Lille-France.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Max-Mehl-Pass-the-Salt-Lille-France.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Reinhard-Muller-Tubex_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Reinhard-Muller-Tubex_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Reinhard-Muller-Tubex.png" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Reinhard-Muller-Tubex.png" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Christian-Carlowitz-Nuremberg_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Christian-Carlowitz-Nuremberg_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Lucas_Lasota_Saarbrucken-horizontal_800px.png" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Lucas_Lasota_Saarbrucken-horizontal_800px.png" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Christian-Carlowitz-Nuremberg.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Christian-Carlowitz-Nuremberg.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Alex_Sander_Libertybits_Sofia.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Alex_Sander_Libertybits_Sofia.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Lucas_Lasota_Saarbrucken-horizontal.png" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Lucas_Lasota_Saarbrucken-horizontal.png" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Galia_Mancheva_Libertybits_Sofia.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Galia_Mancheva_Libertybits_Sofia.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Matthias_Kirschner_OW2con_Paris.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Matthias_Kirschner_OW2con_Paris.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Alex_Sander_Libertybits_Sofia_800pxl.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Alex_Sander_Libertybits_Sofia_800pxl.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Alex-Sander-Church-Day.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Alex-Sander-Church-Day.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Matthias_Kirschner_OW2con_Paris_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Matthias_Kirschner_OW2con_Paris_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Alex-Sander-Church-Day_800pxl.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Alex-Sander-Church-Day_800pxl.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Max-Mehl-Pass-the-Salt-Lille-France_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Max-Mehl-Pass-the-Salt-Lille-France_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/onstage/201906_Galia_Mancheva_Libertybits_Sofia_800pxl.JPG" -> "/srv/www/fsfe.org_git/picturebase/onstage/201906_Galia_Mancheva_Libertybits_Sofia_800pxl.JPG" [19:46:19] copying unsafe symlink "picturebase/onstage/201907-Reinhard-Muller-Tubex.jpg" -> "/srv/www/fsfe.org_git/picturebase/onstage/201907-Reinhard-Muller-Tubex.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2019-iyan-mendez-veiga-300px.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2019-iyan-mendez-veiga-300px.jpg" [19:46:19] copying unsafe symlink "picturebase/people/201910-Giammi-Dinacon.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/201910-Giammi-Dinacon.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2019-lucas-lasota-300px.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2019-lucas-lasota-300px.jpg" [19:46:19] copying unsafe symlink "picturebase/people/201906_Lucas_Lasota_Saarbrucken-horizontal_800pxl.png" -> "/srv/www/fsfe.org_git/picturebase/people/201906_Lucas_Lasota_Saarbrucken-horizontal_800pxl.png" [19:46:19] copying unsafe symlink "picturebase/people/201906_Lucas_Lasota_Saarbrucken-horizontal.png" -> "/srv/www/fsfe.org_git/picturebase/people/201906_Lucas_Lasota_Saarbrucken-horizontal.png" [19:46:19] copying unsafe symlink "picturebase/people/201906_Matthias_Kirschner_OW2con_Paris.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/201906_Matthias_Kirschner_OW2con_Paris.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2019-iyan-mendez-veiga.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2019-iyan-mendez-veiga.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2018-alexandra-busch-300px.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2018-alexandra-busch-300px.jpg" [19:46:19] copying unsafe symlink "picturebase/people/201910-Giammi-Dinacon-800px.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/201910-Giammi-Dinacon-800px.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2019-lucas-lasota.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2019-lucas-lasota.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2018-alexandra-busch.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2018-alexandra-busch.jpg" [19:46:19] copying unsafe symlink "picturebase/people/201906_Matthias_Kirschner_OW2con_Paris_800pxl.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/201906_Matthias_Kirschner_OW2con_Paris_800pxl.jpg" [19:46:19] copying unsafe symlink "picturebase/people/2019-Simon_Schlauri.jpg" -> "/srv/www/fsfe.org_git/picturebase/people/2019-Simon_Schlauri.jpg" [19:46:19] copying unsafe symlink "source/about/mission.bg.xhtml" -> "/srv/www/fsfe.org_git/about/mission.bg.xhtml" [19:46:19] copying unsafe symlink "source/about/mission.el.xhtml" -> "/srv/www/fsfe.org_git/about/mission.el.xhtml" [19:46:19] copying unsafe symlink "source/about/localteams.en.xhtml" -> "/srv/www/fsfe.org_git/about/localteams.en.xhtml" [19:46:19] copying unsafe symlink "source/about/mission.de.xhtml" -> "/srv/www/fsfe.org_git/about/mission.de.xhtml" [19:46:19] copying unsafe symlink "source/about/localteams.de.xhtml" -> "/srv/www/fsfe.org_git/about/localteams.de.xhtml" [19:46:19] copying unsafe symlink "source/about/legal.es.xhtml" -> "/srv/www/fsfe.org_git/about/legal.es.xhtml" [19:46:19] copying unsafe symlink "source/about/mission.fi.xhtml" -> "/srv/www/fsfe.org_git/about/mission.fi.xhtml" [19:46:19] copying unsafe symlink "source/about/mission.it.xhtml" -> "/srv/www/fsfe.org_git/about/mission.it.xhtml" [19:46:19] copying unsafe symlink "source/about/mission.pt.xhtml" -> "/srv/www/fsfe.org_git/about/mission.pt.xhtml" [19:46:19] copying unsafe symlink "source/about/about.bg.xhtml" -> "/srv/www/fsfe.org_git/about/about.bg.xhtml" [19:46:19] copying unsafe symlink "source/about/albers/albers.de.xhtml" -> "/srv/www/fsfe.org_git/about/albers/albers.de.xhtml" [19:46:19] copying unsafe symlink "source/about/albers/albers.en.xhtml" -> "/srv/www/fsfe.org_git/about/albers/albers.en.xhtml" [19:46:19] copying unsafe symlink "source/about/albers/albers.nl.xhtml" -> "/srv/www/fsfe.org_git/about/albers/albers.nl.xhtml" [19:46:19] copying unsafe symlink "source/about/eiswirt/eiswirt.en.xhtml" -> "/srv/www/fsfe.org_git/about/eiswirt/eiswirt.en.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2007.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2007.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2002.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2002.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2004.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2004.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2005.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2005.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2003.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2003.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2001.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2001.it.xhtml" [19:46:19] copying unsafe symlink "source/about/funds/2006.it.xhtml" -> "/srv/www/fsfe.org_git/about/funds/2006.it.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/imprint.fr.xhtml" -> "/srv/www/fsfe.org_git/about/legal/imprint.fr.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.fi.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.fi.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.fr.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.fr.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.es.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.es.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.en.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.en.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.pt.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.pt.xhtml" [19:46:19] copying unsafe symlink "source/about/legal/legal.nl.xhtml" -> "/srv/www/fsfe.org_git/about/legal/legal.nl.xhtml" [19:46:19] copying unsafe symlink "source/about/mehl/mehl.de.xhtml" -> "/srv/www/fsfe.org_git/about/mehl/mehl.de.xhtml" [19:46:19] copying unsafe symlink "source/about/mehl/mehl.nl.xhtml" -> "/srv/www/fsfe.org_git/about/mehl/mehl.nl.xhtml" [19:46:19] copying unsafe symlink "source/about/mehl/mehl.en.xhtml" -> "/srv/www/fsfe.org_git/about/mehl/mehl.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/testimonials.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/testimonials.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/feeds/testimonials/6500-gkotsopoulou.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/feeds/testimonials/6500-gkotsopoulou.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/cryptie.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/cryptie.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/weitzhofer.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/weitzhofer.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/ockers.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/ockers.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/grun.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/grun.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/gkotsopoulou.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/gkotsopoulou.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/mueller.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/mueller.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/lequertier.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/lequertier.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/snow.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/snow.en.xhtml" [19:46:19] copying unsafe symlink "source/about/people/interviews/zerolo.en.xhtml" -> "/srv/www/fsfe.org_git/about/people/interviews/zerolo.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/licence-questions.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/licence-questions.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/fla.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/fla.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/legal-conference.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/legal-conference.nl.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/ln.fr.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/ln.fr.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/activities.fr.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/activities.fr.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/fla.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/fla.nl.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/activities.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/activities.nl.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/licence-questions.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/licence-questions.nl.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/ngi0.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/ngi0.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/legal-conference.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/legal-conference.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/services.fr.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/services.fr.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/activities.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/activities.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/ln-rules.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/ln-rules.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/services.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/services.nl.xhtml" [19:46:19] copying unsafe symlink "source/activities/ftf/services.en.xhtml" -> "/srv/www/fsfe.org_git/activities/ftf/services.en.xhtml" [19:46:19] press/press.ar.html [19:46:19] press/press.bg.html [19:46:19] press/press.bs.html [19:46:19] press/press.ca.html [19:46:19] press/press.cs.html [19:46:19] press/press.da.html [19:46:19] press/press.de.html [19:46:19] press/press.el.html [19:46:19] press/press.en.html [19:46:19] press/press.es.html [19:46:19] press/press.et.html [19:46:19] press/press.fi.html [19:46:19] press/press.fr.html [19:46:19] press/press.hr.html [19:46:19] press/press.hu.html [19:46:19] press/press.it.html [19:46:19] press/press.mk.html [19:46:19] press/press.nb.html [19:46:19] press/press.nl.html [19:46:19] press/press.nn.html [19:46:19] press/press.pl.html [19:46:19] press/press.pt.html [19:46:19] press/press.ro.html [19:46:19] press/press.ru.html [19:46:19] press/press.sk.html [19:46:19] press/press.sl.html [19:46:19] press/press.sq.html [19:46:19] press/press.sr.html [19:46:19] press/press.sv.html [19:46:19] press/press.tr.html [19:46:19] press/press.uk.html [19:46:19] press/press.zh.html [19:46:19] copying unsafe symlink "source/activities/radiodirective/radiodirective.en.xhtml" -> "/srv/www/fsfe.org_git/activities/radiodirective/radiodirective.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/routers/routers.en.xhtml" -> "/srv/www/fsfe.org_git/activities/routers/routers.en.xhtml" [19:46:19] copying unsafe symlink "source/activities/routers/routers.nl.xhtml" -> "/srv/www/fsfe.org_git/activities/routers/routers.nl.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/publiccode.de.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/publiccode.de.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/brochure.en.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/brochure.en.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/publiccode.en.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/publiccode.en.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/publiccode.it.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/publiccode.it.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/publiccode.nl.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/publiccode.nl.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/brochure.de.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/brochure.de.xhtml" [19:46:19] copying unsafe symlink "source/campaigns/publiccode/publiccode.fr.xhtml" -> "/srv/www/fsfe.org_git/campaigns/publiccode/publiccode.fr.xhtml" [19:46:19] copying unsafe symlink "source/community/tools/eventregistration.nl.xhtml" -> "/srv/www/fsfe.org_git/community/tools/eventregistration.nl.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.it.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.it.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.fr.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.fr.xhtml" [19:46:19] copying unsafe symlink "source/contact/community.fr.xhtml" -> "/srv/www/fsfe.org_git/contact/community.fr.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.fi.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.fi.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.de.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.de.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.nl.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.nl.xhtml" [19:46:19] copying unsafe symlink "source/contact/contact.en.xhtml" -> "/srv/www/fsfe.org_git/contact/contact.en.xhtml" [19:46:19] copying unsafe symlink "source/contribute/spreadtheword-orderthanks.nl.xhtml" -> "/srv/www/fsfe.org_git/contribute/spreadtheword-orderthanks.nl.xhtml" [19:46:19] copying unsafe symlink "source/contribute/contribute.fr.xhtml" -> "/srv/www/fsfe.org_git/contribute/contribute.fr.xhtml" [19:46:19] copying unsafe symlink "source/contribute/contribute.bg.xhtml" -> "/srv/www/fsfe.org_git/contribute/contribute.bg.xhtml" [19:46:19] copying unsafe symlink "source/contribute/internship.fr.xhtml" -> "/srv/www/fsfe.org_git/contribute/internship.fr.xhtml" [19:46:19] copying unsafe symlink "source/contribute/spreadtheword.en.xhtml" -> "/srv/www/fsfe.org_git/contribute/spreadtheword.en.xhtml" [19:46:19] copying unsafe symlink "source/contribute/translators/wordlist.nl.xhtml" -> "/srv/www/fsfe.org_git/contribute/translators/wordlist.nl.xhtml" [19:46:19] copying unsafe symlink "source/contribute/translators/wordlist.de.xhtml" -> "/srv/www/fsfe.org_git/contribute/translators/wordlist.de.xhtml" [19:46:19] copying unsafe symlink "source/contribute/translators/wordlist.en.xhtml" -> "/srv/www/fsfe.org_git/contribute/translators/wordlist.en.xhtml" [19:46:19] copying unsafe symlink "source/contribute/translators/wordlist.tr.xhtml" -> "/srv/www/fsfe.org_git/contribute/translators/wordlist.tr.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.es.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.es.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.nl.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.nl.xhtml" [19:46:19] copying unsafe symlink "source/donate/donate.nl.xhtml" -> "/srv/www/fsfe.org_git/donate/donate.nl.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.it.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.it.xhtml" [19:46:19] copying unsafe symlink "source/donate/donate.fr.xhtml" -> "/srv/www/fsfe.org_git/donate/donate.fr.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.en.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.en.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.sq.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.sq.xhtml" [19:46:19] copying unsafe symlink "source/donate/donate.en.xhtml" -> "/srv/www/fsfe.org_git/donate/donate.en.xhtml" [19:46:19] copying unsafe symlink "source/donate/luxembourg.fr.xhtml" -> "/srv/www/fsfe.org_git/donate/luxembourg.fr.xhtml" [19:46:19] copying unsafe symlink "source/donate/hardware.de.xhtml" -> "/srv/www/fsfe.org_git/donate/hardware.de.xhtml" [19:46:19] copying unsafe symlink "source/donate/donate.it.xhtml" -> "/srv/www/fsfe.org_git/donate/donate.it.xhtml" [19:46:19] copying unsafe symlink "source/donate/donate.de.xhtml" -> "/srv/www/fsfe.org_git/donate/donate.de.xhtml" [19:46:19] copying unsafe symlink "source/error/404.sq.xhtml" -> "/srv/www/fsfe.org_git/error/404.sq.xhtml" [19:46:19] copying unsafe symlink "source/error/500.de.xhtml" -> "/srv/www/fsfe.org_git/error/500.de.xhtml" [19:46:19] copying unsafe symlink "source/error/413.it.xhtml" -> "/srv/www/fsfe.org_git/error/413.it.xhtml" [19:46:19] copying unsafe symlink "source/error/410.de.xhtml" -> "/srv/www/fsfe.org_git/error/410.de.xhtml" [19:46:19] copying unsafe symlink "source/error/410.it.xhtml" -> "/srv/www/fsfe.org_git/error/410.it.xhtml" [19:46:19] copying unsafe symlink "source/error/400.it.xhtml" -> "/srv/www/fsfe.org_git/error/400.it.xhtml" [19:46:19] copying unsafe symlink "source/error/405.it.xhtml" -> "/srv/www/fsfe.org_git/error/405.it.xhtml" [19:46:19] copying unsafe symlink "source/error/410.en.xhtml" -> "/srv/www/fsfe.org_git/error/410.en.xhtml" [19:46:19] copying unsafe symlink "source/error/500.it.xhtml" -> "/srv/www/fsfe.org_git/error/500.it.xhtml" [19:46:19] copying unsafe symlink "source/error/404.de.xhtml" -> "/srv/www/fsfe.org_git/error/404.de.xhtml" [19:46:19] copying unsafe symlink "source/error/410.nl.xhtml" -> "/srv/www/fsfe.org_git/error/410.nl.xhtml" [19:46:19] copying unsafe symlink "source/error/404.en.xhtml" -> "/srv/www/fsfe.org_git/error/404.en.xhtml" [19:46:19] copying unsafe symlink "source/error/503.it.xhtml" -> "/srv/www/fsfe.org_git/error/503.it.xhtml" [19:46:19] copying unsafe symlink "source/error/500.fr.xhtml" -> "/srv/www/fsfe.org_git/error/500.fr.xhtml" [19:46:19] copying unsafe symlink "source/error/500.sq.xhtml" -> "/srv/www/fsfe.org_git/error/500.sq.xhtml" [19:46:19] copying unsafe symlink "source/error/414.it.xhtml" -> "/srv/www/fsfe.org_git/error/414.it.xhtml" [19:46:19] copying unsafe symlink "source/error/410.sq.xhtml" -> "/srv/www/fsfe.org_git/error/410.sq.xhtml" [19:46:19] copying unsafe symlink "source/error/408.it.xhtml" -> "/srv/www/fsfe.org_git/error/408.it.xhtml" [19:46:19] copying unsafe symlink "source/error/404.nl.xhtml" -> "/srv/www/fsfe.org_git/error/404.nl.xhtml" [19:46:19] copying unsafe symlink "source/error/500.nl.xhtml" -> "/srv/www/fsfe.org_git/error/500.nl.xhtml" [19:46:19] copying unsafe symlink "source/error/412.it.xhtml" -> "/srv/www/fsfe.org_git/error/412.it.xhtml" [19:46:19] copying unsafe symlink "source/error/502.it.xhtml" -> "/srv/www/fsfe.org_git/error/502.it.xhtml" [19:46:19] copying unsafe symlink "source/error/501.it.xhtml" -> "/srv/www/fsfe.org_git/error/501.it.xhtml" [19:46:19] copying unsafe symlink "source/error/500.en.xhtml" -> "/srv/www/fsfe.org_git/error/500.en.xhtml" [19:46:19] copying unsafe symlink "source/error/411.it.xhtml" -> "/srv/www/fsfe.org_git/error/411.it.xhtml" [19:46:19] copying unsafe symlink "source/error/410.fr.xhtml" -> "/srv/www/fsfe.org_git/error/410.fr.xhtml" [19:46:19] copying unsafe symlink "source/error/415.it.xhtml" -> "/srv/www/fsfe.org_git/error/415.it.xhtml" [19:46:19] copying unsafe symlink "source/error/404.it.xhtml" -> "/srv/www/fsfe.org_git/error/404.it.xhtml" [19:46:19] copying unsafe symlink "source/error/404.fr.xhtml" -> "/srv/www/fsfe.org_git/error/404.fr.xhtml" [19:46:19] copying unsafe symlink "source/events/events.nl.xhtml" -> "/srv/www/fsfe.org_git/events/events.nl.xhtml" [19:46:19] copying unsafe symlink "source/events/events.de.xhtml" -> "/srv/www/fsfe.org_git/events/events.de.xhtml" [19:46:19] copying unsafe symlink "source/events/events.it.xhtml" -> "/srv/www/fsfe.org_git/events/events.it.xhtml" [19:46:19] copying unsafe symlink "source/events/events.en.xhtml" -> "/srv/www/fsfe.org_git/events/events.en.xhtml" [19:46:19] copying unsafe symlink "source/events/events.fr.xhtml" -> "/srv/www/fsfe.org_git/events/events.fr.xhtml" [19:46:19] copying unsafe symlink "source/freesoftware/basics/comparison.nl.xhtml" -> "/srv/www/fsfe.org_git/freesoftware/basics/comparison.nl.xhtml" [19:46:19] copying unsafe symlink "source/freesoftware/basics/comparison.en.xhtml" -> "/srv/www/fsfe.org_git/freesoftware/basics/comparison.en.xhtml" [19:46:19] copying unsafe symlink "source/freesoftware/basics/comparison.de.xhtml" -> "/srv/www/fsfe.org_git/freesoftware/basics/comparison.de.xhtml" [19:46:19] copying unsafe symlink "source/freesoftware/support/community-support.en.xhtml" -> "/srv/www/fsfe.org_git/freesoftware/support/community-support.en.xhtml" [19:46:19] copying unsafe symlink "source/freesoftware/support/community-support.nl.xhtml" -> "/srv/www/fsfe.org_git/freesoftware/support/community-support.nl.xhtml" [19:46:19] copying unsafe symlink "source/internal/er.en.xhtml" -> "/srv/www/fsfe.org_git/internal/er.en.xhtml" [19:46:19] copying unsafe symlink "source/news/news.de.xhtml" -> "/srv/www/fsfe.org_git/news/news.de.xhtml" [19:46:19] copying unsafe symlink "source/news/news.nl.xhtml" -> "/srv/www/fsfe.org_git/news/news.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast-opus.en.xhtml" -> "/srv/www/fsfe.org_git/news/podcast-opus.en.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast.en.xhtml" -> "/srv/www/fsfe.org_git/news/podcast.en.xhtml" [19:46:19] copying unsafe symlink "source/news/news.it.xhtml" -> "/srv/www/fsfe.org_git/news/news.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2011/news-20111117-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2011/news-20111117-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2011/news-20111220-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2011/news-20111220-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2011/news-20111208-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2011/news-20111208-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2011/news-20111213-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2011/news-20111213-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120110-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120110-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120126-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120126-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120202-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120202-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120209-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120209-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120110-01.sk.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120110-01.sk.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120109-02.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120109-02.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120120-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120120-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120109-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120109-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2012/news-20120110-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2012/news-20120110-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130212-01.sr.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130212-01.sr.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130212-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130212-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130212-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130212-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130212-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130212-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130212-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130212-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2013/news-20130312-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2013/news-20130312-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20140326-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20140326-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20141219-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20141219-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20141219-01.sr.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20141219-01.sr.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20141016-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20141016-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20141203-01.sr.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20141203-01.sr.xhtml" [19:46:19] copying unsafe symlink "source/news/2014/news-20141219-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2014/news-20141219-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20150324-01.el.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20150324-01.el.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20150324-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20150324-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20150324-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20150324-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20150324-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20150324-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20150902-01.it.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20150902-01.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2015/news-20151013-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2015/news-20151013-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160624-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160624-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-02.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-02.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160205-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160205-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160118-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160118-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20161110-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20161110-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160118-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160118-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.pt.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.pt.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-02.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-02.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160428-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160428-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160118-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160118-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160126-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160126-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160624-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160624-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160205-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160205-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20161202-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20161202-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160128-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160128-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160624-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160624-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160128-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160128-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160128-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160128-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160122-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160122-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160205-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160205-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160118-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160118-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2016/news-20160128-01.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2016/news-20160128-01.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170726-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170726-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170726-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170726-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170616-01.it.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170616-01.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170217-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170217-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20171130-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20171130-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170726-01.cs.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170726-01.cs.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20171108-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20171108-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170214-02.sq.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170214-02.sq.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170214-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170214-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20171130-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20171130-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170726-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170726-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170726-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170726-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2017/news-20170109-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2017/news-20170109-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2018/news-20180725-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2018/news-20180725-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2018/news-20180917-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2018/news-20180917-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2018/news-20181010-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2018/news-20181010-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2018/news-20181010-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2018/news-20181010-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190807-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190807-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190124-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190124-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190927-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190927-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190205-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190205-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191030-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191030-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190205-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190205-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191102-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191102-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190805-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190805-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190917-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190917-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191125-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191125-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191112-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191112-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191012-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191012-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191012-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191012-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190308-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190308-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190827-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190827-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191128-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191128-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191002-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191002-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191014-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191014-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-02.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-02.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007-01.it.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007-01.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191101-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191101-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191002.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191002.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191125-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191125-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191002-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191002-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190520-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190520-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191102-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191102-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190124-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190124-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190124-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190124-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191022-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191022-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-02.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-02.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191028-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191028-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191028-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191028-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190806-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190806-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191120-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191120-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191022-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191022-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191014-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191014-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191028-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191028-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190927-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190927-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190514-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190514-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191112-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191112-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190520-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190520-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190917-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190917-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190520-01.it.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190520-01.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190807-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190807-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190514-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190514-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190807-01.it.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190807-01.it.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190827-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190827-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191024-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191024-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190827-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190827-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191102-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191102-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190827-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190827-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190124-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190124-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190701-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190701-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-01.nl.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-01.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190514-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190514-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190917-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190917-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190124-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190124-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-02.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-02.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190205-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190205-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190917-01.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190917-01.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191007.fr.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191007.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191028-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191028-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191113-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191113-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191125-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191125-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190917-01.es.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190917-01.es.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191028-01.sv.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191028-01.sv.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191128-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191128-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191125-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191125-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190520-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190520-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190515-01.de.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190515-01.de.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20190806-01.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20190806-01.en.xhtml" [19:46:19] copying unsafe symlink "source/news/2019/news-20191002.en.xhtml" -> "/srv/www/fsfe.org_git/news/2019/news-20191002.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201906.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201906.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201911.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201911.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201503.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201503.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201807.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201807.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201807.de.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201807.de.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201911.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201911.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201906.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201906.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201907.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201907.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201807.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201807.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201909.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201909.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201907.de.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201907.de.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201906.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201906.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201907.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201907.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201909.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201909.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201909.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201909.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201907.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201907.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201807.fr.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201807.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201412.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201412.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201905.de.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201905.de.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201909.fr.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201909.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201411.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201411.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201910.de.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201910.de.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201909.de.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201909.de.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201910.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201910.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201911.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201911.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201807.es.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201807.es.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201910.en.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201910.en.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201910.nl.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201910.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/nl/nl-201907.fr.xhtml" -> "/srv/www/fsfe.org_git/news/nl/nl-201907.fr.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast/episode-1.en.xhtml" -> "/srv/www/fsfe.org_git/news/podcast/episode-1.en.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast/episode-2.en.xhtml" -> "/srv/www/fsfe.org_git/news/podcast/episode-2.en.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast/episode-1.nl.xhtml" -> "/srv/www/fsfe.org_git/news/podcast/episode-1.nl.xhtml" [19:46:19] copying unsafe symlink "source/news/podcast/episode-1.de.xhtml" -> "/srv/www/fsfe.org_git/news/podcast/episode-1.de.xhtml" [19:46:19] copying unsafe symlink "source/order/order.de.xhtml" -> "/srv/www/fsfe.org_git/order/order.de.xhtml" [19:46:19] copying unsafe symlink "source/order/order.fr.xhtml" -> "/srv/www/fsfe.org_git/order/order.fr.xhtml" [19:46:19] copying unsafe symlink "source/order/order.en.xhtml" -> "/srv/www/fsfe.org_git/order/order.en.xhtml" [19:46:19] copying unsafe symlink "source/order/order.it.xhtml" -> "/srv/www/fsfe.org_git/order/order.it.xhtml" [19:46:19] copying unsafe symlink "source/order/order.nl.xhtml" -> "/srv/www/fsfe.org_git/order/order.nl.xhtml" [19:46:19] copying unsafe symlink "source/press/press.fr.xhtml" -> "/srv/www/fsfe.org_git/press/press.fr.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-career.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-career.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-copyright.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-copyright.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-communauté.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-communauté.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-infobooth.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-infobooth.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-savecodeshare.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-savecodeshare.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-première_page.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-première_page.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-15yearsfsfe.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-15yearsfsfe.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-directivaradiofrecuencia.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-directivaradiofrecuencia.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-es.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-es.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-at.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-at.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-routers.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-routers.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-reuse.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-reuse.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-community.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-community.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-de.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-de.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-mentions_légales.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-mentions_légales.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-sustainability.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-sustainability.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-rs.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-rs.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-campaigns.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-campaigns.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-ngi0.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ngi0.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-europeanparliament.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-europeanparliament.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-it.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-it.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-routerfreedom.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-routerfreedom.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-primera-página.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-primera-página.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-publicprocurement.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-publicprocurement.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-lettre_d'information.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-lettre_d'information.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-nl.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-nl.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-workshop.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-workshop.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-free_software.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-free_software.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-policy.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-policy.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-newsletter.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-newsletter.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-openstandards.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-openstandards.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-radiodirective.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-radiodirective.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-política.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-política.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-gb.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-gb.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-europeancommission.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-europeancommission.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-legal.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-legal.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-fr.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-fr.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-ccc.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ccc.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-procurement.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-procurement.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-publicadministration.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-publicadministration.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-public_money?_public_code!.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-public_money?_public_code!.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-freedomvote.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-freedomvote.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-licensing.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-licensing.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-ayc.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ayc.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-podcast.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-podcast.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-open_standards.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-open_standards.en.xhtml" [19:46:19] copying unsafe symlink "source/tags/tagged-comisióneuropea.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-comisióneuropea.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-article13.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-article13.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-localgroup.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-localgroup.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-huawei.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-huawei.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-competition.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-competition.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-meeting.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-meeting.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-pt.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-pt.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-community_meeting.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-community_meeting.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-panel.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-panel.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-european_commission.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-european_commission.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-openletter.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-openletter.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-google.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-google.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-internal.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-internal.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-drm.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-drm.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-gr.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-gr.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-assembly.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-assembly.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-fya.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-fya.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-ch.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ch.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-talk.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-talk.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-digitalsinglemarket.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-digitalsinglemarket.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-digitalomat.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-digitalomat.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-pmpc.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-pmpc.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-european_parliament.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-european_parliament.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-ga.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ga.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-ilovefs.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-ilovefs.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-taz.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-taz.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-publicadministrations.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-publicadministrations.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-annual_report.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-annual_report.en.xhtml" [19:46:20] copying unsafe symlink "source/tags/tagged-radiolockdown.en.xhtml" -> "/srv/www/fsfe.org_git/tags/tagged-radiolockdown.en.xhtml" [19:46:20] source/news/2019/ [19:46:20] source/news/2019/news-20191125-01.nl.xhtml [19:46:20] copying unsafe symlink "source/templates/registerevent/success.nl.xhtml" -> "/srv/www/fsfe.org_git/templates/registerevent/success.nl.xhtml" [19:46:20] copying unsafe symlink "templates/invoice.odt" -> "/srv/www/fsfe.org_git/templates/invoice.odt" [19:46:20] tags/tagged-pmpc.ar.html [19:46:20] tags/tagged-pmpc.bg.html [19:46:20] tags/tagged-pmpc.bs.html [19:46:20] tags/tagged-pmpc.ca.html [19:46:20] tags/tagged-pmpc.cs.html [19:46:20] tags/tagged-pmpc.da.html [19:46:20] tags/tagged-pmpc.de.html [19:46:20] tags/tagged-pmpc.el.html [19:46:20] tags/tagged-pmpc.en.html [19:46:20] tags/tagged-pmpc.es.html [19:46:20] tags/tagged-pmpc.et.html [19:46:20] tags/tagged-pmpc.fi.html [19:46:20] tags/tagged-pmpc.fr.html [19:46:20] tags/tagged-pmpc.hr.html [19:46:20] tags/tagged-pmpc.hu.html [19:46:20] tags/tagged-pmpc.it.html [19:46:20] tags/tagged-pmpc.mk.html [19:46:20] tags/tagged-pmpc.nb.html [19:46:20] tags/tagged-pmpc.nl.html [19:46:20] tags/tagged-pmpc.nn.html [19:46:20] tags/tagged-pmpc.pl.html [19:46:20] tags/tagged-pmpc.pt.html [19:46:20] tags/tagged-pmpc.ro.html [19:46:20] tags/tagged-pmpc.ru.html [19:46:20] tags/tagged-pmpc.sk.html [19:46:20] tags/tagged-pmpc.sl.html [19:46:20] tags/tagged-pmpc.sq.html [19:46:20] tags/tagged-pmpc.sr.html [19:46:20] tags/tagged-pmpc.sv.html [19:46:20] tags/tagged-pmpc.tr.html [19:46:20] tags/tagged-pmpc.uk.html [19:46:20] tags/tagged-pmpc.zh.html [19:46:20] tags/tagged-policy.ar.html [19:46:20] tags/tagged-policy.bg.html [19:46:20] tags/tagged-policy.bs.html [19:46:20] tags/tagged-policy.ca.html [19:46:20] tags/tagged-policy.cs.html [19:46:20] tags/tagged-policy.da.html [19:46:20] tags/tagged-policy.de.html [19:46:20] tags/tagged-policy.el.html [19:46:20] tags/tagged-policy.en.html [19:46:20] tags/tagged-policy.es.html [19:46:20] tags/tagged-policy.et.html [19:46:20] tags/tagged-policy.fi.html [19:46:20] tags/tagged-policy.fr.html [19:46:20] tags/tagged-policy.hr.html [19:46:20] tags/tagged-policy.hu.html [19:46:20] tags/tagged-policy.it.html [19:46:20] tags/tagged-policy.mk.html [19:46:20] tags/tagged-policy.nb.html [19:46:20] tags/tagged-policy.nl.html [19:46:20] tags/tagged-policy.nn.html [19:46:20] tags/tagged-policy.pl.html [19:46:20] tags/tagged-policy.pt.html [19:46:20] tags/tagged-policy.ro.html [19:46:20] tags/tagged-policy.ru.html [19:46:20] tags/tagged-policy.sk.html [19:46:20] tags/tagged-policy.sl.html [19:46:20] tags/tagged-policy.sq.html [19:46:20] tags/tagged-policy.sr.html [19:46:20] tags/tagged-policy.sv.html [19:46:20] tags/tagged-policy.tr.html [19:46:20] tags/tagged-policy.uk.html [19:46:20] tags/tagged-policy.zh.html [19:46:20] [19:46:20] sent 5,380,197 bytes received 93,546 bytes 1,563,926.57 bytes/sec [19:46:20] total size is 1,512,609,312 speedup is 276.34