Updating 13b3f1be81..713c01c926 Fast-forward about/funds/2001.en.xhtml | 4 ++-- about/funds/2001.fr.xhtml | 5 ++--- about/funds/2001.it.xhtml | 4 ++-- about/funds/2001.nl.xhtml | 5 ++--- about/funds/2001.ru.xhtml | 5 ++--- about/funds/2002.en.xhtml | 2 +- about/funds/2002.fr.xhtml | 4 +--- about/funds/2002.it.xhtml | 2 +- about/funds/2002.ru.xhtml | 3 +-- about/funds/2003.de.xhtml | 5 ++--- about/funds/2003.el.xhtml | 4 +--- about/funds/2003.en.xhtml | 4 ++-- about/funds/2003.fr.xhtml | 3 +-- about/funds/2003.it.xhtml | 4 ++-- about/funds/2003.nl.xhtml | 3 +-- about/funds/2003.ru.xhtml | 5 ++--- about/funds/2004.de.xhtml | 5 ++--- about/funds/2004.el.xhtml | 4 +--- about/funds/2004.en.xhtml | 2 +- about/funds/2004.fr.xhtml | 3 +-- about/funds/2004.it.xhtml | 2 +- about/funds/2004.nl.xhtml | 7 +++---- about/funds/2004.ru.xhtml | 3 +-- about/funds/2005.de.xhtml | 5 ++--- about/funds/2005.el.xhtml | 4 +--- about/funds/2005.en.xhtml | 2 +- about/funds/2005.fr.xhtml | 5 ++--- about/funds/2005.it.xhtml | 3 +-- about/funds/2005.nl.xhtml | 3 +-- about/funds/2005.ru.xhtml | 3 +-- about/funds/2006.de.xhtml | 11 +++++------ about/funds/2006.el.xhtml | 9 ++++----- about/funds/2006.en.xhtml | 9 ++++----- about/funds/2006.fr.xhtml | 8 ++++---- about/funds/2006.it.xhtml | 11 +++++------ about/funds/2006.nl.xhtml | 9 ++++----- about/funds/2006.ru.xhtml | 8 ++++---- about/funds/2007.de.xhtml | 9 ++++----- about/funds/2007.el.xhtml | 9 ++++----- about/funds/2007.en.xhtml | 9 ++++----- about/funds/2007.fr.xhtml | 8 ++++---- about/funds/2007.it.xhtml | 11 +++++------ about/funds/2007.nl.xhtml | 9 ++++----- about/funds/2007.ru.xhtml | 8 ++++---- 44 files changed, 103 insertions(+), 138 deletions(-)
[14:47:03] Starting phase 1 [14:47:04] * Spawning 4 processes [14:47:04] * Indexing 4405 files [14:47:46] * Indexation done in 42 seconds! [14:47:46] * Written index to /srv/www/fsfe.org_git/search/index.js [14:47:46] * Creating search index [14:47:46] * Updating XSL stylesheets [14:47:47] * Preparing subdirectory events [14:47:47] * Preparing subdirectory news [14:47:48] * Updating default stylesheets [14:47:48] * Updating local menus [14:47:51] * Creating about/funds/.localmenu.de.xml [14:47:51] * Creating about/funds/.localmenu.el.xml [14:47:51] * Creating about/funds/.localmenu.en.xml [14:47:52] * Creating about/funds/.localmenu.fr.xml [14:47:52] * Creating about/funds/.localmenu.it.xml [14:47:52] * Creating about/funds/.localmenu.nl.xml [14:47:52] * Creating about/funds/.localmenu.ru.xml [14:47:52] * Generating tag maps [14:48:43] * Updating tag lists [14:48:53] * Updating XML lists [14:49:04] * Checking contents of XML lists [14:49:05] * Touching about/funds/.2001.xmllist [14:49:05] * Touching about/funds/.2002.xmllist [14:49:05] * Touching about/funds/.2003.xmllist [14:49:05] * Touching about/funds/.2004.xmllist [14:49:05] * Touching about/funds/.2005.xmllist [14:49:05] * Touching about/funds/.2006.xmllist [14:49:05] * Touching about/funds/.2007.xmllist [14:49:05] * Touching about/funds/.2008.xmllist [14:49:05] * Touching about/funds/.2009.xmllist [14:49:05] * Touching about/funds/.2010.xmllist [14:49:05] * Touching about/funds/.2011.xmllist [14:49:05] * Touching about/funds/.2012.xmllist [14:49:05] * Touching about/funds/.2013.xmllist [14:49:05] * Touching about/funds/.2014.xmllist [14:49:05] * Touching about/funds/.2015.xmllist [14:49:05] * Touching about/funds/.2016.xmllist [14:49:05] * Touching about/funds/.2017.xmllist [14:49:05] * Touching about/funds/.2018.xmllist [14:49:05] * Touching about/funds/.2019.xmllist [14:49:09] 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" --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)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ar.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)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.bg.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)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.bs.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)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ca.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)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.cs.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)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.da.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)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.de.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)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.el.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)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.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)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.es.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)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.et.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)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fi.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)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fr.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)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.hr.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)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.hu.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)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.it.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)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.mk.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)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nb.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)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nl.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)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nn.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)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.pl.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)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.pt.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)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ro.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)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ru.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)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sk.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)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sl.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)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sq.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)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sr.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)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sv.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)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.tr.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)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.uk.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)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.zh.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)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.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)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.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)/global/*' -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 # -----------------------------------------------------------------------------
[14:49:11] Starting phase 2 [14:49:20] * Building about/funds/2001.ar.html [14:49:20] * Building about/funds/2001.bg.html [14:49:20] * Building about/funds/2001.bs.html [14:49:20] * Building about/funds/2001.ca.html [14:49:20] * Building about/funds/2001.cs.html [14:49:20] * Building about/funds/2001.da.html [14:49:21] * Building about/funds/2001.de.html [14:49:21] * Building about/funds/2001.el.html [14:49:21] * Building about/funds/2001.en.html [14:49:21] * Building about/funds/2001.es.html [14:49:21] * Building about/funds/2001.et.html [14:49:21] * Building about/funds/2001.fi.html [14:49:21] * Building about/funds/2001.fr.html [14:49:21] * Building about/funds/2001.hr.html [14:49:21] * Building about/funds/2001.hu.html [14:49:21] * Building about/funds/2001.it.html [14:49:22] * Building about/funds/2001.mk.html [14:49:22] * Building about/funds/2001.nb.html [14:49:22] * Building about/funds/2001.nl.html [14:49:22] * Building about/funds/2001.nn.html [14:49:22] * Building about/funds/2001.pl.html [14:49:22] * Building about/funds/2001.pt.html [14:49:22] * Building about/funds/2001.ro.html [14:49:22] * Building about/funds/2001.ru.html [14:49:22] * Building about/funds/2001.sk.html [14:49:22] * Building about/funds/2001.sl.html [14:49:23] * Building about/funds/2001.sq.html [14:49:23] * Building about/funds/2001.sr.html [14:49:23] * Building about/funds/2001.sv.html [14:49:23] * Building about/funds/2001.tr.html [14:49:23] * Building about/funds/2001.uk.html [14:49:23] * Building about/funds/2001.zh.html [14:49:23] * Building about/funds/2002.ar.html [14:49:23] * Building about/funds/2002.bg.html [14:49:23] * Building about/funds/2002.bs.html [14:49:23] * Building about/funds/2002.ca.html [14:49:24] * Building about/funds/2002.cs.html [14:49:24] * Building about/funds/2002.da.html [14:49:24] * Building about/funds/2002.de.html [14:49:24] * Building about/funds/2002.el.html [14:49:24] * Building about/funds/2002.en.html [14:49:24] * Building about/funds/2002.es.html [14:49:24] * Building about/funds/2002.fi.html [14:49:24] * Building about/funds/2002.et.html [14:49:24] * Building about/funds/2002.fr.html [14:49:24] * Building about/funds/2002.hr.html [14:49:24] * Building about/funds/2002.hu.html [14:49:24] * Building about/funds/2002.it.html [14:49:25] * Building about/funds/2002.mk.html [14:49:25] * Building about/funds/2002.nb.html [14:49:25] * Building about/funds/2002.nl.html [14:49:25] * Building about/funds/2002.nn.html [14:49:25] * Building about/funds/2002.pl.html [14:49:25] * Building about/funds/2002.pt.html [14:49:25] * Building about/funds/2002.ro.html [14:49:25] * Building about/funds/2002.ru.html [14:49:25] * Building about/funds/2002.sk.html [14:49:25] * Building about/funds/2002.sl.html [14:49:26] * Building about/funds/2002.sq.html [14:49:26] * Building about/funds/2002.sr.html [14:49:26] * Building about/funds/2002.sv.html [14:49:26] * Building about/funds/2002.tr.html [14:49:26] * Building about/funds/2002.uk.html [14:49:26] * Building about/funds/2002.zh.html [14:49:26] * Building about/funds/2003.ar.html [14:49:26] * Building about/funds/2003.bg.html [14:49:26] * Building about/funds/2003.bs.html [14:49:26] * Building about/funds/2003.ca.html [14:49:27] * Building about/funds/2003.cs.html [14:49:27] * Building about/funds/2003.da.html [14:49:27] * Building about/funds/2003.de.html [14:49:27] * Building about/funds/2003.el.html [14:49:27] * Building about/funds/2003.en.html [14:49:27] * Building about/funds/2003.es.html [14:49:27] * Building about/funds/2003.et.html [14:49:27] * Building about/funds/2003.fi.html [14:49:27] * Building about/funds/2003.fr.html [14:49:27] * Building about/funds/2003.hr.html [14:49:28] * Building about/funds/2003.hu.html [14:49:28] * Building about/funds/2003.it.html [14:49:28] * Building about/funds/2003.mk.html [14:49:28] * Building about/funds/2003.nb.html [14:49:28] * Building about/funds/2003.nl.html [14:49:28] * Building about/funds/2003.nn.html [14:49:28] * Building about/funds/2003.pl.html [14:49:28] * Building about/funds/2003.pt.html [14:49:28] * Building about/funds/2003.ro.html [14:49:28] * Building about/funds/2003.ru.html [14:49:29] * Building about/funds/2003.sk.html [14:49:29] * Building about/funds/2003.sl.html [14:49:29] * Building about/funds/2003.sq.html [14:49:29] * Building about/funds/2003.sr.html [14:49:29] * Building about/funds/2003.sv.html [14:49:29] * Building about/funds/2003.tr.html [14:49:29] * Building about/funds/2003.uk.html [14:49:29] * Building about/funds/2003.zh.html [14:49:29] * Building about/funds/2004.ar.html [14:49:29] * Building about/funds/2004.bg.html [14:49:30] * Building about/funds/2004.bs.html [14:49:30] * Building about/funds/2004.ca.html [14:49:30] * Building about/funds/2004.cs.html [14:49:30] * Building about/funds/2004.da.html [14:49:30] * Building about/funds/2004.de.html [14:49:30] * Building about/funds/2004.el.html [14:49:30] * Building about/funds/2004.en.html [14:49:30] * Building about/funds/2004.es.html [14:49:30] * Building about/funds/2004.et.html [14:49:30] * Building about/funds/2004.fi.html [14:49:30] * Building about/funds/2004.fr.html [14:49:31] * Building about/funds/2004.hr.html [14:49:31] * Building about/funds/2004.hu.html [14:49:31] * Building about/funds/2004.it.html [14:49:31] * Building about/funds/2004.mk.html [14:49:31] * Building about/funds/2004.nb.html [14:49:31] * Building about/funds/2004.nl.html [14:49:31] * Building about/funds/2004.nn.html [14:49:31] * Building about/funds/2004.pl.html [14:49:31] * Building about/funds/2004.pt.html [14:49:31] * Building about/funds/2004.ro.html [14:49:32] * Building about/funds/2004.ru.html [14:49:32] * Building about/funds/2004.sk.html [14:49:32] * Building about/funds/2004.sl.html [14:49:32] * Building about/funds/2004.sq.html [14:49:32] * Building about/funds/2004.sr.html [14:49:32] * Building about/funds/2004.sv.html [14:49:32] * Building about/funds/2004.tr.html [14:49:32] * Building about/funds/2004.uk.html [14:49:32] * Building about/funds/2004.zh.html [14:49:32] * Building about/funds/2005.ar.html [14:49:33] * Building about/funds/2005.bg.html [14:49:33] * Building about/funds/2005.bs.html [14:49:33] * Building about/funds/2005.ca.html [14:49:33] * Building about/funds/2005.cs.html [14:49:33] * Building about/funds/2005.da.html [14:49:33] * Building about/funds/2005.de.html [14:49:33] * Building about/funds/2005.el.html [14:49:33] * Building about/funds/2005.en.html [14:49:33] * Building about/funds/2005.es.html [14:49:34] * Building about/funds/2005.et.html [14:49:34] * Building about/funds/2005.fi.html [14:49:34] * Building about/funds/2005.fr.html [14:49:34] * Building about/funds/2005.hr.html [14:49:34] * Building about/funds/2005.hu.html [14:49:34] * Building about/funds/2005.it.html [14:49:34] * Building about/funds/2005.mk.html [14:49:34] * Building about/funds/2005.nb.html [14:49:34] * Building about/funds/2005.nl.html [14:49:34] * Building about/funds/2005.nn.html [14:49:35] * Building about/funds/2005.pl.html [14:49:35] * Building about/funds/2005.pt.html [14:49:35] * Building about/funds/2005.ro.html [14:49:35] * Building about/funds/2005.ru.html [14:49:35] * Building about/funds/2005.sk.html [14:49:35] * Building about/funds/2005.sl.html [14:49:35] * Building about/funds/2005.sq.html [14:49:35] * Building about/funds/2005.sr.html [14:49:35] * Building about/funds/2005.sv.html [14:49:35] * Building about/funds/2005.tr.html [14:49:36] * Building about/funds/2005.uk.html [14:49:36] * Building about/funds/2005.zh.html [14:49:36] * Building about/funds/2006.ar.html [14:49:36] * Building about/funds/2006.bg.html [14:49:36] * Building about/funds/2006.bs.html [14:49:36] * Building about/funds/2006.ca.html [14:49:36] * Building about/funds/2006.cs.html [14:49:36] * Building about/funds/2006.da.html [14:49:36] * Building about/funds/2006.de.html [14:49:36] * Building about/funds/2006.el.html [14:49:37] * Building about/funds/2006.en.html [14:49:37] * Building about/funds/2006.es.html [14:49:37] * Building about/funds/2006.et.html [14:49:37] * Building about/funds/2006.fi.html [14:49:37] * Building about/funds/2006.fr.html [14:49:37] * Building about/funds/2006.hr.html [14:49:37] * Building about/funds/2006.hu.html [14:49:37] * Building about/funds/2006.it.html [14:49:37] * Building about/funds/2006.mk.html [14:49:37] * Building about/funds/2006.nb.html [14:49:37] * Building about/funds/2006.nl.html [14:49:38] * Building about/funds/2006.nn.html [14:49:38] * Building about/funds/2006.pl.html [14:49:38] * Building about/funds/2006.pt.html [14:49:38] * Building about/funds/2006.ro.html [14:49:38] * Building about/funds/2006.ru.html [14:49:38] * Building about/funds/2006.sk.html [14:49:38] * Building about/funds/2006.sl.html [14:49:38] * Building about/funds/2006.sq.html [14:49:38] * Building about/funds/2006.sr.html [14:49:38] * Building about/funds/2006.sv.html [14:49:38] * Building about/funds/2006.tr.html [14:49:39] * Building about/funds/2006.uk.html [14:49:39] * Building about/funds/2006.zh.html [14:49:39] * Building about/funds/2007.ar.html [14:49:39] * Building about/funds/2007.bg.html [14:49:39] * Building about/funds/2007.bs.html [14:49:39] * Building about/funds/2007.ca.html [14:49:39] * Building about/funds/2007.cs.html [14:49:39] * Building about/funds/2007.da.html [14:49:39] * Building about/funds/2007.de.html [14:49:40] * Building about/funds/2007.el.html [14:49:40] * Building about/funds/2007.en.html [14:49:40] * Building about/funds/2007.es.html [14:49:40] * Building about/funds/2007.et.html [14:49:40] * Building about/funds/2007.fi.html [14:49:40] * Building about/funds/2007.fr.html [14:49:40] * Building about/funds/2007.hr.html [14:49:40] * Building about/funds/2007.hu.html [14:49:40] * Building about/funds/2007.it.html [14:49:40] * Building about/funds/2007.mk.html [14:49:41] * Building about/funds/2007.nb.html [14:49:41] * Building about/funds/2007.nl.html [14:49:41] * Building about/funds/2007.nn.html [14:49:41] * Building about/funds/2007.pl.html [14:49:41] * Building about/funds/2007.pt.html [14:49:41] * Building about/funds/2007.ro.html [14:49:41] * Building about/funds/2007.ru.html [14:49:41] * Building about/funds/2007.sk.html [14:49:41] * Building about/funds/2007.sl.html [14:49:41] * Building about/funds/2007.sq.html [14:49:41] * Building about/funds/2007.sr.html [14:49:42] * Building about/funds/2007.sv.html [14:49:42] * Building about/funds/2007.tr.html [14:49:42] * Building about/funds/2007.uk.html [14:49:42] * Building about/funds/2007.zh.html [14:49:42] * Building about/funds/2008.ar.html [14:49:42] * Building about/funds/2008.bg.html [14:49:42] * Building about/funds/2008.bs.html [14:49:42] * Building about/funds/2008.ca.html [14:49:42] * Building about/funds/2008.cs.html [14:49:42] * Building about/funds/2008.da.html [14:49:43] * Building about/funds/2008.de.html [14:49:43] * Building about/funds/2008.el.html [14:49:43] * Building about/funds/2008.en.html [14:49:43] * Building about/funds/2008.es.html [14:49:43] * Building about/funds/2008.et.html [14:49:43] * Building about/funds/2008.fi.html [14:49:43] * Building about/funds/2008.fr.html [14:49:43] * Building about/funds/2008.hr.html [14:49:43] * Building about/funds/2008.hu.html [14:49:43] * Building about/funds/2008.it.html [14:49:44] * Building about/funds/2008.mk.html [14:49:44] * Building about/funds/2008.nb.html [14:49:44] * Building about/funds/2008.nl.html [14:49:44] * Building about/funds/2008.nn.html [14:49:44] * Building about/funds/2008.pl.html [14:49:44] * Building about/funds/2008.pt.html [14:49:44] * Building about/funds/2008.ro.html [14:49:44] * Building about/funds/2008.ru.html [14:49:44] * Building about/funds/2008.sk.html [14:49:44] * Building about/funds/2008.sl.html [14:49:45] * Building about/funds/2008.sq.html [14:49:45] * Building about/funds/2008.sr.html [14:49:45] * Building about/funds/2008.sv.html [14:49:45] * Building about/funds/2008.tr.html [14:49:45] * Building about/funds/2008.uk.html [14:49:45] * Building about/funds/2008.zh.html [14:49:45] * Building about/funds/2009.ar.html [14:49:45] * Building about/funds/2009.bg.html [14:49:45] * Building about/funds/2009.bs.html [14:49:45] * Building about/funds/2009.ca.html [14:49:46] * Building about/funds/2009.cs.html [14:49:46] * Building about/funds/2009.da.html [14:49:46] * Building about/funds/2009.de.html [14:49:46] * Building about/funds/2009.el.html [14:49:46] * Building about/funds/2009.en.html [14:49:46] * Building about/funds/2009.es.html [14:49:46] * Building about/funds/2009.et.html [14:49:46] * Building about/funds/2009.fi.html [14:49:46] * Building about/funds/2009.fr.html [14:49:46] * Building about/funds/2009.hr.html [14:49:46] * Building about/funds/2009.hu.html [14:49:47] * Building about/funds/2009.it.html [14:49:47] * Building about/funds/2009.mk.html [14:49:47] * Building about/funds/2009.nb.html [14:49:47] * Building about/funds/2009.nl.html [14:49:47] * Building about/funds/2009.nn.html [14:49:47] * Building about/funds/2009.pl.html [14:49:47] * Building about/funds/2009.pt.html [14:49:47] * Building about/funds/2009.ro.html [14:49:47] * Building about/funds/2009.ru.html [14:49:47] * Building about/funds/2009.sk.html [14:49:47] * Building about/funds/2009.sl.html [14:49:48] * Building about/funds/2009.sq.html [14:49:48] * Building about/funds/2009.sr.html [14:49:48] * Building about/funds/2009.sv.html [14:49:48] * Building about/funds/2009.tr.html [14:49:48] * Building about/funds/2009.uk.html [14:49:48] * Building about/funds/2009.zh.html [14:49:48] * Building about/funds/2010.ar.html [14:49:48] * Building about/funds/2010.bg.html [14:49:48] * Building about/funds/2010.bs.html [14:49:48] * Building about/funds/2010.ca.html [14:49:48] * Building about/funds/2010.cs.html [14:49:48] * Building about/funds/2010.da.html [14:49:49] * Building about/funds/2010.de.html [14:49:49] * Building about/funds/2010.el.html [14:49:49] * Building about/funds/2010.en.html [14:49:49] * Building about/funds/2010.es.html [14:49:49] * Building about/funds/2010.et.html [14:49:49] * Building about/funds/2010.fi.html [14:49:49] * Building about/funds/2010.fr.html [14:49:49] * Building about/funds/2010.hr.html [14:49:49] * Building about/funds/2010.hu.html [14:49:49] * Building about/funds/2010.it.html [14:49:50] * Building about/funds/2010.mk.html [14:49:50] * Building about/funds/2010.nb.html [14:49:50] * Building about/funds/2010.nl.html [14:49:50] * Building about/funds/2010.nn.html [14:49:50] * Building about/funds/2010.pl.html [14:49:50] * Building about/funds/2010.pt.html [14:49:50] * Building about/funds/2010.ro.html [14:49:50] * Building about/funds/2010.ru.html [14:49:50] * Building about/funds/2010.sk.html [14:49:50] * Building about/funds/2010.sl.html [14:49:50] * Building about/funds/2010.sq.html [14:49:50] * Building about/funds/2010.sr.html [14:49:51] * Building about/funds/2010.sv.html [14:49:51] * Building about/funds/2010.tr.html [14:49:51] * Building about/funds/2010.uk.html [14:49:51] * Building about/funds/2010.zh.html [14:49:51] * Building about/funds/2011.ar.html [14:49:51] * Building about/funds/2011.bg.html [14:49:51] * Building about/funds/2011.bs.html [14:49:51] * Building about/funds/2011.ca.html [14:49:51] * Building about/funds/2011.cs.html [14:49:51] * Building about/funds/2011.da.html [14:49:51] * Building about/funds/2011.de.html [14:49:51] * Building about/funds/2011.el.html [14:49:52] * Building about/funds/2011.en.html [14:49:52] * Building about/funds/2011.es.html [14:49:52] * Building about/funds/2011.et.html [14:49:52] * Building about/funds/2011.fi.html [14:49:52] * Building about/funds/2011.fr.html [14:49:52] * Building about/funds/2011.hr.html [14:49:52] * Building about/funds/2011.hu.html [14:49:52] * Building about/funds/2011.it.html [14:49:52] * Building about/funds/2011.mk.html [14:49:52] * Building about/funds/2011.nb.html [14:49:52] * Building about/funds/2011.nl.html [14:49:52] * Building about/funds/2011.nn.html [14:49:53] * Building about/funds/2011.pl.html [14:49:53] * Building about/funds/2011.pt.html [14:49:53] * Building about/funds/2011.ro.html [14:49:53] * Building about/funds/2011.ru.html [14:49:53] * Building about/funds/2011.sk.html [14:49:53] * Building about/funds/2011.sl.html [14:49:53] * Building about/funds/2011.sq.html [14:49:53] * Building about/funds/2011.sr.html [14:49:53] * Building about/funds/2011.sv.html [14:49:53] * Building about/funds/2011.tr.html [14:49:53] * Building about/funds/2011.uk.html [14:49:54] * Building about/funds/2011.zh.html [14:49:54] * Building about/funds/2012.ar.html [14:49:54] * Building about/funds/2012.bg.html [14:49:54] * Building about/funds/2012.bs.html [14:49:54] * Building about/funds/2012.ca.html [14:49:54] * Building about/funds/2012.cs.html [14:49:54] * Building about/funds/2012.da.html [14:49:54] * Building about/funds/2012.de.html [14:49:54] * Building about/funds/2012.el.html [14:49:54] * Building about/funds/2012.en.html [14:49:54] * Building about/funds/2012.es.html [14:49:55] * Building about/funds/2012.et.html [14:49:55] * Building about/funds/2012.fi.html [14:49:55] * Building about/funds/2012.fr.html [14:49:55] * Building about/funds/2012.hr.html [14:49:55] * Building about/funds/2012.hu.html [14:49:55] * Building about/funds/2012.it.html [14:49:55] * Building about/funds/2012.mk.html [14:49:55] * Building about/funds/2012.nb.html [14:49:55] * Building about/funds/2012.nl.html [14:49:55] * Building about/funds/2012.nn.html [14:49:55] * Building about/funds/2012.pl.html [14:49:55] * Building about/funds/2012.pt.html [14:49:56] * Building about/funds/2012.ro.html [14:49:56] * Building about/funds/2012.ru.html [14:49:56] * Building about/funds/2012.sk.html [14:49:56] * Building about/funds/2012.sl.html [14:49:56] * Building about/funds/2012.sq.html [14:49:56] * Building about/funds/2012.sr.html [14:49:56] * Building about/funds/2012.sv.html [14:49:56] * Building about/funds/2012.tr.html [14:49:56] * Building about/funds/2012.uk.html [14:49:56] * Building about/funds/2012.zh.html [14:49:56] * Building about/funds/2013.ar.html [14:49:56] * Building about/funds/2013.bg.html [14:49:57] * Building about/funds/2013.bs.html [14:49:57] * Building about/funds/2013.ca.html [14:49:57] * Building about/funds/2013.cs.html [14:49:57] * Building about/funds/2013.da.html [14:49:57] * Building about/funds/2013.de.html [14:49:57] * Building about/funds/2013.el.html [14:49:57] * Building about/funds/2013.en.html [14:49:57] * Building about/funds/2013.es.html [14:49:57] * Building about/funds/2013.et.html [14:49:57] * Building about/funds/2013.fi.html [14:49:57] * Building about/funds/2013.fr.html [14:49:58] * Building about/funds/2013.hr.html [14:49:58] * Building about/funds/2013.hu.html [14:49:58] * Building about/funds/2013.it.html [14:49:58] * Building about/funds/2013.mk.html [14:49:58] * Building about/funds/2013.nb.html [14:49:58] * Building about/funds/2013.nl.html [14:49:58] * Building about/funds/2013.nn.html [14:49:58] * Building about/funds/2013.pl.html [14:49:58] * Building about/funds/2013.pt.html [14:49:58] * Building about/funds/2013.ro.html [14:49:58] * Building about/funds/2013.ru.html [14:49:59] * Building about/funds/2013.sk.html [14:49:59] * Building about/funds/2013.sl.html [14:49:59] * Building about/funds/2013.sq.html [14:49:59] * Building about/funds/2013.sr.html [14:49:59] * Building about/funds/2013.sv.html [14:49:59] * Building about/funds/2013.tr.html [14:49:59] * Building about/funds/2013.uk.html [14:49:59] * Building about/funds/2013.zh.html [14:49:59] * Building about/funds/2014.ar.html [14:49:59] * Building about/funds/2014.bg.html [14:50:00] * Building about/funds/2014.bs.html [14:50:00] * Building about/funds/2014.ca.html [14:50:00] * Building about/funds/2014.cs.html [14:50:00] * Building about/funds/2014.da.html [14:50:00] * Building about/funds/2014.de.html [14:50:00] * Building about/funds/2014.el.html [14:50:00] * Building about/funds/2014.en.html [14:50:00] * Building about/funds/2014.es.html [14:50:00] * Building about/funds/2014.et.html [14:50:00] * Building about/funds/2014.fi.html [14:50:00] * Building about/funds/2014.fr.html [14:50:00] * Building about/funds/2014.hr.html [14:50:01] * Building about/funds/2014.hu.html [14:50:01] * Building about/funds/2014.it.html [14:50:01] * Building about/funds/2014.mk.html [14:50:01] * Building about/funds/2014.nb.html [14:50:01] * Building about/funds/2014.nl.html [14:50:01] * Building about/funds/2014.nn.html [14:50:01] * Building about/funds/2014.pl.html [14:50:01] * Building about/funds/2014.pt.html [14:50:02] * Building about/funds/2014.ro.html [14:50:02] * Building about/funds/2014.ru.html [14:50:02] * Building about/funds/2014.sk.html [14:50:02] * Building about/funds/2014.sl.html [14:50:02] * Building about/funds/2014.sq.html [14:50:02] * Building about/funds/2014.sr.html [14:50:02] * Building about/funds/2014.sv.html [14:50:02] * Building about/funds/2014.tr.html [14:50:02] * Building about/funds/2014.uk.html [14:50:02] * Building about/funds/2014.zh.html [14:50:03] * Building about/funds/2015.ar.html [14:50:03] * Building about/funds/2015.bg.html [14:50:03] * Building about/funds/2015.bs.html [14:50:03] * Building about/funds/2015.ca.html [14:50:03] * Building about/funds/2015.cs.html [14:50:03] * Building about/funds/2015.da.html [14:50:03] * Building about/funds/2015.de.html [14:50:03] * Building about/funds/2015.el.html [14:50:03] * Building about/funds/2015.en.html [14:50:03] * Building about/funds/2015.es.html [14:50:03] * Building about/funds/2015.et.html [14:50:04] * Building about/funds/2015.fi.html [14:50:04] * Building about/funds/2015.fr.html [14:50:04] * Building about/funds/2015.hr.html [14:50:04] * Building about/funds/2015.hu.html [14:50:04] * Building about/funds/2015.it.html [14:50:04] * Building about/funds/2015.mk.html [14:50:04] * Building about/funds/2015.nb.html [14:50:04] * Building about/funds/2015.nl.html [14:50:04] * Building about/funds/2015.nn.html [14:50:04] * Building about/funds/2015.pl.html [14:50:04] * Building about/funds/2015.pt.html [14:50:05] * Building about/funds/2015.ro.html [14:50:05] * Building about/funds/2015.ru.html [14:50:05] * Building about/funds/2015.sk.html [14:50:05] * Building about/funds/2015.sl.html [14:50:05] * Building about/funds/2015.sq.html [14:50:05] * Building about/funds/2015.sr.html [14:50:05] * Building about/funds/2015.sv.html [14:50:05] * Building about/funds/2015.tr.html [14:50:05] * Building about/funds/2015.uk.html [14:50:06] * Building about/funds/2015.zh.html [14:50:06] * Building about/funds/2016.ar.html [14:50:06] * Building about/funds/2016.bg.html [14:50:06] * Building about/funds/2016.bs.html [14:50:06] * Building about/funds/2016.ca.html [14:50:06] * Building about/funds/2016.cs.html [14:50:06] * Building about/funds/2016.da.html [14:50:06] * Building about/funds/2016.de.html [14:50:07] * Building about/funds/2016.el.html [14:50:07] * Building about/funds/2016.en.html [14:50:07] * Building about/funds/2016.es.html [14:50:07] * Building about/funds/2016.et.html [14:50:07] * Building about/funds/2016.fi.html [14:50:07] * Building about/funds/2016.fr.html [14:50:07] * Building about/funds/2016.hr.html [14:50:07] * Building about/funds/2016.hu.html [14:50:08] * Building about/funds/2016.it.html [14:50:08] * Building about/funds/2016.mk.html [14:50:08] * Building about/funds/2016.nb.html [14:50:08] * Building about/funds/2016.nl.html [14:50:08] * Building about/funds/2016.nn.html [14:50:08] * Building about/funds/2016.pl.html [14:50:08] * Building about/funds/2016.pt.html [14:50:08] * Building about/funds/2016.ro.html [14:50:08] * Building about/funds/2016.ru.html [14:50:08] * Building about/funds/2016.sk.html [14:50:09] * Building about/funds/2016.sl.html [14:50:09] * Building about/funds/2016.sq.html [14:50:09] * Building about/funds/2016.sr.html [14:50:09] * Building about/funds/2016.sv.html [14:50:09] * Building about/funds/2016.tr.html [14:50:09] * Building about/funds/2016.uk.html [14:50:09] * Building about/funds/2016.zh.html [14:50:09] * Building about/funds/2017.ar.html [14:50:09] * Building about/funds/2017.bg.html [14:50:09] * Building about/funds/2017.bs.html [14:50:09] * Building about/funds/2017.ca.html [14:50:09] * Building about/funds/2017.cs.html [14:50:10] * Building about/funds/2017.da.html [14:50:10] * Building about/funds/2017.de.html [14:50:10] * Building about/funds/2017.el.html [14:50:10] * Building about/funds/2017.en.html [14:50:10] * Building about/funds/2017.es.html [14:50:10] * Building about/funds/2017.et.html [14:50:10] * Building about/funds/2017.fi.html [14:50:10] * Building about/funds/2017.fr.html [14:50:10] * Building about/funds/2017.hr.html [14:50:10] * Building about/funds/2017.hu.html [14:50:10] * Building about/funds/2017.it.html [14:50:11] * Building about/funds/2017.mk.html [14:50:11] * Building about/funds/2017.nb.html [14:50:11] * Building about/funds/2017.nl.html [14:50:11] * Building about/funds/2017.nn.html [14:50:11] * Building about/funds/2017.pl.html [14:50:11] * Building about/funds/2017.pt.html [14:50:11] * Building about/funds/2017.ro.html [14:50:11] * Building about/funds/2017.ru.html [14:50:11] * Building about/funds/2017.sk.html [14:50:11] * Building about/funds/2017.sl.html [14:50:12] * Building about/funds/2017.sq.html [14:50:12] * Building about/funds/2017.sr.html [14:50:12] * Building about/funds/2017.sv.html [14:50:12] * Building about/funds/2017.tr.html [14:50:12] * Building about/funds/2017.uk.html [14:50:12] * Building about/funds/2017.zh.html [14:50:12] * Building about/funds/2018.ar.html [14:50:12] * Building about/funds/2018.bg.html [14:50:12] * Building about/funds/2018.bs.html [14:50:12] * Building about/funds/2018.ca.html [14:50:12] * Building about/funds/2018.cs.html [14:50:12] * Building about/funds/2018.da.html [14:50:13] * Building about/funds/2018.de.html [14:50:13] * Building about/funds/2018.el.html [14:50:13] * Building about/funds/2018.en.html [14:50:13] * Building about/funds/2018.es.html [14:50:13] * Building about/funds/2018.et.html [14:50:13] * Building about/funds/2018.fi.html [14:50:13] * Building about/funds/2018.fr.html [14:50:13] * Building about/funds/2018.hr.html [14:50:13] * Building about/funds/2018.hu.html [14:50:13] * Building about/funds/2018.it.html [14:50:13] * Building about/funds/2018.mk.html [14:50:13] * Building about/funds/2018.nb.html [14:50:14] * Building about/funds/2018.nl.html [14:50:14] * Building about/funds/2018.nn.html [14:50:14] * Building about/funds/2018.pl.html [14:50:14] * Building about/funds/2018.pt.html [14:50:14] * Building about/funds/2018.ro.html [14:50:14] * Building about/funds/2018.ru.html [14:50:14] * Building about/funds/2018.sk.html [14:50:14] * Building about/funds/2018.sl.html [14:50:14] * Building about/funds/2018.sq.html [14:50:14] * Building about/funds/2018.sr.html [14:50:14] * Building about/funds/2018.sv.html [14:50:15] * Building about/funds/2018.tr.html [14:50:15] * Building about/funds/2018.uk.html [14:50:15] * Building about/funds/2018.zh.html [14:50:15] * Building about/funds/2019.ar.html [14:50:15] * Building about/funds/2019.bg.html [14:50:15] * Building about/funds/2019.bs.html [14:50:15] * Building about/funds/2019.ca.html [14:50:15] * Building about/funds/2019.cs.html [14:50:15] * Building about/funds/2019.da.html [14:50:15] * Building about/funds/2019.de.html [14:50:15] * Building about/funds/2019.el.html [14:50:16] * Building about/funds/2019.en.html [14:50:16] * Building about/funds/2019.es.html [14:50:16] * Building about/funds/2019.et.html [14:50:16] * Building about/funds/2019.fi.html [14:50:16] * Building about/funds/2019.fr.html [14:50:16] * Building about/funds/2019.hr.html [14:50:16] * Building about/funds/2019.hu.html [14:50:16] * Building about/funds/2019.it.html [14:50:16] * Building about/funds/2019.mk.html [14:50:16] * Building about/funds/2019.nb.html [14:50:16] * Building about/funds/2019.nl.html [14:50:16] * Building about/funds/2019.nn.html [14:50:17] * Building about/funds/2019.pl.html [14:50:17] * Building about/funds/2019.pt.html [14:50:17] * Building about/funds/2019.ro.html [14:50:17] * Building about/funds/2019.ru.html [14:50:17] * Building about/funds/2019.sk.html [14:50:17] * Building about/funds/2019.sl.html [14:50:17] * Building about/funds/2019.sq.html [14:50:17] * Building about/funds/2019.sr.html [14:50:17] * Building about/funds/2019.sv.html [14:50:17] * Building about/funds/2019.tr.html [14:50:17] * Building about/funds/2019.uk.html [14:50:17] * Building about/funds/2019.zh.html [14:50:33] Finishing phase 2
[14:50:35] sending incremental file list [14:50:35] about/funds/2001.ar.html [14:50:35] about/funds/2001.bg.html [14:50:35] about/funds/2001.bs.html [14:50:35] about/funds/2001.ca.html [14:50:35] about/funds/2001.cs.html [14:50:35] about/funds/2001.da.html [14:50:35] about/funds/2001.de.html [14:50:35] about/funds/2001.el.html [14:50:35] about/funds/2001.en.html [14:50:35] about/funds/2001.es.html [14:50:35] about/funds/2001.et.html [14:50:35] about/funds/2001.fi.html [14:50:35] about/funds/2001.fr.html [14:50:35] about/funds/2001.hr.html [14:50:35] about/funds/2001.hu.html [14:50:35] about/funds/2001.it.html [14:50:35] about/funds/2001.mk.html [14:50:35] about/funds/2001.nb.html [14:50:35] about/funds/2001.nl.html [14:50:35] about/funds/2001.nn.html [14:50:35] about/funds/2001.pl.html [14:50:35] about/funds/2001.pt.html [14:50:35] about/funds/2001.ro.html [14:50:35] about/funds/2001.ru.html [14:50:35] about/funds/2001.sk.html [14:50:35] about/funds/2001.sl.html [14:50:35] about/funds/2001.sq.html [14:50:35] about/funds/2001.sr.html [14:50:35] about/funds/2001.sv.html [14:50:35] about/funds/2001.tr.html [14:50:35] about/funds/2001.uk.html [14:50:35] about/funds/2001.zh.html [14:50:35] about/funds/2002.ar.html [14:50:35] about/funds/2002.bg.html [14:50:35] about/funds/2002.bs.html [14:50:35] about/funds/2002.ca.html [14:50:35] about/funds/2002.cs.html [14:50:35] about/funds/2002.da.html [14:50:35] about/funds/2002.de.html [14:50:35] about/funds/2002.el.html [14:50:35] about/funds/2002.en.html [14:50:35] about/funds/2002.es.html [14:50:35] about/funds/2002.et.html [14:50:35] about/funds/2002.fi.html [14:50:35] about/funds/2002.fr.html [14:50:35] about/funds/2002.hr.html [14:50:35] about/funds/2002.hu.html [14:50:35] about/funds/2002.it.html [14:50:35] about/funds/2002.mk.html [14:50:35] about/funds/2002.nb.html [14:50:35] about/funds/2002.nl.html [14:50:35] about/funds/2002.nn.html [14:50:35] about/funds/2002.pl.html [14:50:35] about/funds/2002.pt.html [14:50:35] about/funds/2002.ro.html [14:50:35] about/funds/2002.ru.html [14:50:35] about/funds/2002.sk.html [14:50:35] about/funds/2002.sl.html [14:50:35] about/funds/2002.sq.html [14:50:35] about/funds/2002.sr.html [14:50:35] about/funds/2002.sv.html [14:50:35] about/funds/2002.tr.html [14:50:35] about/funds/2002.uk.html [14:50:35] about/funds/2002.zh.html [14:50:35] about/funds/2003.ar.html [14:50:35] about/funds/2003.bg.html [14:50:35] about/funds/2003.bs.html [14:50:35] about/funds/2003.ca.html [14:50:35] about/funds/2003.cs.html [14:50:35] about/funds/2003.da.html [14:50:35] about/funds/2003.de.html [14:50:35] about/funds/2003.el.html [14:50:35] about/funds/2003.en.html [14:50:35] about/funds/2003.es.html [14:50:35] about/funds/2003.et.html [14:50:35] about/funds/2003.fi.html [14:50:35] about/funds/2003.fr.html [14:50:35] about/funds/2003.hr.html [14:50:35] about/funds/2003.hu.html [14:50:35] about/funds/2003.it.html [14:50:35] about/funds/2003.mk.html [14:50:35] about/funds/2003.nb.html [14:50:35] about/funds/2003.nl.html [14:50:35] about/funds/2003.nn.html [14:50:35] about/funds/2003.pl.html [14:50:35] about/funds/2003.pt.html [14:50:35] about/funds/2003.ro.html [14:50:35] about/funds/2003.ru.html [14:50:35] about/funds/2003.sk.html [14:50:35] about/funds/2003.sl.html [14:50:35] about/funds/2003.sq.html [14:50:35] about/funds/2003.sr.html [14:50:35] about/funds/2003.sv.html [14:50:35] about/funds/2003.tr.html [14:50:35] about/funds/2003.uk.html [14:50:35] about/funds/2003.zh.html [14:50:35] about/funds/2004.ar.html [14:50:35] about/funds/2004.bg.html [14:50:35] about/funds/2004.bs.html [14:50:35] about/funds/2004.ca.html [14:50:35] about/funds/2004.cs.html [14:50:35] about/funds/2004.da.html [14:50:35] about/funds/2004.de.html [14:50:35] about/funds/2004.el.html [14:50:35] about/funds/2004.en.html [14:50:35] about/funds/2004.es.html [14:50:35] about/funds/2004.et.html [14:50:35] about/funds/2004.fi.html [14:50:35] about/funds/2004.fr.html [14:50:35] about/funds/2004.hr.html [14:50:35] about/funds/2004.hu.html [14:50:35] about/funds/2004.it.html [14:50:35] about/funds/2004.mk.html [14:50:35] about/funds/2004.nb.html [14:50:35] about/funds/2004.nl.html [14:50:35] about/funds/2004.nn.html [14:50:35] about/funds/2004.pl.html [14:50:35] about/funds/2004.pt.html [14:50:35] about/funds/2004.ro.html [14:50:35] about/funds/2004.ru.html [14:50:35] about/funds/2004.sk.html [14:50:35] about/funds/2004.sl.html [14:50:35] about/funds/2004.sq.html [14:50:35] about/funds/2004.sr.html [14:50:35] about/funds/2004.sv.html [14:50:35] about/funds/2004.tr.html [14:50:35] about/funds/2004.uk.html [14:50:35] about/funds/2004.zh.html [14:50:35] about/funds/2005.ar.html [14:50:35] about/funds/2005.bg.html [14:50:35] about/funds/2005.bs.html [14:50:35] about/funds/2005.ca.html [14:50:35] about/funds/2005.cs.html [14:50:35] about/funds/2005.da.html [14:50:35] about/funds/2005.de.html [14:50:35] about/funds/2005.el.html [14:50:35] about/funds/2005.en.html [14:50:35] about/funds/2005.es.html [14:50:35] about/funds/2005.et.html [14:50:35] about/funds/2005.fi.html [14:50:35] about/funds/2005.fr.html [14:50:35] about/funds/2005.hr.html [14:50:35] about/funds/2005.hu.html [14:50:35] about/funds/2005.it.html [14:50:35] about/funds/2005.mk.html [14:50:35] about/funds/2005.nb.html [14:50:35] about/funds/2005.nl.html [14:50:35] about/funds/2005.nn.html [14:50:35] about/funds/2005.pl.html [14:50:35] about/funds/2005.pt.html [14:50:35] about/funds/2005.ro.html [14:50:35] about/funds/2005.ru.html [14:50:35] about/funds/2005.sk.html [14:50:35] about/funds/2005.sl.html [14:50:35] about/funds/2005.sq.html [14:50:35] about/funds/2005.sr.html [14:50:35] about/funds/2005.sv.html [14:50:35] about/funds/2005.tr.html [14:50:35] about/funds/2005.uk.html [14:50:35] about/funds/2005.zh.html [14:50:35] about/funds/2006.ar.html [14:50:36] about/funds/2006.bg.html [14:50:36] about/funds/2006.bs.html [14:50:36] about/funds/2006.ca.html [14:50:36] about/funds/2006.cs.html [14:50:36] about/funds/2006.da.html [14:50:36] about/funds/2006.de.html [14:50:36] about/funds/2006.el.html [14:50:36] about/funds/2006.en.html [14:50:36] about/funds/2006.es.html [14:50:36] about/funds/2006.et.html [14:50:36] about/funds/2006.fi.html [14:50:36] about/funds/2006.fr.html [14:50:36] about/funds/2006.hr.html [14:50:36] about/funds/2006.hu.html [14:50:36] about/funds/2006.it.html [14:50:36] about/funds/2006.mk.html [14:50:36] about/funds/2006.nb.html [14:50:36] about/funds/2006.nl.html [14:50:36] about/funds/2006.nn.html [14:50:36] about/funds/2006.pl.html [14:50:36] about/funds/2006.pt.html [14:50:36] about/funds/2006.ro.html [14:50:36] about/funds/2006.ru.html [14:50:36] about/funds/2006.sk.html [14:50:36] about/funds/2006.sl.html [14:50:36] about/funds/2006.sq.html [14:50:36] about/funds/2006.sr.html [14:50:36] about/funds/2006.sv.html [14:50:36] about/funds/2006.tr.html [14:50:36] about/funds/2006.uk.html [14:50:36] about/funds/2006.zh.html [14:50:36] about/funds/2007.ar.html [14:50:36] about/funds/2007.bg.html [14:50:36] about/funds/2007.bs.html [14:50:36] about/funds/2007.ca.html [14:50:36] about/funds/2007.cs.html [14:50:36] about/funds/2007.da.html [14:50:36] about/funds/2007.de.html [14:50:36] about/funds/2007.el.html [14:50:36] about/funds/2007.en.html [14:50:36] about/funds/2007.es.html [14:50:36] about/funds/2007.et.html [14:50:36] about/funds/2007.fi.html [14:50:36] about/funds/2007.fr.html [14:50:36] about/funds/2007.hr.html [14:50:36] about/funds/2007.hu.html [14:50:36] about/funds/2007.it.html [14:50:36] about/funds/2007.mk.html [14:50:36] about/funds/2007.nb.html [14:50:36] about/funds/2007.nl.html [14:50:36] about/funds/2007.nn.html [14:50:36] about/funds/2007.pl.html [14:50:36] about/funds/2007.pt.html [14:50:36] about/funds/2007.ro.html [14:50:36] about/funds/2007.ru.html [14:50:36] about/funds/2007.sk.html [14:50:36] about/funds/2007.sl.html [14:50:36] about/funds/2007.sq.html [14:50:36] about/funds/2007.sr.html [14:50:36] about/funds/2007.sv.html [14:50:36] about/funds/2007.tr.html [14:50:36] about/funds/2007.uk.html [14:50:36] about/funds/2007.zh.html [14:50:36] about/funds/2008.ar.html [14:50:36] about/funds/2008.bg.html [14:50:36] about/funds/2008.bs.html [14:50:36] about/funds/2008.ca.html [14:50:36] about/funds/2008.cs.html [14:50:36] about/funds/2008.da.html [14:50:36] about/funds/2008.de.html [14:50:36] about/funds/2008.el.html [14:50:36] about/funds/2008.en.html [14:50:36] about/funds/2008.es.html [14:50:36] about/funds/2008.et.html [14:50:36] about/funds/2008.fi.html [14:50:36] about/funds/2008.fr.html [14:50:36] about/funds/2008.hr.html [14:50:36] about/funds/2008.hu.html [14:50:36] about/funds/2008.it.html [14:50:36] about/funds/2008.mk.html [14:50:36] about/funds/2008.nb.html [14:50:36] about/funds/2008.nl.html [14:50:36] about/funds/2008.nn.html [14:50:36] about/funds/2008.pl.html [14:50:36] about/funds/2008.pt.html [14:50:36] about/funds/2008.ro.html [14:50:36] about/funds/2008.ru.html [14:50:36] about/funds/2008.sk.html [14:50:36] about/funds/2008.sl.html [14:50:36] about/funds/2008.sq.html [14:50:36] about/funds/2008.sr.html [14:50:36] about/funds/2008.sv.html [14:50:36] about/funds/2008.tr.html [14:50:36] about/funds/2008.uk.html [14:50:36] about/funds/2008.zh.html [14:50:36] about/funds/2009.ar.html [14:50:36] about/funds/2009.bg.html [14:50:36] about/funds/2009.bs.html [14:50:36] about/funds/2009.ca.html [14:50:36] about/funds/2009.cs.html [14:50:36] about/funds/2009.da.html [14:50:36] about/funds/2009.de.html [14:50:36] about/funds/2009.el.html [14:50:36] about/funds/2009.en.html [14:50:36] about/funds/2009.es.html [14:50:36] about/funds/2009.et.html [14:50:36] about/funds/2009.fi.html [14:50:36] about/funds/2009.fr.html [14:50:36] about/funds/2009.hr.html [14:50:36] about/funds/2009.hu.html [14:50:36] about/funds/2009.it.html [14:50:36] about/funds/2009.mk.html [14:50:36] about/funds/2009.nb.html [14:50:36] about/funds/2009.nl.html [14:50:36] about/funds/2009.nn.html [14:50:36] about/funds/2009.pl.html [14:50:36] about/funds/2009.pt.html [14:50:36] about/funds/2009.ro.html [14:50:36] about/funds/2009.ru.html [14:50:36] about/funds/2009.sk.html [14:50:36] about/funds/2009.sl.html [14:50:36] about/funds/2009.sq.html [14:50:36] about/funds/2009.sr.html [14:50:36] about/funds/2009.sv.html [14:50:36] about/funds/2009.tr.html [14:50:36] about/funds/2009.uk.html [14:50:36] about/funds/2009.zh.html [14:50:36] about/funds/2010.ar.html [14:50:36] about/funds/2010.bg.html [14:50:36] about/funds/2010.bs.html [14:50:36] about/funds/2010.ca.html [14:50:36] about/funds/2010.cs.html [14:50:36] about/funds/2010.da.html [14:50:36] about/funds/2010.de.html [14:50:36] about/funds/2010.el.html [14:50:36] about/funds/2010.en.html [14:50:36] about/funds/2010.es.html [14:50:36] about/funds/2010.et.html [14:50:36] about/funds/2010.fi.html [14:50:36] about/funds/2010.fr.html [14:50:36] about/funds/2010.hr.html [14:50:36] about/funds/2010.hu.html [14:50:36] about/funds/2010.it.html [14:50:36] about/funds/2010.mk.html [14:50:36] about/funds/2010.nb.html [14:50:36] about/funds/2010.nl.html [14:50:36] about/funds/2010.nn.html [14:50:36] about/funds/2010.pl.html [14:50:36] about/funds/2010.pt.html [14:50:36] about/funds/2010.ro.html [14:50:36] about/funds/2010.ru.html [14:50:36] about/funds/2010.sk.html [14:50:36] about/funds/2010.sl.html [14:50:36] about/funds/2010.sq.html [14:50:36] about/funds/2010.sr.html [14:50:36] about/funds/2010.sv.html [14:50:36] about/funds/2010.tr.html [14:50:36] about/funds/2010.uk.html [14:50:36] about/funds/2010.zh.html [14:50:36] about/funds/2011.ar.html [14:50:36] about/funds/2011.bg.html [14:50:36] about/funds/2011.bs.html [14:50:36] about/funds/2011.ca.html [14:50:36] about/funds/2011.cs.html [14:50:36] about/funds/2011.da.html [14:50:36] about/funds/2011.de.html [14:50:36] about/funds/2011.el.html [14:50:36] about/funds/2011.en.html [14:50:36] about/funds/2011.es.html [14:50:36] about/funds/2011.et.html [14:50:36] about/funds/2011.fi.html [14:50:36] about/funds/2011.fr.html [14:50:36] about/funds/2011.hr.html [14:50:36] about/funds/2011.hu.html [14:50:36] about/funds/2011.it.html [14:50:36] about/funds/2011.mk.html [14:50:36] about/funds/2011.nb.html [14:50:36] about/funds/2011.nl.html [14:50:36] about/funds/2011.nn.html [14:50:36] about/funds/2011.pl.html [14:50:36] about/funds/2011.pt.html [14:50:36] about/funds/2011.ro.html [14:50:36] about/funds/2011.ru.html [14:50:36] about/funds/2011.sk.html [14:50:36] about/funds/2011.sl.html [14:50:36] about/funds/2011.sq.html [14:50:36] about/funds/2011.sr.html [14:50:36] about/funds/2011.sv.html [14:50:36] about/funds/2011.tr.html [14:50:36] about/funds/2011.uk.html [14:50:36] about/funds/2011.zh.html [14:50:36] about/funds/2012.ar.html [14:50:36] about/funds/2012.bg.html [14:50:36] about/funds/2012.bs.html [14:50:36] about/funds/2012.ca.html [14:50:36] about/funds/2012.cs.html [14:50:36] about/funds/2012.da.html [14:50:36] about/funds/2012.de.html [14:50:36] about/funds/2012.el.html [14:50:36] about/funds/2012.en.html [14:50:36] about/funds/2012.es.html [14:50:36] about/funds/2012.et.html [14:50:36] about/funds/2012.fi.html [14:50:36] about/funds/2012.fr.html [14:50:36] about/funds/2012.hr.html [14:50:36] about/funds/2012.hu.html [14:50:36] about/funds/2012.it.html [14:50:36] about/funds/2012.mk.html [14:50:36] about/funds/2012.nb.html [14:50:36] about/funds/2012.nl.html [14:50:36] about/funds/2012.nn.html [14:50:36] about/funds/2012.pl.html [14:50:36] about/funds/2012.pt.html [14:50:36] about/funds/2012.ro.html [14:50:36] about/funds/2012.ru.html [14:50:36] about/funds/2012.sk.html [14:50:36] about/funds/2012.sl.html [14:50:36] about/funds/2012.sq.html [14:50:36] about/funds/2012.sr.html [14:50:36] about/funds/2012.sv.html [14:50:36] about/funds/2012.tr.html [14:50:36] about/funds/2012.uk.html [14:50:36] about/funds/2012.zh.html [14:50:36] about/funds/2013.ar.html [14:50:36] about/funds/2013.bg.html [14:50:36] about/funds/2013.bs.html [14:50:36] about/funds/2013.ca.html [14:50:36] about/funds/2013.cs.html [14:50:36] about/funds/2013.da.html [14:50:36] about/funds/2013.de.html [14:50:36] about/funds/2013.el.html [14:50:36] about/funds/2013.en.html [14:50:36] about/funds/2013.es.html [14:50:36] about/funds/2013.et.html [14:50:36] about/funds/2013.fi.html [14:50:36] about/funds/2013.fr.html [14:50:36] about/funds/2013.hr.html [14:50:36] about/funds/2013.hu.html [14:50:36] about/funds/2013.it.html [14:50:36] about/funds/2013.mk.html [14:50:36] about/funds/2013.nb.html [14:50:36] about/funds/2013.nl.html [14:50:36] about/funds/2013.nn.html [14:50:36] about/funds/2013.pl.html [14:50:36] about/funds/2013.pt.html [14:50:36] about/funds/2013.ro.html [14:50:36] about/funds/2013.ru.html [14:50:36] about/funds/2013.sk.html [14:50:36] about/funds/2013.sl.html [14:50:36] about/funds/2013.sq.html [14:50:36] about/funds/2013.sr.html [14:50:36] about/funds/2013.sv.html [14:50:36] about/funds/2013.tr.html [14:50:36] about/funds/2013.uk.html [14:50:36] about/funds/2013.zh.html [14:50:36] about/funds/2014.ar.html [14:50:36] about/funds/2014.bg.html [14:50:36] about/funds/2014.bs.html [14:50:36] about/funds/2014.ca.html [14:50:36] about/funds/2014.cs.html [14:50:36] about/funds/2014.da.html [14:50:36] about/funds/2014.de.html [14:50:36] about/funds/2014.el.html [14:50:36] about/funds/2014.en.html [14:50:36] about/funds/2014.es.html [14:50:36] about/funds/2014.et.html [14:50:36] about/funds/2014.fi.html [14:50:36] about/funds/2014.fr.html [14:50:36] about/funds/2014.hr.html [14:50:36] about/funds/2014.hu.html [14:50:36] about/funds/2014.it.html [14:50:36] about/funds/2014.mk.html [14:50:36] about/funds/2014.nb.html [14:50:36] about/funds/2014.nl.html [14:50:36] about/funds/2014.nn.html [14:50:36] about/funds/2014.pl.html [14:50:36] about/funds/2014.pt.html [14:50:36] about/funds/2014.ro.html [14:50:36] about/funds/2014.ru.html [14:50:36] about/funds/2014.sk.html [14:50:36] about/funds/2014.sl.html [14:50:36] about/funds/2014.sq.html [14:50:36] about/funds/2014.sr.html [14:50:36] about/funds/2014.sv.html [14:50:36] about/funds/2014.tr.html [14:50:36] about/funds/2014.uk.html [14:50:36] about/funds/2014.zh.html [14:50:36] about/funds/2015.ar.html [14:50:36] about/funds/2015.bg.html [14:50:36] about/funds/2015.bs.html [14:50:36] about/funds/2015.ca.html [14:50:36] about/funds/2015.cs.html [14:50:36] about/funds/2015.da.html [14:50:36] about/funds/2015.de.html [14:50:36] about/funds/2015.el.html [14:50:36] about/funds/2015.en.html [14:50:36] about/funds/2015.es.html [14:50:36] about/funds/2015.et.html [14:50:36] about/funds/2015.fi.html [14:50:36] about/funds/2015.fr.html [14:50:36] about/funds/2015.hr.html [14:50:36] about/funds/2015.hu.html [14:50:36] about/funds/2015.it.html [14:50:36] about/funds/2015.mk.html [14:50:36] about/funds/2015.nb.html [14:50:36] about/funds/2015.nl.html [14:50:36] about/funds/2015.nn.html [14:50:36] about/funds/2015.pl.html [14:50:36] about/funds/2015.pt.html [14:50:36] about/funds/2015.ro.html [14:50:36] about/funds/2015.ru.html [14:50:36] about/funds/2015.sk.html [14:50:36] about/funds/2015.sl.html [14:50:36] about/funds/2015.sq.html [14:50:36] about/funds/2015.sr.html [14:50:36] about/funds/2015.sv.html [14:50:36] about/funds/2015.tr.html [14:50:36] about/funds/2015.uk.html [14:50:36] about/funds/2015.zh.html [14:50:36] about/funds/2016.ar.html [14:50:36] about/funds/2016.bg.html [14:50:36] about/funds/2016.bs.html [14:50:36] about/funds/2016.ca.html [14:50:36] about/funds/2016.cs.html [14:50:36] about/funds/2016.da.html [14:50:36] about/funds/2016.de.html [14:50:36] about/funds/2016.el.html [14:50:36] about/funds/2016.en.html [14:50:36] about/funds/2016.es.html [14:50:40] about/funds/2016.et.html [14:50:40] about/funds/2016.fi.html [14:50:40] about/funds/2016.fr.html [14:50:40] about/funds/2016.hr.html [14:50:40] about/funds/2016.hu.html [14:50:40] about/funds/2016.it.html [14:50:40] about/funds/2016.mk.html [14:50:40] about/funds/2016.nb.html [14:50:40] about/funds/2016.nl.html [14:50:40] about/funds/2016.nn.html [14:50:40] about/funds/2016.pl.html [14:50:40] about/funds/2016.pt.html [14:50:40] about/funds/2016.ro.html [14:50:40] about/funds/2016.ru.html [14:50:40] about/funds/2016.sk.html [14:50:40] about/funds/2016.sl.html [14:50:40] about/funds/2016.sq.html [14:50:40] about/funds/2016.sr.html [14:50:40] about/funds/2016.sv.html [14:50:40] about/funds/2016.tr.html [14:50:40] about/funds/2016.uk.html [14:50:40] about/funds/2016.zh.html [14:50:40] about/funds/2017.ar.html [14:50:40] about/funds/2017.bg.html [14:50:40] about/funds/2017.bs.html [14:50:40] about/funds/2017.ca.html [14:50:40] about/funds/2017.cs.html [14:50:40] about/funds/2017.da.html [14:50:40] about/funds/2017.de.html [14:50:40] about/funds/2017.el.html [14:50:40] about/funds/2017.en.html [14:50:40] about/funds/2017.es.html [14:50:40] about/funds/2017.et.html [14:50:40] about/funds/2017.fi.html [14:50:40] about/funds/2017.fr.html [14:50:40] about/funds/2017.hr.html [14:50:40] about/funds/2017.hu.html [14:50:40] about/funds/2017.it.html [14:50:40] about/funds/2017.mk.html [14:50:40] about/funds/2017.nb.html [14:50:40] about/funds/2017.nl.html [14:50:40] about/funds/2017.nn.html [14:50:40] about/funds/2017.pl.html [14:50:40] about/funds/2017.pt.html [14:50:40] about/funds/2017.ro.html [14:50:40] about/funds/2017.ru.html [14:50:40] about/funds/2017.sk.html [14:50:40] about/funds/2017.sl.html [14:50:40] about/funds/2017.sq.html [14:50:40] about/funds/2017.sr.html [14:50:40] about/funds/2017.sv.html [14:50:40] about/funds/2017.tr.html [14:50:40] about/funds/2017.uk.html [14:50:40] about/funds/2017.zh.html [14:50:40] about/funds/2018.ar.html [14:50:40] about/funds/2018.bg.html [14:50:40] about/funds/2018.bs.html [14:50:40] about/funds/2018.ca.html [14:50:40] about/funds/2018.cs.html [14:50:40] about/funds/2018.da.html [14:50:40] about/funds/2018.de.html [14:50:40] about/funds/2018.el.html [14:50:40] about/funds/2018.en.html [14:50:40] about/funds/2018.es.html [14:50:40] about/funds/2018.et.html [14:50:40] about/funds/2018.fi.html [14:50:40] about/funds/2018.fr.html [14:50:40] about/funds/2018.hr.html [14:50:40] about/funds/2018.hu.html [14:50:40] about/funds/2018.it.html [14:50:40] about/funds/2018.mk.html [14:50:40] about/funds/2018.nb.html [14:50:40] about/funds/2018.nl.html [14:50:40] about/funds/2018.nn.html [14:50:40] about/funds/2018.pl.html [14:50:40] about/funds/2018.pt.html [14:50:40] about/funds/2018.ro.html [14:50:40] about/funds/2018.ru.html [14:50:40] about/funds/2018.sk.html [14:50:40] about/funds/2018.sl.html [14:50:40] about/funds/2018.sq.html [14:50:40] about/funds/2018.sr.html [14:50:40] about/funds/2018.sv.html [14:50:40] about/funds/2018.tr.html [14:50:40] about/funds/2018.uk.html [14:50:40] about/funds/2018.zh.html [14:50:40] about/funds/2019.ar.html [14:50:40] about/funds/2019.bg.html [14:50:40] about/funds/2019.bs.html [14:50:40] about/funds/2019.ca.html [14:50:40] about/funds/2019.cs.html [14:50:40] about/funds/2019.da.html [14:50:40] about/funds/2019.de.html [14:50:40] about/funds/2019.el.html [14:50:40] about/funds/2019.en.html [14:50:40] about/funds/2019.es.html [14:50:40] about/funds/2019.et.html [14:50:40] about/funds/2019.fi.html [14:50:40] about/funds/2019.fr.html [14:50:40] about/funds/2019.hr.html [14:50:40] about/funds/2019.hu.html [14:50:40] about/funds/2019.it.html [14:50:40] about/funds/2019.mk.html [14:50:40] about/funds/2019.nb.html [14:50:40] about/funds/2019.nl.html [14:50:40] about/funds/2019.nn.html [14:50:40] about/funds/2019.pl.html [14:50:40] about/funds/2019.pt.html [14:50:40] about/funds/2019.ro.html [14:50:40] about/funds/2019.ru.html [14:50:40] about/funds/2019.sk.html [14:50:40] about/funds/2019.sl.html [14:50:40] about/funds/2019.sq.html [14:50:40] about/funds/2019.sr.html [14:50:40] about/funds/2019.sv.html [14:50:40] about/funds/2019.tr.html [14:50:40] about/funds/2019.uk.html [14:50:40] about/funds/2019.zh.html [14:50:40] search/index.js [14:50:40] source/about/funds/2001.en.xhtml [14:50:40] source/about/funds/2001.fr.xhtml [14:50:40] source/about/funds/2001.it.xhtml [14:50:40] source/about/funds/2001.nl.xhtml [14:50:40] source/about/funds/2001.ru.xhtml [14:50:40] source/about/funds/2002.en.xhtml [14:50:40] source/about/funds/2002.fr.xhtml [14:50:40] source/about/funds/2002.it.xhtml [14:50:40] source/about/funds/2002.ru.xhtml [14:50:40] source/about/funds/2003.de.xhtml [14:50:40] source/about/funds/2003.el.xhtml [14:50:40] source/about/funds/2003.en.xhtml [14:50:40] source/about/funds/2003.fr.xhtml [14:50:40] source/about/funds/2003.it.xhtml [14:50:40] source/about/funds/2003.nl.xhtml [14:50:40] source/about/funds/2003.ru.xhtml [14:50:40] source/about/funds/2004.de.xhtml [14:50:40] source/about/funds/2004.el.xhtml [14:50:40] source/about/funds/2004.en.xhtml [14:50:40] source/about/funds/2004.fr.xhtml [14:50:40] source/about/funds/2004.it.xhtml [14:50:40] source/about/funds/2004.nl.xhtml [14:50:40] source/about/funds/2004.ru.xhtml [14:50:40] source/about/funds/2005.de.xhtml [14:50:40] source/about/funds/2005.el.xhtml [14:50:40] source/about/funds/2005.en.xhtml [14:50:40] source/about/funds/2005.fr.xhtml [14:50:40] source/about/funds/2005.it.xhtml [14:50:40] source/about/funds/2005.nl.xhtml [14:50:40] source/about/funds/2005.ru.xhtml [14:50:40] source/about/funds/2006.de.xhtml [14:50:40] source/about/funds/2006.el.xhtml [14:50:40] source/about/funds/2006.en.xhtml [14:50:40] source/about/funds/2006.fr.xhtml [14:50:40] source/about/funds/2006.it.xhtml [14:50:40] source/about/funds/2006.nl.xhtml [14:50:40] source/about/funds/2006.ru.xhtml [14:50:40] source/about/funds/2007.de.xhtml [14:50:40] source/about/funds/2007.el.xhtml [14:50:40] source/about/funds/2007.en.xhtml [14:50:40] source/about/funds/2007.fr.xhtml [14:50:40] source/about/funds/2007.it.xhtml [14:50:40] source/about/funds/2007.nl.xhtml [14:50:40] source/about/funds/2007.ru.xhtml [14:50:40] [14:50:40] sent 6,515,347 bytes received 101,928 bytes 882,303.33 bytes/sec [14:50:40] total size is 1,131,157,223 speedup is 170.94