Updating 767a63b96f..83f67db34d Fast-forward activities/android/activity.en.xml | 2 +- activities/android/android.ca.xhtml | 8 - activities/android/android.da.xhtml | 7 - activities/android/android.de.xhtml | 7 - activities/android/android.el.xhtml | 7 - activities/android/android.en.xhtml | 73 +++-- activities/android/android.es.xhtml | 7 - activities/android/android.fr.xhtml | 7 - activities/android/android.it.xhtml | 7 - activities/android/android.nl.xhtml | 6 - activities/android/android.pt.xhtml | 7 - activities/android/android.ru.xhtml | 7 - activities/android/android.sq.xhtml | 7 - activities/android/android.sr.xhtml | 7 - activities/android/android.tr.xhtml | 7 - activities/android/is-flashing-legal.en.xhtml | 125 +++++++++ activities/android/is-flashing-legal.it.xhtml | 69 +++++ activities/android/liberate.en.xhtml | 359 +++++++++++++----------- activities/android/sustainability.en.xhtml | 94 +++++++ activities/upcyclingandroid/activity.en.xml | 4 +- activities/upcyclingandroid/activity.nl.xml | 4 +- activities/upcyclingandroid/openletter.ca.xhtml | 93 +----- activities/upcyclingandroid/openletter.de.xhtml | 93 +----- activities/upcyclingandroid/openletter.el.xhtml | 99 +------ activities/upcyclingandroid/openletter.en.xhtml | 93 +----- activities/upcyclingandroid/openletter.es.xhtml | 89 +----- activities/upcyclingandroid/openletter.fr.xhtml | 92 +----- activities/upcyclingandroid/openletter.it.xhtml | 92 +----- activities/upcyclingandroid/openletter.nl.xhtml | 93 +----- activities/upcyclingandroid/openletter.pl.xhtml | 93 +----- activities/upcyclingandroid/openletter.pt.xhtml | 94 +------ 31 files changed, 549 insertions(+), 1203 deletions(-) create mode 100644 activities/android/is-flashing-legal.en.xhtml create mode 100644 activities/android/is-flashing-legal.it.xhtml create mode 100644 activities/android/sustainability.en.xhtml
[11:44:03] Starting phase 1 [11:44:04] * Spawning 4 processes [11:44:04] * Indexing 5150 files [11:44:18] * Indexation done in 14 seconds! [11:44:18] * Written index to /srv/www/fsfe.org_git/search/index.js [11:44:18] * Creating search index [11:44:18] * Updating XSL stylesheets [11:44:18] * Preparing subdirectory events [11:44:18] * Preparing subdirectory news [11:44:19] * Updating default stylesheets [11:44:19] * Updating local menus [11:44:20] * Generating tag maps [11:44:46] * Updating tag lists [11:44:51] * Updating XML lists [11:44:57] * Checking contents of XML lists [11:44:57] * Touching about/people/.index.xmllist [11:44:57] * Touching activities/.activities.xmllist [11:44:57] * Touching activities/.awareness.xmllist [11:44:57] * Touching activities/.legal.xmllist [11:44:57] * Touching activities/.policy.xmllist [11:44:58] * Touching tags/.tagged-awareness.xmllist [11:45:00] 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 fa fi fr hr hu it ja 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 %.fa.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fa.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fa.xml echo "* Building $*.fa.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.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 %.ja.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ja.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ja.xml echo "* Building $*.ja.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.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.fa.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fa.html: echo "* Creating symlink $*/index.fa.html" ln -sf "$(notdir $*).fa.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.ja.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ja.html: echo "* Creating symlink $*/index.ja.html" ln -sf "$(notdir $*).ja.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.fa: echo "* Creating symlink $*.html.fa" ln -sf "$(notdir $*).fa.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.ja: echo "* Creating symlink $*.html.ja" ln -sf "$(notdir $*).ja.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)/%.fa.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fa.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.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)/%.ja.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ja.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.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)/%.fa.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fa.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.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)/%.ja.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ja.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.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 # -----------------------------------------------------------------------------
[11:45:01] Starting phase 2 [11:45:06] * Building about/people/index.ar.html [11:45:06] * Building about/people/index.bg.html [11:45:06] * Building about/people/index.bs.html [11:45:06] * Building about/people/index.ca.html [11:45:06] * Building about/people/index.cs.html [11:45:06] * Building about/people/index.da.html [11:45:06] * Building about/people/index.de.html [11:45:06] * Building about/people/index.el.html [11:45:07] * Building about/people/index.en.html [11:45:07] * Building about/people/index.es.html [11:45:07] * Building about/people/index.et.html [11:45:07] * Building about/people/index.fa.html [11:45:07] * Building about/people/index.fi.html [11:45:07] * Building about/people/index.fr.html [11:45:07] * Building about/people/index.hr.html [11:45:07] * Building about/people/index.hu.html [11:45:08] * Building about/people/index.it.html [11:45:08] * Building about/people/index.ja.html [11:45:08] * Building about/people/index.mk.html [11:45:08] * Building about/people/index.nb.html [11:45:08] * Building about/people/index.nl.html [11:45:08] * Building about/people/index.nn.html [11:45:08] * Building about/people/index.pl.html [11:45:08] * Building about/people/index.pt.html [11:45:08] * Building about/people/index.ro.html [11:45:08] * Building about/people/index.ru.html [11:45:08] * Building about/people/index.sk.html [11:45:08] * Building about/people/index.sl.html [11:45:09] * Building about/people/index.sq.html [11:45:09] * Building about/people/index.sr.html [11:45:09] * Building about/people/index.sv.html [11:45:09] * Building about/people/index.tr.html [11:45:09] * Building about/people/index.uk.html [11:45:09] * Building about/people/index.zh.html [11:45:09] * Building activities/activities.ar.html [11:45:09] * Building activities/activities.bg.html [11:45:10] * Building activities/activities.bs.html [11:45:10] * Building activities/activities.ca.html [11:45:10] * Building activities/activities.cs.html [11:45:10] * Building activities/activities.da.html [11:45:10] * Building activities/activities.de.html [11:45:10] * Building activities/activities.el.html [11:45:10] * Building activities/activities.en.html [11:45:10] * Building activities/activities.es.html [11:45:10] * Building activities/activities.et.html [11:45:10] * Building activities/activities.fa.html [11:45:10] * Building activities/activities.fi.html [11:45:10] * Building activities/activities.fr.html [11:45:11] * Building activities/activities.hr.html [11:45:11] * Building activities/activities.hu.html [11:45:11] * Building activities/activities.it.html [11:45:11] * Building activities/activities.ja.html [11:45:11] * Building activities/activities.mk.html [11:45:11] * Building activities/activities.nb.html [11:45:11] * Building activities/activities.nl.html [11:45:11] * Building activities/activities.nn.html [11:45:11] * Building activities/activities.pl.html [11:45:11] * Building activities/activities.pt.html [11:45:11] * Building activities/activities.ro.html [11:45:11] * Building activities/activities.ru.html [11:45:12] * Building activities/activities.sk.html [11:45:12] * Building activities/activities.sl.html [11:45:12] * Building activities/activities.sq.html [11:45:12] * Building activities/activities.sr.html [11:45:12] * Building activities/activities.sv.html [11:45:12] * Building activities/activities.tr.html [11:45:12] * Building activities/activities.uk.html [11:45:12] * Building activities/activities.zh.html [11:45:12] * Building activities/android/android.ar.html [11:45:12] * Building activities/android/android.bg.html [11:45:12] * Building activities/android/android.bs.html [11:45:12] * Building activities/android/android.ca.html [11:45:12] * Building activities/android/android.cs.html [11:45:12] * Building activities/android/android.da.html [11:45:12] * Building activities/android/android.de.html [11:45:12] * Building activities/android/android.el.html [11:45:13] * Building activities/android/android.en.html [11:45:13] * Building activities/android/android.es.html [11:45:13] * Building activities/android/android.et.html [11:45:13] * Building activities/android/android.fa.html [11:45:13] * Building activities/android/android.fi.html [11:45:13] * Building activities/android/android.fr.html [11:45:13] * Building activities/android/android.hr.html [11:45:13] * Building activities/android/android.hu.html [11:45:13] * Building activities/android/android.it.html [11:45:13] * Building activities/android/android.ja.html [11:45:13] * Building activities/android/android.mk.html [11:45:13] * Building activities/android/android.nb.html [11:45:13] * Building activities/android/android.nl.html [11:45:13] * Building activities/android/android.nn.html [11:45:13] * Building activities/android/android.pl.html [11:45:13] * Building activities/android/android.pt.html [11:45:13] * Building activities/android/android.ro.html [11:45:13] * Building activities/android/android.ru.html [11:45:13] * Building activities/android/android.sk.html [11:45:13] * Building activities/android/android.sl.html [11:45:13] * Building activities/android/android.sq.html [11:45:13] * Building activities/android/android.sr.html [11:45:13] * Building activities/android/android.sv.html [11:45:13] * Building activities/android/android.tr.html [11:45:13] * Building activities/android/android.uk.html [11:45:13] * Building activities/android/android.zh.html [11:45:13] * Building activities/android/is-flashing-legal.ar.html [11:45:13] * Building activities/android/is-flashing-legal.bg.html [11:45:13] * Building activities/android/is-flashing-legal.bs.html [11:45:13] * Building activities/android/is-flashing-legal.ca.html [11:45:13] * Building activities/android/is-flashing-legal.cs.html [11:45:13] * Building activities/android/is-flashing-legal.da.html [11:45:13] * Building activities/android/is-flashing-legal.de.html [11:45:13] * Building activities/android/is-flashing-legal.el.html [11:45:13] * Building activities/android/is-flashing-legal.en.html [11:45:13] * Building activities/android/is-flashing-legal.es.html [11:45:14] * Building activities/android/is-flashing-legal.et.html [11:45:14] * Building activities/android/is-flashing-legal.fa.html [11:45:14] * Building activities/android/is-flashing-legal.fi.html [11:45:14] * Building activities/android/is-flashing-legal.fr.html [11:45:14] * Building activities/android/is-flashing-legal.hr.html [11:45:14] * Building activities/android/is-flashing-legal.hu.html [11:45:14] * Building activities/android/is-flashing-legal.it.html [11:45:14] * Building activities/android/is-flashing-legal.ja.html [11:45:14] * Building activities/android/is-flashing-legal.mk.html [11:45:14] * Building activities/android/is-flashing-legal.nb.html [11:45:14] * Building activities/android/is-flashing-legal.nl.html [11:45:14] * Building activities/android/is-flashing-legal.nn.html [11:45:14] * Building activities/android/is-flashing-legal.pl.html [11:45:14] * Building activities/android/is-flashing-legal.pt.html [11:45:14] * Building activities/android/is-flashing-legal.ro.html [11:45:14] * Building activities/android/is-flashing-legal.ru.html [11:45:14] * Building activities/android/is-flashing-legal.sk.html [11:45:14] * Building activities/android/is-flashing-legal.sl.html [11:45:14] * Building activities/android/is-flashing-legal.sq.html [11:45:14] * Building activities/android/is-flashing-legal.sr.html [11:45:14] * Building activities/android/is-flashing-legal.sv.html [11:45:14] * Building activities/android/is-flashing-legal.tr.html [11:45:14] * Building activities/android/is-flashing-legal.uk.html [11:45:14] * Building activities/android/is-flashing-legal.zh.html [11:45:14] * Building activities/android/liberate.ar.html [11:45:14] * Building activities/android/liberate.bg.html [11:45:14] * Building activities/android/liberate.bs.html [11:45:14] * Building activities/android/liberate.ca.html [11:45:14] * Building activities/android/liberate.cs.html [11:45:14] * Building activities/android/liberate.da.html [11:45:14] * Building activities/android/liberate.de.html [11:45:14] * Building activities/android/liberate.el.html [11:45:14] * Building activities/android/liberate.en.html [11:45:14] * Building activities/android/liberate.es.html [11:45:14] * Building activities/android/liberate.et.html [11:45:14] * Building activities/android/liberate.fa.html [11:45:14] * Building activities/android/liberate.fi.html [11:45:14] * Building activities/android/liberate.fr.html [11:45:14] * Building activities/android/liberate.hr.html [11:45:14] * Building activities/android/liberate.hu.html [11:45:14] * Building activities/android/liberate.it.html [11:45:14] * Building activities/android/liberate.ja.html [11:45:14] * Building activities/android/liberate.mk.html [11:45:15] * Building activities/android/liberate.nb.html [11:45:15] * Building activities/android/liberate.nl.html [11:45:15] * Building activities/android/liberate.nn.html [11:45:15] * Building activities/android/liberate.pl.html [11:45:15] * Building activities/android/liberate.pt.html [11:45:15] * Building activities/android/liberate.ro.html [11:45:15] * Building activities/android/liberate.ru.html [11:45:15] * Building activities/android/liberate.sk.html [11:45:15] * Building activities/android/liberate.sl.html [11:45:15] * Building activities/android/liberate.sq.html [11:45:15] * Building activities/android/liberate.sr.html [11:45:15] * Building activities/android/liberate.sv.html [11:45:15] * Building activities/android/liberate.tr.html [11:45:15] * Building activities/android/liberate.uk.html [11:45:15] * Building activities/android/liberate.zh.html [11:45:15] * Building activities/android/sustainability.ar.html [11:45:15] * Building activities/android/sustainability.bg.html [11:45:15] * Building activities/android/sustainability.bs.html [11:45:15] * Building activities/android/sustainability.ca.html [11:45:15] * Building activities/android/sustainability.cs.html [11:45:15] * Building activities/android/sustainability.da.html [11:45:15] * Building activities/android/sustainability.de.html [11:45:15] * Building activities/android/sustainability.el.html [11:45:15] * Building activities/android/sustainability.en.html [11:45:15] * Building activities/android/sustainability.es.html [11:45:15] * Building activities/android/sustainability.et.html [11:45:15] * Building activities/android/sustainability.fa.html [11:45:15] * Building activities/android/sustainability.fi.html [11:45:15] * Building activities/android/sustainability.fr.html [11:45:15] * Building activities/android/sustainability.hr.html [11:45:15] * Building activities/android/sustainability.hu.html [11:45:15] * Building activities/android/sustainability.it.html [11:45:15] * Building activities/android/sustainability.ja.html [11:45:15] * Building activities/android/sustainability.mk.html [11:45:15] * Building activities/android/sustainability.nb.html [11:45:15] * Building activities/android/sustainability.nl.html [11:45:15] * Building activities/android/sustainability.nn.html [11:45:15] * Building activities/android/sustainability.pl.html [11:45:15] * Building activities/android/sustainability.pt.html [11:45:15] * Building activities/android/sustainability.ro.html [11:45:15] * Building activities/android/sustainability.ru.html [11:45:16] * Building activities/android/sustainability.sk.html [11:45:16] * Building activities/android/sustainability.sl.html [11:45:16] * Building activities/android/sustainability.sq.html [11:45:16] * Building activities/android/sustainability.sr.html [11:45:16] * Building activities/android/sustainability.sv.html [11:45:16] * Building activities/android/sustainability.tr.html [11:45:16] * Building activities/android/sustainability.uk.html [11:45:16] * Building activities/android/sustainability.zh.html [11:45:16] * Building activities/awareness.ar.html [11:45:16] * Building activities/awareness.bg.html [11:45:16] * Building activities/awareness.bs.html [11:45:16] * Building activities/awareness.ca.html [11:45:16] * Building activities/awareness.cs.html [11:45:16] * Building activities/awareness.da.html [11:45:16] * Building activities/awareness.de.html [11:45:16] * Building activities/awareness.el.html [11:45:16] * Building activities/awareness.en.html [11:45:16] * Building activities/awareness.es.html [11:45:16] * Building activities/awareness.et.html [11:45:16] * Building activities/awareness.fa.html [11:45:17] * Building activities/awareness.fi.html [11:45:17] * Building activities/awareness.fr.html [11:45:17] * Building activities/awareness.hr.html [11:45:17] * Building activities/awareness.hu.html [11:45:17] * Building activities/awareness.it.html [11:45:17] * Building activities/awareness.ja.html [11:45:17] * Building activities/awareness.mk.html [11:45:17] * Building activities/awareness.nb.html [11:45:17] * Building activities/awareness.nl.html [11:45:17] * Building activities/awareness.nn.html [11:45:17] * Building activities/awareness.pl.html [11:45:17] * Building activities/awareness.pt.html [11:45:18] * Building activities/awareness.ro.html [11:45:18] * Building activities/awareness.ru.html [11:45:18] * Building activities/awareness.sk.html [11:45:18] * Building activities/awareness.sl.html [11:45:18] * Building activities/awareness.sq.html [11:45:18] * Building activities/awareness.sr.html [11:45:18] * Building activities/awareness.sv.html [11:45:18] * Building activities/awareness.tr.html [11:45:18] * Building activities/awareness.uk.html [11:45:18] * Building activities/awareness.zh.html [11:45:19] * Building activities/legal.ar.html [11:45:19] * Building activities/legal.bg.html [11:45:19] * Building activities/legal.bs.html [11:45:19] * Building activities/legal.ca.html [11:45:19] * Building activities/legal.cs.html [11:45:19] * Building activities/legal.da.html [11:45:19] * Building activities/legal.de.html [11:45:19] * Building activities/legal.el.html [11:45:19] * Building activities/legal.en.html [11:45:19] * Building activities/legal.es.html [11:45:19] * Building activities/legal.et.html [11:45:20] * Building activities/legal.fa.html [11:45:20] * Building activities/legal.fi.html [11:45:20] * Building activities/legal.fr.html [11:45:20] * Building activities/legal.hr.html [11:45:20] * Building activities/legal.hu.html [11:45:20] * Building activities/legal.it.html [11:45:20] * Building activities/legal.ja.html [11:45:20] * Building activities/legal.mk.html [11:45:20] * Building activities/legal.nb.html [11:45:20] * Building activities/legal.nl.html [11:45:20] * Building activities/legal.nn.html [11:45:20] * Building activities/legal.pl.html [11:45:20] * Building activities/legal.pt.html [11:45:20] * Building activities/legal.ro.html [11:45:21] * Building activities/legal.ru.html [11:45:21] * Building activities/legal.sk.html [11:45:21] * Building activities/legal.sl.html [11:45:21] * Building activities/legal.sq.html [11:45:21] * Building activities/legal.sr.html [11:45:21] * Building activities/legal.sv.html [11:45:21] * Building activities/legal.tr.html [11:45:21] * Building activities/legal.uk.html [11:45:21] * Building activities/legal.zh.html [11:45:21] * Building activities/policy.ar.html [11:45:21] * Building activities/policy.bg.html [11:45:21] * Building activities/policy.bs.html [11:45:22] * Building activities/policy.ca.html [11:45:22] * Building activities/policy.cs.html [11:45:22] * Building activities/policy.da.html [11:45:22] * Building activities/policy.de.html [11:45:22] * Building activities/policy.el.html [11:45:22] * Building activities/policy.en.html [11:45:22] * Building activities/policy.es.html [11:45:22] * Building activities/policy.et.html [11:45:22] * Building activities/policy.fa.html [11:45:22] * Building activities/policy.fi.html [11:45:22] * Building activities/policy.fr.html [11:45:22] * Building activities/policy.hr.html [11:45:23] * Building activities/policy.hu.html [11:45:23] * Building activities/policy.it.html [11:45:23] * Building activities/policy.ja.html [11:45:23] * Building activities/policy.mk.html [11:45:23] * Building activities/policy.nb.html [11:45:23] * Building activities/policy.nl.html [11:45:23] * Building activities/policy.nn.html [11:45:23] * Building activities/policy.pl.html [11:45:23] * Building activities/policy.pt.html [11:45:23] * Building activities/policy.ro.html [11:45:23] * Building activities/policy.ru.html [11:45:24] * Building activities/policy.sk.html [11:45:24] * Building activities/policy.sl.html [11:45:24] * Building activities/policy.sq.html [11:45:24] * Building activities/policy.sr.html [11:45:24] * Building activities/policy.sv.html [11:45:24] * Building activities/policy.tr.html [11:45:24] * Building activities/policy.uk.html [11:45:24] * Building activities/policy.zh.html [11:45:24] * Building activities/upcyclingandroid/openletter.ar.html [11:45:24] * Building activities/upcyclingandroid/openletter.bg.html [11:45:24] * Building activities/upcyclingandroid/openletter.bs.html [11:45:24] * Building activities/upcyclingandroid/openletter.ca.html [11:45:24] * Building activities/upcyclingandroid/openletter.cs.html [11:45:24] * Building activities/upcyclingandroid/openletter.da.html [11:45:25] * Building activities/upcyclingandroid/openletter.de.html [11:45:25] * Building activities/upcyclingandroid/openletter.el.html [11:45:25] * Building activities/upcyclingandroid/openletter.en.html [11:45:25] * Building activities/upcyclingandroid/openletter.es.html [11:45:25] * Building activities/upcyclingandroid/openletter.et.html [11:45:25] * Building activities/upcyclingandroid/openletter.fa.html [11:45:25] * Building activities/upcyclingandroid/openletter.fi.html [11:45:25] * Building activities/upcyclingandroid/openletter.fr.html [11:45:25] * Building activities/upcyclingandroid/openletter.hr.html [11:45:25] * Building activities/upcyclingandroid/openletter.hu.html [11:45:25] * Building activities/upcyclingandroid/openletter.it.html [11:45:25] * Building activities/upcyclingandroid/openletter.ja.html [11:45:25] * Building activities/upcyclingandroid/openletter.mk.html [11:45:25] * Building activities/upcyclingandroid/openletter.nb.html [11:45:25] * Building activities/upcyclingandroid/openletter.nl.html [11:45:25] * Building activities/upcyclingandroid/openletter.nn.html [11:45:25] * Building activities/upcyclingandroid/openletter.pl.html [11:45:25] * Building activities/upcyclingandroid/openletter.pt.html [11:45:25] * Building activities/upcyclingandroid/openletter.ro.html [11:45:25] * Building activities/upcyclingandroid/openletter.ru.html [11:45:25] * Building activities/upcyclingandroid/openletter.sk.html [11:45:25] * Building activities/upcyclingandroid/openletter.sl.html [11:45:25] * Building activities/upcyclingandroid/openletter.sq.html [11:45:25] * Building activities/upcyclingandroid/openletter.sr.html [11:45:25] * Building activities/upcyclingandroid/openletter.sv.html [11:45:25] * Building activities/upcyclingandroid/openletter.tr.html [11:45:25] * Building activities/upcyclingandroid/openletter.uk.html [11:45:25] * Building activities/upcyclingandroid/openletter.zh.html [11:45:27] * Building tags/tagged-awareness.ar.html [11:45:27] * Building tags/tagged-awareness.bg.html [11:45:27] * Building tags/tagged-awareness.bs.html [11:45:27] * Building tags/tagged-awareness.ca.html [11:45:27] * Building tags/tagged-awareness.cs.html [11:45:27] * Building tags/tagged-awareness.da.html [11:45:27] * Building tags/tagged-awareness.de.html [11:45:28] * Building tags/tagged-awareness.el.html [11:45:28] * Building tags/tagged-awareness.en.html [11:45:28] * Building tags/tagged-awareness.es.html [11:45:28] * Building tags/tagged-awareness.et.html [11:45:28] * Building tags/tagged-awareness.fa.html [11:45:28] * Building tags/tagged-awareness.fi.html [11:45:28] * Building tags/tagged-awareness.fr.html [11:45:28] * Building tags/tagged-awareness.hr.html [11:45:28] * Building tags/tagged-awareness.hu.html [11:45:28] * Building tags/tagged-awareness.it.html [11:45:28] * Building tags/tagged-awareness.ja.html [11:45:28] * Building tags/tagged-awareness.mk.html [11:45:28] * Building tags/tagged-awareness.nb.html [11:45:28] * Building tags/tagged-awareness.nl.html [11:45:28] * Building tags/tagged-awareness.nn.html [11:45:28] * Building tags/tagged-awareness.pl.html [11:45:28] * Building tags/tagged-awareness.pt.html [11:45:28] * Building tags/tagged-awareness.ro.html [11:45:28] * Building tags/tagged-awareness.ru.html [11:45:28] * Building tags/tagged-awareness.sk.html [11:45:29] * Building tags/tagged-awareness.sl.html [11:45:29] * Building tags/tagged-awareness.sq.html [11:45:29] * Building tags/tagged-awareness.sr.html [11:45:29] * Building tags/tagged-awareness.sv.html [11:45:29] * Building tags/tagged-awareness.tr.html [11:45:29] * Building tags/tagged-awareness.uk.html [11:45:29] * Building tags/tagged-awareness.zh.html [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.ar [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.bg [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.bs [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.ca [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.cs [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.da [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.de [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.el [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.en [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.es [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.et [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.fa [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.fi [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.fr [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.hr [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.hu [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.it [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.ja [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.mk [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.nb [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.nl [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.nn [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.pl [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.pt [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.ro [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.ru [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.sk [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.sl [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.sq [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.sr [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.sv [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.uk [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.tr [11:45:29] * Creating symlink activities/android/is-flashing-legal.html.zh [11:45:29] * Creating symlink activities/android/sustainability.html.ar [11:45:29] * Creating symlink activities/android/sustainability.html.bg [11:45:29] * Creating symlink activities/android/sustainability.html.bs [11:45:29] * Creating symlink activities/android/sustainability.html.ca [11:45:29] * Creating symlink activities/android/sustainability.html.cs [11:45:29] * Creating symlink activities/android/sustainability.html.da [11:45:29] * Creating symlink activities/android/sustainability.html.de [11:45:29] * Creating symlink activities/android/sustainability.html.el [11:45:29] * Creating symlink activities/android/sustainability.html.en [11:45:29] * Creating symlink activities/android/sustainability.html.es [11:45:29] * Creating symlink activities/android/sustainability.html.et [11:45:29] * Creating symlink activities/android/sustainability.html.fa [11:45:29] * Creating symlink activities/android/sustainability.html.fi [11:45:29] * Creating symlink activities/android/sustainability.html.fr [11:45:29] * Creating symlink activities/android/sustainability.html.hr [11:45:29] * Creating symlink activities/android/sustainability.html.hu [11:45:29] * Creating symlink activities/android/sustainability.html.it [11:45:29] * Creating symlink activities/android/sustainability.html.ja [11:45:29] * Creating symlink activities/android/sustainability.html.mk [11:45:29] * Creating symlink activities/android/sustainability.html.nb [11:45:29] * Creating symlink activities/android/sustainability.html.nn [11:45:29] * Creating symlink activities/android/sustainability.html.nl [11:45:29] * Creating symlink activities/android/sustainability.html.pl [11:45:29] * Creating symlink activities/android/sustainability.html.pt [11:45:29] * Creating symlink activities/android/sustainability.html.ro [11:45:29] * Creating symlink activities/android/sustainability.html.ru [11:45:29] * Creating symlink activities/android/sustainability.html.sk [11:45:29] * Creating symlink activities/android/sustainability.html.sl [11:45:29] * Creating symlink activities/android/sustainability.html.sq [11:45:29] * Creating symlink activities/android/sustainability.html.sr [11:45:29] * Creating symlink activities/android/sustainability.html.sv [11:45:29] * Creating symlink activities/android/sustainability.html.tr [11:45:29] * Creating symlink activities/android/sustainability.html.uk [11:45:29] * Creating symlink activities/android/sustainability.html.zh [11:45:31] * Linking source activities/android/is-flashing-legal.en.xhtml [11:45:31] * Linking source activities/android/is-flashing-legal.it.xhtml [11:45:31] * Linking source activities/android/sustainability.en.xhtml [11:45:34] Finishing phase 2
[11:45:34] Syncing files to bunsen.fsfeurope.org [11:45:36] sending incremental file list [11:45:36] about/people/index.ar.html [11:45:36] about/people/index.bg.html [11:45:36] about/people/index.bs.html [11:45:36] about/people/index.ca.html [11:45:36] about/people/index.cs.html [11:45:36] about/people/index.da.html [11:45:36] about/people/index.de.html [11:45:36] about/people/index.el.html [11:45:36] about/people/index.en.html [11:45:36] about/people/index.es.html [11:45:36] about/people/index.et.html [11:45:36] about/people/index.fa.html [11:45:36] about/people/index.fi.html [11:45:36] about/people/index.fr.html [11:45:36] about/people/index.hr.html [11:45:36] about/people/index.hu.html [11:45:36] about/people/index.it.html [11:45:36] about/people/index.ja.html [11:45:36] about/people/index.mk.html [11:45:36] about/people/index.nb.html [11:45:36] about/people/index.nl.html [11:45:36] about/people/index.nn.html [11:45:36] about/people/index.pl.html [11:45:36] about/people/index.pt.html [11:45:36] about/people/index.ro.html [11:45:36] about/people/index.ru.html [11:45:36] about/people/index.sk.html [11:45:36] about/people/index.sl.html [11:45:36] about/people/index.sq.html [11:45:36] about/people/index.sr.html [11:45:36] about/people/index.sv.html [11:45:36] about/people/index.tr.html [11:45:36] about/people/index.uk.html [11:45:36] about/people/index.zh.html [11:45:36] activities/activities.ar.html [11:45:36] activities/activities.bg.html [11:45:36] activities/activities.bs.html [11:45:36] activities/activities.ca.html [11:45:36] activities/activities.cs.html [11:45:36] activities/activities.da.html [11:45:36] activities/activities.de.html [11:45:36] activities/activities.el.html [11:45:36] activities/activities.en.html [11:45:36] activities/activities.es.html [11:45:36] activities/activities.et.html [11:45:36] activities/activities.fa.html [11:45:36] activities/activities.fi.html [11:45:36] activities/activities.fr.html [11:45:36] activities/activities.hr.html [11:45:36] activities/activities.hu.html [11:45:36] activities/activities.it.html [11:45:36] activities/activities.ja.html [11:45:36] activities/activities.mk.html [11:45:36] activities/activities.nb.html [11:45:36] activities/activities.nl.html [11:45:36] activities/activities.nn.html [11:45:36] activities/activities.pl.html [11:45:36] activities/activities.pt.html [11:45:36] activities/activities.ro.html [11:45:36] activities/activities.ru.html [11:45:36] activities/activities.sk.html [11:45:36] activities/activities.sl.html [11:45:36] activities/activities.sq.html [11:45:36] activities/activities.sr.html [11:45:36] activities/activities.sv.html [11:45:36] activities/activities.tr.html [11:45:36] activities/activities.uk.html [11:45:36] activities/activities.zh.html [11:45:36] activities/awareness.ar.html [11:45:36] activities/awareness.bg.html [11:45:36] activities/awareness.bs.html [11:45:36] activities/awareness.ca.html [11:45:36] activities/awareness.cs.html [11:45:36] activities/awareness.da.html [11:45:36] activities/awareness.de.html [11:45:36] activities/awareness.el.html [11:45:36] activities/awareness.en.html [11:45:36] activities/awareness.es.html [11:45:36] activities/awareness.et.html [11:45:36] activities/awareness.fa.html [11:45:36] activities/awareness.fi.html [11:45:36] activities/awareness.fr.html [11:45:36] activities/awareness.hr.html [11:45:36] activities/awareness.hu.html [11:45:36] activities/awareness.it.html [11:45:36] activities/awareness.ja.html [11:45:36] activities/awareness.mk.html [11:45:36] activities/awareness.nb.html [11:45:36] activities/awareness.nl.html [11:45:36] activities/awareness.nn.html [11:45:36] activities/awareness.pl.html [11:45:36] activities/awareness.pt.html [11:45:36] activities/awareness.ro.html [11:45:36] activities/awareness.ru.html [11:45:36] activities/awareness.sk.html [11:45:36] activities/awareness.sl.html [11:45:36] activities/awareness.sq.html [11:45:36] activities/awareness.sr.html [11:45:36] activities/awareness.sv.html [11:45:36] activities/awareness.tr.html [11:45:36] activities/awareness.uk.html [11:45:36] activities/awareness.zh.html [11:45:36] activities/legal.ar.html [11:45:36] activities/legal.bg.html [11:45:36] activities/legal.bs.html [11:45:36] activities/legal.ca.html [11:45:36] activities/legal.cs.html [11:45:36] activities/legal.da.html [11:45:36] activities/legal.de.html [11:45:36] activities/legal.el.html [11:45:36] activities/legal.en.html [11:45:36] activities/legal.es.html [11:45:36] activities/legal.et.html [11:45:36] activities/legal.fa.html [11:45:36] activities/legal.fi.html [11:45:36] activities/legal.fr.html [11:45:36] activities/legal.hr.html [11:45:36] activities/legal.hu.html [11:45:36] activities/legal.it.html [11:45:36] activities/legal.ja.html [11:45:36] activities/legal.mk.html [11:45:36] activities/legal.nb.html [11:45:36] activities/legal.nl.html [11:45:36] activities/legal.nn.html [11:45:36] activities/legal.pl.html [11:45:36] activities/legal.pt.html [11:45:36] activities/legal.ro.html [11:45:36] activities/legal.ru.html [11:45:36] activities/legal.sk.html [11:45:36] activities/legal.sl.html [11:45:36] activities/legal.sq.html [11:45:36] activities/legal.sr.html [11:45:36] activities/legal.sv.html [11:45:36] activities/legal.tr.html [11:45:36] activities/legal.uk.html [11:45:36] activities/legal.zh.html [11:45:36] activities/policy.ar.html [11:45:36] activities/policy.bg.html [11:45:36] activities/policy.bs.html [11:45:36] activities/policy.ca.html [11:45:36] activities/policy.cs.html [11:45:36] activities/policy.da.html [11:45:36] activities/policy.de.html [11:45:36] activities/policy.el.html [11:45:36] activities/policy.en.html [11:45:36] activities/policy.es.html [11:45:36] activities/policy.et.html [11:45:37] activities/policy.fa.html [11:45:37] activities/policy.fi.html [11:45:37] activities/policy.fr.html [11:45:37] activities/policy.hr.html [11:45:37] activities/policy.hu.html [11:45:37] activities/policy.it.html [11:45:37] activities/policy.ja.html [11:45:37] activities/policy.mk.html [11:45:37] activities/policy.nb.html [11:45:37] activities/policy.nl.html [11:45:37] activities/policy.nn.html [11:45:37] activities/policy.pl.html [11:45:37] activities/policy.pt.html [11:45:37] activities/policy.ro.html [11:45:37] activities/policy.ru.html [11:45:37] activities/policy.sk.html [11:45:37] activities/policy.sl.html [11:45:37] activities/policy.sq.html [11:45:37] activities/policy.sr.html [11:45:37] activities/policy.sv.html [11:45:37] activities/policy.tr.html [11:45:37] activities/policy.uk.html [11:45:37] activities/policy.zh.html [11:45:37] activities/android/ [11:45:37] activities/android/android.ar.html [11:45:37] activities/android/android.bg.html [11:45:37] activities/android/android.bs.html [11:45:37] activities/android/android.ca.html [11:45:37] activities/android/android.cs.html [11:45:37] activities/android/android.da.html [11:45:37] activities/android/android.de.html [11:45:37] activities/android/android.el.html [11:45:37] activities/android/android.en.html [11:45:37] activities/android/android.es.html [11:45:37] activities/android/android.et.html [11:45:37] activities/android/android.fa.html [11:45:37] activities/android/android.fi.html [11:45:37] activities/android/android.fr.html [11:45:37] activities/android/android.hr.html [11:45:37] activities/android/android.hu.html [11:45:37] activities/android/android.it.html [11:45:37] activities/android/android.ja.html [11:45:37] activities/android/android.mk.html [11:45:37] activities/android/android.nb.html [11:45:37] activities/android/android.nl.html [11:45:37] activities/android/android.nn.html [11:45:37] activities/android/android.pl.html [11:45:37] activities/android/android.pt.html [11:45:37] activities/android/android.ro.html [11:45:37] activities/android/android.ru.html [11:45:37] activities/android/android.sk.html [11:45:37] activities/android/android.sl.html [11:45:37] activities/android/android.sq.html [11:45:37] activities/android/android.sr.html [11:45:37] activities/android/android.sv.html [11:45:37] activities/android/android.tr.html [11:45:37] activities/android/android.uk.html [11:45:37] activities/android/android.zh.html [11:45:37] activities/android/is-flashing-legal.ar.html [11:45:37] activities/android/is-flashing-legal.bg.html [11:45:37] activities/android/is-flashing-legal.bs.html [11:45:37] activities/android/is-flashing-legal.ca.html [11:45:37] activities/android/is-flashing-legal.cs.html [11:45:37] activities/android/is-flashing-legal.da.html [11:45:37] activities/android/is-flashing-legal.de.html [11:45:37] activities/android/is-flashing-legal.el.html [11:45:37] activities/android/is-flashing-legal.en.html [11:45:37] activities/android/is-flashing-legal.es.html [11:45:37] activities/android/is-flashing-legal.et.html [11:45:37] activities/android/is-flashing-legal.fa.html [11:45:37] activities/android/is-flashing-legal.fi.html [11:45:37] activities/android/is-flashing-legal.fr.html [11:45:37] activities/android/is-flashing-legal.hr.html [11:45:37] activities/android/is-flashing-legal.html.ar -> is-flashing-legal.ar.html [11:45:37] activities/android/is-flashing-legal.html.bg -> is-flashing-legal.bg.html [11:45:37] activities/android/is-flashing-legal.html.bs -> is-flashing-legal.bs.html [11:45:37] activities/android/is-flashing-legal.html.ca -> is-flashing-legal.ca.html [11:45:37] activities/android/is-flashing-legal.html.cs -> is-flashing-legal.cs.html [11:45:37] activities/android/is-flashing-legal.html.da -> is-flashing-legal.da.html [11:45:37] activities/android/is-flashing-legal.html.de -> is-flashing-legal.de.html [11:45:37] activities/android/is-flashing-legal.html.el -> is-flashing-legal.el.html [11:45:37] activities/android/is-flashing-legal.html.en -> is-flashing-legal.en.html [11:45:37] activities/android/is-flashing-legal.html.es -> is-flashing-legal.es.html [11:45:37] activities/android/is-flashing-legal.html.et -> is-flashing-legal.et.html [11:45:37] activities/android/is-flashing-legal.html.fa -> is-flashing-legal.fa.html [11:45:37] activities/android/is-flashing-legal.html.fi -> is-flashing-legal.fi.html [11:45:37] activities/android/is-flashing-legal.html.fr -> is-flashing-legal.fr.html [11:45:37] activities/android/is-flashing-legal.html.hr -> is-flashing-legal.hr.html [11:45:37] activities/android/is-flashing-legal.html.hu -> is-flashing-legal.hu.html [11:45:37] activities/android/is-flashing-legal.html.it -> is-flashing-legal.it.html [11:45:37] activities/android/is-flashing-legal.html.ja -> is-flashing-legal.ja.html [11:45:37] activities/android/is-flashing-legal.html.mk -> is-flashing-legal.mk.html [11:45:37] activities/android/is-flashing-legal.html.nb -> is-flashing-legal.nb.html [11:45:37] activities/android/is-flashing-legal.html.nl -> is-flashing-legal.nl.html [11:45:37] activities/android/is-flashing-legal.html.nn -> is-flashing-legal.nn.html [11:45:37] activities/android/is-flashing-legal.html.pl -> is-flashing-legal.pl.html [11:45:37] activities/android/is-flashing-legal.html.pt -> is-flashing-legal.pt.html [11:45:37] activities/android/is-flashing-legal.html.ro -> is-flashing-legal.ro.html [11:45:37] activities/android/is-flashing-legal.html.ru -> is-flashing-legal.ru.html [11:45:37] activities/android/is-flashing-legal.html.sk -> is-flashing-legal.sk.html [11:45:37] activities/android/is-flashing-legal.html.sl -> is-flashing-legal.sl.html [11:45:37] activities/android/is-flashing-legal.html.sq -> is-flashing-legal.sq.html [11:45:37] activities/android/is-flashing-legal.html.sr -> is-flashing-legal.sr.html [11:45:37] activities/android/is-flashing-legal.html.sv -> is-flashing-legal.sv.html [11:45:37] activities/android/is-flashing-legal.html.tr -> is-flashing-legal.tr.html [11:45:37] activities/android/is-flashing-legal.html.uk -> is-flashing-legal.uk.html [11:45:37] activities/android/is-flashing-legal.html.zh -> is-flashing-legal.zh.html [11:45:37] activities/android/is-flashing-legal.hu.html [11:45:37] activities/android/is-flashing-legal.it.html [11:45:37] activities/android/is-flashing-legal.ja.html [11:45:37] activities/android/is-flashing-legal.mk.html [11:45:37] activities/android/is-flashing-legal.nb.html [11:45:37] activities/android/is-flashing-legal.nl.html [11:45:37] activities/android/is-flashing-legal.nn.html [11:45:37] activities/android/is-flashing-legal.pl.html [11:45:37] activities/android/is-flashing-legal.pt.html [11:45:37] activities/android/is-flashing-legal.ro.html [11:45:37] activities/android/is-flashing-legal.ru.html [11:45:37] activities/android/is-flashing-legal.sk.html [11:45:37] activities/android/is-flashing-legal.sl.html [11:45:37] activities/android/is-flashing-legal.sq.html [11:45:37] activities/android/is-flashing-legal.sr.html [11:45:37] activities/android/is-flashing-legal.sv.html [11:45:37] activities/android/is-flashing-legal.tr.html [11:45:37] activities/android/is-flashing-legal.uk.html [11:45:37] activities/android/is-flashing-legal.zh.html [11:45:37] activities/android/liberate.ar.html [11:45:37] activities/android/liberate.bg.html [11:45:37] activities/android/liberate.bs.html [11:45:37] activities/android/liberate.ca.html [11:45:37] activities/android/liberate.cs.html [11:45:37] activities/android/liberate.da.html [11:45:37] activities/android/liberate.de.html [11:45:37] activities/android/liberate.el.html [11:45:37] activities/android/liberate.en.html [11:45:37] activities/android/liberate.es.html [11:45:37] activities/android/liberate.et.html [11:45:37] activities/android/liberate.fa.html [11:45:37] activities/android/liberate.fi.html [11:45:37] activities/android/liberate.fr.html [11:45:37] activities/android/liberate.hr.html [11:45:37] activities/android/liberate.hu.html [11:45:37] activities/android/liberate.it.html [11:45:37] activities/android/liberate.ja.html [11:45:37] activities/android/liberate.mk.html [11:45:37] activities/android/liberate.nb.html [11:45:37] activities/android/liberate.nl.html [11:45:37] activities/android/liberate.nn.html [11:45:37] activities/android/liberate.pl.html [11:45:37] activities/android/liberate.pt.html [11:45:37] activities/android/liberate.ro.html [11:45:37] activities/android/liberate.ru.html [11:45:37] activities/android/liberate.sk.html [11:45:37] activities/android/liberate.sl.html [11:45:37] activities/android/liberate.sq.html [11:45:37] activities/android/liberate.sr.html [11:45:37] activities/android/liberate.sv.html [11:45:37] activities/android/liberate.tr.html [11:45:37] activities/android/liberate.uk.html [11:45:37] activities/android/liberate.zh.html [11:45:37] activities/android/sustainability.ar.html [11:45:37] activities/android/sustainability.bg.html [11:45:37] activities/android/sustainability.bs.html [11:45:37] activities/android/sustainability.ca.html [11:45:37] activities/android/sustainability.cs.html [11:45:37] activities/android/sustainability.da.html [11:45:37] activities/android/sustainability.de.html [11:45:37] activities/android/sustainability.el.html [11:45:37] activities/android/sustainability.en.html [11:45:37] activities/android/sustainability.es.html [11:45:37] activities/android/sustainability.et.html [11:45:37] activities/android/sustainability.fa.html [11:45:37] activities/android/sustainability.fi.html [11:45:37] activities/android/sustainability.fr.html [11:45:37] activities/android/sustainability.hr.html [11:45:37] activities/android/sustainability.html.ar -> sustainability.ar.html [11:45:37] activities/android/sustainability.html.bg -> sustainability.bg.html [11:45:37] activities/android/sustainability.html.bs -> sustainability.bs.html [11:45:37] activities/android/sustainability.html.ca -> sustainability.ca.html [11:45:37] activities/android/sustainability.html.cs -> sustainability.cs.html [11:45:37] activities/android/sustainability.html.da -> sustainability.da.html [11:45:37] activities/android/sustainability.html.de -> sustainability.de.html [11:45:37] activities/android/sustainability.html.el -> sustainability.el.html [11:45:37] activities/android/sustainability.html.en -> sustainability.en.html [11:45:37] activities/android/sustainability.html.es -> sustainability.es.html [11:45:37] activities/android/sustainability.html.et -> sustainability.et.html [11:45:37] activities/android/sustainability.html.fa -> sustainability.fa.html [11:45:37] activities/android/sustainability.html.fi -> sustainability.fi.html [11:45:37] activities/android/sustainability.html.fr -> sustainability.fr.html [11:45:37] activities/android/sustainability.html.hr -> sustainability.hr.html [11:45:37] activities/android/sustainability.html.hu -> sustainability.hu.html [11:45:37] activities/android/sustainability.html.it -> sustainability.it.html [11:45:37] activities/android/sustainability.html.ja -> sustainability.ja.html [11:45:37] activities/android/sustainability.html.mk -> sustainability.mk.html [11:45:37] activities/android/sustainability.html.nb -> sustainability.nb.html [11:45:37] activities/android/sustainability.html.nl -> sustainability.nl.html [11:45:37] activities/android/sustainability.html.nn -> sustainability.nn.html [11:45:37] activities/android/sustainability.html.pl -> sustainability.pl.html [11:45:37] activities/android/sustainability.html.pt -> sustainability.pt.html [11:45:37] activities/android/sustainability.html.ro -> sustainability.ro.html [11:45:38] activities/android/sustainability.html.ru -> sustainability.ru.html [11:45:38] activities/android/sustainability.html.sk -> sustainability.sk.html [11:45:38] activities/android/sustainability.html.sl -> sustainability.sl.html [11:45:38] activities/android/sustainability.html.sq -> sustainability.sq.html [11:45:38] activities/android/sustainability.html.sr -> sustainability.sr.html [11:45:38] activities/android/sustainability.html.sv -> sustainability.sv.html [11:45:38] activities/android/sustainability.html.tr -> sustainability.tr.html [11:45:38] activities/android/sustainability.html.uk -> sustainability.uk.html [11:45:38] activities/android/sustainability.html.zh -> sustainability.zh.html [11:45:38] activities/android/sustainability.hu.html [11:45:38] activities/android/sustainability.it.html [11:45:38] activities/android/sustainability.ja.html [11:45:38] activities/android/sustainability.mk.html [11:45:38] activities/android/sustainability.nb.html [11:45:38] activities/android/sustainability.nl.html [11:45:38] activities/android/sustainability.nn.html [11:45:38] activities/android/sustainability.pl.html [11:45:38] activities/android/sustainability.pt.html [11:45:38] activities/android/sustainability.ro.html [11:45:38] activities/android/sustainability.ru.html [11:45:38] activities/android/sustainability.sk.html [11:45:38] activities/android/sustainability.sl.html [11:45:38] activities/android/sustainability.sq.html [11:45:38] activities/android/sustainability.sr.html [11:45:38] activities/android/sustainability.sv.html [11:45:38] activities/android/sustainability.tr.html [11:45:38] activities/android/sustainability.uk.html [11:45:38] activities/android/sustainability.zh.html [11:45:38] activities/upcyclingandroid/openletter.ar.html [11:45:38] activities/upcyclingandroid/openletter.bg.html [11:45:38] activities/upcyclingandroid/openletter.bs.html [11:45:38] activities/upcyclingandroid/openletter.ca.html [11:45:38] activities/upcyclingandroid/openletter.cs.html [11:45:38] activities/upcyclingandroid/openletter.da.html [11:45:38] activities/upcyclingandroid/openletter.de.html [11:45:38] activities/upcyclingandroid/openletter.el.html [11:45:38] activities/upcyclingandroid/openletter.en.html [11:45:38] activities/upcyclingandroid/openletter.es.html [11:45:38] activities/upcyclingandroid/openletter.et.html [11:45:38] activities/upcyclingandroid/openletter.fa.html [11:45:38] activities/upcyclingandroid/openletter.fi.html [11:45:38] activities/upcyclingandroid/openletter.fr.html [11:45:38] activities/upcyclingandroid/openletter.hr.html [11:45:38] activities/upcyclingandroid/openletter.hu.html [11:45:38] activities/upcyclingandroid/openletter.it.html [11:45:38] activities/upcyclingandroid/openletter.ja.html [11:45:38] activities/upcyclingandroid/openletter.mk.html [11:45:38] activities/upcyclingandroid/openletter.nb.html [11:45:38] activities/upcyclingandroid/openletter.nl.html [11:45:38] activities/upcyclingandroid/openletter.nn.html [11:45:38] activities/upcyclingandroid/openletter.pl.html [11:45:38] activities/upcyclingandroid/openletter.pt.html [11:45:38] activities/upcyclingandroid/openletter.ro.html [11:45:38] activities/upcyclingandroid/openletter.ru.html [11:45:38] activities/upcyclingandroid/openletter.sk.html [11:45:38] activities/upcyclingandroid/openletter.sl.html [11:45:38] activities/upcyclingandroid/openletter.sq.html [11:45:38] activities/upcyclingandroid/openletter.sr.html [11:45:38] activities/upcyclingandroid/openletter.sv.html [11:45:41] activities/upcyclingandroid/openletter.tr.html [11:45:41] activities/upcyclingandroid/openletter.uk.html [11:45:41] activities/upcyclingandroid/openletter.zh.html [11:45:41] search/index.js [11:45:41] source/activities/android/ [11:45:41] source/activities/android/android.ca.xhtml [11:45:41] source/activities/android/android.da.xhtml [11:45:41] source/activities/android/android.de.xhtml [11:45:41] source/activities/android/android.el.xhtml [11:45:41] source/activities/android/android.en.xhtml [11:45:41] source/activities/android/android.es.xhtml [11:45:41] source/activities/android/android.fr.xhtml [11:45:41] source/activities/android/android.it.xhtml [11:45:41] source/activities/android/android.nl.xhtml [11:45:41] source/activities/android/android.pt.xhtml [11:45:41] source/activities/android/android.ru.xhtml [11:45:41] source/activities/android/android.sq.xhtml [11:45:41] source/activities/android/android.sr.xhtml [11:45:41] source/activities/android/android.tr.xhtml [11:45:41] source/activities/android/is-flashing-legal.en.xhtml [11:45:41] source/activities/android/is-flashing-legal.it.xhtml [11:45:41] source/activities/android/liberate.en.xhtml [11:45:41] source/activities/android/sustainability.en.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.ca.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.de.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.el.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.en.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.es.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.fr.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.it.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.nl.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.pl.xhtml [11:45:41] source/activities/upcyclingandroid/openletter.pt.xhtml [11:45:41] tags/tagged-awareness.ar.html [11:45:41] tags/tagged-awareness.bg.html [11:45:41] tags/tagged-awareness.bs.html [11:45:41] tags/tagged-awareness.ca.html [11:45:41] tags/tagged-awareness.cs.html [11:45:41] tags/tagged-awareness.da.html [11:45:41] tags/tagged-awareness.de.html [11:45:41] tags/tagged-awareness.el.html [11:45:41] tags/tagged-awareness.en.html [11:45:41] tags/tagged-awareness.es.html [11:45:41] tags/tagged-awareness.et.html [11:45:41] tags/tagged-awareness.fa.html [11:45:41] tags/tagged-awareness.fi.html [11:45:41] tags/tagged-awareness.fr.html [11:45:41] tags/tagged-awareness.hr.html [11:45:41] tags/tagged-awareness.hu.html [11:45:41] tags/tagged-awareness.it.html [11:45:41] tags/tagged-awareness.ja.html [11:45:41] tags/tagged-awareness.mk.html [11:45:41] tags/tagged-awareness.nb.html [11:45:41] tags/tagged-awareness.nl.html [11:45:41] tags/tagged-awareness.nn.html [11:45:41] tags/tagged-awareness.pl.html [11:45:41] tags/tagged-awareness.pt.html [11:45:41] tags/tagged-awareness.ro.html [11:45:41] tags/tagged-awareness.ru.html [11:45:41] tags/tagged-awareness.sk.html [11:45:41] tags/tagged-awareness.sl.html [11:45:41] tags/tagged-awareness.sq.html [11:45:41] tags/tagged-awareness.sr.html [11:45:41] tags/tagged-awareness.sv.html [11:45:41] tags/tagged-awareness.tr.html [11:45:41] tags/tagged-awareness.uk.html [11:45:41] tags/tagged-awareness.zh.html [11:45:41] [11:45:41] sent 9,711,875 bytes received 100,518 bytes 1,308,319.07 bytes/sec [11:45:41] total size is 1,486,974,745 speedup is 151.54 [11:45:41] Syncing files to noddack.fsfeurope.org [11:45:41] sending incremental file list [11:45:41] about/people/index.ar.html [11:45:41] about/people/index.bg.html [11:45:41] about/people/index.bs.html [11:45:41] about/people/index.ca.html [11:45:41] about/people/index.cs.html [11:45:41] about/people/index.da.html [11:45:41] about/people/index.de.html [11:45:41] about/people/index.el.html [11:45:41] about/people/index.en.html [11:45:41] about/people/index.es.html [11:45:41] about/people/index.et.html [11:45:41] about/people/index.fa.html [11:45:41] about/people/index.fi.html [11:45:41] about/people/index.fr.html [11:45:41] about/people/index.hr.html [11:45:41] about/people/index.hu.html [11:45:41] about/people/index.it.html [11:45:41] about/people/index.ja.html [11:45:41] about/people/index.mk.html [11:45:41] about/people/index.nb.html [11:45:41] about/people/index.nl.html [11:45:41] about/people/index.nn.html [11:45:41] about/people/index.pl.html [11:45:41] about/people/index.pt.html [11:45:41] about/people/index.ro.html [11:45:41] about/people/index.ru.html [11:45:41] about/people/index.sk.html [11:45:41] about/people/index.sl.html [11:45:41] about/people/index.sq.html [11:45:41] about/people/index.sr.html [11:45:41] about/people/index.sv.html [11:45:41] about/people/index.tr.html [11:45:41] about/people/index.uk.html [11:45:41] about/people/index.zh.html [11:45:41] activities/activities.ar.html [11:45:41] activities/activities.bg.html [11:45:41] activities/activities.bs.html [11:45:41] activities/activities.ca.html [11:45:41] activities/activities.cs.html [11:45:41] activities/activities.da.html [11:45:41] activities/activities.de.html [11:45:41] activities/activities.el.html [11:45:41] activities/activities.en.html [11:45:41] activities/activities.es.html [11:45:41] activities/activities.et.html [11:45:41] activities/activities.fa.html [11:45:41] activities/activities.fi.html [11:45:41] activities/activities.fr.html [11:45:41] activities/activities.hr.html [11:45:41] activities/activities.hu.html [11:45:41] activities/activities.it.html [11:45:41] activities/activities.ja.html [11:45:41] activities/activities.mk.html [11:45:41] activities/activities.nb.html [11:45:41] activities/activities.nl.html [11:45:41] activities/activities.nn.html [11:45:41] activities/activities.pl.html [11:45:41] activities/activities.pt.html [11:45:41] activities/activities.ro.html [11:45:41] activities/activities.ru.html [11:45:41] activities/activities.sk.html [11:45:41] activities/activities.sl.html [11:45:41] activities/activities.sq.html [11:45:41] activities/activities.sr.html [11:45:41] activities/activities.sv.html [11:45:41] activities/activities.tr.html [11:45:41] activities/activities.uk.html [11:45:41] activities/activities.zh.html [11:45:41] activities/awareness.ar.html [11:45:41] activities/awareness.bg.html [11:45:41] activities/awareness.bs.html [11:45:41] activities/awareness.ca.html [11:45:41] activities/awareness.cs.html [11:45:41] activities/awareness.da.html [11:45:41] activities/awareness.de.html [11:45:41] activities/awareness.el.html [11:45:41] activities/awareness.en.html [11:45:41] activities/awareness.es.html [11:45:41] activities/awareness.et.html [11:45:41] activities/awareness.fa.html [11:45:41] activities/awareness.fi.html [11:45:41] activities/awareness.fr.html [11:45:41] activities/awareness.hr.html [11:45:41] activities/awareness.hu.html [11:45:41] activities/awareness.it.html [11:45:41] activities/awareness.ja.html [11:45:41] activities/awareness.mk.html [11:45:41] activities/awareness.nb.html [11:45:41] activities/awareness.nl.html [11:45:41] activities/awareness.nn.html [11:45:41] activities/awareness.pl.html [11:45:41] activities/awareness.pt.html [11:45:41] activities/awareness.ro.html [11:45:41] activities/awareness.ru.html [11:45:41] activities/awareness.sk.html [11:45:41] activities/awareness.sl.html [11:45:41] activities/awareness.sq.html [11:45:41] activities/awareness.sr.html [11:45:41] activities/awareness.sv.html [11:45:41] activities/awareness.tr.html [11:45:41] activities/awareness.uk.html [11:45:41] activities/awareness.zh.html [11:45:41] activities/legal.ar.html [11:45:41] activities/legal.bg.html [11:45:41] activities/legal.bs.html [11:45:41] activities/legal.ca.html [11:45:41] activities/legal.cs.html [11:45:41] activities/legal.da.html [11:45:41] activities/legal.de.html [11:45:41] activities/legal.el.html [11:45:41] activities/legal.en.html [11:45:41] activities/legal.es.html [11:45:41] activities/legal.et.html [11:45:41] activities/legal.fa.html [11:45:41] activities/legal.fi.html [11:45:41] activities/legal.fr.html [11:45:41] activities/legal.hr.html [11:45:41] activities/legal.hu.html [11:45:41] activities/legal.it.html [11:45:41] activities/legal.ja.html [11:45:41] activities/legal.mk.html [11:45:41] activities/legal.nb.html [11:45:41] activities/legal.nl.html [11:45:41] activities/legal.nn.html [11:45:41] activities/legal.pl.html [11:45:41] activities/legal.pt.html [11:45:41] activities/legal.ro.html [11:45:41] activities/legal.ru.html [11:45:41] activities/legal.sk.html [11:45:41] activities/legal.sl.html [11:45:41] activities/legal.sq.html [11:45:41] activities/legal.sr.html [11:45:41] activities/legal.sv.html [11:45:41] activities/legal.tr.html [11:45:41] activities/legal.uk.html [11:45:41] activities/legal.zh.html [11:45:41] activities/policy.ar.html [11:45:41] activities/policy.bg.html [11:45:41] activities/policy.bs.html [11:45:41] activities/policy.ca.html [11:45:41] activities/policy.cs.html [11:45:41] activities/policy.da.html [11:45:41] activities/policy.de.html [11:45:41] activities/policy.el.html [11:45:41] activities/policy.en.html [11:45:41] activities/policy.es.html [11:45:41] activities/policy.et.html [11:45:41] activities/policy.fa.html [11:45:41] activities/policy.fi.html [11:45:41] activities/policy.fr.html [11:45:41] activities/policy.hr.html [11:45:41] activities/policy.hu.html [11:45:41] activities/policy.it.html [11:45:41] activities/policy.ja.html [11:45:41] activities/policy.mk.html [11:45:41] activities/policy.nb.html [11:45:41] activities/policy.nl.html [11:45:41] activities/policy.nn.html [11:45:41] activities/policy.pl.html [11:45:41] activities/policy.pt.html [11:45:41] activities/policy.ro.html [11:45:41] activities/policy.ru.html [11:45:41] activities/policy.sk.html [11:45:41] activities/policy.sl.html [11:45:41] activities/policy.sq.html [11:45:41] activities/policy.sr.html [11:45:41] activities/policy.sv.html [11:45:41] activities/policy.tr.html [11:45:41] activities/policy.uk.html [11:45:41] activities/policy.zh.html [11:45:41] activities/android/ [11:45:41] activities/android/android.ar.html [11:45:41] activities/android/android.bg.html [11:45:41] activities/android/android.bs.html [11:45:41] activities/android/android.ca.html [11:45:41] activities/android/android.cs.html [11:45:41] activities/android/android.da.html [11:45:41] activities/android/android.de.html [11:45:41] activities/android/android.el.html [11:45:41] activities/android/android.en.html [11:45:41] activities/android/android.es.html [11:45:41] activities/android/android.et.html [11:45:41] activities/android/android.fa.html [11:45:41] activities/android/android.fi.html [11:45:41] activities/android/android.fr.html [11:45:41] activities/android/android.hr.html [11:45:41] activities/android/android.hu.html [11:45:41] activities/android/android.it.html [11:45:41] activities/android/android.ja.html [11:45:41] activities/android/android.mk.html [11:45:41] activities/android/android.nb.html [11:45:41] activities/android/android.nl.html [11:45:41] activities/android/android.nn.html [11:45:41] activities/android/android.pl.html [11:45:41] activities/android/android.pt.html [11:45:41] activities/android/android.ro.html [11:45:41] activities/android/android.ru.html [11:45:41] activities/android/android.sk.html [11:45:41] activities/android/android.sl.html [11:45:41] activities/android/android.sq.html [11:45:41] activities/android/android.sr.html [11:45:41] activities/android/android.sv.html [11:45:41] activities/android/android.tr.html [11:45:41] activities/android/android.uk.html [11:45:41] activities/android/android.zh.html [11:45:41] activities/android/is-flashing-legal.ar.html [11:45:41] activities/android/is-flashing-legal.bg.html [11:45:41] activities/android/is-flashing-legal.bs.html [11:45:41] activities/android/is-flashing-legal.ca.html [11:45:41] activities/android/is-flashing-legal.cs.html [11:45:41] activities/android/is-flashing-legal.da.html [11:45:41] activities/android/is-flashing-legal.de.html [11:45:41] activities/android/is-flashing-legal.el.html [11:45:41] activities/android/is-flashing-legal.en.html [11:45:41] activities/android/is-flashing-legal.es.html [11:45:41] activities/android/is-flashing-legal.et.html [11:45:41] activities/android/is-flashing-legal.fa.html [11:45:41] activities/android/is-flashing-legal.fi.html [11:45:41] activities/android/is-flashing-legal.fr.html [11:45:41] activities/android/is-flashing-legal.hr.html [11:45:41] activities/android/is-flashing-legal.html.ar -> is-flashing-legal.ar.html [11:45:41] activities/android/is-flashing-legal.html.bg -> is-flashing-legal.bg.html [11:45:41] activities/android/is-flashing-legal.html.bs -> is-flashing-legal.bs.html [11:45:41] activities/android/is-flashing-legal.html.ca -> is-flashing-legal.ca.html [11:45:41] activities/android/is-flashing-legal.html.cs -> is-flashing-legal.cs.html [11:45:41] activities/android/is-flashing-legal.html.da -> is-flashing-legal.da.html [11:45:41] activities/android/is-flashing-legal.html.de -> is-flashing-legal.de.html [11:45:41] activities/android/is-flashing-legal.html.el -> is-flashing-legal.el.html [11:45:41] activities/android/is-flashing-legal.html.en -> is-flashing-legal.en.html [11:45:41] activities/android/is-flashing-legal.html.es -> is-flashing-legal.es.html [11:45:41] activities/android/is-flashing-legal.html.et -> is-flashing-legal.et.html [11:45:41] activities/android/is-flashing-legal.html.fa -> is-flashing-legal.fa.html [11:45:41] activities/android/is-flashing-legal.html.fi -> is-flashing-legal.fi.html [11:45:41] activities/android/is-flashing-legal.html.fr -> is-flashing-legal.fr.html [11:45:41] activities/android/is-flashing-legal.html.hr -> is-flashing-legal.hr.html [11:45:41] activities/android/is-flashing-legal.html.hu -> is-flashing-legal.hu.html [11:45:41] activities/android/is-flashing-legal.html.it -> is-flashing-legal.it.html [11:45:41] activities/android/is-flashing-legal.html.ja -> is-flashing-legal.ja.html [11:45:41] activities/android/is-flashing-legal.html.mk -> is-flashing-legal.mk.html [11:45:41] activities/android/is-flashing-legal.html.nb -> is-flashing-legal.nb.html [11:45:41] activities/android/is-flashing-legal.html.nl -> is-flashing-legal.nl.html [11:45:41] activities/android/is-flashing-legal.html.nn -> is-flashing-legal.nn.html [11:45:41] activities/android/is-flashing-legal.html.pl -> is-flashing-legal.pl.html [11:45:41] activities/android/is-flashing-legal.html.pt -> is-flashing-legal.pt.html [11:45:41] activities/android/is-flashing-legal.html.ro -> is-flashing-legal.ro.html [11:45:41] activities/android/is-flashing-legal.html.ru -> is-flashing-legal.ru.html [11:45:41] activities/android/is-flashing-legal.html.sk -> is-flashing-legal.sk.html [11:45:41] activities/android/is-flashing-legal.html.sl -> is-flashing-legal.sl.html [11:45:41] activities/android/is-flashing-legal.html.sq -> is-flashing-legal.sq.html [11:45:41] activities/android/is-flashing-legal.html.sr -> is-flashing-legal.sr.html [11:45:41] activities/android/is-flashing-legal.html.sv -> is-flashing-legal.sv.html [11:45:41] activities/android/is-flashing-legal.html.tr -> is-flashing-legal.tr.html [11:45:41] activities/android/is-flashing-legal.html.uk -> is-flashing-legal.uk.html [11:45:41] activities/android/is-flashing-legal.html.zh -> is-flashing-legal.zh.html [11:45:41] activities/android/is-flashing-legal.hu.html [11:45:41] activities/android/is-flashing-legal.it.html [11:45:41] activities/android/is-flashing-legal.ja.html [11:45:41] activities/android/is-flashing-legal.mk.html [11:45:41] activities/android/is-flashing-legal.nb.html [11:45:41] activities/android/is-flashing-legal.nl.html [11:45:41] activities/android/is-flashing-legal.nn.html [11:45:41] activities/android/is-flashing-legal.pl.html [11:45:41] activities/android/is-flashing-legal.pt.html [11:45:41] activities/android/is-flashing-legal.ro.html [11:45:41] activities/android/is-flashing-legal.ru.html [11:45:41] activities/android/is-flashing-legal.sk.html [11:45:41] activities/android/is-flashing-legal.sl.html [11:45:41] activities/android/is-flashing-legal.sq.html [11:45:41] activities/android/is-flashing-legal.sr.html [11:45:41] activities/android/is-flashing-legal.sv.html [11:45:41] activities/android/is-flashing-legal.tr.html [11:45:41] activities/android/is-flashing-legal.uk.html [11:45:41] activities/android/is-flashing-legal.zh.html [11:45:41] activities/android/liberate.ar.html [11:45:41] activities/android/liberate.bg.html [11:45:41] activities/android/liberate.bs.html [11:45:41] activities/android/liberate.ca.html [11:45:41] activities/android/liberate.cs.html [11:45:41] activities/android/liberate.da.html [11:45:41] activities/android/liberate.de.html [11:45:41] activities/android/liberate.el.html [11:45:41] activities/android/liberate.en.html [11:45:41] activities/android/liberate.es.html [11:45:41] activities/android/liberate.et.html [11:45:41] activities/android/liberate.fa.html [11:45:41] activities/android/liberate.fi.html [11:45:41] activities/android/liberate.fr.html [11:45:41] activities/android/liberate.hr.html [11:45:41] activities/android/liberate.hu.html [11:45:41] activities/android/liberate.it.html [11:45:41] activities/android/liberate.ja.html [11:45:41] activities/android/liberate.mk.html [11:45:41] activities/android/liberate.nb.html [11:45:41] activities/android/liberate.nl.html [11:45:41] activities/android/liberate.nn.html [11:45:41] activities/android/liberate.pl.html [11:45:41] activities/android/liberate.pt.html [11:45:41] activities/android/liberate.ro.html [11:45:41] activities/android/liberate.ru.html [11:45:41] activities/android/liberate.sk.html [11:45:41] activities/android/liberate.sl.html [11:45:41] activities/android/liberate.sq.html [11:45:41] activities/android/liberate.sr.html [11:45:41] activities/android/liberate.sv.html [11:45:41] activities/android/liberate.tr.html [11:45:41] activities/android/liberate.uk.html [11:45:41] activities/android/liberate.zh.html [11:45:41] activities/android/sustainability.ar.html [11:45:41] activities/android/sustainability.bg.html [11:45:41] activities/android/sustainability.bs.html [11:45:41] activities/android/sustainability.ca.html [11:45:41] activities/android/sustainability.cs.html [11:45:41] activities/android/sustainability.da.html [11:45:41] activities/android/sustainability.de.html [11:45:41] activities/android/sustainability.el.html [11:45:41] activities/android/sustainability.en.html [11:45:41] activities/android/sustainability.es.html [11:45:41] activities/android/sustainability.et.html [11:45:41] activities/android/sustainability.fa.html [11:45:41] activities/android/sustainability.fi.html [11:45:41] activities/android/sustainability.fr.html [11:45:41] activities/android/sustainability.hr.html [11:45:41] activities/android/sustainability.html.ar -> sustainability.ar.html [11:45:41] activities/android/sustainability.html.bg -> sustainability.bg.html [11:45:41] activities/android/sustainability.html.bs -> sustainability.bs.html [11:45:41] activities/android/sustainability.html.ca -> sustainability.ca.html [11:45:41] activities/android/sustainability.html.cs -> sustainability.cs.html [11:45:41] activities/android/sustainability.html.da -> sustainability.da.html [11:45:41] activities/android/sustainability.html.de -> sustainability.de.html [11:45:41] activities/android/sustainability.html.el -> sustainability.el.html [11:45:41] activities/android/sustainability.html.en -> sustainability.en.html [11:45:41] activities/android/sustainability.html.es -> sustainability.es.html [11:45:41] activities/android/sustainability.html.et -> sustainability.et.html [11:45:41] activities/android/sustainability.html.fa -> sustainability.fa.html [11:45:41] activities/android/sustainability.html.fi -> sustainability.fi.html [11:45:41] activities/android/sustainability.html.fr -> sustainability.fr.html [11:45:41] activities/android/sustainability.html.hr -> sustainability.hr.html [11:45:41] activities/android/sustainability.html.hu -> sustainability.hu.html [11:45:41] activities/android/sustainability.html.it -> sustainability.it.html [11:45:41] activities/android/sustainability.html.ja -> sustainability.ja.html [11:45:41] activities/android/sustainability.html.mk -> sustainability.mk.html [11:45:41] activities/android/sustainability.html.nb -> sustainability.nb.html [11:45:41] activities/android/sustainability.html.nl -> sustainability.nl.html [11:45:41] activities/android/sustainability.html.nn -> sustainability.nn.html [11:45:41] activities/android/sustainability.html.pl -> sustainability.pl.html [11:45:41] activities/android/sustainability.html.pt -> sustainability.pt.html [11:45:41] activities/android/sustainability.html.ro -> sustainability.ro.html [11:45:41] activities/android/sustainability.html.ru -> sustainability.ru.html [11:45:41] activities/android/sustainability.html.sk -> sustainability.sk.html [11:45:41] activities/android/sustainability.html.sl -> sustainability.sl.html [11:45:41] activities/android/sustainability.html.sq -> sustainability.sq.html [11:45:41] activities/android/sustainability.html.sr -> sustainability.sr.html [11:45:41] activities/android/sustainability.html.sv -> sustainability.sv.html [11:45:41] activities/android/sustainability.html.tr -> sustainability.tr.html [11:45:41] activities/android/sustainability.html.uk -> sustainability.uk.html [11:45:41] activities/android/sustainability.html.zh -> sustainability.zh.html [11:45:41] activities/android/sustainability.hu.html [11:45:41] activities/android/sustainability.it.html [11:45:41] activities/android/sustainability.ja.html [11:45:41] activities/android/sustainability.mk.html [11:45:41] activities/android/sustainability.nb.html [11:45:41] activities/android/sustainability.nl.html [11:45:41] activities/android/sustainability.nn.html [11:45:41] activities/android/sustainability.pl.html [11:45:41] activities/android/sustainability.pt.html [11:45:41] activities/android/sustainability.ro.html [11:45:41] activities/android/sustainability.ru.html [11:45:41] activities/android/sustainability.sk.html [11:45:41] activities/android/sustainability.sl.html [11:45:41] activities/android/sustainability.sq.html [11:45:41] activities/android/sustainability.sr.html [11:45:41] activities/android/sustainability.sv.html [11:45:41] activities/android/sustainability.tr.html [11:45:41] activities/android/sustainability.uk.html [11:45:41] activities/android/sustainability.zh.html [11:45:41] activities/upcyclingandroid/openletter.ar.html [11:45:41] activities/upcyclingandroid/openletter.bg.html [11:45:41] activities/upcyclingandroid/openletter.bs.html [11:45:41] activities/upcyclingandroid/openletter.ca.html [11:45:41] activities/upcyclingandroid/openletter.cs.html [11:45:41] activities/upcyclingandroid/openletter.da.html [11:45:41] activities/upcyclingandroid/openletter.de.html [11:45:41] activities/upcyclingandroid/openletter.el.html [11:45:41] activities/upcyclingandroid/openletter.en.html [11:45:41] activities/upcyclingandroid/openletter.es.html [11:45:41] activities/upcyclingandroid/openletter.et.html [11:45:41] activities/upcyclingandroid/openletter.fa.html [11:45:41] activities/upcyclingandroid/openletter.fi.html [11:45:41] activities/upcyclingandroid/openletter.fr.html [11:45:41] activities/upcyclingandroid/openletter.hr.html [11:45:41] activities/upcyclingandroid/openletter.hu.html [11:45:41] activities/upcyclingandroid/openletter.it.html [11:45:41] activities/upcyclingandroid/openletter.ja.html [11:45:41] activities/upcyclingandroid/openletter.mk.html [11:45:41] activities/upcyclingandroid/openletter.nb.html [11:45:41] activities/upcyclingandroid/openletter.nl.html [11:45:41] activities/upcyclingandroid/openletter.nn.html [11:45:41] activities/upcyclingandroid/openletter.pl.html [11:45:41] activities/upcyclingandroid/openletter.pt.html [11:45:41] activities/upcyclingandroid/openletter.ro.html [11:45:41] activities/upcyclingandroid/openletter.ru.html [11:45:41] activities/upcyclingandroid/openletter.sk.html [11:45:41] activities/upcyclingandroid/openletter.sl.html [11:45:41] activities/upcyclingandroid/openletter.sq.html [11:45:41] activities/upcyclingandroid/openletter.sr.html [11:45:41] activities/upcyclingandroid/openletter.sv.html [11:45:42] activities/upcyclingandroid/openletter.tr.html [11:45:42] activities/upcyclingandroid/openletter.uk.html [11:45:42] activities/upcyclingandroid/openletter.zh.html [11:45:42] search/index.js [11:45:42] source/activities/android/ [11:45:42] source/activities/android/android.ca.xhtml [11:45:42] source/activities/android/android.da.xhtml [11:45:42] source/activities/android/android.de.xhtml [11:45:42] source/activities/android/android.el.xhtml [11:45:42] source/activities/android/android.en.xhtml [11:45:42] source/activities/android/android.es.xhtml [11:45:42] source/activities/android/android.fr.xhtml [11:45:42] source/activities/android/android.it.xhtml [11:45:42] source/activities/android/android.nl.xhtml [11:45:42] source/activities/android/android.pt.xhtml [11:45:42] source/activities/android/android.ru.xhtml [11:45:42] source/activities/android/android.sq.xhtml [11:45:42] source/activities/android/android.sr.xhtml [11:45:42] source/activities/android/android.tr.xhtml [11:45:42] source/activities/android/is-flashing-legal.en.xhtml [11:45:42] source/activities/android/is-flashing-legal.it.xhtml [11:45:42] source/activities/android/liberate.en.xhtml [11:45:42] source/activities/android/sustainability.en.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.ca.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.de.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.el.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.en.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.es.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.fr.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.it.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.nl.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.pl.xhtml [11:45:42] source/activities/upcyclingandroid/openletter.pt.xhtml [11:45:42] tags/tagged-awareness.ar.html [11:45:42] tags/tagged-awareness.bg.html [11:45:42] tags/tagged-awareness.bs.html [11:45:42] tags/tagged-awareness.ca.html [11:45:42] tags/tagged-awareness.cs.html [11:45:42] tags/tagged-awareness.da.html [11:45:42] tags/tagged-awareness.de.html [11:45:42] tags/tagged-awareness.el.html [11:45:42] tags/tagged-awareness.en.html [11:45:42] tags/tagged-awareness.es.html [11:45:42] tags/tagged-awareness.et.html [11:45:42] tags/tagged-awareness.fa.html [11:45:42] tags/tagged-awareness.fi.html [11:45:42] tags/tagged-awareness.fr.html [11:45:42] tags/tagged-awareness.hr.html [11:45:42] tags/tagged-awareness.hu.html [11:45:42] tags/tagged-awareness.it.html [11:45:42] tags/tagged-awareness.ja.html [11:45:42] tags/tagged-awareness.mk.html [11:45:42] tags/tagged-awareness.nb.html [11:45:42] tags/tagged-awareness.nl.html [11:45:42] tags/tagged-awareness.nn.html [11:45:42] tags/tagged-awareness.pl.html [11:45:42] tags/tagged-awareness.pt.html [11:45:42] tags/tagged-awareness.ro.html [11:45:42] tags/tagged-awareness.ru.html [11:45:42] tags/tagged-awareness.sk.html [11:45:42] tags/tagged-awareness.sl.html [11:45:42] tags/tagged-awareness.sq.html [11:45:42] tags/tagged-awareness.sr.html [11:45:42] tags/tagged-awareness.sv.html [11:45:42] tags/tagged-awareness.tr.html [11:45:42] tags/tagged-awareness.uk.html [11:45:42] tags/tagged-awareness.zh.html [11:45:42] [11:45:42] sent 9,711,883 bytes received 100,534 bytes 6,541,611.33 bytes/sec [11:45:42] total size is 1,486,974,745 speedup is 151.54