Build report

Start time:
2024-09-23 08:28:01 (UTC)
End time:
2024-09-23 08:32:24 (UTC)
Duration:
4 minutes 23 seconds
Termination Status:
Success
Schedule full rebuild
Previous builds
GIT changes: at 2024-09-23 08:28:02 (UTC)
Updating 6fbad2ea3c..1023dbabc9
Fast-forward
 fsfe.org/news/2024/news-20240920-01.en.xhtml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
checked
Phase 1: 1 minute 2 seconds
[08:28:02] Starting phase 1
[08:28:02] *   Spawning 4 processes
[08:28:02] *   Indexing 5405 files
[08:28:18] *   Indexation done in 16 seconds!
[08:28:18] *   Written index to /srv/www/fsfe.org_git/fsfe.org/search/index.js
[08:28:18] * Creating search index
[08:28:18] * Updating XSL stylesheets
[08:28:19] * Preparing subdirectory fsfe.org/events
[08:28:19] * Preparing subdirectory fsfe.org/news
[08:28:19] *   Generating 2024/.news-20240920-01.en.xml
[08:28:19] * Updating default stylesheets
[08:28:19] * Updating local menus
[08:28:20] * Generating tag maps
[08:28:49] * Updating tag lists
[08:28:55] * Updating XML lists
[08:29:01] * Checking contents of XML lists
[08:29:01] *   Touching fsfe.org/activities/deviceneutrality/.index.xmllist
[08:29:01] *   Touching fsfe.org/activities/dma/.dma.xmllist
[08:29:01] *   Touching fsfe.org/activities/publiccode/.publiccode.xmllist
[08:29:01] *   Touching fsfe.org/activities/routers/.routers.xmllist
[08:29:01] *   Touching fsfe.org/activities/yh4f/.index.xmllist
[08:29:01] *   Touching fsfe.org/contribute/web/.features.xmllist
[08:29:02] *   Touching fsfe.org/freesoftware/education/.education.xmllist
[08:29:02] *   Touching fsfe.org/.index.xmllist
[08:29:02] *   Touching fsfe.org/news/.news.xmllist
[08:29:02] *   Touching fsfe.org/press/.press.xmllist
[08:29:02] *   Touching fsfe.org/tags/.tagged-ada-zangemann.xmllist
[08:29:02] *   Touching fsfe.org/tags/.tagged-AI.xmllist
[08:29:02] *   Touching fsfe.org/tags/.tagged-annual-report.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-community.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-deviceneutrality.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-de.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-education.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-european-commission.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-fosdem.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-front-page.xmllist
[08:29:03] *   Touching fsfe.org/tags/.tagged-highlights.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-it.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-legal.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-licensing.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-localgroup.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-ngi.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-nl.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-pmpc.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-podcast.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-press.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-reuse.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-routers.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-se.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-tech-teams.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-translations.xmllist
[08:29:04] *   Touching fsfe.org/tags/.tagged-yh4f.xmllist
[08:29:05] Finishing phase 1
Phase 2 Makefile: 0 minutes 1 second
# -----------------------------------------------------------------------------
# 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/fsfe.org/status.fsfe.org/fsfe.org/data
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 -L "$(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'   -not -name '*.nix' ) $(INPUTDIR)/fsfe.org/order/data/items.en.xml

# 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 "$<" "$@"

# -----------------------------------------------------------------------------
# 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 -path "$(STATUSDIR)" -prune \
	  | sort \
	  | diff - "$(STATUSDIR)/manifest.sorted" \
	  | sed -rn 's;^< ;;p' \
	  | while read file; do echo "* Deleting $${file}"; rm "$${file}"; done

# -----------------------------------------------------------------------------
Phase 2: 3 minutes 5 seconds
[08:29:05] Starting phase 2
[08:29:11] * Building fsfe.org/activities/deviceneutrality/index.ar.html
[08:29:11] * Building fsfe.org/activities/deviceneutrality/index.bg.html
[08:29:11] * Building fsfe.org/activities/deviceneutrality/index.bs.html
[08:29:11] * Building fsfe.org/activities/deviceneutrality/index.ca.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.cs.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.da.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.de.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.el.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.en.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.es.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.et.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.fa.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.fi.html
[08:29:12] * Building fsfe.org/activities/deviceneutrality/index.fr.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.hr.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.hu.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.it.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.ja.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.mk.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.nb.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.nl.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.nn.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.pl.html
[08:29:13] * Building fsfe.org/activities/deviceneutrality/index.pt.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.ro.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.ru.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.sk.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.sl.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.sq.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.sr.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.sv.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.tr.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.uk.html
[08:29:14] * Building fsfe.org/activities/deviceneutrality/index.zh.html
[08:29:14] * Building fsfe.org/activities/dma/dma.ar.html
[08:29:14] * Building fsfe.org/activities/dma/dma.bg.html
[08:29:15] * Building fsfe.org/activities/dma/dma.bs.html
[08:29:15] * Building fsfe.org/activities/dma/dma.ca.html
[08:29:15] * Building fsfe.org/activities/dma/dma.cs.html
[08:29:15] * Building fsfe.org/activities/dma/dma.da.html
[08:29:15] * Building fsfe.org/activities/dma/dma.de.html
[08:29:15] * Building fsfe.org/activities/dma/dma.el.html
[08:29:15] * Building fsfe.org/activities/dma/dma.en.html
[08:29:15] * Building fsfe.org/activities/dma/dma.es.html
[08:29:16] * Building fsfe.org/activities/dma/dma.et.html
[08:29:16] * Building fsfe.org/activities/dma/dma.fa.html
[08:29:16] * Building fsfe.org/activities/dma/dma.fi.html
[08:29:16] * Building fsfe.org/activities/dma/dma.fr.html
[08:29:16] * Building fsfe.org/activities/dma/dma.hr.html
[08:29:16] * Building fsfe.org/activities/dma/dma.hu.html
[08:29:16] * Building fsfe.org/activities/dma/dma.it.html
[08:29:16] * Building fsfe.org/activities/dma/dma.ja.html
[08:29:16] * Building fsfe.org/activities/dma/dma.mk.html
[08:29:16] * Building fsfe.org/activities/dma/dma.nb.html
[08:29:16] * Building fsfe.org/activities/dma/dma.nl.html
[08:29:16] * Building fsfe.org/activities/dma/dma.nn.html
[08:29:17] * Building fsfe.org/activities/dma/dma.pl.html
[08:29:17] * Building fsfe.org/activities/dma/dma.pt.html
[08:29:17] * Building fsfe.org/activities/dma/dma.ro.html
[08:29:17] * Building fsfe.org/activities/dma/dma.ru.html
[08:29:17] * Building fsfe.org/activities/dma/dma.sk.html
[08:29:17] * Building fsfe.org/activities/dma/dma.sl.html
[08:29:17] * Building fsfe.org/activities/dma/dma.sq.html
[08:29:17] * Building fsfe.org/activities/dma/dma.sr.html
[08:29:18] * Building fsfe.org/activities/dma/dma.sv.html
[08:29:18] * Building fsfe.org/activities/dma/dma.tr.html
[08:29:18] * Building fsfe.org/activities/dma/dma.uk.html
[08:29:18] * Building fsfe.org/activities/dma/dma.zh.html
[08:29:18] * Building fsfe.org/activities/publiccode/publiccode.ar.html
[08:29:18] * Building fsfe.org/activities/publiccode/publiccode.bg.html
[08:29:18] * Building fsfe.org/activities/publiccode/publiccode.bs.html
[08:29:18] * Building fsfe.org/activities/publiccode/publiccode.ca.html
[08:29:19] * Building fsfe.org/activities/publiccode/publiccode.cs.html
[08:29:19] * Building fsfe.org/activities/publiccode/publiccode.da.html
[08:29:19] * Building fsfe.org/activities/publiccode/publiccode.de.html
[08:29:19] * Building fsfe.org/activities/publiccode/publiccode.el.html
[08:29:20] * Building fsfe.org/activities/publiccode/publiccode.en.html
[08:29:20] * Building fsfe.org/activities/publiccode/publiccode.es.html
[08:29:20] * Building fsfe.org/activities/publiccode/publiccode.et.html
[08:29:20] * Building fsfe.org/activities/publiccode/publiccode.fa.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.fi.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.fr.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.hr.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.hu.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.it.html
[08:29:21] * Building fsfe.org/activities/publiccode/publiccode.ja.html
[08:29:22] * Building fsfe.org/activities/publiccode/publiccode.mk.html
[08:29:22] * Building fsfe.org/activities/publiccode/publiccode.nb.html
[08:29:22] * Building fsfe.org/activities/publiccode/publiccode.nl.html
[08:29:22] * Building fsfe.org/activities/publiccode/publiccode.nn.html
[08:29:22] * Building fsfe.org/activities/publiccode/publiccode.pl.html
[08:29:23] * Building fsfe.org/activities/publiccode/publiccode.pt.html
[08:29:23] * Building fsfe.org/activities/publiccode/publiccode.ro.html
[08:29:23] * Building fsfe.org/activities/publiccode/publiccode.ru.html
[08:29:23] * Building fsfe.org/activities/publiccode/publiccode.sk.html
[08:29:23] * Building fsfe.org/activities/publiccode/publiccode.sl.html
[08:29:24] * Building fsfe.org/activities/publiccode/publiccode.sq.html
[08:29:24] * Building fsfe.org/activities/publiccode/publiccode.sr.html
[08:29:24] * Building fsfe.org/activities/publiccode/publiccode.sv.html
[08:29:24] * Building fsfe.org/activities/publiccode/publiccode.tr.html
[08:29:25] * Building fsfe.org/activities/publiccode/publiccode.uk.html
[08:29:25] * Building fsfe.org/activities/publiccode/publiccode.zh.html
[08:29:25] * Building fsfe.org/activities/routers/routers.ar.html
[08:29:25] * Building fsfe.org/activities/routers/routers.bg.html
[08:29:25] * Building fsfe.org/activities/routers/routers.bs.html
[08:29:26] * Building fsfe.org/activities/routers/routers.ca.html
[08:29:26] * Building fsfe.org/activities/routers/routers.cs.html
[08:29:26] * Building fsfe.org/activities/routers/routers.da.html
[08:29:26] * Building fsfe.org/activities/routers/routers.de.html
[08:29:26] * Building fsfe.org/activities/routers/routers.el.html
[08:29:26] * Building fsfe.org/activities/routers/routers.en.html
[08:29:26] * Building fsfe.org/activities/routers/routers.es.html
[08:29:26] * Building fsfe.org/activities/routers/routers.et.html
[08:29:27] * Building fsfe.org/activities/routers/routers.fa.html
[08:29:27] * Building fsfe.org/activities/routers/routers.fi.html
[08:29:27] * Building fsfe.org/activities/routers/routers.fr.html
[08:29:27] * Building fsfe.org/activities/routers/routers.hr.html
[08:29:27] * Building fsfe.org/activities/routers/routers.hu.html
[08:29:27] * Building fsfe.org/activities/routers/routers.it.html
[08:29:27] * Building fsfe.org/activities/routers/routers.ja.html
[08:29:27] * Building fsfe.org/activities/routers/routers.mk.html
[08:29:28] * Building fsfe.org/activities/routers/routers.nb.html
[08:29:28] * Building fsfe.org/activities/routers/routers.nl.html
[08:29:28] * Building fsfe.org/activities/routers/routers.nn.html
[08:29:28] * Building fsfe.org/activities/routers/routers.pl.html
[08:29:28] * Building fsfe.org/activities/routers/routers.pt.html
[08:29:28] * Building fsfe.org/activities/routers/routers.ro.html
[08:29:28] * Building fsfe.org/activities/routers/routers.ru.html
[08:29:28] * Building fsfe.org/activities/routers/routers.sk.html
[08:29:28] * Building fsfe.org/activities/routers/routers.sl.html
[08:29:29] * Building fsfe.org/activities/routers/routers.sq.html
[08:29:29] * Building fsfe.org/activities/routers/routers.sr.html
[08:29:29] * Building fsfe.org/activities/routers/routers.sv.html
[08:29:29] * Building fsfe.org/activities/routers/routers.tr.html
[08:29:29] * Building fsfe.org/activities/routers/routers.uk.html
[08:29:29] * Building fsfe.org/activities/routers/routers.zh.html
[08:29:29] * Building fsfe.org/activities/yh4f/index.ar.html
[08:29:29] * Building fsfe.org/activities/yh4f/index.bg.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.bs.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.ca.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.cs.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.da.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.de.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.el.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.en.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.es.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.et.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.fa.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.fi.html
[08:29:30] * Building fsfe.org/activities/yh4f/index.fr.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.hr.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.hu.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.it.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.ja.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.mk.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.nb.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.nl.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.nn.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.pl.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.pt.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.ro.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.ru.html
[08:29:31] * Building fsfe.org/activities/yh4f/index.sk.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.sl.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.sq.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.sr.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.sv.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.tr.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.uk.html
[08:29:32] * Building fsfe.org/activities/yh4f/index.zh.html
[08:29:32] * Building fsfe.org/contribute/web/features.ar.html
[08:29:32] * Building fsfe.org/contribute/web/features.bg.html
[08:29:32] * Building fsfe.org/contribute/web/features.bs.html
[08:29:32] * Building fsfe.org/contribute/web/features.ca.html
[08:29:32] * Building fsfe.org/contribute/web/features.cs.html
[08:29:32] * Building fsfe.org/contribute/web/features.da.html
[08:29:32] * Building fsfe.org/contribute/web/features.de.html
[08:29:32] * Building fsfe.org/contribute/web/features.el.html
[08:29:33] * Building fsfe.org/contribute/web/features.en.html
[08:29:33] * Building fsfe.org/contribute/web/features.es.html
[08:29:33] * Building fsfe.org/contribute/web/features.et.html
[08:29:33] * Building fsfe.org/contribute/web/features.fa.html
[08:29:33] * Building fsfe.org/contribute/web/features.fi.html
[08:29:33] * Building fsfe.org/contribute/web/features.fr.html
[08:29:33] * Building fsfe.org/contribute/web/features.hr.html
[08:29:33] * Building fsfe.org/contribute/web/features.hu.html
[08:29:33] * Building fsfe.org/contribute/web/features.it.html
[08:29:33] * Building fsfe.org/contribute/web/features.ja.html
[08:29:33] * Building fsfe.org/contribute/web/features.mk.html
[08:29:33] * Building fsfe.org/contribute/web/features.nb.html
[08:29:33] * Building fsfe.org/contribute/web/features.nl.html
[08:29:33] * Building fsfe.org/contribute/web/features.nn.html
[08:29:33] * Building fsfe.org/contribute/web/features.pl.html
[08:29:33] * Building fsfe.org/contribute/web/features.pt.html
[08:29:34] * Building fsfe.org/contribute/web/features.ro.html
[08:29:34] * Building fsfe.org/contribute/web/features.ru.html
[08:29:34] * Building fsfe.org/contribute/web/features.sk.html
[08:29:34] * Building fsfe.org/contribute/web/features.sl.html
[08:29:34] * Building fsfe.org/contribute/web/features.sq.html
[08:29:34] * Building fsfe.org/contribute/web/features.sr.html
[08:29:34] * Building fsfe.org/contribute/web/features.sv.html
[08:29:34] * Building fsfe.org/contribute/web/features.tr.html
[08:29:34] * Building fsfe.org/contribute/web/features.uk.html
[08:29:34] * Building fsfe.org/contribute/web/features.zh.html
[08:29:34] * Building fsfe.org/freesoftware/education/education.ar.html
[08:29:34] * Building fsfe.org/freesoftware/education/education.bg.html
[08:29:34] * Building fsfe.org/freesoftware/education/education.bs.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.ca.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.cs.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.da.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.de.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.el.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.en.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.es.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.et.html
[08:29:35] * Building fsfe.org/freesoftware/education/education.fa.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.fi.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.fr.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.hr.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.hu.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.it.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.ja.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.mk.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.nb.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.nl.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.nn.html
[08:29:36] * Building fsfe.org/freesoftware/education/education.pl.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.pt.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.ro.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.ru.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.sk.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.sl.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.sq.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.sr.html
[08:29:37] * Building fsfe.org/freesoftware/education/education.sv.html
[08:29:38] * Building fsfe.org/freesoftware/education/education.tr.html
[08:29:38] * Building fsfe.org/freesoftware/education/education.uk.html
[08:29:38] * Building fsfe.org/freesoftware/education/education.zh.html
[08:29:38] * Building fsfe.org/index.ar.html
[08:29:38] * Building fsfe.org/index.bg.html
[08:29:38] * Building fsfe.org/index.bs.html
[08:29:38] * Building fsfe.org/index.ca.html
[08:29:39] * Building fsfe.org/index.cs.html
[08:29:40] * Building fsfe.org/index.da.html
[08:29:40] * Building fsfe.org/index.de.html
[08:29:40] * Building fsfe.org/index.el.html
[08:29:41] * Building fsfe.org/index.en.html
[08:29:41] * Building fsfe.org/index.es.html
[08:29:41] * Building fsfe.org/index.et.html
[08:29:41] * Building fsfe.org/index.fa.html
[08:29:43] * Building fsfe.org/index.fi.html
[08:29:43] * Building fsfe.org/index.fr.html
[08:29:43] * Building fsfe.org/index.hr.html
[08:29:43] * Building fsfe.org/index.hu.html
[08:29:44] * Building fsfe.org/index.it.html
[08:29:44] * Building fsfe.org/index.ja.html
[08:29:45] * Building fsfe.org/index.mk.html
[08:29:45] * Building fsfe.org/index.nb.html
[08:29:46] * Building fsfe.org/index.nl.html
[08:29:46] * Building fsfe.org/index.nn.html
[08:29:46] * Building fsfe.org/index.pl.html
[08:29:46] * Building fsfe.org/index.pt.html
[08:29:47] * Building fsfe.org/index.ro.html
[08:29:47] * Building fsfe.org/index.ru.html
[08:29:48] * Building fsfe.org/index.sk.html
[08:29:48] * Building fsfe.org/index.sl.html
[08:29:49] * Building fsfe.org/index.sq.html
[08:29:49] * Building fsfe.org/index.sr.html
[08:29:49] * Building fsfe.org/index.sv.html
[08:29:49] * Building fsfe.org/index.tr.html
[08:29:50] * Building fsfe.org/index.uk.html
[08:29:50] * Building fsfe.org/index.zh.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.ar.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.bg.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.bs.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.ca.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.cs.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.da.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.de.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.el.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.en.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.es.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.et.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.fa.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.fi.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.fr.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.hr.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.hu.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.it.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.ja.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.mk.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.nb.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.nl.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.nn.html
[08:29:52] * Building fsfe.org/news/2024/news-20240920-01.pl.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.pt.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.ro.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.ru.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.sk.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.sl.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.sq.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.sr.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.sv.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.tr.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.uk.html
[08:29:53] * Building fsfe.org/news/2024/news-20240920-01.zh.html
[08:29:53] * Building fsfe.org/news/news.ar.html
[08:29:53] * Building fsfe.org/news/news.bg.html
[08:29:53] * Building fsfe.org/news/news.bs.html
[08:29:53] * Building fsfe.org/news/news.ca.html
[08:29:54] * Building fsfe.org/news/news.cs.html
[08:29:54] * Building fsfe.org/news/news.da.html
[08:29:54] * Building fsfe.org/news/news.de.html
[08:29:54] * Building fsfe.org/news/news.el.html
[08:29:55] * Building fsfe.org/news/news.en.html
[08:29:55] * Building fsfe.org/news/news.es.html
[08:29:55] * Building fsfe.org/news/news.et.html
[08:29:55] * Building fsfe.org/news/news.fa.html
[08:29:56] * Building fsfe.org/news/news.fi.html
[08:29:56] * Building fsfe.org/news/news.fr.html
[08:29:56] * Building fsfe.org/news/news.hr.html
[08:29:56] * Building fsfe.org/news/news.hu.html
[08:29:57] * Building fsfe.org/news/news.it.html
[08:29:57] * Building fsfe.org/news/news.ja.html
[08:29:57] * Building fsfe.org/news/news.mk.html
[08:29:58] * Building fsfe.org/news/news.nb.html
[08:29:59] * Building fsfe.org/news/news.nl.html
[08:29:59] * Building fsfe.org/news/news.nn.html
[08:29:59] * Building fsfe.org/news/news.pl.html
[08:29:59] * Building fsfe.org/news/news.pt.html
[08:30:00] * Building fsfe.org/news/news.ro.html
[08:30:00] * Building fsfe.org/news/news.ru.html
[08:30:00] * Building fsfe.org/news/news.sk.html
[08:30:00] * Building fsfe.org/news/news.sl.html
[08:30:01] * Building fsfe.org/news/news.sq.html
[08:30:01] * Building fsfe.org/news/news.sr.html
[08:30:01] * Building fsfe.org/news/news.sv.html
[08:30:01] * Building fsfe.org/news/news.tr.html
[08:30:02] * Building fsfe.org/news/news.uk.html
[08:30:02] * Building fsfe.org/news/news.zh.html
[08:30:02] * Building fsfe.org/press/press.ar.html
[08:30:02] * Building fsfe.org/press/press.bg.html
[08:30:03] * Building fsfe.org/press/press.bs.html
[08:30:03] * Building fsfe.org/press/press.ca.html
[08:30:03] * Building fsfe.org/press/press.cs.html
[08:30:03] * Building fsfe.org/press/press.da.html
[08:30:03] * Building fsfe.org/press/press.de.html
[08:30:03] * Building fsfe.org/press/press.el.html
[08:30:03] * Building fsfe.org/press/press.en.html
[08:30:03] * Building fsfe.org/press/press.es.html
[08:30:03] * Building fsfe.org/press/press.et.html
[08:30:03] * Building fsfe.org/press/press.fa.html
[08:30:03] * Building fsfe.org/press/press.fi.html
[08:30:03] * Building fsfe.org/press/press.fr.html
[08:30:03] * Building fsfe.org/press/press.hr.html
[08:30:03] * Building fsfe.org/press/press.hu.html
[08:30:03] * Building fsfe.org/press/press.it.html
[08:30:03] * Building fsfe.org/press/press.ja.html
[08:30:04] * Building fsfe.org/press/press.mk.html
[08:30:04] * Building fsfe.org/press/press.nb.html
[08:30:04] * Building fsfe.org/press/press.nl.html
[08:30:04] * Building fsfe.org/press/press.nn.html
[08:30:04] * Building fsfe.org/press/press.pl.html
[08:30:04] * Building fsfe.org/press/press.pt.html
[08:30:04] * Building fsfe.org/press/press.ro.html
[08:30:04] * Building fsfe.org/press/press.ru.html
[08:30:04] * Building fsfe.org/press/press.sk.html
[08:30:04] * Building fsfe.org/press/press.sl.html
[08:30:04] * Building fsfe.org/press/press.sq.html
[08:30:04] * Building fsfe.org/press/press.sr.html
[08:30:04] * Building fsfe.org/press/press.sv.html
[08:30:04] * Building fsfe.org/press/press.tr.html
[08:30:04] * Building fsfe.org/press/press.uk.html
[08:30:04] * Building fsfe.org/press/press.zh.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.ar.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.bg.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.bs.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.ca.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.cs.html
[08:30:04] * Building fsfe.org/tags/tagged-AI.da.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.de.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.el.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.en.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.es.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.et.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.fa.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.fi.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.fr.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.hr.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.hu.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.it.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.ja.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.mk.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.nb.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.nl.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.nn.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.pl.html
[08:30:05] * Building fsfe.org/tags/tagged-AI.pt.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.ro.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.ru.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.sk.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.sl.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.sq.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.sr.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.sv.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.tr.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.uk.html
[08:30:06] * Building fsfe.org/tags/tagged-AI.zh.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.ar.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.bg.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.bs.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.ca.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.cs.html
[08:30:06] * Building fsfe.org/tags/tagged-ada-zangemann.da.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.de.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.el.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.en.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.es.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.et.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.fa.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.fi.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.fr.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.hr.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.hu.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.it.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.ja.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.mk.html
[08:30:07] * Building fsfe.org/tags/tagged-ada-zangemann.nb.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.nl.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.nn.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.pl.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.pt.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.ro.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.ru.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.sk.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.sl.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.sq.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.sr.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.sv.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.tr.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.uk.html
[08:30:08] * Building fsfe.org/tags/tagged-ada-zangemann.zh.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.ar.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.bg.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.bs.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.ca.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.cs.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.da.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.de.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.el.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.en.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.es.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.et.html
[08:30:09] * Building fsfe.org/tags/tagged-annual-report.fa.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.fi.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.fr.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.hr.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.hu.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.it.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.ja.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.mk.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.nb.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.nl.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.nn.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.pl.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.pt.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.ro.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.ru.html
[08:30:10] * Building fsfe.org/tags/tagged-annual-report.sk.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.sl.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.sq.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.sr.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.sv.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.tr.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.uk.html
[08:30:11] * Building fsfe.org/tags/tagged-annual-report.zh.html
[08:30:11] * Building fsfe.org/tags/tagged-community.ar.html
[08:30:11] * Building fsfe.org/tags/tagged-community.bg.html
[08:30:11] * Building fsfe.org/tags/tagged-community.bs.html
[08:30:11] * Building fsfe.org/tags/tagged-community.ca.html
[08:30:11] * Building fsfe.org/tags/tagged-community.cs.html
[08:30:11] * Building fsfe.org/tags/tagged-community.da.html
[08:30:12] * Building fsfe.org/tags/tagged-community.de.html
[08:30:12] * Building fsfe.org/tags/tagged-community.el.html
[08:30:12] * Building fsfe.org/tags/tagged-community.en.html
[08:30:12] * Building fsfe.org/tags/tagged-community.es.html
[08:30:12] * Building fsfe.org/tags/tagged-community.et.html
[08:30:12] * Building fsfe.org/tags/tagged-community.fa.html
[08:30:12] * Building fsfe.org/tags/tagged-community.fi.html
[08:30:12] * Building fsfe.org/tags/tagged-community.fr.html
[08:30:12] * Building fsfe.org/tags/tagged-community.hr.html
[08:30:12] * Building fsfe.org/tags/tagged-community.hu.html
[08:30:12] * Building fsfe.org/tags/tagged-community.it.html
[08:30:13] * Building fsfe.org/tags/tagged-community.ja.html
[08:30:13] * Building fsfe.org/tags/tagged-community.mk.html
[08:30:13] * Building fsfe.org/tags/tagged-community.nb.html
[08:30:13] * Building fsfe.org/tags/tagged-community.nl.html
[08:30:13] * Building fsfe.org/tags/tagged-community.nn.html
[08:30:13] * Building fsfe.org/tags/tagged-community.pl.html
[08:30:13] * Building fsfe.org/tags/tagged-community.pt.html
[08:30:13] * Building fsfe.org/tags/tagged-community.ro.html
[08:30:13] * Building fsfe.org/tags/tagged-community.ru.html
[08:30:13] * Building fsfe.org/tags/tagged-community.sk.html
[08:30:13] * Building fsfe.org/tags/tagged-community.sl.html
[08:30:13] * Building fsfe.org/tags/tagged-community.sq.html
[08:30:14] * Building fsfe.org/tags/tagged-community.sr.html
[08:30:14] * Building fsfe.org/tags/tagged-community.sv.html
[08:30:14] * Building fsfe.org/tags/tagged-community.tr.html
[08:30:14] * Building fsfe.org/tags/tagged-community.uk.html
[08:30:14] * Building fsfe.org/tags/tagged-community.zh.html
[08:30:14] * Building fsfe.org/tags/tagged-de.ar.html
[08:30:14] * Building fsfe.org/tags/tagged-de.bg.html
[08:30:14] * Building fsfe.org/tags/tagged-de.bs.html
[08:30:14] * Building fsfe.org/tags/tagged-de.ca.html
[08:30:17] * Building fsfe.org/tags/tagged-de.cs.html
[08:30:17] * Building fsfe.org/tags/tagged-de.da.html
[08:30:17] * Building fsfe.org/tags/tagged-de.de.html
[08:30:17] * Building fsfe.org/tags/tagged-de.el.html
[08:30:20] * Building fsfe.org/tags/tagged-de.en.html
[08:30:20] * Building fsfe.org/tags/tagged-de.es.html
[08:30:20] * Building fsfe.org/tags/tagged-de.et.html
[08:30:20] * Building fsfe.org/tags/tagged-de.fa.html
[08:30:22] * Building fsfe.org/tags/tagged-de.fi.html
[08:30:22] * Building fsfe.org/tags/tagged-de.fr.html
[08:30:23] * Building fsfe.org/tags/tagged-de.hr.html
[08:30:23] * Building fsfe.org/tags/tagged-de.hu.html
[08:30:25] * Building fsfe.org/tags/tagged-de.it.html
[08:30:25] * Building fsfe.org/tags/tagged-de.ja.html
[08:30:25] * Building fsfe.org/tags/tagged-de.mk.html
[08:30:26] * Building fsfe.org/tags/tagged-de.nb.html
[08:30:28] * Building fsfe.org/tags/tagged-de.nl.html
[08:30:28] * Building fsfe.org/tags/tagged-de.nn.html
[08:30:28] * Building fsfe.org/tags/tagged-de.pl.html
[08:30:28] * Building fsfe.org/tags/tagged-de.pt.html
[08:30:31] * Building fsfe.org/tags/tagged-de.ro.html
[08:30:31] * Building fsfe.org/tags/tagged-de.ru.html
[08:30:31] * Building fsfe.org/tags/tagged-de.sk.html
[08:30:31] * Building fsfe.org/tags/tagged-de.sl.html
[08:30:33] * Building fsfe.org/tags/tagged-de.sq.html
[08:30:34] * Building fsfe.org/tags/tagged-de.sr.html
[08:30:34] * Building fsfe.org/tags/tagged-de.sv.html
[08:30:34] * Building fsfe.org/tags/tagged-de.tr.html
[08:30:36] * Building fsfe.org/tags/tagged-de.uk.html
[08:30:36] * Building fsfe.org/tags/tagged-de.zh.html
[08:30:36] * Building fsfe.org/tags/tagged-deviceneutrality.ar.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.bg.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.bs.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.ca.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.cs.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.da.html
[08:30:37] * Building fsfe.org/tags/tagged-deviceneutrality.de.html
[08:30:38] * Building fsfe.org/tags/tagged-deviceneutrality.el.html
[08:30:38] * Building fsfe.org/tags/tagged-deviceneutrality.en.html
[08:30:38] * Building fsfe.org/tags/tagged-deviceneutrality.es.html
[08:30:38] * Building fsfe.org/tags/tagged-deviceneutrality.et.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.fa.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.fi.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.fr.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.hr.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.hu.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.it.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.ja.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.mk.html
[08:30:39] * Building fsfe.org/tags/tagged-deviceneutrality.nb.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.nl.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.nn.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.pl.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.pt.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.ro.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.ru.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.sk.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.sl.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.sq.html
[08:30:40] * Building fsfe.org/tags/tagged-deviceneutrality.sr.html
[08:30:41] * Building fsfe.org/tags/tagged-deviceneutrality.sv.html
[08:30:41] * Building fsfe.org/tags/tagged-deviceneutrality.tr.html
[08:30:41] * Building fsfe.org/tags/tagged-deviceneutrality.uk.html
[08:30:41] * Building fsfe.org/tags/tagged-deviceneutrality.zh.html
[08:30:41] * Building fsfe.org/tags/tagged-education.ar.html
[08:30:41] * Building fsfe.org/tags/tagged-education.bg.html
[08:30:41] * Building fsfe.org/tags/tagged-education.bs.html
[08:30:41] * Building fsfe.org/tags/tagged-education.ca.html
[08:30:41] * Building fsfe.org/tags/tagged-education.cs.html
[08:30:41] * Building fsfe.org/tags/tagged-education.da.html
[08:30:41] * Building fsfe.org/tags/tagged-education.de.html
[08:30:42] * Building fsfe.org/tags/tagged-education.el.html
[08:30:42] * Building fsfe.org/tags/tagged-education.en.html
[08:30:42] * Building fsfe.org/tags/tagged-education.es.html
[08:30:42] * Building fsfe.org/tags/tagged-education.et.html
[08:30:42] * Building fsfe.org/tags/tagged-education.fa.html
[08:30:42] * Building fsfe.org/tags/tagged-education.fi.html
[08:30:42] * Building fsfe.org/tags/tagged-education.fr.html
[08:30:42] * Building fsfe.org/tags/tagged-education.hr.html
[08:30:43] * Building fsfe.org/tags/tagged-education.hu.html
[08:30:43] * Building fsfe.org/tags/tagged-education.it.html
[08:30:43] * Building fsfe.org/tags/tagged-education.ja.html
[08:30:43] * Building fsfe.org/tags/tagged-education.mk.html
[08:30:43] * Building fsfe.org/tags/tagged-education.nb.html
[08:30:43] * Building fsfe.org/tags/tagged-education.nl.html
[08:30:43] * Building fsfe.org/tags/tagged-education.nn.html
[08:30:43] * Building fsfe.org/tags/tagged-education.pl.html
[08:30:43] * Building fsfe.org/tags/tagged-education.pt.html
[08:30:43] * Building fsfe.org/tags/tagged-education.ro.html
[08:30:43] * Building fsfe.org/tags/tagged-education.ru.html
[08:30:43] * Building fsfe.org/tags/tagged-education.sk.html
[08:30:44] * Building fsfe.org/tags/tagged-education.sl.html
[08:30:44] * Building fsfe.org/tags/tagged-education.sq.html
[08:30:44] * Building fsfe.org/tags/tagged-education.sr.html
[08:30:44] * Building fsfe.org/tags/tagged-education.sv.html
[08:30:44] * Building fsfe.org/tags/tagged-education.tr.html
[08:30:44] * Building fsfe.org/tags/tagged-education.uk.html
[08:30:44] * Building fsfe.org/tags/tagged-education.zh.html
[08:30:44] * Building fsfe.org/tags/tagged-european-commission.ar.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.bg.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.bs.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.ca.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.cs.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.da.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.de.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.el.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.en.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.es.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.et.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.fa.html
[08:30:45] * Building fsfe.org/tags/tagged-european-commission.fi.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.fr.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.hr.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.hu.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.it.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.ja.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.mk.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.nb.html
[08:30:46] * Building fsfe.org/tags/tagged-european-commission.nl.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.nn.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.pl.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.pt.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.ro.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.ru.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.sk.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.sl.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.sq.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.sr.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.sv.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.tr.html
[08:30:47] * Building fsfe.org/tags/tagged-european-commission.uk.html
[08:30:48] * Building fsfe.org/tags/tagged-european-commission.zh.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.ar.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.bg.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.bs.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.ca.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.cs.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.da.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.de.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.el.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.en.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.es.html
[08:30:48] * Building fsfe.org/tags/tagged-fosdem.et.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.fa.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.fi.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.fr.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.hr.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.hu.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.it.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.ja.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.mk.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.nb.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.nl.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.nn.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.pl.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.pt.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.ro.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.ru.html
[08:30:49] * Building fsfe.org/tags/tagged-fosdem.sk.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.sl.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.sq.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.sr.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.sv.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.tr.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.uk.html
[08:30:50] * Building fsfe.org/tags/tagged-fosdem.zh.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.ar.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.bg.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.bs.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.ca.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.cs.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.da.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.de.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.el.html
[08:30:50] * Building fsfe.org/tags/tagged-highlights.en.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.es.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.et.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.fa.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.fi.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.fr.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.hr.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.hu.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.it.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.ja.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.mk.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.nb.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.nl.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.nn.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.pl.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.pt.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.ro.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.ru.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.sk.html
[08:30:51] * Building fsfe.org/tags/tagged-highlights.sl.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.sq.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.sr.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.sv.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.tr.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.uk.html
[08:30:52] * Building fsfe.org/tags/tagged-highlights.zh.html
[08:30:52] * Building fsfe.org/tags/tagged-it.ar.html
[08:30:52] * Building fsfe.org/tags/tagged-it.bg.html
[08:30:52] * Building fsfe.org/tags/tagged-it.bs.html
[08:30:52] * Building fsfe.org/tags/tagged-it.ca.html
[08:30:52] * Building fsfe.org/tags/tagged-it.cs.html
[08:30:52] * Building fsfe.org/tags/tagged-it.da.html
[08:30:52] * Building fsfe.org/tags/tagged-it.de.html
[08:30:53] * Building fsfe.org/tags/tagged-it.el.html
[08:30:53] * Building fsfe.org/tags/tagged-it.en.html
[08:30:53] * Building fsfe.org/tags/tagged-it.es.html
[08:30:53] * Building fsfe.org/tags/tagged-it.et.html
[08:30:53] * Building fsfe.org/tags/tagged-it.fa.html
[08:30:54] * Building fsfe.org/tags/tagged-it.fi.html
[08:30:54] * Building fsfe.org/tags/tagged-it.fr.html
[08:30:54] * Building fsfe.org/tags/tagged-it.hr.html
[08:30:54] * Building fsfe.org/tags/tagged-it.hu.html
[08:30:54] * Building fsfe.org/tags/tagged-it.it.html
[08:30:54] * Building fsfe.org/tags/tagged-it.ja.html
[08:30:54] * Building fsfe.org/tags/tagged-it.mk.html
[08:30:54] * Building fsfe.org/tags/tagged-it.nb.html
[08:30:55] * Building fsfe.org/tags/tagged-it.nl.html
[08:30:55] * Building fsfe.org/tags/tagged-it.nn.html
[08:30:55] * Building fsfe.org/tags/tagged-it.pl.html
[08:30:55] * Building fsfe.org/tags/tagged-it.pt.html
[08:30:55] * Building fsfe.org/tags/tagged-it.ro.html
[08:30:55] * Building fsfe.org/tags/tagged-it.ru.html
[08:30:55] * Building fsfe.org/tags/tagged-it.sk.html
[08:30:55] * Building fsfe.org/tags/tagged-it.sl.html
[08:30:56] * Building fsfe.org/tags/tagged-it.sq.html
[08:30:56] * Building fsfe.org/tags/tagged-it.sr.html
[08:30:56] * Building fsfe.org/tags/tagged-it.sv.html
[08:30:56] * Building fsfe.org/tags/tagged-it.tr.html
[08:30:56] * Building fsfe.org/tags/tagged-it.uk.html
[08:30:56] * Building fsfe.org/tags/tagged-it.zh.html
[08:30:56] * Building fsfe.org/tags/tagged-legal.ar.html
[08:30:56] * Building fsfe.org/tags/tagged-legal.bg.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.bs.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.ca.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.cs.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.da.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.de.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.el.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.en.html
[08:30:57] * Building fsfe.org/tags/tagged-legal.es.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.et.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.fa.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.fi.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.fr.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.hr.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.hu.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.it.html
[08:30:58] * Building fsfe.org/tags/tagged-legal.ja.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.mk.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.nb.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.nl.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.nn.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.pl.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.pt.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.ro.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.ru.html
[08:30:59] * Building fsfe.org/tags/tagged-legal.sk.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.sl.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.sq.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.sr.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.sv.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.tr.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.uk.html
[08:31:00] * Building fsfe.org/tags/tagged-legal.zh.html
[08:31:00] * Building fsfe.org/tags/tagged-licensing.ar.html
[08:31:00] * Building fsfe.org/tags/tagged-licensing.bg.html
[08:31:00] * Building fsfe.org/tags/tagged-licensing.bs.html
[08:31:00] * Building fsfe.org/tags/tagged-licensing.ca.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.cs.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.da.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.de.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.el.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.en.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.es.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.et.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.fa.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.fi.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.fr.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.hr.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.hu.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.it.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.ja.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.mk.html
[08:31:01] * Building fsfe.org/tags/tagged-licensing.nb.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.nl.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.nn.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.pl.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.pt.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.ro.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.ru.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.sk.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.sl.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.sq.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.sr.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.sv.html
[08:31:02] * Building fsfe.org/tags/tagged-licensing.tr.html
[08:31:03] * Building fsfe.org/tags/tagged-licensing.uk.html
[08:31:03] * Building fsfe.org/tags/tagged-licensing.zh.html
[08:31:03] * Building fsfe.org/tags/tagged-localgroup.ar.html
[08:31:03] * Building fsfe.org/tags/tagged-localgroup.bg.html
[08:31:03] * Building fsfe.org/tags/tagged-localgroup.bs.html
[08:31:03] * Building fsfe.org/tags/tagged-localgroup.ca.html
[08:31:05] * Building fsfe.org/tags/tagged-localgroup.cs.html
[08:31:05] * Building fsfe.org/tags/tagged-localgroup.da.html
[08:31:05] * Building fsfe.org/tags/tagged-localgroup.de.html
[08:31:05] * Building fsfe.org/tags/tagged-localgroup.el.html
[08:31:08] * Building fsfe.org/tags/tagged-localgroup.en.html
[08:31:08] * Building fsfe.org/tags/tagged-localgroup.es.html
[08:31:08] * Building fsfe.org/tags/tagged-localgroup.et.html
[08:31:08] * Building fsfe.org/tags/tagged-localgroup.fa.html
[08:31:10] * Building fsfe.org/tags/tagged-localgroup.fi.html
[08:31:10] * Building fsfe.org/tags/tagged-localgroup.fr.html
[08:31:10] * Building fsfe.org/tags/tagged-localgroup.hr.html
[08:31:11] * Building fsfe.org/tags/tagged-localgroup.hu.html
[08:31:13] * Building fsfe.org/tags/tagged-localgroup.it.html
[08:31:13] * Building fsfe.org/tags/tagged-localgroup.ja.html
[08:31:13] * Building fsfe.org/tags/tagged-localgroup.mk.html
[08:31:13] * Building fsfe.org/tags/tagged-localgroup.nb.html
[08:31:15] * Building fsfe.org/tags/tagged-localgroup.nl.html
[08:31:15] * Building fsfe.org/tags/tagged-localgroup.nn.html
[08:31:15] * Building fsfe.org/tags/tagged-localgroup.pl.html
[08:31:16] * Building fsfe.org/tags/tagged-localgroup.pt.html
[08:31:18] * Building fsfe.org/tags/tagged-localgroup.ro.html
[08:31:18] * Building fsfe.org/tags/tagged-localgroup.ru.html
[08:31:18] * Building fsfe.org/tags/tagged-localgroup.sk.html
[08:31:18] * Building fsfe.org/tags/tagged-localgroup.sl.html
[08:31:20] * Building fsfe.org/tags/tagged-localgroup.sq.html
[08:31:20] * Building fsfe.org/tags/tagged-localgroup.sr.html
[08:31:20] * Building fsfe.org/tags/tagged-localgroup.sv.html
[08:31:21] * Building fsfe.org/tags/tagged-localgroup.tr.html
[08:31:23] * Building fsfe.org/tags/tagged-localgroup.uk.html
[08:31:23] * Building fsfe.org/tags/tagged-localgroup.zh.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.ar.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.bg.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.bs.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.ca.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.cs.html
[08:31:23] * Building fsfe.org/tags/tagged-ngi.da.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.de.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.el.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.en.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.es.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.et.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.fa.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.fi.html
[08:31:24] * Building fsfe.org/tags/tagged-ngi.fr.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.hr.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.hu.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.it.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.ja.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.mk.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.nb.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.nl.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.nn.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.pl.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.pt.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.ro.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.ru.html
[08:31:25] * Building fsfe.org/tags/tagged-ngi.sk.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.sl.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.sq.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.sr.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.sv.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.tr.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.uk.html
[08:31:26] * Building fsfe.org/tags/tagged-ngi.zh.html
[08:31:26] * Building fsfe.org/tags/tagged-nl.ar.html
[08:31:26] * Building fsfe.org/tags/tagged-nl.bg.html
[08:31:26] * Building fsfe.org/tags/tagged-nl.bs.html
[08:31:26] * Building fsfe.org/tags/tagged-nl.ca.html
[08:31:26] * Building fsfe.org/tags/tagged-nl.cs.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.da.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.de.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.el.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.en.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.es.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.et.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.fa.html
[08:31:27] * Building fsfe.org/tags/tagged-nl.fi.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.fr.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.hr.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.hu.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.it.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.ja.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.mk.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.nb.html
[08:31:28] * Building fsfe.org/tags/tagged-nl.nl.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.nn.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.pl.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.pt.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.ro.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.ru.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.sk.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.sl.html
[08:31:29] * Building fsfe.org/tags/tagged-nl.sq.html
[08:31:30] * Building fsfe.org/tags/tagged-nl.sr.html
[08:31:30] * Building fsfe.org/tags/tagged-nl.sv.html
[08:31:30] * Building fsfe.org/tags/tagged-nl.tr.html
[08:31:30] * Building fsfe.org/tags/tagged-nl.uk.html
[08:31:30] * Building fsfe.org/tags/tagged-nl.zh.html
[08:31:30] * Building fsfe.org/tags/tagged-pmpc.ar.html
[08:31:30] * Building fsfe.org/tags/tagged-pmpc.bg.html
[08:31:30] * Building fsfe.org/tags/tagged-pmpc.bs.html
[08:31:31] * Building fsfe.org/tags/tagged-pmpc.ca.html
[08:31:31] * Building fsfe.org/tags/tagged-pmpc.cs.html
[08:31:31] * Building fsfe.org/tags/tagged-pmpc.da.html
[08:31:31] * Building fsfe.org/tags/tagged-pmpc.de.html
[08:31:31] * Building fsfe.org/tags/tagged-pmpc.el.html
[08:31:32] * Building fsfe.org/tags/tagged-pmpc.en.html
[08:31:32] * Building fsfe.org/tags/tagged-pmpc.es.html
[08:31:32] * Building fsfe.org/tags/tagged-pmpc.et.html
[08:31:32] * Building fsfe.org/tags/tagged-pmpc.fa.html
[08:31:33] * Building fsfe.org/tags/tagged-pmpc.fi.html
[08:31:33] * Building fsfe.org/tags/tagged-pmpc.fr.html
[08:31:33] * Building fsfe.org/tags/tagged-pmpc.hr.html
[08:31:33] * Building fsfe.org/tags/tagged-pmpc.hu.html
[08:31:33] * Building fsfe.org/tags/tagged-pmpc.it.html
[08:31:34] * Building fsfe.org/tags/tagged-pmpc.ja.html
[08:31:34] * Building fsfe.org/tags/tagged-pmpc.mk.html
[08:31:34] * Building fsfe.org/tags/tagged-pmpc.nb.html
[08:31:34] * Building fsfe.org/tags/tagged-pmpc.nl.html
[08:31:34] * Building fsfe.org/tags/tagged-pmpc.nn.html
[08:31:35] * Building fsfe.org/tags/tagged-pmpc.pl.html
[08:31:35] * Building fsfe.org/tags/tagged-pmpc.pt.html
[08:31:35] * Building fsfe.org/tags/tagged-pmpc.ro.html
[08:31:35] * Building fsfe.org/tags/tagged-pmpc.ru.html
[08:31:35] * Building fsfe.org/tags/tagged-pmpc.sk.html
[08:31:36] * Building fsfe.org/tags/tagged-pmpc.sl.html
[08:31:36] * Building fsfe.org/tags/tagged-pmpc.sq.html
[08:31:36] * Building fsfe.org/tags/tagged-pmpc.sr.html
[08:31:36] * Building fsfe.org/tags/tagged-pmpc.sv.html
[08:31:36] * Building fsfe.org/tags/tagged-pmpc.tr.html
[08:31:37] * Building fsfe.org/tags/tagged-pmpc.uk.html
[08:31:37] * Building fsfe.org/tags/tagged-pmpc.zh.html
[08:31:37] * Building fsfe.org/tags/tagged-podcast.ar.html
[08:31:37] * Building fsfe.org/tags/tagged-podcast.bg.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.bs.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.ca.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.cs.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.da.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.de.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.el.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.en.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.es.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.et.html
[08:31:38] * Building fsfe.org/tags/tagged-podcast.fa.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.fi.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.fr.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.hr.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.hu.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.it.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.ja.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.mk.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.nb.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.nl.html
[08:31:39] * Building fsfe.org/tags/tagged-podcast.nn.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.pl.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.pt.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.ro.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.ru.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.sk.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.sl.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.sq.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.sr.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.sv.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.tr.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.uk.html
[08:31:40] * Building fsfe.org/tags/tagged-podcast.zh.html
[08:31:41] * Building fsfe.org/tags/tagged-press.ar.html
[08:31:41] * Building fsfe.org/tags/tagged-press.bg.html
[08:31:41] * Building fsfe.org/tags/tagged-press.bs.html
[08:31:41] * Building fsfe.org/tags/tagged-press.ca.html
[08:31:41] * Building fsfe.org/tags/tagged-press.cs.html
[08:31:41] * Building fsfe.org/tags/tagged-press.da.html
[08:31:41] * Building fsfe.org/tags/tagged-press.de.html
[08:31:41] * Building fsfe.org/tags/tagged-press.el.html
[08:31:41] * Building fsfe.org/tags/tagged-press.en.html
[08:31:41] * Building fsfe.org/tags/tagged-press.es.html
[08:31:41] * Building fsfe.org/tags/tagged-press.et.html
[08:31:41] * Building fsfe.org/tags/tagged-press.fa.html
[08:31:41] * Building fsfe.org/tags/tagged-press.fi.html
[08:31:41] * Building fsfe.org/tags/tagged-press.fr.html
[08:31:41] * Building fsfe.org/tags/tagged-press.hr.html
[08:31:41] * Building fsfe.org/tags/tagged-press.hu.html
[08:31:41] * Building fsfe.org/tags/tagged-press.it.html
[08:31:41] * Building fsfe.org/tags/tagged-press.ja.html
[08:31:41] * Building fsfe.org/tags/tagged-press.mk.html
[08:31:41] * Building fsfe.org/tags/tagged-press.nb.html
[08:31:41] * Building fsfe.org/tags/tagged-press.nl.html
[08:31:41] * Building fsfe.org/tags/tagged-press.nn.html
[08:31:41] * Building fsfe.org/tags/tagged-press.pl.html
[08:31:42] * Building fsfe.org/tags/tagged-press.pt.html
[08:31:42] * Building fsfe.org/tags/tagged-press.ro.html
[08:31:42] * Building fsfe.org/tags/tagged-press.ru.html
[08:31:42] * Building fsfe.org/tags/tagged-press.sk.html
[08:31:42] * Building fsfe.org/tags/tagged-press.sl.html
[08:31:42] * Building fsfe.org/tags/tagged-press.sq.html
[08:31:42] * Building fsfe.org/tags/tagged-press.sr.html
[08:31:42] * Building fsfe.org/tags/tagged-press.sv.html
[08:31:42] * Building fsfe.org/tags/tagged-press.tr.html
[08:31:42] * Building fsfe.org/tags/tagged-press.uk.html
[08:31:42] * Building fsfe.org/tags/tagged-press.zh.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.ar.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.bg.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.bs.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.ca.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.cs.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.da.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.de.html
[08:31:42] * Building fsfe.org/tags/tagged-reuse.el.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.en.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.es.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.et.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.fa.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.fi.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.fr.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.hr.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.hu.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.it.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.ja.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.mk.html
[08:31:43] * Building fsfe.org/tags/tagged-reuse.nb.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.nl.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.nn.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.pl.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.pt.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.ro.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.ru.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.sk.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.sl.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.sq.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.sr.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.sv.html
[08:31:44] * Building fsfe.org/tags/tagged-reuse.tr.html
[08:31:45] * Building fsfe.org/tags/tagged-reuse.uk.html
[08:31:45] * Building fsfe.org/tags/tagged-reuse.zh.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.ar.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.bg.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.bs.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.ca.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.cs.html
[08:31:45] * Building fsfe.org/tags/tagged-routers.da.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.de.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.el.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.en.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.es.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.et.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.fa.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.fi.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.fr.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.hr.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.hu.html
[08:31:46] * Building fsfe.org/tags/tagged-routers.it.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.ja.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.mk.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.nb.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.nl.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.nn.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.pl.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.pt.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.ro.html
[08:31:47] * Building fsfe.org/tags/tagged-routers.ru.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.sk.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.sl.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.sq.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.sr.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.sv.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.tr.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.uk.html
[08:31:48] * Building fsfe.org/tags/tagged-routers.zh.html
[08:31:49] * Building fsfe.org/tags/tagged-se.ar.html
[08:31:49] * Building fsfe.org/tags/tagged-se.bg.html
[08:31:49] * Building fsfe.org/tags/tagged-se.bs.html
[08:31:49] * Building fsfe.org/tags/tagged-se.ca.html
[08:31:49] * Building fsfe.org/tags/tagged-se.cs.html
[08:31:49] * Building fsfe.org/tags/tagged-se.da.html
[08:31:49] * Building fsfe.org/tags/tagged-se.de.html
[08:31:49] * Building fsfe.org/tags/tagged-se.el.html
[08:31:49] * Building fsfe.org/tags/tagged-se.en.html
[08:31:49] * Building fsfe.org/tags/tagged-se.es.html
[08:31:49] * Building fsfe.org/tags/tagged-se.et.html
[08:31:49] * Building fsfe.org/tags/tagged-se.fa.html
[08:31:49] * Building fsfe.org/tags/tagged-se.fi.html
[08:31:49] * Building fsfe.org/tags/tagged-se.fr.html
[08:31:49] * Building fsfe.org/tags/tagged-se.hr.html
[08:31:49] * Building fsfe.org/tags/tagged-se.hu.html
[08:31:50] * Building fsfe.org/tags/tagged-se.it.html
[08:31:50] * Building fsfe.org/tags/tagged-se.ja.html
[08:31:50] * Building fsfe.org/tags/tagged-se.mk.html
[08:31:50] * Building fsfe.org/tags/tagged-se.nb.html
[08:31:50] * Building fsfe.org/tags/tagged-se.nl.html
[08:31:50] * Building fsfe.org/tags/tagged-se.nn.html
[08:31:50] * Building fsfe.org/tags/tagged-se.pl.html
[08:31:50] * Building fsfe.org/tags/tagged-se.pt.html
[08:31:50] * Building fsfe.org/tags/tagged-se.ro.html
[08:31:50] * Building fsfe.org/tags/tagged-se.ru.html
[08:31:50] * Building fsfe.org/tags/tagged-se.sk.html
[08:31:50] * Building fsfe.org/tags/tagged-se.sl.html
[08:31:51] * Building fsfe.org/tags/tagged-se.sq.html
[08:31:51] * Building fsfe.org/tags/tagged-se.sr.html
[08:31:51] * Building fsfe.org/tags/tagged-se.sv.html
[08:31:51] * Building fsfe.org/tags/tagged-se.tr.html
[08:31:51] * Building fsfe.org/tags/tagged-se.uk.html
[08:31:51] * Building fsfe.org/tags/tagged-se.zh.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.ar.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.bg.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.bs.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.ca.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.cs.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.da.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.de.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.el.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.en.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.es.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.et.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.fa.html
[08:31:51] * Building fsfe.org/tags/tagged-tech-teams.fi.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.fr.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.hr.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.hu.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.it.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.ja.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.mk.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.nb.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.nl.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.nn.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.pl.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.pt.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.ro.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.ru.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.sk.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.sl.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.sq.html
[08:31:52] * Building fsfe.org/tags/tagged-tech-teams.sr.html
[08:31:53] * Building fsfe.org/tags/tagged-tech-teams.sv.html
[08:31:53] * Building fsfe.org/tags/tagged-tech-teams.tr.html
[08:31:53] * Building fsfe.org/tags/tagged-tech-teams.uk.html
[08:31:53] * Building fsfe.org/tags/tagged-tech-teams.zh.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.ar.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.bg.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.bs.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.ca.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.cs.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.da.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.de.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.el.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.en.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.es.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.et.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.fa.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.fi.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.fr.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.hr.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.hu.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.it.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.ja.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.mk.html
[08:31:53] * Building fsfe.org/tags/tagged-translations.nb.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.nl.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.nn.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.pl.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.pt.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.ro.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.ru.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.sk.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.sl.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.sq.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.sr.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.sv.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.tr.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.uk.html
[08:31:54] * Building fsfe.org/tags/tagged-translations.zh.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.ar.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.bg.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.bs.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.ca.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.cs.html
[08:31:54] * Building fsfe.org/tags/tagged-yh4f.da.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.de.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.el.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.en.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.es.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.et.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.fa.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.fi.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.fr.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.hr.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.hu.html
[08:31:55] * Building fsfe.org/tags/tagged-yh4f.it.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.ja.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.mk.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.nb.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.nl.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.nn.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.pl.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.pt.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.ro.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.ru.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.sk.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.sl.html
[08:31:56] * Building fsfe.org/tags/tagged-yh4f.sq.html
[08:31:57] * Building fsfe.org/tags/tagged-yh4f.sr.html
[08:31:57] * Building fsfe.org/tags/tagged-yh4f.sv.html
[08:31:57] * Building fsfe.org/tags/tagged-yh4f.tr.html
[08:31:57] * Building fsfe.org/tags/tagged-yh4f.uk.html
[08:31:57] * Building fsfe.org/tags/tagged-yh4f.zh.html
[08:31:57] * Building fsfe.org/news/news.ar.rss
[08:31:57] * Building fsfe.org/news/news.bg.rss
[08:31:57] * Building fsfe.org/news/news.bs.rss
[08:31:58] * Building fsfe.org/news/news.ca.rss
[08:31:58] * Building fsfe.org/news/news.cs.rss
[08:31:58] * Building fsfe.org/news/news.da.rss
[08:31:58] * Building fsfe.org/news/news.de.rss
[08:31:59] * Building fsfe.org/news/news.el.rss
[08:31:59] * Building fsfe.org/news/news.en.rss
[08:31:59] * Building fsfe.org/news/news.es.rss
[08:31:59] * Building fsfe.org/news/news.et.rss
[08:32:00] * Building fsfe.org/news/news.fa.rss
[08:32:00] * Building fsfe.org/news/news.fi.rss
[08:32:00] * Building fsfe.org/news/news.fr.rss
[08:32:00] * Building fsfe.org/news/news.hr.rss
[08:32:01] * Building fsfe.org/news/news.hu.rss
[08:32:02] * Building fsfe.org/news/news.it.rss
[08:32:02] * Building fsfe.org/news/news.ja.rss
[08:32:02] * Building fsfe.org/news/news.mk.rss
[08:32:02] * Building fsfe.org/news/news.nb.rss
[08:32:03] * Building fsfe.org/news/news.nl.rss
[08:32:03] * Building fsfe.org/news/news.nn.rss
[08:32:03] * Building fsfe.org/news/news.pl.rss
[08:32:03] * Building fsfe.org/news/news.pt.rss
[08:32:04] * Building fsfe.org/news/news.ro.rss
[08:32:04] * Building fsfe.org/news/news.ru.rss
[08:32:04] * Building fsfe.org/news/news.sk.rss
[08:32:04] * Building fsfe.org/news/news.sl.rss
[08:32:05] * Building fsfe.org/news/news.sq.rss
[08:32:05] * Building fsfe.org/news/news.sr.rss
[08:32:05] * Building fsfe.org/news/news.sv.rss
[08:32:05] * Building fsfe.org/news/news.tr.rss
[08:32:06] * Building fsfe.org/news/news.uk.rss
[08:32:06] * Building fsfe.org/news/news.zh.rss
[08:32:10] Finishing phase 2
Target update: 3788 updated files
[08:32:10] Syncing files to bunsen.fsfeurope.org
[08:32:11] sending incremental file list
[08:32:11] fsfe.org/index.ar.html
[08:32:11] fsfe.org/index.bg.html
[08:32:11] fsfe.org/index.bs.html
[08:32:11] fsfe.org/index.ca.html
[08:32:11] fsfe.org/index.cs.html
[08:32:11] fsfe.org/index.da.html
[08:32:11] fsfe.org/index.de.html
[08:32:11] fsfe.org/index.el.html
[08:32:11] fsfe.org/index.en.html
[08:32:11] fsfe.org/index.es.html
[08:32:11] fsfe.org/index.et.html
[08:32:11] fsfe.org/index.fa.html
[08:32:11] fsfe.org/index.fi.html
[08:32:11] fsfe.org/index.fr.html
[08:32:11] fsfe.org/index.hr.html
[08:32:11] fsfe.org/index.hu.html
[08:32:11] fsfe.org/index.it.html
[08:32:11] fsfe.org/index.ja.html
[08:32:11] fsfe.org/index.mk.html
[08:32:11] fsfe.org/index.nb.html
[08:32:11] fsfe.org/index.nl.html
[08:32:11] fsfe.org/index.nn.html
[08:32:11] fsfe.org/index.pl.html
[08:32:11] fsfe.org/index.pt.html
[08:32:11] fsfe.org/index.ro.html
[08:32:11] fsfe.org/index.ru.html
[08:32:11] fsfe.org/index.sk.html
[08:32:11] fsfe.org/index.sl.html
[08:32:11] fsfe.org/index.sq.html
[08:32:11] fsfe.org/index.sr.html
[08:32:11] fsfe.org/index.sv.html
[08:32:11] fsfe.org/index.tr.html
[08:32:11] fsfe.org/index.uk.html
[08:32:11] fsfe.org/index.zh.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.ar.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.bg.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.bs.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.ca.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.cs.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.da.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.de.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.el.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.en.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.es.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.et.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.fa.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.fi.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.fr.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.hr.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.hu.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.it.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.ja.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.mk.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.nb.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.nl.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.nn.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.pl.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.pt.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.ro.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.ru.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.sk.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.sl.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.sq.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.sr.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.sv.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.tr.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.uk.html
[08:32:11] fsfe.org/activities/deviceneutrality/index.zh.html
[08:32:11] fsfe.org/activities/dma/dma.ar.html
[08:32:11] fsfe.org/activities/dma/dma.bg.html
[08:32:11] fsfe.org/activities/dma/dma.bs.html
[08:32:11] fsfe.org/activities/dma/dma.ca.html
[08:32:11] fsfe.org/activities/dma/dma.cs.html
[08:32:11] fsfe.org/activities/dma/dma.da.html
[08:32:11] fsfe.org/activities/dma/dma.de.html
[08:32:11] fsfe.org/activities/dma/dma.el.html
[08:32:11] fsfe.org/activities/dma/dma.en.html
[08:32:11] fsfe.org/activities/dma/dma.es.html
[08:32:11] fsfe.org/activities/dma/dma.et.html
[08:32:11] fsfe.org/activities/dma/dma.fa.html
[08:32:11] fsfe.org/activities/dma/dma.fi.html
[08:32:11] fsfe.org/activities/dma/dma.fr.html
[08:32:11] fsfe.org/activities/dma/dma.hr.html
[08:32:11] fsfe.org/activities/dma/dma.hu.html
[08:32:11] fsfe.org/activities/dma/dma.it.html
[08:32:11] fsfe.org/activities/dma/dma.ja.html
[08:32:11] fsfe.org/activities/dma/dma.mk.html
[08:32:11] fsfe.org/activities/dma/dma.nb.html
[08:32:11] fsfe.org/activities/dma/dma.nl.html
[08:32:11] fsfe.org/activities/dma/dma.nn.html
[08:32:11] fsfe.org/activities/dma/dma.pl.html
[08:32:11] fsfe.org/activities/dma/dma.pt.html
[08:32:11] fsfe.org/activities/dma/dma.ro.html
[08:32:11] fsfe.org/activities/dma/dma.ru.html
[08:32:11] fsfe.org/activities/dma/dma.sk.html
[08:32:11] fsfe.org/activities/dma/dma.sl.html
[08:32:11] fsfe.org/activities/dma/dma.sq.html
[08:32:11] fsfe.org/activities/dma/dma.sr.html
[08:32:11] fsfe.org/activities/dma/dma.sv.html
[08:32:11] fsfe.org/activities/dma/dma.tr.html
[08:32:11] fsfe.org/activities/dma/dma.uk.html
[08:32:11] fsfe.org/activities/dma/dma.zh.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.ar.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.bg.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.bs.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.ca.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.cs.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.da.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.de.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.el.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.en.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.es.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.et.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.fa.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.fi.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.fr.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.hr.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.hu.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.it.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.ja.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.mk.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.nb.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.nl.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.nn.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.pl.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.pt.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.ro.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.ru.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.sk.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.sl.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.sq.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.sr.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.sv.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.tr.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.uk.html
[08:32:11] fsfe.org/activities/publiccode/publiccode.zh.html
[08:32:11] fsfe.org/activities/routers/routers.ar.html
[08:32:11] fsfe.org/activities/routers/routers.bg.html
[08:32:11] fsfe.org/activities/routers/routers.bs.html
[08:32:11] fsfe.org/activities/routers/routers.ca.html
[08:32:11] fsfe.org/activities/routers/routers.cs.html
[08:32:11] fsfe.org/activities/routers/routers.da.html
[08:32:11] fsfe.org/activities/routers/routers.de.html
[08:32:11] fsfe.org/activities/routers/routers.el.html
[08:32:11] fsfe.org/activities/routers/routers.en.html
[08:32:11] fsfe.org/activities/routers/routers.es.html
[08:32:11] fsfe.org/activities/routers/routers.et.html
[08:32:11] fsfe.org/activities/routers/routers.fa.html
[08:32:11] fsfe.org/activities/routers/routers.fi.html
[08:32:11] fsfe.org/activities/routers/routers.fr.html
[08:32:11] fsfe.org/activities/routers/routers.hr.html
[08:32:11] fsfe.org/activities/routers/routers.hu.html
[08:32:11] fsfe.org/activities/routers/routers.it.html
[08:32:11] fsfe.org/activities/routers/routers.ja.html
[08:32:11] fsfe.org/activities/routers/routers.mk.html
[08:32:11] fsfe.org/activities/routers/routers.nb.html
[08:32:11] fsfe.org/activities/routers/routers.nl.html
[08:32:11] fsfe.org/activities/routers/routers.nn.html
[08:32:11] fsfe.org/activities/routers/routers.pl.html
[08:32:11] fsfe.org/activities/routers/routers.pt.html
[08:32:11] fsfe.org/activities/routers/routers.ro.html
[08:32:11] fsfe.org/activities/routers/routers.ru.html
[08:32:11] fsfe.org/activities/routers/routers.sk.html
[08:32:11] fsfe.org/activities/routers/routers.sl.html
[08:32:11] fsfe.org/activities/routers/routers.sq.html
[08:32:11] fsfe.org/activities/routers/routers.sr.html
[08:32:11] fsfe.org/activities/routers/routers.sv.html
[08:32:11] fsfe.org/activities/routers/routers.tr.html
[08:32:11] fsfe.org/activities/routers/routers.uk.html
[08:32:11] fsfe.org/activities/routers/routers.zh.html
[08:32:11] fsfe.org/activities/yh4f/index.ar.html
[08:32:11] fsfe.org/activities/yh4f/index.bg.html
[08:32:11] fsfe.org/activities/yh4f/index.bs.html
[08:32:11] fsfe.org/activities/yh4f/index.ca.html
[08:32:11] fsfe.org/activities/yh4f/index.cs.html
[08:32:11] fsfe.org/activities/yh4f/index.da.html
[08:32:11] fsfe.org/activities/yh4f/index.de.html
[08:32:11] fsfe.org/activities/yh4f/index.el.html
[08:32:11] fsfe.org/activities/yh4f/index.en.html
[08:32:11] fsfe.org/activities/yh4f/index.es.html
[08:32:11] fsfe.org/activities/yh4f/index.et.html
[08:32:11] fsfe.org/activities/yh4f/index.fa.html
[08:32:11] fsfe.org/activities/yh4f/index.fi.html
[08:32:11] fsfe.org/activities/yh4f/index.fr.html
[08:32:11] fsfe.org/activities/yh4f/index.hr.html
[08:32:11] fsfe.org/activities/yh4f/index.hu.html
[08:32:11] fsfe.org/activities/yh4f/index.it.html
[08:32:11] fsfe.org/activities/yh4f/index.ja.html
[08:32:11] fsfe.org/activities/yh4f/index.mk.html
[08:32:11] fsfe.org/activities/yh4f/index.nb.html
[08:32:11] fsfe.org/activities/yh4f/index.nl.html
[08:32:11] fsfe.org/activities/yh4f/index.nn.html
[08:32:11] fsfe.org/activities/yh4f/index.pl.html
[08:32:11] fsfe.org/activities/yh4f/index.pt.html
[08:32:11] fsfe.org/activities/yh4f/index.ro.html
[08:32:11] fsfe.org/activities/yh4f/index.ru.html
[08:32:11] fsfe.org/activities/yh4f/index.sk.html
[08:32:11] fsfe.org/activities/yh4f/index.sl.html
[08:32:11] fsfe.org/activities/yh4f/index.sq.html
[08:32:11] fsfe.org/activities/yh4f/index.sr.html
[08:32:11] fsfe.org/activities/yh4f/index.sv.html
[08:32:12] fsfe.org/activities/yh4f/index.tr.html
[08:32:12] fsfe.org/activities/yh4f/index.uk.html
[08:32:12] fsfe.org/activities/yh4f/index.zh.html
[08:32:12] fsfe.org/contribute/web/features.ar.html
[08:32:12] fsfe.org/contribute/web/features.bg.html
[08:32:12] fsfe.org/contribute/web/features.bs.html
[08:32:12] fsfe.org/contribute/web/features.ca.html
[08:32:12] fsfe.org/contribute/web/features.cs.html
[08:32:12] fsfe.org/contribute/web/features.da.html
[08:32:12] fsfe.org/contribute/web/features.de.html
[08:32:12] fsfe.org/contribute/web/features.el.html
[08:32:12] fsfe.org/contribute/web/features.en.html
[08:32:12] fsfe.org/contribute/web/features.es.html
[08:32:12] fsfe.org/contribute/web/features.et.html
[08:32:12] fsfe.org/contribute/web/features.fa.html
[08:32:12] fsfe.org/contribute/web/features.fi.html
[08:32:12] fsfe.org/contribute/web/features.fr.html
[08:32:12] fsfe.org/contribute/web/features.hr.html
[08:32:12] fsfe.org/contribute/web/features.hu.html
[08:32:12] fsfe.org/contribute/web/features.it.html
[08:32:12] fsfe.org/contribute/web/features.ja.html
[08:32:12] fsfe.org/contribute/web/features.mk.html
[08:32:12] fsfe.org/contribute/web/features.nb.html
[08:32:12] fsfe.org/contribute/web/features.nl.html
[08:32:12] fsfe.org/contribute/web/features.nn.html
[08:32:12] fsfe.org/contribute/web/features.pl.html
[08:32:12] fsfe.org/contribute/web/features.pt.html
[08:32:12] fsfe.org/contribute/web/features.ro.html
[08:32:12] fsfe.org/contribute/web/features.ru.html
[08:32:12] fsfe.org/contribute/web/features.sk.html
[08:32:12] fsfe.org/contribute/web/features.sl.html
[08:32:12] fsfe.org/contribute/web/features.sq.html
[08:32:12] fsfe.org/contribute/web/features.sr.html
[08:32:12] fsfe.org/contribute/web/features.sv.html
[08:32:12] fsfe.org/contribute/web/features.tr.html
[08:32:12] fsfe.org/contribute/web/features.uk.html
[08:32:12] fsfe.org/contribute/web/features.zh.html
[08:32:12] fsfe.org/freesoftware/education/education.ar.html
[08:32:12] fsfe.org/freesoftware/education/education.bg.html
[08:32:12] fsfe.org/freesoftware/education/education.bs.html
[08:32:12] fsfe.org/freesoftware/education/education.ca.html
[08:32:12] fsfe.org/freesoftware/education/education.cs.html
[08:32:12] fsfe.org/freesoftware/education/education.da.html
[08:32:12] fsfe.org/freesoftware/education/education.de.html
[08:32:12] fsfe.org/freesoftware/education/education.el.html
[08:32:12] fsfe.org/freesoftware/education/education.en.html
[08:32:12] fsfe.org/freesoftware/education/education.es.html
[08:32:12] fsfe.org/freesoftware/education/education.et.html
[08:32:12] fsfe.org/freesoftware/education/education.fa.html
[08:32:12] fsfe.org/freesoftware/education/education.fi.html
[08:32:12] fsfe.org/freesoftware/education/education.fr.html
[08:32:12] fsfe.org/freesoftware/education/education.hr.html
[08:32:12] fsfe.org/freesoftware/education/education.hu.html
[08:32:12] fsfe.org/freesoftware/education/education.it.html
[08:32:12] fsfe.org/freesoftware/education/education.ja.html
[08:32:12] fsfe.org/freesoftware/education/education.mk.html
[08:32:12] fsfe.org/freesoftware/education/education.nb.html
[08:32:12] fsfe.org/freesoftware/education/education.nl.html
[08:32:12] fsfe.org/freesoftware/education/education.nn.html
[08:32:12] fsfe.org/freesoftware/education/education.pl.html
[08:32:12] fsfe.org/freesoftware/education/education.pt.html
[08:32:12] fsfe.org/freesoftware/education/education.ro.html
[08:32:12] fsfe.org/freesoftware/education/education.ru.html
[08:32:12] fsfe.org/freesoftware/education/education.sk.html
[08:32:12] fsfe.org/freesoftware/education/education.sl.html
[08:32:12] fsfe.org/freesoftware/education/education.sq.html
[08:32:12] fsfe.org/freesoftware/education/education.sr.html
[08:32:12] fsfe.org/freesoftware/education/education.sv.html
[08:32:12] fsfe.org/freesoftware/education/education.tr.html
[08:32:12] fsfe.org/freesoftware/education/education.uk.html
[08:32:12] fsfe.org/freesoftware/education/education.zh.html
[08:32:12] fsfe.org/news/news.ar.html
[08:32:12] fsfe.org/news/news.ar.rss
[08:32:12] fsfe.org/news/news.bg.html
[08:32:12] fsfe.org/news/news.bg.rss
[08:32:12] fsfe.org/news/news.bs.html
[08:32:12] fsfe.org/news/news.bs.rss
[08:32:12] fsfe.org/news/news.ca.html
[08:32:12] fsfe.org/news/news.ca.rss
[08:32:12] fsfe.org/news/news.cs.html
[08:32:12] fsfe.org/news/news.cs.rss
[08:32:12] fsfe.org/news/news.da.html
[08:32:12] fsfe.org/news/news.da.rss
[08:32:12] fsfe.org/news/news.de.html
[08:32:12] fsfe.org/news/news.de.rss
[08:32:12] fsfe.org/news/news.el.html
[08:32:12] fsfe.org/news/news.el.rss
[08:32:12] fsfe.org/news/news.en.html
[08:32:12] fsfe.org/news/news.en.rss
[08:32:12] fsfe.org/news/news.es.html
[08:32:12] fsfe.org/news/news.es.rss
[08:32:12] fsfe.org/news/news.et.html
[08:32:12] fsfe.org/news/news.et.rss
[08:32:12] fsfe.org/news/news.fa.html
[08:32:12] fsfe.org/news/news.fa.rss
[08:32:12] fsfe.org/news/news.fi.html
[08:32:12] fsfe.org/news/news.fi.rss
[08:32:12] fsfe.org/news/news.fr.html
[08:32:12] fsfe.org/news/news.fr.rss
[08:32:12] fsfe.org/news/news.hr.html
[08:32:12] fsfe.org/news/news.hr.rss
[08:32:12] fsfe.org/news/news.hu.html
[08:32:12] fsfe.org/news/news.hu.rss
[08:32:12] fsfe.org/news/news.it.html
[08:32:12] fsfe.org/news/news.it.rss
[08:32:14] fsfe.org/news/news.ja.html
[08:32:14] fsfe.org/news/news.ja.rss
[08:32:14] fsfe.org/news/news.mk.html
[08:32:14] fsfe.org/news/news.mk.rss
[08:32:14] fsfe.org/news/news.nb.html
[08:32:14] fsfe.org/news/news.nb.rss
[08:32:14] fsfe.org/news/news.nl.html
[08:32:14] fsfe.org/news/news.nl.rss
[08:32:14] fsfe.org/news/news.nn.html
[08:32:14] fsfe.org/news/news.nn.rss
[08:32:14] fsfe.org/news/news.pl.html
[08:32:14] fsfe.org/news/news.pl.rss
[08:32:14] fsfe.org/news/news.pt.html
[08:32:14] fsfe.org/news/news.pt.rss
[08:32:14] fsfe.org/news/news.ro.html
[08:32:14] fsfe.org/news/news.ro.rss
[08:32:14] fsfe.org/news/news.ru.html
[08:32:14] fsfe.org/news/news.ru.rss
[08:32:14] fsfe.org/news/news.sk.html
[08:32:14] fsfe.org/news/news.sk.rss
[08:32:14] fsfe.org/news/news.sl.html
[08:32:14] fsfe.org/news/news.sl.rss
[08:32:14] fsfe.org/news/news.sq.html
[08:32:14] fsfe.org/news/news.sq.rss
[08:32:14] fsfe.org/news/news.sr.html
[08:32:14] fsfe.org/news/news.sr.rss
[08:32:14] fsfe.org/news/news.sv.html
[08:32:14] fsfe.org/news/news.sv.rss
[08:32:14] fsfe.org/news/news.tr.html
[08:32:14] fsfe.org/news/news.tr.rss
[08:32:14] fsfe.org/news/news.uk.html
[08:32:14] fsfe.org/news/news.uk.rss
[08:32:14] fsfe.org/news/news.zh.html
[08:32:14] fsfe.org/news/news.zh.rss
[08:32:14] fsfe.org/news/2024/news-20240920-01.ar.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.bg.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.bs.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.ca.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.cs.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.da.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.de.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.el.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.en.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.es.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.et.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.fa.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.fi.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.fr.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.hr.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.hu.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.it.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.ja.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.mk.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.nb.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.nl.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.nn.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.pl.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.pt.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.ro.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.ru.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.sk.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.sl.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.sq.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.sr.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.sv.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.tr.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.uk.html
[08:32:14] fsfe.org/news/2024/news-20240920-01.zh.html
[08:32:14] fsfe.org/press/press.ar.html
[08:32:14] fsfe.org/press/press.bg.html
[08:32:14] fsfe.org/press/press.bs.html
[08:32:14] fsfe.org/press/press.ca.html
[08:32:14] fsfe.org/press/press.cs.html
[08:32:14] fsfe.org/press/press.da.html
[08:32:14] fsfe.org/press/press.de.html
[08:32:14] fsfe.org/press/press.el.html
[08:32:14] fsfe.org/press/press.en.html
[08:32:14] fsfe.org/press/press.es.html
[08:32:14] fsfe.org/press/press.et.html
[08:32:14] fsfe.org/press/press.fa.html
[08:32:14] fsfe.org/press/press.fi.html
[08:32:14] fsfe.org/press/press.fr.html
[08:32:14] fsfe.org/press/press.hr.html
[08:32:14] fsfe.org/press/press.hu.html
[08:32:14] fsfe.org/press/press.it.html
[08:32:14] fsfe.org/press/press.ja.html
[08:32:14] fsfe.org/press/press.mk.html
[08:32:14] fsfe.org/press/press.nb.html
[08:32:14] fsfe.org/press/press.nl.html
[08:32:14] fsfe.org/press/press.nn.html
[08:32:14] fsfe.org/press/press.pl.html
[08:32:14] fsfe.org/press/press.pt.html
[08:32:14] fsfe.org/press/press.ro.html
[08:32:14] fsfe.org/press/press.ru.html
[08:32:14] fsfe.org/press/press.sk.html
[08:32:14] fsfe.org/press/press.sl.html
[08:32:14] fsfe.org/press/press.sq.html
[08:32:14] fsfe.org/press/press.sr.html
[08:32:14] fsfe.org/press/press.sv.html
[08:32:14] fsfe.org/press/press.tr.html
[08:32:14] fsfe.org/press/press.uk.html
[08:32:14] fsfe.org/press/press.zh.html
[08:32:14] fsfe.org/search/index.js
[08:32:14] fsfe.org/tags/tagged-AI.ar.html
[08:32:14] fsfe.org/tags/tagged-AI.bg.html
[08:32:14] fsfe.org/tags/tagged-AI.bs.html
[08:32:14] fsfe.org/tags/tagged-AI.ca.html
[08:32:14] fsfe.org/tags/tagged-AI.cs.html
[08:32:14] fsfe.org/tags/tagged-AI.da.html
[08:32:14] fsfe.org/tags/tagged-AI.de.html
[08:32:14] fsfe.org/tags/tagged-AI.el.html
[08:32:14] fsfe.org/tags/tagged-AI.en.html
[08:32:14] fsfe.org/tags/tagged-AI.es.html
[08:32:14] fsfe.org/tags/tagged-AI.et.html
[08:32:14] fsfe.org/tags/tagged-AI.fa.html
[08:32:14] fsfe.org/tags/tagged-AI.fi.html
[08:32:14] fsfe.org/tags/tagged-AI.fr.html
[08:32:14] fsfe.org/tags/tagged-AI.hr.html
[08:32:14] fsfe.org/tags/tagged-AI.hu.html
[08:32:14] fsfe.org/tags/tagged-AI.it.html
[08:32:14] fsfe.org/tags/tagged-AI.ja.html
[08:32:14] fsfe.org/tags/tagged-AI.mk.html
[08:32:14] fsfe.org/tags/tagged-AI.nb.html
[08:32:14] fsfe.org/tags/tagged-AI.nl.html
[08:32:14] fsfe.org/tags/tagged-AI.nn.html
[08:32:14] fsfe.org/tags/tagged-AI.pl.html
[08:32:14] fsfe.org/tags/tagged-AI.pt.html
[08:32:14] fsfe.org/tags/tagged-AI.ro.html
[08:32:14] fsfe.org/tags/tagged-AI.ru.html
[08:32:14] fsfe.org/tags/tagged-AI.sk.html
[08:32:14] fsfe.org/tags/tagged-AI.sl.html
[08:32:14] fsfe.org/tags/tagged-AI.sq.html
[08:32:14] fsfe.org/tags/tagged-AI.sr.html
[08:32:14] fsfe.org/tags/tagged-AI.sv.html
[08:32:14] fsfe.org/tags/tagged-AI.tr.html
[08:32:14] fsfe.org/tags/tagged-AI.uk.html
[08:32:14] fsfe.org/tags/tagged-AI.zh.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.ar.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.bg.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.bs.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.ca.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.cs.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.da.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.de.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.el.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.en.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.es.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.et.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.fa.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.fi.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.fr.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.hr.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.hu.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.it.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.ja.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.mk.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.nb.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.nl.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.nn.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.pl.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.pt.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.ro.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.ru.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.sk.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.sl.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.sq.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.sr.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.sv.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.tr.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.uk.html
[08:32:14] fsfe.org/tags/tagged-ada-zangemann.zh.html
[08:32:14] fsfe.org/tags/tagged-annual-report.ar.html
[08:32:14] fsfe.org/tags/tagged-annual-report.bg.html
[08:32:14] fsfe.org/tags/tagged-annual-report.bs.html
[08:32:14] fsfe.org/tags/tagged-annual-report.ca.html
[08:32:14] fsfe.org/tags/tagged-annual-report.cs.html
[08:32:14] fsfe.org/tags/tagged-annual-report.da.html
[08:32:14] fsfe.org/tags/tagged-annual-report.de.html
[08:32:14] fsfe.org/tags/tagged-annual-report.el.html
[08:32:14] fsfe.org/tags/tagged-annual-report.en.html
[08:32:14] fsfe.org/tags/tagged-annual-report.es.html
[08:32:14] fsfe.org/tags/tagged-annual-report.et.html
[08:32:14] fsfe.org/tags/tagged-annual-report.fa.html
[08:32:14] fsfe.org/tags/tagged-annual-report.fi.html
[08:32:14] fsfe.org/tags/tagged-annual-report.fr.html
[08:32:14] fsfe.org/tags/tagged-annual-report.hr.html
[08:32:14] fsfe.org/tags/tagged-annual-report.hu.html
[08:32:14] fsfe.org/tags/tagged-annual-report.it.html
[08:32:14] fsfe.org/tags/tagged-annual-report.ja.html
[08:32:14] fsfe.org/tags/tagged-annual-report.mk.html
[08:32:14] fsfe.org/tags/tagged-annual-report.nb.html
[08:32:14] fsfe.org/tags/tagged-annual-report.nl.html
[08:32:14] fsfe.org/tags/tagged-annual-report.nn.html
[08:32:14] fsfe.org/tags/tagged-annual-report.pl.html
[08:32:14] fsfe.org/tags/tagged-annual-report.pt.html
[08:32:14] fsfe.org/tags/tagged-annual-report.ro.html
[08:32:14] fsfe.org/tags/tagged-annual-report.ru.html
[08:32:14] fsfe.org/tags/tagged-annual-report.sk.html
[08:32:14] fsfe.org/tags/tagged-annual-report.sl.html
[08:32:14] fsfe.org/tags/tagged-annual-report.sq.html
[08:32:14] fsfe.org/tags/tagged-annual-report.sr.html
[08:32:14] fsfe.org/tags/tagged-annual-report.sv.html
[08:32:14] fsfe.org/tags/tagged-annual-report.tr.html
[08:32:14] fsfe.org/tags/tagged-annual-report.uk.html
[08:32:14] fsfe.org/tags/tagged-annual-report.zh.html
[08:32:14] fsfe.org/tags/tagged-community.ar.html
[08:32:14] fsfe.org/tags/tagged-community.bg.html
[08:32:14] fsfe.org/tags/tagged-community.bs.html
[08:32:14] fsfe.org/tags/tagged-community.ca.html
[08:32:14] fsfe.org/tags/tagged-community.cs.html
[08:32:14] fsfe.org/tags/tagged-community.da.html
[08:32:14] fsfe.org/tags/tagged-community.de.html
[08:32:14] fsfe.org/tags/tagged-community.el.html
[08:32:14] fsfe.org/tags/tagged-community.en.html
[08:32:14] fsfe.org/tags/tagged-community.es.html
[08:32:14] fsfe.org/tags/tagged-community.et.html
[08:32:14] fsfe.org/tags/tagged-community.fa.html
[08:32:14] fsfe.org/tags/tagged-community.fi.html
[08:32:14] fsfe.org/tags/tagged-community.fr.html
[08:32:14] fsfe.org/tags/tagged-community.hr.html
[08:32:14] fsfe.org/tags/tagged-community.hu.html
[08:32:14] fsfe.org/tags/tagged-community.it.html
[08:32:14] fsfe.org/tags/tagged-community.ja.html
[08:32:14] fsfe.org/tags/tagged-community.mk.html
[08:32:14] fsfe.org/tags/tagged-community.nb.html
[08:32:14] fsfe.org/tags/tagged-community.nl.html
[08:32:14] fsfe.org/tags/tagged-community.nn.html
[08:32:14] fsfe.org/tags/tagged-community.pl.html
[08:32:14] fsfe.org/tags/tagged-community.pt.html
[08:32:14] fsfe.org/tags/tagged-community.ro.html
[08:32:14] fsfe.org/tags/tagged-community.ru.html
[08:32:14] fsfe.org/tags/tagged-community.sk.html
[08:32:14] fsfe.org/tags/tagged-community.sl.html
[08:32:14] fsfe.org/tags/tagged-community.sq.html
[08:32:14] fsfe.org/tags/tagged-community.sr.html
[08:32:14] fsfe.org/tags/tagged-community.sv.html
[08:32:14] fsfe.org/tags/tagged-community.tr.html
[08:32:14] fsfe.org/tags/tagged-community.uk.html
[08:32:14] fsfe.org/tags/tagged-community.zh.html
[08:32:14] fsfe.org/tags/tagged-de.ar.html
[08:32:14] fsfe.org/tags/tagged-de.bg.html
[08:32:14] fsfe.org/tags/tagged-de.bs.html
[08:32:14] fsfe.org/tags/tagged-de.ca.html
[08:32:14] fsfe.org/tags/tagged-de.cs.html
[08:32:14] fsfe.org/tags/tagged-de.da.html
[08:32:14] fsfe.org/tags/tagged-de.de.html
[08:32:14] fsfe.org/tags/tagged-de.el.html
[08:32:14] fsfe.org/tags/tagged-de.en.html
[08:32:14] fsfe.org/tags/tagged-de.es.html
[08:32:14] fsfe.org/tags/tagged-de.et.html
[08:32:14] fsfe.org/tags/tagged-de.fa.html
[08:32:14] fsfe.org/tags/tagged-de.fi.html
[08:32:14] fsfe.org/tags/tagged-de.fr.html
[08:32:14] fsfe.org/tags/tagged-de.hr.html
[08:32:14] fsfe.org/tags/tagged-de.hu.html
[08:32:14] fsfe.org/tags/tagged-de.it.html
[08:32:14] fsfe.org/tags/tagged-de.ja.html
[08:32:14] fsfe.org/tags/tagged-de.mk.html
[08:32:14] fsfe.org/tags/tagged-de.nb.html
[08:32:14] fsfe.org/tags/tagged-de.nl.html
[08:32:14] fsfe.org/tags/tagged-de.nn.html
[08:32:14] fsfe.org/tags/tagged-de.pl.html
[08:32:14] fsfe.org/tags/tagged-de.pt.html
[08:32:14] fsfe.org/tags/tagged-de.ro.html
[08:32:14] fsfe.org/tags/tagged-de.ru.html
[08:32:14] fsfe.org/tags/tagged-de.sk.html
[08:32:14] fsfe.org/tags/tagged-de.sl.html
[08:32:14] fsfe.org/tags/tagged-de.sq.html
[08:32:14] fsfe.org/tags/tagged-de.sr.html
[08:32:14] fsfe.org/tags/tagged-de.sv.html
[08:32:14] fsfe.org/tags/tagged-de.tr.html
[08:32:14] fsfe.org/tags/tagged-de.uk.html
[08:32:14] fsfe.org/tags/tagged-de.zh.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.ar.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.bg.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.bs.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.ca.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.cs.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.da.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.de.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.el.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.en.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.es.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.et.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.fa.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.fi.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.fr.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.hr.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.hu.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.it.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.ja.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.mk.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.nb.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.nl.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.nn.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.pl.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.pt.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.ro.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.ru.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.sk.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.sl.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.sq.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.sr.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.sv.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.tr.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.uk.html
[08:32:14] fsfe.org/tags/tagged-deviceneutrality.zh.html
[08:32:14] fsfe.org/tags/tagged-education.ar.html
[08:32:14] fsfe.org/tags/tagged-education.bg.html
[08:32:14] fsfe.org/tags/tagged-education.bs.html
[08:32:14] fsfe.org/tags/tagged-education.ca.html
[08:32:14] fsfe.org/tags/tagged-education.cs.html
[08:32:14] fsfe.org/tags/tagged-education.da.html
[08:32:14] fsfe.org/tags/tagged-education.de.html
[08:32:14] fsfe.org/tags/tagged-education.el.html
[08:32:14] fsfe.org/tags/tagged-education.en.html
[08:32:14] fsfe.org/tags/tagged-education.es.html
[08:32:14] fsfe.org/tags/tagged-education.et.html
[08:32:14] fsfe.org/tags/tagged-education.fa.html
[08:32:14] fsfe.org/tags/tagged-education.fi.html
[08:32:14] fsfe.org/tags/tagged-education.fr.html
[08:32:14] fsfe.org/tags/tagged-education.hr.html
[08:32:14] fsfe.org/tags/tagged-education.hu.html
[08:32:14] fsfe.org/tags/tagged-education.it.html
[08:32:14] fsfe.org/tags/tagged-education.ja.html
[08:32:14] fsfe.org/tags/tagged-education.mk.html
[08:32:14] fsfe.org/tags/tagged-education.nb.html
[08:32:14] fsfe.org/tags/tagged-education.nl.html
[08:32:14] fsfe.org/tags/tagged-education.nn.html
[08:32:14] fsfe.org/tags/tagged-education.pl.html
[08:32:14] fsfe.org/tags/tagged-education.pt.html
[08:32:14] fsfe.org/tags/tagged-education.ro.html
[08:32:14] fsfe.org/tags/tagged-education.ru.html
[08:32:14] fsfe.org/tags/tagged-education.sk.html
[08:32:14] fsfe.org/tags/tagged-education.sl.html
[08:32:14] fsfe.org/tags/tagged-education.sq.html
[08:32:14] fsfe.org/tags/tagged-education.sr.html
[08:32:14] fsfe.org/tags/tagged-education.sv.html
[08:32:14] fsfe.org/tags/tagged-education.tr.html
[08:32:14] fsfe.org/tags/tagged-education.uk.html
[08:32:14] fsfe.org/tags/tagged-education.zh.html
[08:32:14] fsfe.org/tags/tagged-european-commission.ar.html
[08:32:14] fsfe.org/tags/tagged-european-commission.bg.html
[08:32:14] fsfe.org/tags/tagged-european-commission.bs.html
[08:32:14] fsfe.org/tags/tagged-european-commission.ca.html
[08:32:14] fsfe.org/tags/tagged-european-commission.cs.html
[08:32:14] fsfe.org/tags/tagged-european-commission.da.html
[08:32:14] fsfe.org/tags/tagged-european-commission.de.html
[08:32:14] fsfe.org/tags/tagged-european-commission.el.html
[08:32:14] fsfe.org/tags/tagged-european-commission.en.html
[08:32:14] fsfe.org/tags/tagged-european-commission.es.html
[08:32:14] fsfe.org/tags/tagged-european-commission.et.html
[08:32:14] fsfe.org/tags/tagged-european-commission.fa.html
[08:32:14] fsfe.org/tags/tagged-european-commission.fi.html
[08:32:14] fsfe.org/tags/tagged-european-commission.fr.html
[08:32:14] fsfe.org/tags/tagged-european-commission.hr.html
[08:32:14] fsfe.org/tags/tagged-european-commission.hu.html
[08:32:14] fsfe.org/tags/tagged-european-commission.it.html
[08:32:14] fsfe.org/tags/tagged-european-commission.ja.html
[08:32:14] fsfe.org/tags/tagged-european-commission.mk.html
[08:32:14] fsfe.org/tags/tagged-european-commission.nb.html
[08:32:14] fsfe.org/tags/tagged-european-commission.nl.html
[08:32:14] fsfe.org/tags/tagged-european-commission.nn.html
[08:32:14] fsfe.org/tags/tagged-european-commission.pl.html
[08:32:14] fsfe.org/tags/tagged-european-commission.pt.html
[08:32:14] fsfe.org/tags/tagged-european-commission.ro.html
[08:32:14] fsfe.org/tags/tagged-european-commission.ru.html
[08:32:14] fsfe.org/tags/tagged-european-commission.sk.html
[08:32:14] fsfe.org/tags/tagged-european-commission.sl.html
[08:32:14] fsfe.org/tags/tagged-european-commission.sq.html
[08:32:14] fsfe.org/tags/tagged-european-commission.sr.html
[08:32:14] fsfe.org/tags/tagged-european-commission.sv.html
[08:32:14] fsfe.org/tags/tagged-european-commission.tr.html
[08:32:14] fsfe.org/tags/tagged-european-commission.uk.html
[08:32:14] fsfe.org/tags/tagged-european-commission.zh.html
[08:32:14] fsfe.org/tags/tagged-fosdem.ar.html
[08:32:14] fsfe.org/tags/tagged-fosdem.bg.html
[08:32:14] fsfe.org/tags/tagged-fosdem.bs.html
[08:32:14] fsfe.org/tags/tagged-fosdem.ca.html
[08:32:14] fsfe.org/tags/tagged-fosdem.cs.html
[08:32:14] fsfe.org/tags/tagged-fosdem.da.html
[08:32:14] fsfe.org/tags/tagged-fosdem.de.html
[08:32:14] fsfe.org/tags/tagged-fosdem.el.html
[08:32:14] fsfe.org/tags/tagged-fosdem.en.html
[08:32:14] fsfe.org/tags/tagged-fosdem.es.html
[08:32:14] fsfe.org/tags/tagged-fosdem.et.html
[08:32:14] fsfe.org/tags/tagged-fosdem.fa.html
[08:32:14] fsfe.org/tags/tagged-fosdem.fi.html
[08:32:14] fsfe.org/tags/tagged-fosdem.fr.html
[08:32:14] fsfe.org/tags/tagged-fosdem.hr.html
[08:32:14] fsfe.org/tags/tagged-fosdem.hu.html
[08:32:14] fsfe.org/tags/tagged-fosdem.it.html
[08:32:14] fsfe.org/tags/tagged-fosdem.ja.html
[08:32:14] fsfe.org/tags/tagged-fosdem.mk.html
[08:32:14] fsfe.org/tags/tagged-fosdem.nb.html
[08:32:14] fsfe.org/tags/tagged-fosdem.nl.html
[08:32:14] fsfe.org/tags/tagged-fosdem.nn.html
[08:32:14] fsfe.org/tags/tagged-fosdem.pl.html
[08:32:14] fsfe.org/tags/tagged-fosdem.pt.html
[08:32:14] fsfe.org/tags/tagged-fosdem.ro.html
[08:32:14] fsfe.org/tags/tagged-fosdem.ru.html
[08:32:14] fsfe.org/tags/tagged-fosdem.sk.html
[08:32:14] fsfe.org/tags/tagged-fosdem.sl.html
[08:32:14] fsfe.org/tags/tagged-fosdem.sq.html
[08:32:14] fsfe.org/tags/tagged-fosdem.sr.html
[08:32:14] fsfe.org/tags/tagged-fosdem.sv.html
[08:32:14] fsfe.org/tags/tagged-fosdem.tr.html
[08:32:14] fsfe.org/tags/tagged-fosdem.uk.html
[08:32:14] fsfe.org/tags/tagged-fosdem.zh.html
[08:32:14] fsfe.org/tags/tagged-highlights.ar.html
[08:32:14] fsfe.org/tags/tagged-highlights.bg.html
[08:32:14] fsfe.org/tags/tagged-highlights.bs.html
[08:32:14] fsfe.org/tags/tagged-highlights.ca.html
[08:32:14] fsfe.org/tags/tagged-highlights.cs.html
[08:32:14] fsfe.org/tags/tagged-highlights.da.html
[08:32:14] fsfe.org/tags/tagged-highlights.de.html
[08:32:14] fsfe.org/tags/tagged-highlights.el.html
[08:32:14] fsfe.org/tags/tagged-highlights.en.html
[08:32:14] fsfe.org/tags/tagged-highlights.es.html
[08:32:14] fsfe.org/tags/tagged-highlights.et.html
[08:32:14] fsfe.org/tags/tagged-highlights.fa.html
[08:32:14] fsfe.org/tags/tagged-highlights.fi.html
[08:32:14] fsfe.org/tags/tagged-highlights.fr.html
[08:32:14] fsfe.org/tags/tagged-highlights.hr.html
[08:32:14] fsfe.org/tags/tagged-highlights.hu.html
[08:32:14] fsfe.org/tags/tagged-highlights.it.html
[08:32:14] fsfe.org/tags/tagged-highlights.ja.html
[08:32:14] fsfe.org/tags/tagged-highlights.mk.html
[08:32:14] fsfe.org/tags/tagged-highlights.nb.html
[08:32:14] fsfe.org/tags/tagged-highlights.nl.html
[08:32:14] fsfe.org/tags/tagged-highlights.nn.html
[08:32:14] fsfe.org/tags/tagged-highlights.pl.html
[08:32:14] fsfe.org/tags/tagged-highlights.pt.html
[08:32:14] fsfe.org/tags/tagged-highlights.ro.html
[08:32:14] fsfe.org/tags/tagged-highlights.ru.html
[08:32:14] fsfe.org/tags/tagged-highlights.sk.html
[08:32:14] fsfe.org/tags/tagged-highlights.sl.html
[08:32:14] fsfe.org/tags/tagged-highlights.sq.html
[08:32:14] fsfe.org/tags/tagged-highlights.sr.html
[08:32:14] fsfe.org/tags/tagged-highlights.sv.html
[08:32:14] fsfe.org/tags/tagged-highlights.tr.html
[08:32:14] fsfe.org/tags/tagged-highlights.uk.html
[08:32:14] fsfe.org/tags/tagged-highlights.zh.html
[08:32:14] fsfe.org/tags/tagged-it.ar.html
[08:32:14] fsfe.org/tags/tagged-it.bg.html
[08:32:14] fsfe.org/tags/tagged-it.bs.html
[08:32:14] fsfe.org/tags/tagged-it.ca.html
[08:32:14] fsfe.org/tags/tagged-it.cs.html
[08:32:14] fsfe.org/tags/tagged-it.da.html
[08:32:14] fsfe.org/tags/tagged-it.de.html
[08:32:14] fsfe.org/tags/tagged-it.el.html
[08:32:14] fsfe.org/tags/tagged-it.en.html
[08:32:14] fsfe.org/tags/tagged-it.es.html
[08:32:14] fsfe.org/tags/tagged-it.et.html
[08:32:14] fsfe.org/tags/tagged-it.fa.html
[08:32:14] fsfe.org/tags/tagged-it.fi.html
[08:32:14] fsfe.org/tags/tagged-it.fr.html
[08:32:14] fsfe.org/tags/tagged-it.hr.html
[08:32:14] fsfe.org/tags/tagged-it.hu.html
[08:32:14] fsfe.org/tags/tagged-it.it.html
[08:32:14] fsfe.org/tags/tagged-it.ja.html
[08:32:14] fsfe.org/tags/tagged-it.mk.html
[08:32:14] fsfe.org/tags/tagged-it.nb.html
[08:32:14] fsfe.org/tags/tagged-it.nl.html
[08:32:14] fsfe.org/tags/tagged-it.nn.html
[08:32:14] fsfe.org/tags/tagged-it.pl.html
[08:32:14] fsfe.org/tags/tagged-it.pt.html
[08:32:14] fsfe.org/tags/tagged-it.ro.html
[08:32:14] fsfe.org/tags/tagged-it.ru.html
[08:32:14] fsfe.org/tags/tagged-it.sk.html
[08:32:14] fsfe.org/tags/tagged-it.sl.html
[08:32:14] fsfe.org/tags/tagged-it.sq.html
[08:32:14] fsfe.org/tags/tagged-it.sr.html
[08:32:14] fsfe.org/tags/tagged-it.sv.html
[08:32:14] fsfe.org/tags/tagged-it.tr.html
[08:32:14] fsfe.org/tags/tagged-it.uk.html
[08:32:14] fsfe.org/tags/tagged-it.zh.html
[08:32:14] fsfe.org/tags/tagged-legal.ar.html
[08:32:14] fsfe.org/tags/tagged-legal.bg.html
[08:32:14] fsfe.org/tags/tagged-legal.bs.html
[08:32:14] fsfe.org/tags/tagged-legal.ca.html
[08:32:14] fsfe.org/tags/tagged-legal.cs.html
[08:32:14] fsfe.org/tags/tagged-legal.da.html
[08:32:14] fsfe.org/tags/tagged-legal.de.html
[08:32:14] fsfe.org/tags/tagged-legal.el.html
[08:32:14] fsfe.org/tags/tagged-legal.en.html
[08:32:14] fsfe.org/tags/tagged-legal.es.html
[08:32:14] fsfe.org/tags/tagged-legal.et.html
[08:32:14] fsfe.org/tags/tagged-legal.fa.html
[08:32:14] fsfe.org/tags/tagged-legal.fi.html
[08:32:14] fsfe.org/tags/tagged-legal.fr.html
[08:32:14] fsfe.org/tags/tagged-legal.hr.html
[08:32:14] fsfe.org/tags/tagged-legal.hu.html
[08:32:14] fsfe.org/tags/tagged-legal.it.html
[08:32:14] fsfe.org/tags/tagged-legal.ja.html
[08:32:14] fsfe.org/tags/tagged-legal.mk.html
[08:32:14] fsfe.org/tags/tagged-legal.nb.html
[08:32:14] fsfe.org/tags/tagged-legal.nl.html
[08:32:14] fsfe.org/tags/tagged-legal.nn.html
[08:32:14] fsfe.org/tags/tagged-legal.pl.html
[08:32:14] fsfe.org/tags/tagged-legal.pt.html
[08:32:14] fsfe.org/tags/tagged-legal.ro.html
[08:32:14] fsfe.org/tags/tagged-legal.ru.html
[08:32:14] fsfe.org/tags/tagged-legal.sk.html
[08:32:14] fsfe.org/tags/tagged-legal.sl.html
[08:32:14] fsfe.org/tags/tagged-legal.sq.html
[08:32:14] fsfe.org/tags/tagged-legal.sr.html
[08:32:14] fsfe.org/tags/tagged-legal.sv.html
[08:32:14] fsfe.org/tags/tagged-legal.tr.html
[08:32:14] fsfe.org/tags/tagged-legal.uk.html
[08:32:14] fsfe.org/tags/tagged-legal.zh.html
[08:32:14] fsfe.org/tags/tagged-licensing.ar.html
[08:32:14] fsfe.org/tags/tagged-licensing.bg.html
[08:32:14] fsfe.org/tags/tagged-licensing.bs.html
[08:32:14] fsfe.org/tags/tagged-licensing.ca.html
[08:32:14] fsfe.org/tags/tagged-licensing.cs.html
[08:32:14] fsfe.org/tags/tagged-licensing.da.html
[08:32:14] fsfe.org/tags/tagged-licensing.de.html
[08:32:14] fsfe.org/tags/tagged-licensing.el.html
[08:32:14] fsfe.org/tags/tagged-licensing.en.html
[08:32:14] fsfe.org/tags/tagged-licensing.es.html
[08:32:14] fsfe.org/tags/tagged-licensing.et.html
[08:32:14] fsfe.org/tags/tagged-licensing.fa.html
[08:32:14] fsfe.org/tags/tagged-licensing.fi.html
[08:32:14] fsfe.org/tags/tagged-licensing.fr.html
[08:32:14] fsfe.org/tags/tagged-licensing.hr.html
[08:32:14] fsfe.org/tags/tagged-licensing.hu.html
[08:32:14] fsfe.org/tags/tagged-licensing.it.html
[08:32:14] fsfe.org/tags/tagged-licensing.ja.html
[08:32:14] fsfe.org/tags/tagged-licensing.mk.html
[08:32:14] fsfe.org/tags/tagged-licensing.nb.html
[08:32:14] fsfe.org/tags/tagged-licensing.nl.html
[08:32:14] fsfe.org/tags/tagged-licensing.nn.html
[08:32:14] fsfe.org/tags/tagged-licensing.pl.html
[08:32:14] fsfe.org/tags/tagged-licensing.pt.html
[08:32:14] fsfe.org/tags/tagged-licensing.ro.html
[08:32:14] fsfe.org/tags/tagged-licensing.ru.html
[08:32:14] fsfe.org/tags/tagged-licensing.sk.html
[08:32:14] fsfe.org/tags/tagged-licensing.sl.html
[08:32:14] fsfe.org/tags/tagged-licensing.sq.html
[08:32:14] fsfe.org/tags/tagged-licensing.sr.html
[08:32:14] fsfe.org/tags/tagged-licensing.sv.html
[08:32:14] fsfe.org/tags/tagged-licensing.tr.html
[08:32:14] fsfe.org/tags/tagged-licensing.uk.html
[08:32:14] fsfe.org/tags/tagged-licensing.zh.html
[08:32:14] fsfe.org/tags/tagged-localgroup.ar.html
[08:32:14] fsfe.org/tags/tagged-localgroup.bg.html
[08:32:14] fsfe.org/tags/tagged-localgroup.bs.html
[08:32:14] fsfe.org/tags/tagged-localgroup.ca.html
[08:32:14] fsfe.org/tags/tagged-localgroup.cs.html
[08:32:14] fsfe.org/tags/tagged-localgroup.da.html
[08:32:14] fsfe.org/tags/tagged-localgroup.de.html
[08:32:14] fsfe.org/tags/tagged-localgroup.el.html
[08:32:14] fsfe.org/tags/tagged-localgroup.en.html
[08:32:14] fsfe.org/tags/tagged-localgroup.es.html
[08:32:14] fsfe.org/tags/tagged-localgroup.et.html
[08:32:14] fsfe.org/tags/tagged-localgroup.fa.html
[08:32:14] fsfe.org/tags/tagged-localgroup.fi.html
[08:32:14] fsfe.org/tags/tagged-localgroup.fr.html
[08:32:14] fsfe.org/tags/tagged-localgroup.hr.html
[08:32:14] fsfe.org/tags/tagged-localgroup.hu.html
[08:32:14] fsfe.org/tags/tagged-localgroup.it.html
[08:32:14] fsfe.org/tags/tagged-localgroup.ja.html
[08:32:14] fsfe.org/tags/tagged-localgroup.mk.html
[08:32:14] fsfe.org/tags/tagged-localgroup.nb.html
[08:32:14] fsfe.org/tags/tagged-localgroup.nl.html
[08:32:14] fsfe.org/tags/tagged-localgroup.nn.html
[08:32:14] fsfe.org/tags/tagged-localgroup.pl.html
[08:32:14] fsfe.org/tags/tagged-localgroup.pt.html
[08:32:14] fsfe.org/tags/tagged-localgroup.ro.html
[08:32:14] fsfe.org/tags/tagged-localgroup.ru.html
[08:32:14] fsfe.org/tags/tagged-localgroup.sk.html
[08:32:14] fsfe.org/tags/tagged-localgroup.sl.html
[08:32:14] fsfe.org/tags/tagged-localgroup.sq.html
[08:32:14] fsfe.org/tags/tagged-localgroup.sr.html
[08:32:14] fsfe.org/tags/tagged-localgroup.sv.html
[08:32:14] fsfe.org/tags/tagged-localgroup.tr.html
[08:32:14] fsfe.org/tags/tagged-localgroup.uk.html
[08:32:14] fsfe.org/tags/tagged-localgroup.zh.html
[08:32:14] fsfe.org/tags/tagged-ngi.ar.html
[08:32:14] fsfe.org/tags/tagged-ngi.bg.html
[08:32:14] fsfe.org/tags/tagged-ngi.bs.html
[08:32:14] fsfe.org/tags/tagged-ngi.ca.html
[08:32:14] fsfe.org/tags/tagged-ngi.cs.html
[08:32:14] fsfe.org/tags/tagged-ngi.da.html
[08:32:14] fsfe.org/tags/tagged-ngi.de.html
[08:32:14] fsfe.org/tags/tagged-ngi.el.html
[08:32:14] fsfe.org/tags/tagged-ngi.en.html
[08:32:14] fsfe.org/tags/tagged-ngi.es.html
[08:32:14] fsfe.org/tags/tagged-ngi.et.html
[08:32:14] fsfe.org/tags/tagged-ngi.fa.html
[08:32:14] fsfe.org/tags/tagged-ngi.fi.html
[08:32:14] fsfe.org/tags/tagged-ngi.fr.html
[08:32:14] fsfe.org/tags/tagged-ngi.hr.html
[08:32:14] fsfe.org/tags/tagged-ngi.hu.html
[08:32:14] fsfe.org/tags/tagged-ngi.it.html
[08:32:14] fsfe.org/tags/tagged-ngi.ja.html
[08:32:14] fsfe.org/tags/tagged-ngi.mk.html
[08:32:14] fsfe.org/tags/tagged-ngi.nb.html
[08:32:14] fsfe.org/tags/tagged-ngi.nl.html
[08:32:14] fsfe.org/tags/tagged-ngi.nn.html
[08:32:14] fsfe.org/tags/tagged-ngi.pl.html
[08:32:14] fsfe.org/tags/tagged-ngi.pt.html
[08:32:14] fsfe.org/tags/tagged-ngi.ro.html
[08:32:14] fsfe.org/tags/tagged-ngi.ru.html
[08:32:14] fsfe.org/tags/tagged-ngi.sk.html
[08:32:14] fsfe.org/tags/tagged-ngi.sl.html
[08:32:14] fsfe.org/tags/tagged-ngi.sq.html
[08:32:14] fsfe.org/tags/tagged-ngi.sr.html
[08:32:14] fsfe.org/tags/tagged-ngi.sv.html
[08:32:14] fsfe.org/tags/tagged-ngi.tr.html
[08:32:14] fsfe.org/tags/tagged-ngi.uk.html
[08:32:14] fsfe.org/tags/tagged-ngi.zh.html
[08:32:14] fsfe.org/tags/tagged-nl.ar.html
[08:32:14] fsfe.org/tags/tagged-nl.bg.html
[08:32:14] fsfe.org/tags/tagged-nl.bs.html
[08:32:14] fsfe.org/tags/tagged-nl.ca.html
[08:32:14] fsfe.org/tags/tagged-nl.cs.html
[08:32:14] fsfe.org/tags/tagged-nl.da.html
[08:32:14] fsfe.org/tags/tagged-nl.de.html
[08:32:14] fsfe.org/tags/tagged-nl.el.html
[08:32:14] fsfe.org/tags/tagged-nl.en.html
[08:32:14] fsfe.org/tags/tagged-nl.es.html
[08:32:14] fsfe.org/tags/tagged-nl.et.html
[08:32:14] fsfe.org/tags/tagged-nl.fa.html
[08:32:14] fsfe.org/tags/tagged-nl.fi.html
[08:32:14] fsfe.org/tags/tagged-nl.fr.html
[08:32:14] fsfe.org/tags/tagged-nl.hr.html
[08:32:14] fsfe.org/tags/tagged-nl.hu.html
[08:32:14] fsfe.org/tags/tagged-nl.it.html
[08:32:14] fsfe.org/tags/tagged-nl.ja.html
[08:32:14] fsfe.org/tags/tagged-nl.mk.html
[08:32:14] fsfe.org/tags/tagged-nl.nb.html
[08:32:14] fsfe.org/tags/tagged-nl.nl.html
[08:32:14] fsfe.org/tags/tagged-nl.nn.html
[08:32:14] fsfe.org/tags/tagged-nl.pl.html
[08:32:14] fsfe.org/tags/tagged-nl.pt.html
[08:32:14] fsfe.org/tags/tagged-nl.ro.html
[08:32:14] fsfe.org/tags/tagged-nl.ru.html
[08:32:14] fsfe.org/tags/tagged-nl.sk.html
[08:32:14] fsfe.org/tags/tagged-nl.sl.html
[08:32:14] fsfe.org/tags/tagged-nl.sq.html
[08:32:14] fsfe.org/tags/tagged-nl.sr.html
[08:32:14] fsfe.org/tags/tagged-nl.sv.html
[08:32:14] fsfe.org/tags/tagged-nl.tr.html
[08:32:14] fsfe.org/tags/tagged-nl.uk.html
[08:32:14] fsfe.org/tags/tagged-nl.zh.html
[08:32:14] fsfe.org/tags/tagged-pmpc.ar.html
[08:32:14] fsfe.org/tags/tagged-pmpc.bg.html
[08:32:14] fsfe.org/tags/tagged-pmpc.bs.html
[08:32:14] fsfe.org/tags/tagged-pmpc.ca.html
[08:32:14] fsfe.org/tags/tagged-pmpc.cs.html
[08:32:14] fsfe.org/tags/tagged-pmpc.da.html
[08:32:14] fsfe.org/tags/tagged-pmpc.de.html
[08:32:14] fsfe.org/tags/tagged-pmpc.el.html
[08:32:14] fsfe.org/tags/tagged-pmpc.en.html
[08:32:14] fsfe.org/tags/tagged-pmpc.es.html
[08:32:14] fsfe.org/tags/tagged-pmpc.et.html
[08:32:14] fsfe.org/tags/tagged-pmpc.fa.html
[08:32:14] fsfe.org/tags/tagged-pmpc.fi.html
[08:32:14] fsfe.org/tags/tagged-pmpc.fr.html
[08:32:14] fsfe.org/tags/tagged-pmpc.hr.html
[08:32:14] fsfe.org/tags/tagged-pmpc.hu.html
[08:32:14] fsfe.org/tags/tagged-pmpc.it.html
[08:32:14] fsfe.org/tags/tagged-pmpc.ja.html
[08:32:14] fsfe.org/tags/tagged-pmpc.mk.html
[08:32:14] fsfe.org/tags/tagged-pmpc.nb.html
[08:32:14] fsfe.org/tags/tagged-pmpc.nl.html
[08:32:14] fsfe.org/tags/tagged-pmpc.nn.html
[08:32:14] fsfe.org/tags/tagged-pmpc.pl.html
[08:32:14] fsfe.org/tags/tagged-pmpc.pt.html
[08:32:14] fsfe.org/tags/tagged-pmpc.ro.html
[08:32:14] fsfe.org/tags/tagged-pmpc.ru.html
[08:32:14] fsfe.org/tags/tagged-pmpc.sk.html
[08:32:14] fsfe.org/tags/tagged-pmpc.sl.html
[08:32:14] fsfe.org/tags/tagged-pmpc.sq.html
[08:32:14] fsfe.org/tags/tagged-pmpc.sr.html
[08:32:14] fsfe.org/tags/tagged-pmpc.sv.html
[08:32:14] fsfe.org/tags/tagged-pmpc.tr.html
[08:32:14] fsfe.org/tags/tagged-pmpc.uk.html
[08:32:14] fsfe.org/tags/tagged-pmpc.zh.html
[08:32:14] fsfe.org/tags/tagged-podcast.ar.html
[08:32:14] fsfe.org/tags/tagged-podcast.bg.html
[08:32:14] fsfe.org/tags/tagged-podcast.bs.html
[08:32:14] fsfe.org/tags/tagged-podcast.ca.html
[08:32:14] fsfe.org/tags/tagged-podcast.cs.html
[08:32:14] fsfe.org/tags/tagged-podcast.da.html
[08:32:14] fsfe.org/tags/tagged-podcast.de.html
[08:32:14] fsfe.org/tags/tagged-podcast.el.html
[08:32:14] fsfe.org/tags/tagged-podcast.en.html
[08:32:14] fsfe.org/tags/tagged-podcast.es.html
[08:32:14] fsfe.org/tags/tagged-podcast.et.html
[08:32:14] fsfe.org/tags/tagged-podcast.fa.html
[08:32:14] fsfe.org/tags/tagged-podcast.fi.html
[08:32:14] fsfe.org/tags/tagged-podcast.fr.html
[08:32:14] fsfe.org/tags/tagged-podcast.hr.html
[08:32:14] fsfe.org/tags/tagged-podcast.hu.html
[08:32:14] fsfe.org/tags/tagged-podcast.it.html
[08:32:14] fsfe.org/tags/tagged-podcast.ja.html
[08:32:14] fsfe.org/tags/tagged-podcast.mk.html
[08:32:14] fsfe.org/tags/tagged-podcast.nb.html
[08:32:14] fsfe.org/tags/tagged-podcast.nl.html
[08:32:14] fsfe.org/tags/tagged-podcast.nn.html
[08:32:14] fsfe.org/tags/tagged-podcast.pl.html
[08:32:14] fsfe.org/tags/tagged-podcast.pt.html
[08:32:14] fsfe.org/tags/tagged-podcast.ro.html
[08:32:14] fsfe.org/tags/tagged-podcast.ru.html
[08:32:14] fsfe.org/tags/tagged-podcast.sk.html
[08:32:14] fsfe.org/tags/tagged-podcast.sl.html
[08:32:14] fsfe.org/tags/tagged-podcast.sq.html
[08:32:14] fsfe.org/tags/tagged-podcast.sr.html
[08:32:14] fsfe.org/tags/tagged-podcast.sv.html
[08:32:14] fsfe.org/tags/tagged-podcast.tr.html
[08:32:14] fsfe.org/tags/tagged-podcast.uk.html
[08:32:14] fsfe.org/tags/tagged-podcast.zh.html
[08:32:14] fsfe.org/tags/tagged-press.ar.html
[08:32:14] fsfe.org/tags/tagged-press.bg.html
[08:32:14] fsfe.org/tags/tagged-press.bs.html
[08:32:14] fsfe.org/tags/tagged-press.ca.html
[08:32:14] fsfe.org/tags/tagged-press.cs.html
[08:32:14] fsfe.org/tags/tagged-press.da.html
[08:32:14] fsfe.org/tags/tagged-press.de.html
[08:32:14] fsfe.org/tags/tagged-press.el.html
[08:32:14] fsfe.org/tags/tagged-press.en.html
[08:32:14] fsfe.org/tags/tagged-press.es.html
[08:32:14] fsfe.org/tags/tagged-press.et.html
[08:32:14] fsfe.org/tags/tagged-press.fa.html
[08:32:14] fsfe.org/tags/tagged-press.fi.html
[08:32:14] fsfe.org/tags/tagged-press.fr.html
[08:32:14] fsfe.org/tags/tagged-press.hr.html
[08:32:14] fsfe.org/tags/tagged-press.hu.html
[08:32:14] fsfe.org/tags/tagged-press.it.html
[08:32:14] fsfe.org/tags/tagged-press.ja.html
[08:32:14] fsfe.org/tags/tagged-press.mk.html
[08:32:14] fsfe.org/tags/tagged-press.nb.html
[08:32:14] fsfe.org/tags/tagged-press.nl.html
[08:32:14] fsfe.org/tags/tagged-press.nn.html
[08:32:14] fsfe.org/tags/tagged-press.pl.html
[08:32:14] fsfe.org/tags/tagged-press.pt.html
[08:32:14] fsfe.org/tags/tagged-press.ro.html
[08:32:14] fsfe.org/tags/tagged-press.ru.html
[08:32:14] fsfe.org/tags/tagged-press.sk.html
[08:32:14] fsfe.org/tags/tagged-press.sl.html
[08:32:14] fsfe.org/tags/tagged-press.sq.html
[08:32:14] fsfe.org/tags/tagged-press.sr.html
[08:32:14] fsfe.org/tags/tagged-press.sv.html
[08:32:14] fsfe.org/tags/tagged-press.tr.html
[08:32:14] fsfe.org/tags/tagged-press.uk.html
[08:32:14] fsfe.org/tags/tagged-press.zh.html
[08:32:14] fsfe.org/tags/tagged-reuse.ar.html
[08:32:14] fsfe.org/tags/tagged-reuse.bg.html
[08:32:14] fsfe.org/tags/tagged-reuse.bs.html
[08:32:14] fsfe.org/tags/tagged-reuse.ca.html
[08:32:14] fsfe.org/tags/tagged-reuse.cs.html
[08:32:14] fsfe.org/tags/tagged-reuse.da.html
[08:32:14] fsfe.org/tags/tagged-reuse.de.html
[08:32:14] fsfe.org/tags/tagged-reuse.el.html
[08:32:14] fsfe.org/tags/tagged-reuse.en.html
[08:32:14] fsfe.org/tags/tagged-reuse.es.html
[08:32:14] fsfe.org/tags/tagged-reuse.et.html
[08:32:14] fsfe.org/tags/tagged-reuse.fa.html
[08:32:14] fsfe.org/tags/tagged-reuse.fi.html
[08:32:14] fsfe.org/tags/tagged-reuse.fr.html
[08:32:14] fsfe.org/tags/tagged-reuse.hr.html
[08:32:14] fsfe.org/tags/tagged-reuse.hu.html
[08:32:14] fsfe.org/tags/tagged-reuse.it.html
[08:32:14] fsfe.org/tags/tagged-reuse.ja.html
[08:32:14] fsfe.org/tags/tagged-reuse.mk.html
[08:32:14] fsfe.org/tags/tagged-reuse.nb.html
[08:32:14] fsfe.org/tags/tagged-reuse.nl.html
[08:32:14] fsfe.org/tags/tagged-reuse.nn.html
[08:32:14] fsfe.org/tags/tagged-reuse.pl.html
[08:32:14] fsfe.org/tags/tagged-reuse.pt.html
[08:32:14] fsfe.org/tags/tagged-reuse.ro.html
[08:32:14] fsfe.org/tags/tagged-reuse.ru.html
[08:32:14] fsfe.org/tags/tagged-reuse.sk.html
[08:32:14] fsfe.org/tags/tagged-reuse.sl.html
[08:32:14] fsfe.org/tags/tagged-reuse.sq.html
[08:32:14] fsfe.org/tags/tagged-reuse.sr.html
[08:32:14] fsfe.org/tags/tagged-reuse.sv.html
[08:32:14] fsfe.org/tags/tagged-reuse.tr.html
[08:32:14] fsfe.org/tags/tagged-reuse.uk.html
[08:32:14] fsfe.org/tags/tagged-reuse.zh.html
[08:32:14] fsfe.org/tags/tagged-routers.ar.html
[08:32:14] fsfe.org/tags/tagged-routers.bg.html
[08:32:14] fsfe.org/tags/tagged-routers.bs.html
[08:32:14] fsfe.org/tags/tagged-routers.ca.html
[08:32:14] fsfe.org/tags/tagged-routers.cs.html
[08:32:14] fsfe.org/tags/tagged-routers.da.html
[08:32:14] fsfe.org/tags/tagged-routers.de.html
[08:32:14] fsfe.org/tags/tagged-routers.el.html
[08:32:14] fsfe.org/tags/tagged-routers.en.html
[08:32:14] fsfe.org/tags/tagged-routers.es.html
[08:32:14] fsfe.org/tags/tagged-routers.et.html
[08:32:14] fsfe.org/tags/tagged-routers.fa.html
[08:32:14] fsfe.org/tags/tagged-routers.fi.html
[08:32:14] fsfe.org/tags/tagged-routers.fr.html
[08:32:14] fsfe.org/tags/tagged-routers.hr.html
[08:32:14] fsfe.org/tags/tagged-routers.hu.html
[08:32:14] fsfe.org/tags/tagged-routers.it.html
[08:32:14] fsfe.org/tags/tagged-routers.ja.html
[08:32:14] fsfe.org/tags/tagged-routers.mk.html
[08:32:14] fsfe.org/tags/tagged-routers.nb.html
[08:32:14] fsfe.org/tags/tagged-routers.nl.html
[08:32:14] fsfe.org/tags/tagged-routers.nn.html
[08:32:14] fsfe.org/tags/tagged-routers.pl.html
[08:32:14] fsfe.org/tags/tagged-routers.pt.html
[08:32:14] fsfe.org/tags/tagged-routers.ro.html
[08:32:14] fsfe.org/tags/tagged-routers.ru.html
[08:32:14] fsfe.org/tags/tagged-routers.sk.html
[08:32:14] fsfe.org/tags/tagged-routers.sl.html
[08:32:14] fsfe.org/tags/tagged-routers.sq.html
[08:32:14] fsfe.org/tags/tagged-routers.sr.html
[08:32:14] fsfe.org/tags/tagged-routers.sv.html
[08:32:14] fsfe.org/tags/tagged-routers.tr.html
[08:32:14] fsfe.org/tags/tagged-routers.uk.html
[08:32:14] fsfe.org/tags/tagged-routers.zh.html
[08:32:14] fsfe.org/tags/tagged-se.ar.html
[08:32:14] fsfe.org/tags/tagged-se.bg.html
[08:32:14] fsfe.org/tags/tagged-se.bs.html
[08:32:14] fsfe.org/tags/tagged-se.ca.html
[08:32:14] fsfe.org/tags/tagged-se.cs.html
[08:32:14] fsfe.org/tags/tagged-se.da.html
[08:32:14] fsfe.org/tags/tagged-se.de.html
[08:32:14] fsfe.org/tags/tagged-se.el.html
[08:32:14] fsfe.org/tags/tagged-se.en.html
[08:32:14] fsfe.org/tags/tagged-se.es.html
[08:32:14] fsfe.org/tags/tagged-se.et.html
[08:32:14] fsfe.org/tags/tagged-se.fa.html
[08:32:14] fsfe.org/tags/tagged-se.fi.html
[08:32:14] fsfe.org/tags/tagged-se.fr.html
[08:32:14] fsfe.org/tags/tagged-se.hr.html
[08:32:14] fsfe.org/tags/tagged-se.hu.html
[08:32:14] fsfe.org/tags/tagged-se.it.html
[08:32:14] fsfe.org/tags/tagged-se.ja.html
[08:32:14] fsfe.org/tags/tagged-se.mk.html
[08:32:14] fsfe.org/tags/tagged-se.nb.html
[08:32:14] fsfe.org/tags/tagged-se.nl.html
[08:32:14] fsfe.org/tags/tagged-se.nn.html
[08:32:14] fsfe.org/tags/tagged-se.pl.html
[08:32:14] fsfe.org/tags/tagged-se.pt.html
[08:32:14] fsfe.org/tags/tagged-se.ro.html
[08:32:14] fsfe.org/tags/tagged-se.ru.html
[08:32:14] fsfe.org/tags/tagged-se.sk.html
[08:32:14] fsfe.org/tags/tagged-se.sl.html
[08:32:14] fsfe.org/tags/tagged-se.sq.html
[08:32:14] fsfe.org/tags/tagged-se.sr.html
[08:32:14] fsfe.org/tags/tagged-se.sv.html
[08:32:14] fsfe.org/tags/tagged-se.tr.html
[08:32:14] fsfe.org/tags/tagged-se.uk.html
[08:32:14] fsfe.org/tags/tagged-se.zh.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.ar.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.bg.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.bs.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.ca.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.cs.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.da.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.de.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.el.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.en.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.es.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.et.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.fa.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.fi.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.fr.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.hr.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.hu.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.it.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.ja.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.mk.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.nb.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.nl.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.nn.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.pl.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.pt.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.ro.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.ru.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.sk.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.sl.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.sq.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.sr.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.sv.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.tr.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.uk.html
[08:32:14] fsfe.org/tags/tagged-tech-teams.zh.html
[08:32:14] fsfe.org/tags/tagged-translations.ar.html
[08:32:14] fsfe.org/tags/tagged-translations.bg.html
[08:32:17] fsfe.org/tags/tagged-translations.bs.html
[08:32:17] fsfe.org/tags/tagged-translations.ca.html
[08:32:17] fsfe.org/tags/tagged-translations.cs.html
[08:32:17] fsfe.org/tags/tagged-translations.da.html
[08:32:17] fsfe.org/tags/tagged-translations.de.html
[08:32:17] fsfe.org/tags/tagged-translations.el.html
[08:32:17] fsfe.org/tags/tagged-translations.en.html
[08:32:17] fsfe.org/tags/tagged-translations.es.html
[08:32:17] fsfe.org/tags/tagged-translations.et.html
[08:32:17] fsfe.org/tags/tagged-translations.fa.html
[08:32:17] fsfe.org/tags/tagged-translations.fi.html
[08:32:17] fsfe.org/tags/tagged-translations.fr.html
[08:32:17] fsfe.org/tags/tagged-translations.hr.html
[08:32:17] fsfe.org/tags/tagged-translations.hu.html
[08:32:17] fsfe.org/tags/tagged-translations.it.html
[08:32:17] fsfe.org/tags/tagged-translations.ja.html
[08:32:17] fsfe.org/tags/tagged-translations.mk.html
[08:32:17] fsfe.org/tags/tagged-translations.nb.html
[08:32:17] fsfe.org/tags/tagged-translations.nl.html
[08:32:17] fsfe.org/tags/tagged-translations.nn.html
[08:32:17] fsfe.org/tags/tagged-translations.pl.html
[08:32:17] fsfe.org/tags/tagged-translations.pt.html
[08:32:17] fsfe.org/tags/tagged-translations.ro.html
[08:32:17] fsfe.org/tags/tagged-translations.ru.html
[08:32:17] fsfe.org/tags/tagged-translations.sk.html
[08:32:17] fsfe.org/tags/tagged-translations.sl.html
[08:32:17] fsfe.org/tags/tagged-translations.sq.html
[08:32:17] fsfe.org/tags/tagged-translations.sr.html
[08:32:17] fsfe.org/tags/tagged-translations.sv.html
[08:32:17] fsfe.org/tags/tagged-translations.tr.html
[08:32:17] fsfe.org/tags/tagged-translations.uk.html
[08:32:17] fsfe.org/tags/tagged-translations.zh.html
[08:32:17] fsfe.org/tags/tagged-yh4f.ar.html
[08:32:17] fsfe.org/tags/tagged-yh4f.bg.html
[08:32:17] fsfe.org/tags/tagged-yh4f.bs.html
[08:32:17] fsfe.org/tags/tagged-yh4f.ca.html
[08:32:17] fsfe.org/tags/tagged-yh4f.cs.html
[08:32:17] fsfe.org/tags/tagged-yh4f.da.html
[08:32:17] fsfe.org/tags/tagged-yh4f.de.html
[08:32:17] fsfe.org/tags/tagged-yh4f.el.html
[08:32:17] fsfe.org/tags/tagged-yh4f.en.html
[08:32:17] fsfe.org/tags/tagged-yh4f.es.html
[08:32:17] fsfe.org/tags/tagged-yh4f.et.html
[08:32:17] fsfe.org/tags/tagged-yh4f.fa.html
[08:32:17] fsfe.org/tags/tagged-yh4f.fi.html
[08:32:17] fsfe.org/tags/tagged-yh4f.fr.html
[08:32:17] fsfe.org/tags/tagged-yh4f.hr.html
[08:32:17] fsfe.org/tags/tagged-yh4f.hu.html
[08:32:17] fsfe.org/tags/tagged-yh4f.it.html
[08:32:17] fsfe.org/tags/tagged-yh4f.ja.html
[08:32:17] fsfe.org/tags/tagged-yh4f.mk.html
[08:32:17] fsfe.org/tags/tagged-yh4f.nb.html
[08:32:17] fsfe.org/tags/tagged-yh4f.nl.html
[08:32:17] fsfe.org/tags/tagged-yh4f.nn.html
[08:32:17] fsfe.org/tags/tagged-yh4f.pl.html
[08:32:17] fsfe.org/tags/tagged-yh4f.pt.html
[08:32:17] fsfe.org/tags/tagged-yh4f.ro.html
[08:32:17] fsfe.org/tags/tagged-yh4f.ru.html
[08:32:17] fsfe.org/tags/tagged-yh4f.sk.html
[08:32:17] fsfe.org/tags/tagged-yh4f.sl.html
[08:32:17] fsfe.org/tags/tagged-yh4f.sq.html
[08:32:17] fsfe.org/tags/tagged-yh4f.sr.html
[08:32:17] fsfe.org/tags/tagged-yh4f.sv.html
[08:32:17] fsfe.org/tags/tagged-yh4f.tr.html
[08:32:17] fsfe.org/tags/tagged-yh4f.uk.html
[08:32:17] fsfe.org/tags/tagged-yh4f.zh.html
[08:32:17] 
[08:32:17] sent 8,465,216 bytes  received 383,327 bytes  1,179,805.73 bytes/sec
[08:32:17] total size is 1,493,775,026  speedup is 168.82
[08:32:17] Syncing files to noddack.fsfeurope.org
[08:32:17] sending incremental file list
[08:32:17] fsfe.org/index.ar.html
[08:32:17] fsfe.org/index.bg.html
[08:32:17] fsfe.org/index.bs.html
[08:32:17] fsfe.org/index.ca.html
[08:32:17] fsfe.org/index.cs.html
[08:32:17] fsfe.org/index.da.html
[08:32:17] fsfe.org/index.de.html
[08:32:17] fsfe.org/index.el.html
[08:32:17] fsfe.org/index.en.html
[08:32:17] fsfe.org/index.es.html
[08:32:17] fsfe.org/index.et.html
[08:32:17] fsfe.org/index.fa.html
[08:32:17] fsfe.org/index.fi.html
[08:32:17] fsfe.org/index.fr.html
[08:32:17] fsfe.org/index.hr.html
[08:32:17] fsfe.org/index.hu.html
[08:32:17] fsfe.org/index.it.html
[08:32:17] fsfe.org/index.ja.html
[08:32:17] fsfe.org/index.mk.html
[08:32:17] fsfe.org/index.nb.html
[08:32:17] fsfe.org/index.nl.html
[08:32:17] fsfe.org/index.nn.html
[08:32:17] fsfe.org/index.pl.html
[08:32:17] fsfe.org/index.pt.html
[08:32:17] fsfe.org/index.ro.html
[08:32:17] fsfe.org/index.ru.html
[08:32:17] fsfe.org/index.sk.html
[08:32:17] fsfe.org/index.sl.html
[08:32:17] fsfe.org/index.sq.html
[08:32:17] fsfe.org/index.sr.html
[08:32:17] fsfe.org/index.sv.html
[08:32:17] fsfe.org/index.tr.html
[08:32:17] fsfe.org/index.uk.html
[08:32:17] fsfe.org/index.zh.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.ar.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.bg.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.bs.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.ca.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.cs.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.da.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.de.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.el.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.en.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.es.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.et.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.fa.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.fi.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.fr.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.hr.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.hu.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.it.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.ja.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.mk.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.nb.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.nl.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.nn.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.pl.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.pt.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.ro.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.ru.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.sk.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.sl.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.sq.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.sr.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.sv.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.tr.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.uk.html
[08:32:17] fsfe.org/activities/deviceneutrality/index.zh.html
[08:32:17] fsfe.org/activities/dma/dma.ar.html
[08:32:17] fsfe.org/activities/dma/dma.bg.html
[08:32:17] fsfe.org/activities/dma/dma.bs.html
[08:32:17] fsfe.org/activities/dma/dma.ca.html
[08:32:17] fsfe.org/activities/dma/dma.cs.html
[08:32:17] fsfe.org/activities/dma/dma.da.html
[08:32:17] fsfe.org/activities/dma/dma.de.html
[08:32:17] fsfe.org/activities/dma/dma.el.html
[08:32:17] fsfe.org/activities/dma/dma.en.html
[08:32:17] fsfe.org/activities/dma/dma.es.html
[08:32:17] fsfe.org/activities/dma/dma.et.html
[08:32:17] fsfe.org/activities/dma/dma.fa.html
[08:32:17] fsfe.org/activities/dma/dma.fi.html
[08:32:17] fsfe.org/activities/dma/dma.fr.html
[08:32:17] fsfe.org/activities/dma/dma.hr.html
[08:32:17] fsfe.org/activities/dma/dma.hu.html
[08:32:17] fsfe.org/activities/dma/dma.it.html
[08:32:17] fsfe.org/activities/dma/dma.ja.html
[08:32:17] fsfe.org/activities/dma/dma.mk.html
[08:32:17] fsfe.org/activities/dma/dma.nb.html
[08:32:17] fsfe.org/activities/dma/dma.nl.html
[08:32:17] fsfe.org/activities/dma/dma.nn.html
[08:32:17] fsfe.org/activities/dma/dma.pl.html
[08:32:17] fsfe.org/activities/dma/dma.pt.html
[08:32:17] fsfe.org/activities/dma/dma.ro.html
[08:32:17] fsfe.org/activities/dma/dma.ru.html
[08:32:17] fsfe.org/activities/dma/dma.sk.html
[08:32:17] fsfe.org/activities/dma/dma.sl.html
[08:32:17] fsfe.org/activities/dma/dma.sq.html
[08:32:17] fsfe.org/activities/dma/dma.sr.html
[08:32:17] fsfe.org/activities/dma/dma.sv.html
[08:32:17] fsfe.org/activities/dma/dma.tr.html
[08:32:17] fsfe.org/activities/dma/dma.uk.html
[08:32:17] fsfe.org/activities/dma/dma.zh.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.ar.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.bg.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.bs.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.ca.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.cs.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.da.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.de.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.el.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.en.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.es.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.et.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.fa.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.fi.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.fr.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.hr.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.hu.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.it.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.ja.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.mk.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.nb.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.nl.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.nn.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.pl.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.pt.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.ro.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.ru.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.sk.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.sl.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.sq.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.sr.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.sv.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.tr.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.uk.html
[08:32:17] fsfe.org/activities/publiccode/publiccode.zh.html
[08:32:17] fsfe.org/activities/routers/routers.ar.html
[08:32:17] fsfe.org/activities/routers/routers.bg.html
[08:32:17] fsfe.org/activities/routers/routers.bs.html
[08:32:17] fsfe.org/activities/routers/routers.ca.html
[08:32:17] fsfe.org/activities/routers/routers.cs.html
[08:32:17] fsfe.org/activities/routers/routers.da.html
[08:32:17] fsfe.org/activities/routers/routers.de.html
[08:32:17] fsfe.org/activities/routers/routers.el.html
[08:32:17] fsfe.org/activities/routers/routers.en.html
[08:32:17] fsfe.org/activities/routers/routers.es.html
[08:32:17] fsfe.org/activities/routers/routers.et.html
[08:32:17] fsfe.org/activities/routers/routers.fa.html
[08:32:17] fsfe.org/activities/routers/routers.fi.html
[08:32:17] fsfe.org/activities/routers/routers.fr.html
[08:32:17] fsfe.org/activities/routers/routers.hr.html
[08:32:17] fsfe.org/activities/routers/routers.hu.html
[08:32:17] fsfe.org/activities/routers/routers.it.html
[08:32:17] fsfe.org/activities/routers/routers.ja.html
[08:32:18] fsfe.org/activities/routers/routers.mk.html
[08:32:18] fsfe.org/activities/routers/routers.nb.html
[08:32:18] fsfe.org/activities/routers/routers.nl.html
[08:32:18] fsfe.org/activities/routers/routers.nn.html
[08:32:18] fsfe.org/activities/routers/routers.pl.html
[08:32:18] fsfe.org/activities/routers/routers.pt.html
[08:32:18] fsfe.org/activities/routers/routers.ro.html
[08:32:18] fsfe.org/activities/routers/routers.ru.html
[08:32:18] fsfe.org/activities/routers/routers.sk.html
[08:32:18] fsfe.org/activities/routers/routers.sl.html
[08:32:18] fsfe.org/activities/routers/routers.sq.html
[08:32:18] fsfe.org/activities/routers/routers.sr.html
[08:32:18] fsfe.org/activities/routers/routers.sv.html
[08:32:18] fsfe.org/activities/routers/routers.tr.html
[08:32:18] fsfe.org/activities/routers/routers.uk.html
[08:32:18] fsfe.org/activities/routers/routers.zh.html
[08:32:18] fsfe.org/activities/yh4f/index.ar.html
[08:32:18] fsfe.org/activities/yh4f/index.bg.html
[08:32:18] fsfe.org/activities/yh4f/index.bs.html
[08:32:18] fsfe.org/activities/yh4f/index.ca.html
[08:32:18] fsfe.org/activities/yh4f/index.cs.html
[08:32:18] fsfe.org/activities/yh4f/index.da.html
[08:32:18] fsfe.org/activities/yh4f/index.de.html
[08:32:18] fsfe.org/activities/yh4f/index.el.html
[08:32:18] fsfe.org/activities/yh4f/index.en.html
[08:32:18] fsfe.org/activities/yh4f/index.es.html
[08:32:18] fsfe.org/activities/yh4f/index.et.html
[08:32:18] fsfe.org/activities/yh4f/index.fa.html
[08:32:18] fsfe.org/activities/yh4f/index.fi.html
[08:32:18] fsfe.org/activities/yh4f/index.fr.html
[08:32:18] fsfe.org/activities/yh4f/index.hr.html
[08:32:18] fsfe.org/activities/yh4f/index.hu.html
[08:32:18] fsfe.org/activities/yh4f/index.it.html
[08:32:18] fsfe.org/activities/yh4f/index.ja.html
[08:32:18] fsfe.org/activities/yh4f/index.mk.html
[08:32:18] fsfe.org/activities/yh4f/index.nb.html
[08:32:18] fsfe.org/activities/yh4f/index.nl.html
[08:32:18] fsfe.org/activities/yh4f/index.nn.html
[08:32:18] fsfe.org/activities/yh4f/index.pl.html
[08:32:18] fsfe.org/activities/yh4f/index.pt.html
[08:32:18] fsfe.org/activities/yh4f/index.ro.html
[08:32:18] fsfe.org/activities/yh4f/index.ru.html
[08:32:18] fsfe.org/activities/yh4f/index.sk.html
[08:32:18] fsfe.org/activities/yh4f/index.sl.html
[08:32:18] fsfe.org/activities/yh4f/index.sq.html
[08:32:18] fsfe.org/activities/yh4f/index.sr.html
[08:32:18] fsfe.org/activities/yh4f/index.sv.html
[08:32:18] fsfe.org/activities/yh4f/index.tr.html
[08:32:18] fsfe.org/activities/yh4f/index.uk.html
[08:32:18] fsfe.org/activities/yh4f/index.zh.html
[08:32:18] fsfe.org/contribute/web/features.ar.html
[08:32:18] fsfe.org/contribute/web/features.bg.html
[08:32:18] fsfe.org/contribute/web/features.bs.html
[08:32:18] fsfe.org/contribute/web/features.ca.html
[08:32:18] fsfe.org/contribute/web/features.cs.html
[08:32:18] fsfe.org/contribute/web/features.da.html
[08:32:18] fsfe.org/contribute/web/features.de.html
[08:32:18] fsfe.org/contribute/web/features.el.html
[08:32:18] fsfe.org/contribute/web/features.en.html
[08:32:18] fsfe.org/contribute/web/features.es.html
[08:32:18] fsfe.org/contribute/web/features.et.html
[08:32:18] fsfe.org/contribute/web/features.fa.html
[08:32:18] fsfe.org/contribute/web/features.fi.html
[08:32:18] fsfe.org/contribute/web/features.fr.html
[08:32:18] fsfe.org/contribute/web/features.hr.html
[08:32:18] fsfe.org/contribute/web/features.hu.html
[08:32:18] fsfe.org/contribute/web/features.it.html
[08:32:18] fsfe.org/contribute/web/features.ja.html
[08:32:18] fsfe.org/contribute/web/features.mk.html
[08:32:18] fsfe.org/contribute/web/features.nb.html
[08:32:18] fsfe.org/contribute/web/features.nl.html
[08:32:18] fsfe.org/contribute/web/features.nn.html
[08:32:18] fsfe.org/contribute/web/features.pl.html
[08:32:18] fsfe.org/contribute/web/features.pt.html
[08:32:18] fsfe.org/contribute/web/features.ro.html
[08:32:18] fsfe.org/contribute/web/features.ru.html
[08:32:18] fsfe.org/contribute/web/features.sk.html
[08:32:18] fsfe.org/contribute/web/features.sl.html
[08:32:18] fsfe.org/contribute/web/features.sq.html
[08:32:18] fsfe.org/contribute/web/features.sr.html
[08:32:18] fsfe.org/contribute/web/features.sv.html
[08:32:18] fsfe.org/contribute/web/features.tr.html
[08:32:18] fsfe.org/contribute/web/features.uk.html
[08:32:18] fsfe.org/contribute/web/features.zh.html
[08:32:18] fsfe.org/freesoftware/education/education.ar.html
[08:32:18] fsfe.org/freesoftware/education/education.bg.html
[08:32:18] fsfe.org/freesoftware/education/education.bs.html
[08:32:18] fsfe.org/freesoftware/education/education.ca.html
[08:32:18] fsfe.org/freesoftware/education/education.cs.html
[08:32:18] fsfe.org/freesoftware/education/education.da.html
[08:32:18] fsfe.org/freesoftware/education/education.de.html
[08:32:18] fsfe.org/freesoftware/education/education.el.html
[08:32:18] fsfe.org/freesoftware/education/education.en.html
[08:32:18] fsfe.org/freesoftware/education/education.es.html
[08:32:18] fsfe.org/freesoftware/education/education.et.html
[08:32:18] fsfe.org/freesoftware/education/education.fa.html
[08:32:18] fsfe.org/freesoftware/education/education.fi.html
[08:32:18] fsfe.org/freesoftware/education/education.fr.html
[08:32:18] fsfe.org/freesoftware/education/education.hr.html
[08:32:18] fsfe.org/freesoftware/education/education.hu.html
[08:32:18] fsfe.org/freesoftware/education/education.it.html
[08:32:18] fsfe.org/freesoftware/education/education.ja.html
[08:32:18] fsfe.org/freesoftware/education/education.mk.html
[08:32:18] fsfe.org/freesoftware/education/education.nb.html
[08:32:18] fsfe.org/freesoftware/education/education.nl.html
[08:32:18] fsfe.org/freesoftware/education/education.nn.html
[08:32:18] fsfe.org/freesoftware/education/education.pl.html
[08:32:18] fsfe.org/freesoftware/education/education.pt.html
[08:32:18] fsfe.org/freesoftware/education/education.ro.html
[08:32:18] fsfe.org/freesoftware/education/education.ru.html
[08:32:18] fsfe.org/freesoftware/education/education.sk.html
[08:32:18] fsfe.org/freesoftware/education/education.sl.html
[08:32:18] fsfe.org/freesoftware/education/education.sq.html
[08:32:18] fsfe.org/freesoftware/education/education.sr.html
[08:32:18] fsfe.org/freesoftware/education/education.sv.html
[08:32:18] fsfe.org/freesoftware/education/education.tr.html
[08:32:18] fsfe.org/freesoftware/education/education.uk.html
[08:32:18] fsfe.org/freesoftware/education/education.zh.html
[08:32:18] fsfe.org/news/news.ar.html
[08:32:18] fsfe.org/news/news.ar.rss
[08:32:18] fsfe.org/news/news.bg.html
[08:32:18] fsfe.org/news/news.bg.rss
[08:32:18] fsfe.org/news/news.bs.html
[08:32:18] fsfe.org/news/news.bs.rss
[08:32:18] fsfe.org/news/news.ca.html
[08:32:18] fsfe.org/news/news.ca.rss
[08:32:18] fsfe.org/news/news.cs.html
[08:32:18] fsfe.org/news/news.cs.rss
[08:32:18] fsfe.org/news/news.da.html
[08:32:18] fsfe.org/news/news.da.rss
[08:32:18] fsfe.org/news/news.de.html
[08:32:18] fsfe.org/news/news.de.rss
[08:32:18] fsfe.org/news/news.el.html
[08:32:18] fsfe.org/news/news.el.rss
[08:32:18] fsfe.org/news/news.en.html
[08:32:18] fsfe.org/news/news.en.rss
[08:32:18] fsfe.org/news/news.es.html
[08:32:18] fsfe.org/news/news.es.rss
[08:32:18] fsfe.org/news/news.et.html
[08:32:18] fsfe.org/news/news.et.rss
[08:32:18] fsfe.org/news/news.fa.html
[08:32:18] fsfe.org/news/news.fa.rss
[08:32:18] fsfe.org/news/news.fi.html
[08:32:18] fsfe.org/news/news.fi.rss
[08:32:18] fsfe.org/news/news.fr.html
[08:32:18] fsfe.org/news/news.fr.rss
[08:32:18] fsfe.org/news/news.hr.html
[08:32:18] fsfe.org/news/news.hr.rss
[08:32:18] fsfe.org/news/news.hu.html
[08:32:18] fsfe.org/news/news.hu.rss
[08:32:18] fsfe.org/news/news.it.html
[08:32:18] fsfe.org/news/news.it.rss
[08:32:18] fsfe.org/news/news.ja.html
[08:32:18] fsfe.org/news/news.ja.rss
[08:32:18] fsfe.org/news/news.mk.html
[08:32:18] fsfe.org/news/news.mk.rss
[08:32:18] fsfe.org/news/news.nb.html
[08:32:18] fsfe.org/news/news.nb.rss
[08:32:18] fsfe.org/news/news.nl.html
[08:32:18] fsfe.org/news/news.nl.rss
[08:32:18] fsfe.org/news/news.nn.html
[08:32:18] fsfe.org/news/news.nn.rss
[08:32:18] fsfe.org/news/news.pl.html
[08:32:18] fsfe.org/news/news.pl.rss
[08:32:18] fsfe.org/news/news.pt.html
[08:32:18] fsfe.org/news/news.pt.rss
[08:32:18] fsfe.org/news/news.ro.html
[08:32:18] fsfe.org/news/news.ro.rss
[08:32:18] fsfe.org/news/news.ru.html
[08:32:18] fsfe.org/news/news.ru.rss
[08:32:18] fsfe.org/news/news.sk.html
[08:32:18] fsfe.org/news/news.sk.rss
[08:32:18] fsfe.org/news/news.sl.html
[08:32:18] fsfe.org/news/news.sl.rss
[08:32:18] fsfe.org/news/news.sq.html
[08:32:18] fsfe.org/news/news.sq.rss
[08:32:18] fsfe.org/news/news.sr.html
[08:32:18] fsfe.org/news/news.sr.rss
[08:32:18] fsfe.org/news/news.sv.html
[08:32:18] fsfe.org/news/news.sv.rss
[08:32:18] fsfe.org/news/news.tr.html
[08:32:18] fsfe.org/news/news.tr.rss
[08:32:18] fsfe.org/news/news.uk.html
[08:32:18] fsfe.org/news/news.uk.rss
[08:32:18] fsfe.org/news/news.zh.html
[08:32:18] fsfe.org/news/news.zh.rss
[08:32:18] fsfe.org/news/2024/news-20240920-01.ar.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.bg.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.bs.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.ca.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.cs.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.da.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.de.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.el.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.en.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.es.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.et.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.fa.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.fi.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.fr.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.hr.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.hu.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.it.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.ja.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.mk.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.nb.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.nl.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.nn.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.pl.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.pt.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.ro.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.ru.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.sk.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.sl.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.sq.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.sr.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.sv.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.tr.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.uk.html
[08:32:18] fsfe.org/news/2024/news-20240920-01.zh.html
[08:32:18] fsfe.org/press/press.ar.html
[08:32:18] fsfe.org/press/press.bg.html
[08:32:18] fsfe.org/press/press.bs.html
[08:32:18] fsfe.org/press/press.ca.html
[08:32:18] fsfe.org/press/press.cs.html
[08:32:18] fsfe.org/press/press.da.html
[08:32:18] fsfe.org/press/press.de.html
[08:32:18] fsfe.org/press/press.el.html
[08:32:18] fsfe.org/press/press.en.html
[08:32:18] fsfe.org/press/press.es.html
[08:32:18] fsfe.org/press/press.et.html
[08:32:18] fsfe.org/press/press.fa.html
[08:32:18] fsfe.org/press/press.fi.html
[08:32:18] fsfe.org/press/press.fr.html
[08:32:18] fsfe.org/press/press.hr.html
[08:32:18] fsfe.org/press/press.hu.html
[08:32:18] fsfe.org/press/press.it.html
[08:32:18] fsfe.org/press/press.ja.html
[08:32:18] fsfe.org/press/press.mk.html
[08:32:18] fsfe.org/press/press.nb.html
[08:32:18] fsfe.org/press/press.nl.html
[08:32:18] fsfe.org/press/press.nn.html
[08:32:18] fsfe.org/press/press.pl.html
[08:32:18] fsfe.org/press/press.pt.html
[08:32:18] fsfe.org/press/press.ro.html
[08:32:18] fsfe.org/press/press.ru.html
[08:32:18] fsfe.org/press/press.sk.html
[08:32:18] fsfe.org/press/press.sl.html
[08:32:18] fsfe.org/press/press.sq.html
[08:32:18] fsfe.org/press/press.sr.html
[08:32:18] fsfe.org/press/press.sv.html
[08:32:18] fsfe.org/press/press.tr.html
[08:32:18] fsfe.org/press/press.uk.html
[08:32:18] fsfe.org/press/press.zh.html
[08:32:18] fsfe.org/search/index.js
[08:32:18] fsfe.org/tags/tagged-AI.ar.html
[08:32:18] fsfe.org/tags/tagged-AI.bg.html
[08:32:18] fsfe.org/tags/tagged-AI.bs.html
[08:32:18] fsfe.org/tags/tagged-AI.ca.html
[08:32:18] fsfe.org/tags/tagged-AI.cs.html
[08:32:18] fsfe.org/tags/tagged-AI.da.html
[08:32:18] fsfe.org/tags/tagged-AI.de.html
[08:32:18] fsfe.org/tags/tagged-AI.el.html
[08:32:18] fsfe.org/tags/tagged-AI.en.html
[08:32:18] fsfe.org/tags/tagged-AI.es.html
[08:32:18] fsfe.org/tags/tagged-AI.et.html
[08:32:18] fsfe.org/tags/tagged-AI.fa.html
[08:32:18] fsfe.org/tags/tagged-AI.fi.html
[08:32:18] fsfe.org/tags/tagged-AI.fr.html
[08:32:18] fsfe.org/tags/tagged-AI.hr.html
[08:32:18] fsfe.org/tags/tagged-AI.hu.html
[08:32:18] fsfe.org/tags/tagged-AI.it.html
[08:32:18] fsfe.org/tags/tagged-AI.ja.html
[08:32:18] fsfe.org/tags/tagged-AI.mk.html
[08:32:18] fsfe.org/tags/tagged-AI.nb.html
[08:32:18] fsfe.org/tags/tagged-AI.nl.html
[08:32:18] fsfe.org/tags/tagged-AI.nn.html
[08:32:18] fsfe.org/tags/tagged-AI.pl.html
[08:32:18] fsfe.org/tags/tagged-AI.pt.html
[08:32:18] fsfe.org/tags/tagged-AI.ro.html
[08:32:18] fsfe.org/tags/tagged-AI.ru.html
[08:32:18] fsfe.org/tags/tagged-AI.sk.html
[08:32:18] fsfe.org/tags/tagged-AI.sl.html
[08:32:18] fsfe.org/tags/tagged-AI.sq.html
[08:32:18] fsfe.org/tags/tagged-AI.sr.html
[08:32:18] fsfe.org/tags/tagged-AI.sv.html
[08:32:18] fsfe.org/tags/tagged-AI.tr.html
[08:32:18] fsfe.org/tags/tagged-AI.uk.html
[08:32:18] fsfe.org/tags/tagged-AI.zh.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.ar.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.bg.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.bs.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.ca.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.cs.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.da.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.de.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.el.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.en.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.es.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.et.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.fa.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.fi.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.fr.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.hr.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.hu.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.it.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.ja.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.mk.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.nb.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.nl.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.nn.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.pl.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.pt.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.ro.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.ru.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.sk.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.sl.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.sq.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.sr.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.sv.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.tr.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.uk.html
[08:32:18] fsfe.org/tags/tagged-ada-zangemann.zh.html
[08:32:18] fsfe.org/tags/tagged-annual-report.ar.html
[08:32:18] fsfe.org/tags/tagged-annual-report.bg.html
[08:32:18] fsfe.org/tags/tagged-annual-report.bs.html
[08:32:18] fsfe.org/tags/tagged-annual-report.ca.html
[08:32:18] fsfe.org/tags/tagged-annual-report.cs.html
[08:32:18] fsfe.org/tags/tagged-annual-report.da.html
[08:32:19] fsfe.org/tags/tagged-annual-report.de.html
[08:32:19] fsfe.org/tags/tagged-annual-report.el.html
[08:32:19] fsfe.org/tags/tagged-annual-report.en.html
[08:32:19] fsfe.org/tags/tagged-annual-report.es.html
[08:32:19] fsfe.org/tags/tagged-annual-report.et.html
[08:32:19] fsfe.org/tags/tagged-annual-report.fa.html
[08:32:19] fsfe.org/tags/tagged-annual-report.fi.html
[08:32:19] fsfe.org/tags/tagged-annual-report.fr.html
[08:32:19] fsfe.org/tags/tagged-annual-report.hr.html
[08:32:19] fsfe.org/tags/tagged-annual-report.hu.html
[08:32:19] fsfe.org/tags/tagged-annual-report.it.html
[08:32:19] fsfe.org/tags/tagged-annual-report.ja.html
[08:32:19] fsfe.org/tags/tagged-annual-report.mk.html
[08:32:19] fsfe.org/tags/tagged-annual-report.nb.html
[08:32:19] fsfe.org/tags/tagged-annual-report.nl.html
[08:32:19] fsfe.org/tags/tagged-annual-report.nn.html
[08:32:19] fsfe.org/tags/tagged-annual-report.pl.html
[08:32:19] fsfe.org/tags/tagged-annual-report.pt.html
[08:32:19] fsfe.org/tags/tagged-annual-report.ro.html
[08:32:19] fsfe.org/tags/tagged-annual-report.ru.html
[08:32:19] fsfe.org/tags/tagged-annual-report.sk.html
[08:32:19] fsfe.org/tags/tagged-annual-report.sl.html
[08:32:19] fsfe.org/tags/tagged-annual-report.sq.html
[08:32:19] fsfe.org/tags/tagged-annual-report.sr.html
[08:32:19] fsfe.org/tags/tagged-annual-report.sv.html
[08:32:19] fsfe.org/tags/tagged-annual-report.tr.html
[08:32:19] fsfe.org/tags/tagged-annual-report.uk.html
[08:32:19] fsfe.org/tags/tagged-annual-report.zh.html
[08:32:19] fsfe.org/tags/tagged-community.ar.html
[08:32:19] fsfe.org/tags/tagged-community.bg.html
[08:32:19] fsfe.org/tags/tagged-community.bs.html
[08:32:19] fsfe.org/tags/tagged-community.ca.html
[08:32:19] fsfe.org/tags/tagged-community.cs.html
[08:32:19] fsfe.org/tags/tagged-community.da.html
[08:32:19] fsfe.org/tags/tagged-community.de.html
[08:32:19] fsfe.org/tags/tagged-community.el.html
[08:32:19] fsfe.org/tags/tagged-community.en.html
[08:32:19] fsfe.org/tags/tagged-community.es.html
[08:32:19] fsfe.org/tags/tagged-community.et.html
[08:32:19] fsfe.org/tags/tagged-community.fa.html
[08:32:19] fsfe.org/tags/tagged-community.fi.html
[08:32:19] fsfe.org/tags/tagged-community.fr.html
[08:32:19] fsfe.org/tags/tagged-community.hr.html
[08:32:19] fsfe.org/tags/tagged-community.hu.html
[08:32:19] fsfe.org/tags/tagged-community.it.html
[08:32:19] fsfe.org/tags/tagged-community.ja.html
[08:32:19] fsfe.org/tags/tagged-community.mk.html
[08:32:19] fsfe.org/tags/tagged-community.nb.html
[08:32:19] fsfe.org/tags/tagged-community.nl.html
[08:32:19] fsfe.org/tags/tagged-community.nn.html
[08:32:19] fsfe.org/tags/tagged-community.pl.html
[08:32:19] fsfe.org/tags/tagged-community.pt.html
[08:32:19] fsfe.org/tags/tagged-community.ro.html
[08:32:19] fsfe.org/tags/tagged-community.ru.html
[08:32:19] fsfe.org/tags/tagged-community.sk.html
[08:32:19] fsfe.org/tags/tagged-community.sl.html
[08:32:19] fsfe.org/tags/tagged-community.sq.html
[08:32:19] fsfe.org/tags/tagged-community.sr.html
[08:32:19] fsfe.org/tags/tagged-community.sv.html
[08:32:19] fsfe.org/tags/tagged-community.tr.html
[08:32:19] fsfe.org/tags/tagged-community.uk.html
[08:32:19] fsfe.org/tags/tagged-community.zh.html
[08:32:19] fsfe.org/tags/tagged-de.ar.html
[08:32:19] fsfe.org/tags/tagged-de.bg.html
[08:32:19] fsfe.org/tags/tagged-de.bs.html
[08:32:19] fsfe.org/tags/tagged-de.ca.html
[08:32:19] fsfe.org/tags/tagged-de.cs.html
[08:32:19] fsfe.org/tags/tagged-de.da.html
[08:32:19] fsfe.org/tags/tagged-de.de.html
[08:32:19] fsfe.org/tags/tagged-de.el.html
[08:32:19] fsfe.org/tags/tagged-de.en.html
[08:32:19] fsfe.org/tags/tagged-de.es.html
[08:32:19] fsfe.org/tags/tagged-de.et.html
[08:32:19] fsfe.org/tags/tagged-de.fa.html
[08:32:19] fsfe.org/tags/tagged-de.fi.html
[08:32:19] fsfe.org/tags/tagged-de.fr.html
[08:32:19] fsfe.org/tags/tagged-de.hr.html
[08:32:19] fsfe.org/tags/tagged-de.hu.html
[08:32:19] fsfe.org/tags/tagged-de.it.html
[08:32:19] fsfe.org/tags/tagged-de.ja.html
[08:32:19] fsfe.org/tags/tagged-de.mk.html
[08:32:19] fsfe.org/tags/tagged-de.nb.html
[08:32:19] fsfe.org/tags/tagged-de.nl.html
[08:32:19] fsfe.org/tags/tagged-de.nn.html
[08:32:19] fsfe.org/tags/tagged-de.pl.html
[08:32:19] fsfe.org/tags/tagged-de.pt.html
[08:32:19] fsfe.org/tags/tagged-de.ro.html
[08:32:19] fsfe.org/tags/tagged-de.ru.html
[08:32:19] fsfe.org/tags/tagged-de.sk.html
[08:32:19] fsfe.org/tags/tagged-de.sl.html
[08:32:19] fsfe.org/tags/tagged-de.sq.html
[08:32:19] fsfe.org/tags/tagged-de.sr.html
[08:32:19] fsfe.org/tags/tagged-de.sv.html
[08:32:19] fsfe.org/tags/tagged-de.tr.html
[08:32:19] fsfe.org/tags/tagged-de.uk.html
[08:32:19] fsfe.org/tags/tagged-de.zh.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.ar.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.bg.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.bs.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.ca.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.cs.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.da.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.de.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.el.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.en.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.es.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.et.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.fa.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.fi.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.fr.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.hr.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.hu.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.it.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.ja.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.mk.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.nb.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.nl.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.nn.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.pl.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.pt.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.ro.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.ru.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.sk.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.sl.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.sq.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.sr.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.sv.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.tr.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.uk.html
[08:32:19] fsfe.org/tags/tagged-deviceneutrality.zh.html
[08:32:19] fsfe.org/tags/tagged-education.ar.html
[08:32:19] fsfe.org/tags/tagged-education.bg.html
[08:32:19] fsfe.org/tags/tagged-education.bs.html
[08:32:19] fsfe.org/tags/tagged-education.ca.html
[08:32:19] fsfe.org/tags/tagged-education.cs.html
[08:32:19] fsfe.org/tags/tagged-education.da.html
[08:32:19] fsfe.org/tags/tagged-education.de.html
[08:32:19] fsfe.org/tags/tagged-education.el.html
[08:32:19] fsfe.org/tags/tagged-education.en.html
[08:32:19] fsfe.org/tags/tagged-education.es.html
[08:32:19] fsfe.org/tags/tagged-education.et.html
[08:32:19] fsfe.org/tags/tagged-education.fa.html
[08:32:19] fsfe.org/tags/tagged-education.fi.html
[08:32:19] fsfe.org/tags/tagged-education.fr.html
[08:32:19] fsfe.org/tags/tagged-education.hr.html
[08:32:19] fsfe.org/tags/tagged-education.hu.html
[08:32:19] fsfe.org/tags/tagged-education.it.html
[08:32:19] fsfe.org/tags/tagged-education.ja.html
[08:32:19] fsfe.org/tags/tagged-education.mk.html
[08:32:19] fsfe.org/tags/tagged-education.nb.html
[08:32:19] fsfe.org/tags/tagged-education.nl.html
[08:32:19] fsfe.org/tags/tagged-education.nn.html
[08:32:19] fsfe.org/tags/tagged-education.pl.html
[08:32:19] fsfe.org/tags/tagged-education.pt.html
[08:32:19] fsfe.org/tags/tagged-education.ro.html
[08:32:19] fsfe.org/tags/tagged-education.ru.html
[08:32:19] fsfe.org/tags/tagged-education.sk.html
[08:32:19] fsfe.org/tags/tagged-education.sl.html
[08:32:19] fsfe.org/tags/tagged-education.sq.html
[08:32:19] fsfe.org/tags/tagged-education.sr.html
[08:32:19] fsfe.org/tags/tagged-education.sv.html
[08:32:19] fsfe.org/tags/tagged-education.tr.html
[08:32:19] fsfe.org/tags/tagged-education.uk.html
[08:32:19] fsfe.org/tags/tagged-education.zh.html
[08:32:19] fsfe.org/tags/tagged-european-commission.ar.html
[08:32:19] fsfe.org/tags/tagged-european-commission.bg.html
[08:32:19] fsfe.org/tags/tagged-european-commission.bs.html
[08:32:19] fsfe.org/tags/tagged-european-commission.ca.html
[08:32:19] fsfe.org/tags/tagged-european-commission.cs.html
[08:32:19] fsfe.org/tags/tagged-european-commission.da.html
[08:32:19] fsfe.org/tags/tagged-european-commission.de.html
[08:32:19] fsfe.org/tags/tagged-european-commission.el.html
[08:32:19] fsfe.org/tags/tagged-european-commission.en.html
[08:32:19] fsfe.org/tags/tagged-european-commission.es.html
[08:32:19] fsfe.org/tags/tagged-european-commission.et.html
[08:32:19] fsfe.org/tags/tagged-european-commission.fa.html
[08:32:19] fsfe.org/tags/tagged-european-commission.fi.html
[08:32:19] fsfe.org/tags/tagged-european-commission.fr.html
[08:32:19] fsfe.org/tags/tagged-european-commission.hr.html
[08:32:19] fsfe.org/tags/tagged-european-commission.hu.html
[08:32:19] fsfe.org/tags/tagged-european-commission.it.html
[08:32:19] fsfe.org/tags/tagged-european-commission.ja.html
[08:32:19] fsfe.org/tags/tagged-european-commission.mk.html
[08:32:19] fsfe.org/tags/tagged-european-commission.nb.html
[08:32:19] fsfe.org/tags/tagged-european-commission.nl.html
[08:32:19] fsfe.org/tags/tagged-european-commission.nn.html
[08:32:19] fsfe.org/tags/tagged-european-commission.pl.html
[08:32:19] fsfe.org/tags/tagged-european-commission.pt.html
[08:32:19] fsfe.org/tags/tagged-european-commission.ro.html
[08:32:19] fsfe.org/tags/tagged-european-commission.ru.html
[08:32:19] fsfe.org/tags/tagged-european-commission.sk.html
[08:32:19] fsfe.org/tags/tagged-european-commission.sl.html
[08:32:19] fsfe.org/tags/tagged-european-commission.sq.html
[08:32:19] fsfe.org/tags/tagged-european-commission.sr.html
[08:32:19] fsfe.org/tags/tagged-european-commission.sv.html
[08:32:19] fsfe.org/tags/tagged-european-commission.tr.html
[08:32:19] fsfe.org/tags/tagged-european-commission.uk.html
[08:32:19] fsfe.org/tags/tagged-european-commission.zh.html
[08:32:19] fsfe.org/tags/tagged-fosdem.ar.html
[08:32:19] fsfe.org/tags/tagged-fosdem.bg.html
[08:32:19] fsfe.org/tags/tagged-fosdem.bs.html
[08:32:19] fsfe.org/tags/tagged-fosdem.ca.html
[08:32:19] fsfe.org/tags/tagged-fosdem.cs.html
[08:32:19] fsfe.org/tags/tagged-fosdem.da.html
[08:32:19] fsfe.org/tags/tagged-fosdem.de.html
[08:32:19] fsfe.org/tags/tagged-fosdem.el.html
[08:32:19] fsfe.org/tags/tagged-fosdem.en.html
[08:32:19] fsfe.org/tags/tagged-fosdem.es.html
[08:32:19] fsfe.org/tags/tagged-fosdem.et.html
[08:32:19] fsfe.org/tags/tagged-fosdem.fa.html
[08:32:19] fsfe.org/tags/tagged-fosdem.fi.html
[08:32:19] fsfe.org/tags/tagged-fosdem.fr.html
[08:32:19] fsfe.org/tags/tagged-fosdem.hr.html
[08:32:19] fsfe.org/tags/tagged-fosdem.hu.html
[08:32:19] fsfe.org/tags/tagged-fosdem.it.html
[08:32:19] fsfe.org/tags/tagged-fosdem.ja.html
[08:32:19] fsfe.org/tags/tagged-fosdem.mk.html
[08:32:19] fsfe.org/tags/tagged-fosdem.nb.html
[08:32:19] fsfe.org/tags/tagged-fosdem.nl.html
[08:32:19] fsfe.org/tags/tagged-fosdem.nn.html
[08:32:19] fsfe.org/tags/tagged-fosdem.pl.html
[08:32:19] fsfe.org/tags/tagged-fosdem.pt.html
[08:32:19] fsfe.org/tags/tagged-fosdem.ro.html
[08:32:19] fsfe.org/tags/tagged-fosdem.ru.html
[08:32:19] fsfe.org/tags/tagged-fosdem.sk.html
[08:32:19] fsfe.org/tags/tagged-fosdem.sl.html
[08:32:19] fsfe.org/tags/tagged-fosdem.sq.html
[08:32:19] fsfe.org/tags/tagged-fosdem.sr.html
[08:32:19] fsfe.org/tags/tagged-fosdem.sv.html
[08:32:19] fsfe.org/tags/tagged-fosdem.tr.html
[08:32:19] fsfe.org/tags/tagged-fosdem.uk.html
[08:32:19] fsfe.org/tags/tagged-fosdem.zh.html
[08:32:19] fsfe.org/tags/tagged-highlights.ar.html
[08:32:19] fsfe.org/tags/tagged-highlights.bg.html
[08:32:19] fsfe.org/tags/tagged-highlights.bs.html
[08:32:19] fsfe.org/tags/tagged-highlights.ca.html
[08:32:19] fsfe.org/tags/tagged-highlights.cs.html
[08:32:19] fsfe.org/tags/tagged-highlights.da.html
[08:32:19] fsfe.org/tags/tagged-highlights.de.html
[08:32:19] fsfe.org/tags/tagged-highlights.el.html
[08:32:19] fsfe.org/tags/tagged-highlights.en.html
[08:32:19] fsfe.org/tags/tagged-highlights.es.html
[08:32:19] fsfe.org/tags/tagged-highlights.et.html
[08:32:19] fsfe.org/tags/tagged-highlights.fa.html
[08:32:19] fsfe.org/tags/tagged-highlights.fi.html
[08:32:19] fsfe.org/tags/tagged-highlights.fr.html
[08:32:19] fsfe.org/tags/tagged-highlights.hr.html
[08:32:19] fsfe.org/tags/tagged-highlights.hu.html
[08:32:19] fsfe.org/tags/tagged-highlights.it.html
[08:32:19] fsfe.org/tags/tagged-highlights.ja.html
[08:32:19] fsfe.org/tags/tagged-highlights.mk.html
[08:32:19] fsfe.org/tags/tagged-highlights.nb.html
[08:32:19] fsfe.org/tags/tagged-highlights.nl.html
[08:32:19] fsfe.org/tags/tagged-highlights.nn.html
[08:32:19] fsfe.org/tags/tagged-highlights.pl.html
[08:32:19] fsfe.org/tags/tagged-highlights.pt.html
[08:32:19] fsfe.org/tags/tagged-highlights.ro.html
[08:32:19] fsfe.org/tags/tagged-highlights.ru.html
[08:32:19] fsfe.org/tags/tagged-highlights.sk.html
[08:32:19] fsfe.org/tags/tagged-highlights.sl.html
[08:32:19] fsfe.org/tags/tagged-highlights.sq.html
[08:32:19] fsfe.org/tags/tagged-highlights.sr.html
[08:32:19] fsfe.org/tags/tagged-highlights.sv.html
[08:32:19] fsfe.org/tags/tagged-highlights.tr.html
[08:32:19] fsfe.org/tags/tagged-highlights.uk.html
[08:32:19] fsfe.org/tags/tagged-highlights.zh.html
[08:32:19] fsfe.org/tags/tagged-it.ar.html
[08:32:19] fsfe.org/tags/tagged-it.bg.html
[08:32:19] fsfe.org/tags/tagged-it.bs.html
[08:32:19] fsfe.org/tags/tagged-it.ca.html
[08:32:19] fsfe.org/tags/tagged-it.cs.html
[08:32:19] fsfe.org/tags/tagged-it.da.html
[08:32:19] fsfe.org/tags/tagged-it.de.html
[08:32:19] fsfe.org/tags/tagged-it.el.html
[08:32:19] fsfe.org/tags/tagged-it.en.html
[08:32:19] fsfe.org/tags/tagged-it.es.html
[08:32:19] fsfe.org/tags/tagged-it.et.html
[08:32:19] fsfe.org/tags/tagged-it.fa.html
[08:32:19] fsfe.org/tags/tagged-it.fi.html
[08:32:19] fsfe.org/tags/tagged-it.fr.html
[08:32:19] fsfe.org/tags/tagged-it.hr.html
[08:32:19] fsfe.org/tags/tagged-it.hu.html
[08:32:19] fsfe.org/tags/tagged-it.it.html
[08:32:19] fsfe.org/tags/tagged-it.ja.html
[08:32:19] fsfe.org/tags/tagged-it.mk.html
[08:32:19] fsfe.org/tags/tagged-it.nb.html
[08:32:19] fsfe.org/tags/tagged-it.nl.html
[08:32:19] fsfe.org/tags/tagged-it.nn.html
[08:32:19] fsfe.org/tags/tagged-it.pl.html
[08:32:19] fsfe.org/tags/tagged-it.pt.html
[08:32:19] fsfe.org/tags/tagged-it.ro.html
[08:32:19] fsfe.org/tags/tagged-it.ru.html
[08:32:19] fsfe.org/tags/tagged-it.sk.html
[08:32:19] fsfe.org/tags/tagged-it.sl.html
[08:32:19] fsfe.org/tags/tagged-it.sq.html
[08:32:19] fsfe.org/tags/tagged-it.sr.html
[08:32:19] fsfe.org/tags/tagged-it.sv.html
[08:32:19] fsfe.org/tags/tagged-it.tr.html
[08:32:19] fsfe.org/tags/tagged-it.uk.html
[08:32:19] fsfe.org/tags/tagged-it.zh.html
[08:32:19] fsfe.org/tags/tagged-legal.ar.html
[08:32:19] fsfe.org/tags/tagged-legal.bg.html
[08:32:19] fsfe.org/tags/tagged-legal.bs.html
[08:32:19] fsfe.org/tags/tagged-legal.ca.html
[08:32:19] fsfe.org/tags/tagged-legal.cs.html
[08:32:19] fsfe.org/tags/tagged-legal.da.html
[08:32:19] fsfe.org/tags/tagged-legal.de.html
[08:32:19] fsfe.org/tags/tagged-legal.el.html
[08:32:19] fsfe.org/tags/tagged-legal.en.html
[08:32:19] fsfe.org/tags/tagged-legal.es.html
[08:32:19] fsfe.org/tags/tagged-legal.et.html
[08:32:19] fsfe.org/tags/tagged-legal.fa.html
[08:32:19] fsfe.org/tags/tagged-legal.fi.html
[08:32:19] fsfe.org/tags/tagged-legal.fr.html
[08:32:19] fsfe.org/tags/tagged-legal.hr.html
[08:32:19] fsfe.org/tags/tagged-legal.hu.html
[08:32:19] fsfe.org/tags/tagged-legal.it.html
[08:32:19] fsfe.org/tags/tagged-legal.ja.html
[08:32:19] fsfe.org/tags/tagged-legal.mk.html
[08:32:19] fsfe.org/tags/tagged-legal.nb.html
[08:32:19] fsfe.org/tags/tagged-legal.nl.html
[08:32:19] fsfe.org/tags/tagged-legal.nn.html
[08:32:19] fsfe.org/tags/tagged-legal.pl.html
[08:32:19] fsfe.org/tags/tagged-legal.pt.html
[08:32:19] fsfe.org/tags/tagged-legal.ro.html
[08:32:19] fsfe.org/tags/tagged-legal.ru.html
[08:32:19] fsfe.org/tags/tagged-legal.sk.html
[08:32:19] fsfe.org/tags/tagged-legal.sl.html
[08:32:19] fsfe.org/tags/tagged-legal.sq.html
[08:32:19] fsfe.org/tags/tagged-legal.sr.html
[08:32:19] fsfe.org/tags/tagged-legal.sv.html
[08:32:19] fsfe.org/tags/tagged-legal.tr.html
[08:32:19] fsfe.org/tags/tagged-legal.uk.html
[08:32:19] fsfe.org/tags/tagged-legal.zh.html
[08:32:19] fsfe.org/tags/tagged-licensing.ar.html
[08:32:19] fsfe.org/tags/tagged-licensing.bg.html
[08:32:19] fsfe.org/tags/tagged-licensing.bs.html
[08:32:19] fsfe.org/tags/tagged-licensing.ca.html
[08:32:19] fsfe.org/tags/tagged-licensing.cs.html
[08:32:19] fsfe.org/tags/tagged-licensing.da.html
[08:32:19] fsfe.org/tags/tagged-licensing.de.html
[08:32:19] fsfe.org/tags/tagged-licensing.el.html
[08:32:19] fsfe.org/tags/tagged-licensing.en.html
[08:32:19] fsfe.org/tags/tagged-licensing.es.html
[08:32:19] fsfe.org/tags/tagged-licensing.et.html
[08:32:19] fsfe.org/tags/tagged-licensing.fa.html
[08:32:19] fsfe.org/tags/tagged-licensing.fi.html
[08:32:19] fsfe.org/tags/tagged-licensing.fr.html
[08:32:19] fsfe.org/tags/tagged-licensing.hr.html
[08:32:19] fsfe.org/tags/tagged-licensing.hu.html
[08:32:19] fsfe.org/tags/tagged-licensing.it.html
[08:32:19] fsfe.org/tags/tagged-licensing.ja.html
[08:32:19] fsfe.org/tags/tagged-licensing.mk.html
[08:32:19] fsfe.org/tags/tagged-licensing.nb.html
[08:32:19] fsfe.org/tags/tagged-licensing.nl.html
[08:32:19] fsfe.org/tags/tagged-licensing.nn.html
[08:32:19] fsfe.org/tags/tagged-licensing.pl.html
[08:32:19] fsfe.org/tags/tagged-licensing.pt.html
[08:32:19] fsfe.org/tags/tagged-licensing.ro.html
[08:32:19] fsfe.org/tags/tagged-licensing.ru.html
[08:32:19] fsfe.org/tags/tagged-licensing.sk.html
[08:32:19] fsfe.org/tags/tagged-licensing.sl.html
[08:32:19] fsfe.org/tags/tagged-licensing.sq.html
[08:32:19] fsfe.org/tags/tagged-licensing.sr.html
[08:32:19] fsfe.org/tags/tagged-licensing.sv.html
[08:32:19] fsfe.org/tags/tagged-licensing.tr.html
[08:32:19] fsfe.org/tags/tagged-licensing.uk.html
[08:32:19] fsfe.org/tags/tagged-licensing.zh.html
[08:32:19] fsfe.org/tags/tagged-localgroup.ar.html
[08:32:19] fsfe.org/tags/tagged-localgroup.bg.html
[08:32:19] fsfe.org/tags/tagged-localgroup.bs.html
[08:32:19] fsfe.org/tags/tagged-localgroup.ca.html
[08:32:19] fsfe.org/tags/tagged-localgroup.cs.html
[08:32:19] fsfe.org/tags/tagged-localgroup.da.html
[08:32:19] fsfe.org/tags/tagged-localgroup.de.html
[08:32:19] fsfe.org/tags/tagged-localgroup.el.html
[08:32:19] fsfe.org/tags/tagged-localgroup.en.html
[08:32:19] fsfe.org/tags/tagged-localgroup.es.html
[08:32:19] fsfe.org/tags/tagged-localgroup.et.html
[08:32:19] fsfe.org/tags/tagged-localgroup.fa.html
[08:32:19] fsfe.org/tags/tagged-localgroup.fi.html
[08:32:19] fsfe.org/tags/tagged-localgroup.fr.html
[08:32:19] fsfe.org/tags/tagged-localgroup.hr.html
[08:32:19] fsfe.org/tags/tagged-localgroup.hu.html
[08:32:19] fsfe.org/tags/tagged-localgroup.it.html
[08:32:19] fsfe.org/tags/tagged-localgroup.ja.html
[08:32:19] fsfe.org/tags/tagged-localgroup.mk.html
[08:32:19] fsfe.org/tags/tagged-localgroup.nb.html
[08:32:19] fsfe.org/tags/tagged-localgroup.nl.html
[08:32:19] fsfe.org/tags/tagged-localgroup.nn.html
[08:32:19] fsfe.org/tags/tagged-localgroup.pl.html
[08:32:19] fsfe.org/tags/tagged-localgroup.pt.html
[08:32:19] fsfe.org/tags/tagged-localgroup.ro.html
[08:32:19] fsfe.org/tags/tagged-localgroup.ru.html
[08:32:19] fsfe.org/tags/tagged-localgroup.sk.html
[08:32:19] fsfe.org/tags/tagged-localgroup.sl.html
[08:32:19] fsfe.org/tags/tagged-localgroup.sq.html
[08:32:19] fsfe.org/tags/tagged-localgroup.sr.html
[08:32:19] fsfe.org/tags/tagged-localgroup.sv.html
[08:32:19] fsfe.org/tags/tagged-localgroup.tr.html
[08:32:19] fsfe.org/tags/tagged-localgroup.uk.html
[08:32:19] fsfe.org/tags/tagged-localgroup.zh.html
[08:32:19] fsfe.org/tags/tagged-ngi.ar.html
[08:32:19] fsfe.org/tags/tagged-ngi.bg.html
[08:32:19] fsfe.org/tags/tagged-ngi.bs.html
[08:32:19] fsfe.org/tags/tagged-ngi.ca.html
[08:32:19] fsfe.org/tags/tagged-ngi.cs.html
[08:32:19] fsfe.org/tags/tagged-ngi.da.html
[08:32:19] fsfe.org/tags/tagged-ngi.de.html
[08:32:19] fsfe.org/tags/tagged-ngi.el.html
[08:32:19] fsfe.org/tags/tagged-ngi.en.html
[08:32:19] fsfe.org/tags/tagged-ngi.es.html
[08:32:19] fsfe.org/tags/tagged-ngi.et.html
[08:32:19] fsfe.org/tags/tagged-ngi.fa.html
[08:32:19] fsfe.org/tags/tagged-ngi.fi.html
[08:32:19] fsfe.org/tags/tagged-ngi.fr.html
[08:32:19] fsfe.org/tags/tagged-ngi.hr.html
[08:32:19] fsfe.org/tags/tagged-ngi.hu.html
[08:32:19] fsfe.org/tags/tagged-ngi.it.html
[08:32:19] fsfe.org/tags/tagged-ngi.ja.html
[08:32:19] fsfe.org/tags/tagged-ngi.mk.html
[08:32:19] fsfe.org/tags/tagged-ngi.nb.html
[08:32:19] fsfe.org/tags/tagged-ngi.nl.html
[08:32:19] fsfe.org/tags/tagged-ngi.nn.html
[08:32:19] fsfe.org/tags/tagged-ngi.pl.html
[08:32:19] fsfe.org/tags/tagged-ngi.pt.html
[08:32:19] fsfe.org/tags/tagged-ngi.ro.html
[08:32:19] fsfe.org/tags/tagged-ngi.ru.html
[08:32:19] fsfe.org/tags/tagged-ngi.sk.html
[08:32:19] fsfe.org/tags/tagged-ngi.sl.html
[08:32:19] fsfe.org/tags/tagged-ngi.sq.html
[08:32:19] fsfe.org/tags/tagged-ngi.sr.html
[08:32:19] fsfe.org/tags/tagged-ngi.sv.html
[08:32:19] fsfe.org/tags/tagged-ngi.tr.html
[08:32:19] fsfe.org/tags/tagged-ngi.uk.html
[08:32:19] fsfe.org/tags/tagged-ngi.zh.html
[08:32:19] fsfe.org/tags/tagged-nl.ar.html
[08:32:19] fsfe.org/tags/tagged-nl.bg.html
[08:32:19] fsfe.org/tags/tagged-nl.bs.html
[08:32:19] fsfe.org/tags/tagged-nl.ca.html
[08:32:19] fsfe.org/tags/tagged-nl.cs.html
[08:32:19] fsfe.org/tags/tagged-nl.da.html
[08:32:19] fsfe.org/tags/tagged-nl.de.html
[08:32:19] fsfe.org/tags/tagged-nl.el.html
[08:32:19] fsfe.org/tags/tagged-nl.en.html
[08:32:19] fsfe.org/tags/tagged-nl.es.html
[08:32:19] fsfe.org/tags/tagged-nl.et.html
[08:32:19] fsfe.org/tags/tagged-nl.fa.html
[08:32:19] fsfe.org/tags/tagged-nl.fi.html
[08:32:19] fsfe.org/tags/tagged-nl.fr.html
[08:32:19] fsfe.org/tags/tagged-nl.hr.html
[08:32:19] fsfe.org/tags/tagged-nl.hu.html
[08:32:19] fsfe.org/tags/tagged-nl.it.html
[08:32:19] fsfe.org/tags/tagged-nl.ja.html
[08:32:19] fsfe.org/tags/tagged-nl.mk.html
[08:32:19] fsfe.org/tags/tagged-nl.nb.html
[08:32:19] fsfe.org/tags/tagged-nl.nl.html
[08:32:19] fsfe.org/tags/tagged-nl.nn.html
[08:32:19] fsfe.org/tags/tagged-nl.pl.html
[08:32:19] fsfe.org/tags/tagged-nl.pt.html
[08:32:19] fsfe.org/tags/tagged-nl.ro.html
[08:32:19] fsfe.org/tags/tagged-nl.ru.html
[08:32:19] fsfe.org/tags/tagged-nl.sk.html
[08:32:19] fsfe.org/tags/tagged-nl.sl.html
[08:32:19] fsfe.org/tags/tagged-nl.sq.html
[08:32:19] fsfe.org/tags/tagged-nl.sr.html
[08:32:19] fsfe.org/tags/tagged-nl.sv.html
[08:32:19] fsfe.org/tags/tagged-nl.tr.html
[08:32:19] fsfe.org/tags/tagged-nl.uk.html
[08:32:19] fsfe.org/tags/tagged-nl.zh.html
[08:32:19] fsfe.org/tags/tagged-pmpc.ar.html
[08:32:19] fsfe.org/tags/tagged-pmpc.bg.html
[08:32:19] fsfe.org/tags/tagged-pmpc.bs.html
[08:32:19] fsfe.org/tags/tagged-pmpc.ca.html
[08:32:19] fsfe.org/tags/tagged-pmpc.cs.html
[08:32:19] fsfe.org/tags/tagged-pmpc.da.html
[08:32:19] fsfe.org/tags/tagged-pmpc.de.html
[08:32:19] fsfe.org/tags/tagged-pmpc.el.html
[08:32:19] fsfe.org/tags/tagged-pmpc.en.html
[08:32:19] fsfe.org/tags/tagged-pmpc.es.html
[08:32:19] fsfe.org/tags/tagged-pmpc.et.html
[08:32:19] fsfe.org/tags/tagged-pmpc.fa.html
[08:32:19] fsfe.org/tags/tagged-pmpc.fi.html
[08:32:19] fsfe.org/tags/tagged-pmpc.fr.html
[08:32:19] fsfe.org/tags/tagged-pmpc.hr.html
[08:32:19] fsfe.org/tags/tagged-pmpc.hu.html
[08:32:19] fsfe.org/tags/tagged-pmpc.it.html
[08:32:19] fsfe.org/tags/tagged-pmpc.ja.html
[08:32:19] fsfe.org/tags/tagged-pmpc.mk.html
[08:32:19] fsfe.org/tags/tagged-pmpc.nb.html
[08:32:19] fsfe.org/tags/tagged-pmpc.nl.html
[08:32:19] fsfe.org/tags/tagged-pmpc.nn.html
[08:32:19] fsfe.org/tags/tagged-pmpc.pl.html
[08:32:19] fsfe.org/tags/tagged-pmpc.pt.html
[08:32:19] fsfe.org/tags/tagged-pmpc.ro.html
[08:32:19] fsfe.org/tags/tagged-pmpc.ru.html
[08:32:19] fsfe.org/tags/tagged-pmpc.sk.html
[08:32:19] fsfe.org/tags/tagged-pmpc.sl.html
[08:32:19] fsfe.org/tags/tagged-pmpc.sq.html
[08:32:19] fsfe.org/tags/tagged-pmpc.sr.html
[08:32:19] fsfe.org/tags/tagged-pmpc.sv.html
[08:32:19] fsfe.org/tags/tagged-pmpc.tr.html
[08:32:19] fsfe.org/tags/tagged-pmpc.uk.html
[08:32:19] fsfe.org/tags/tagged-pmpc.zh.html
[08:32:19] fsfe.org/tags/tagged-podcast.ar.html
[08:32:19] fsfe.org/tags/tagged-podcast.bg.html
[08:32:19] fsfe.org/tags/tagged-podcast.bs.html
[08:32:19] fsfe.org/tags/tagged-podcast.ca.html
[08:32:19] fsfe.org/tags/tagged-podcast.cs.html
[08:32:19] fsfe.org/tags/tagged-podcast.da.html
[08:32:19] fsfe.org/tags/tagged-podcast.de.html
[08:32:19] fsfe.org/tags/tagged-podcast.el.html
[08:32:19] fsfe.org/tags/tagged-podcast.en.html
[08:32:19] fsfe.org/tags/tagged-podcast.es.html
[08:32:19] fsfe.org/tags/tagged-podcast.et.html
[08:32:19] fsfe.org/tags/tagged-podcast.fa.html
[08:32:19] fsfe.org/tags/tagged-podcast.fi.html
[08:32:19] fsfe.org/tags/tagged-podcast.fr.html
[08:32:19] fsfe.org/tags/tagged-podcast.hr.html
[08:32:19] fsfe.org/tags/tagged-podcast.hu.html
[08:32:19] fsfe.org/tags/tagged-podcast.it.html
[08:32:19] fsfe.org/tags/tagged-podcast.ja.html
[08:32:19] fsfe.org/tags/tagged-podcast.mk.html
[08:32:19] fsfe.org/tags/tagged-podcast.nb.html
[08:32:19] fsfe.org/tags/tagged-podcast.nl.html
[08:32:19] fsfe.org/tags/tagged-podcast.nn.html
[08:32:19] fsfe.org/tags/tagged-podcast.pl.html
[08:32:19] fsfe.org/tags/tagged-podcast.pt.html
[08:32:19] fsfe.org/tags/tagged-podcast.ro.html
[08:32:19] fsfe.org/tags/tagged-podcast.ru.html
[08:32:19] fsfe.org/tags/tagged-podcast.sk.html
[08:32:19] fsfe.org/tags/tagged-podcast.sl.html
[08:32:19] fsfe.org/tags/tagged-podcast.sq.html
[08:32:19] fsfe.org/tags/tagged-podcast.sr.html
[08:32:19] fsfe.org/tags/tagged-podcast.sv.html
[08:32:19] fsfe.org/tags/tagged-podcast.tr.html
[08:32:19] fsfe.org/tags/tagged-podcast.uk.html
[08:32:19] fsfe.org/tags/tagged-podcast.zh.html
[08:32:19] fsfe.org/tags/tagged-press.ar.html
[08:32:19] fsfe.org/tags/tagged-press.bg.html
[08:32:19] fsfe.org/tags/tagged-press.bs.html
[08:32:19] fsfe.org/tags/tagged-press.ca.html
[08:32:19] fsfe.org/tags/tagged-press.cs.html
[08:32:19] fsfe.org/tags/tagged-press.da.html
[08:32:19] fsfe.org/tags/tagged-press.de.html
[08:32:19] fsfe.org/tags/tagged-press.el.html
[08:32:19] fsfe.org/tags/tagged-press.en.html
[08:32:19] fsfe.org/tags/tagged-press.es.html
[08:32:19] fsfe.org/tags/tagged-press.et.html
[08:32:19] fsfe.org/tags/tagged-press.fa.html
[08:32:19] fsfe.org/tags/tagged-press.fi.html
[08:32:19] fsfe.org/tags/tagged-press.fr.html
[08:32:19] fsfe.org/tags/tagged-press.hr.html
[08:32:19] fsfe.org/tags/tagged-press.hu.html
[08:32:19] fsfe.org/tags/tagged-press.it.html
[08:32:19] fsfe.org/tags/tagged-press.ja.html
[08:32:19] fsfe.org/tags/tagged-press.mk.html
[08:32:19] fsfe.org/tags/tagged-press.nb.html
[08:32:19] fsfe.org/tags/tagged-press.nl.html
[08:32:19] fsfe.org/tags/tagged-press.nn.html
[08:32:19] fsfe.org/tags/tagged-press.pl.html
[08:32:19] fsfe.org/tags/tagged-press.pt.html
[08:32:19] fsfe.org/tags/tagged-press.ro.html
[08:32:19] fsfe.org/tags/tagged-press.ru.html
[08:32:19] fsfe.org/tags/tagged-press.sk.html
[08:32:19] fsfe.org/tags/tagged-press.sl.html
[08:32:19] fsfe.org/tags/tagged-press.sq.html
[08:32:19] fsfe.org/tags/tagged-press.sr.html
[08:32:19] fsfe.org/tags/tagged-press.sv.html
[08:32:19] fsfe.org/tags/tagged-press.tr.html
[08:32:19] fsfe.org/tags/tagged-press.uk.html
[08:32:19] fsfe.org/tags/tagged-press.zh.html
[08:32:19] fsfe.org/tags/tagged-reuse.ar.html
[08:32:19] fsfe.org/tags/tagged-reuse.bg.html
[08:32:19] fsfe.org/tags/tagged-reuse.bs.html
[08:32:19] fsfe.org/tags/tagged-reuse.ca.html
[08:32:19] fsfe.org/tags/tagged-reuse.cs.html
[08:32:19] fsfe.org/tags/tagged-reuse.da.html
[08:32:19] fsfe.org/tags/tagged-reuse.de.html
[08:32:19] fsfe.org/tags/tagged-reuse.el.html
[08:32:19] fsfe.org/tags/tagged-reuse.en.html
[08:32:19] fsfe.org/tags/tagged-reuse.es.html
[08:32:19] fsfe.org/tags/tagged-reuse.et.html
[08:32:19] fsfe.org/tags/tagged-reuse.fa.html
[08:32:19] fsfe.org/tags/tagged-reuse.fi.html
[08:32:19] fsfe.org/tags/tagged-reuse.fr.html
[08:32:19] fsfe.org/tags/tagged-reuse.hr.html
[08:32:19] fsfe.org/tags/tagged-reuse.hu.html
[08:32:19] fsfe.org/tags/tagged-reuse.it.html
[08:32:19] fsfe.org/tags/tagged-reuse.ja.html
[08:32:19] fsfe.org/tags/tagged-reuse.mk.html
[08:32:19] fsfe.org/tags/tagged-reuse.nb.html
[08:32:19] fsfe.org/tags/tagged-reuse.nl.html
[08:32:19] fsfe.org/tags/tagged-reuse.nn.html
[08:32:19] fsfe.org/tags/tagged-reuse.pl.html
[08:32:19] fsfe.org/tags/tagged-reuse.pt.html
[08:32:19] fsfe.org/tags/tagged-reuse.ro.html
[08:32:19] fsfe.org/tags/tagged-reuse.ru.html
[08:32:19] fsfe.org/tags/tagged-reuse.sk.html
[08:32:19] fsfe.org/tags/tagged-reuse.sl.html
[08:32:19] fsfe.org/tags/tagged-reuse.sq.html
[08:32:19] fsfe.org/tags/tagged-reuse.sr.html
[08:32:19] fsfe.org/tags/tagged-reuse.sv.html
[08:32:19] fsfe.org/tags/tagged-reuse.tr.html
[08:32:19] fsfe.org/tags/tagged-reuse.uk.html
[08:32:19] fsfe.org/tags/tagged-reuse.zh.html
[08:32:19] fsfe.org/tags/tagged-routers.ar.html
[08:32:19] fsfe.org/tags/tagged-routers.bg.html
[08:32:19] fsfe.org/tags/tagged-routers.bs.html
[08:32:19] fsfe.org/tags/tagged-routers.ca.html
[08:32:19] fsfe.org/tags/tagged-routers.cs.html
[08:32:19] fsfe.org/tags/tagged-routers.da.html
[08:32:19] fsfe.org/tags/tagged-routers.de.html
[08:32:19] fsfe.org/tags/tagged-routers.el.html
[08:32:19] fsfe.org/tags/tagged-routers.en.html
[08:32:19] fsfe.org/tags/tagged-routers.es.html
[08:32:19] fsfe.org/tags/tagged-routers.et.html
[08:32:19] fsfe.org/tags/tagged-routers.fa.html
[08:32:19] fsfe.org/tags/tagged-routers.fi.html
[08:32:19] fsfe.org/tags/tagged-routers.fr.html
[08:32:19] fsfe.org/tags/tagged-routers.hr.html
[08:32:19] fsfe.org/tags/tagged-routers.hu.html
[08:32:19] fsfe.org/tags/tagged-routers.it.html
[08:32:19] fsfe.org/tags/tagged-routers.ja.html
[08:32:19] fsfe.org/tags/tagged-routers.mk.html
[08:32:19] fsfe.org/tags/tagged-routers.nb.html
[08:32:19] fsfe.org/tags/tagged-routers.nl.html
[08:32:19] fsfe.org/tags/tagged-routers.nn.html
[08:32:19] fsfe.org/tags/tagged-routers.pl.html
[08:32:19] fsfe.org/tags/tagged-routers.pt.html
[08:32:19] fsfe.org/tags/tagged-routers.ro.html
[08:32:19] fsfe.org/tags/tagged-routers.ru.html
[08:32:19] fsfe.org/tags/tagged-routers.sk.html
[08:32:19] fsfe.org/tags/tagged-routers.sl.html
[08:32:19] fsfe.org/tags/tagged-routers.sq.html
[08:32:19] fsfe.org/tags/tagged-routers.sr.html
[08:32:19] fsfe.org/tags/tagged-routers.sv.html
[08:32:19] fsfe.org/tags/tagged-routers.tr.html
[08:32:19] fsfe.org/tags/tagged-routers.uk.html
[08:32:19] fsfe.org/tags/tagged-routers.zh.html
[08:32:19] fsfe.org/tags/tagged-se.ar.html
[08:32:19] fsfe.org/tags/tagged-se.bg.html
[08:32:19] fsfe.org/tags/tagged-se.bs.html
[08:32:19] fsfe.org/tags/tagged-se.ca.html
[08:32:19] fsfe.org/tags/tagged-se.cs.html
[08:32:19] fsfe.org/tags/tagged-se.da.html
[08:32:19] fsfe.org/tags/tagged-se.de.html
[08:32:19] fsfe.org/tags/tagged-se.el.html
[08:32:19] fsfe.org/tags/tagged-se.en.html
[08:32:19] fsfe.org/tags/tagged-se.es.html
[08:32:19] fsfe.org/tags/tagged-se.et.html
[08:32:19] fsfe.org/tags/tagged-se.fa.html
[08:32:19] fsfe.org/tags/tagged-se.fi.html
[08:32:19] fsfe.org/tags/tagged-se.fr.html
[08:32:19] fsfe.org/tags/tagged-se.hr.html
[08:32:19] fsfe.org/tags/tagged-se.hu.html
[08:32:19] fsfe.org/tags/tagged-se.it.html
[08:32:19] fsfe.org/tags/tagged-se.ja.html
[08:32:19] fsfe.org/tags/tagged-se.mk.html
[08:32:19] fsfe.org/tags/tagged-se.nb.html
[08:32:19] fsfe.org/tags/tagged-se.nl.html
[08:32:19] fsfe.org/tags/tagged-se.nn.html
[08:32:19] fsfe.org/tags/tagged-se.pl.html
[08:32:19] fsfe.org/tags/tagged-se.pt.html
[08:32:19] fsfe.org/tags/tagged-se.ro.html
[08:32:19] fsfe.org/tags/tagged-se.ru.html
[08:32:19] fsfe.org/tags/tagged-se.sk.html
[08:32:19] fsfe.org/tags/tagged-se.sl.html
[08:32:19] fsfe.org/tags/tagged-se.sq.html
[08:32:19] fsfe.org/tags/tagged-se.sr.html
[08:32:19] fsfe.org/tags/tagged-se.sv.html
[08:32:19] fsfe.org/tags/tagged-se.tr.html
[08:32:19] fsfe.org/tags/tagged-se.uk.html
[08:32:19] fsfe.org/tags/tagged-se.zh.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.ar.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.bg.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.bs.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.ca.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.cs.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.da.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.de.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.el.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.en.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.es.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.et.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.fa.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.fi.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.fr.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.hr.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.hu.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.it.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.ja.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.mk.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.nb.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.nl.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.nn.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.pl.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.pt.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.ro.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.ru.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.sk.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.sl.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.sq.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.sr.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.sv.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.tr.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.uk.html
[08:32:19] fsfe.org/tags/tagged-tech-teams.zh.html
[08:32:19] fsfe.org/tags/tagged-translations.ar.html
[08:32:19] fsfe.org/tags/tagged-translations.bg.html
[08:32:19] fsfe.org/tags/tagged-translations.bs.html
[08:32:19] fsfe.org/tags/tagged-translations.ca.html
[08:32:19] fsfe.org/tags/tagged-translations.cs.html
[08:32:19] fsfe.org/tags/tagged-translations.da.html
[08:32:19] fsfe.org/tags/tagged-translations.de.html
[08:32:19] fsfe.org/tags/tagged-translations.el.html
[08:32:19] fsfe.org/tags/tagged-translations.en.html
[08:32:19] fsfe.org/tags/tagged-translations.es.html
[08:32:19] fsfe.org/tags/tagged-translations.et.html
[08:32:19] fsfe.org/tags/tagged-translations.fa.html
[08:32:19] fsfe.org/tags/tagged-translations.fi.html
[08:32:19] fsfe.org/tags/tagged-translations.fr.html
[08:32:19] fsfe.org/tags/tagged-translations.hr.html
[08:32:19] fsfe.org/tags/tagged-translations.hu.html
[08:32:19] fsfe.org/tags/tagged-translations.it.html
[08:32:19] fsfe.org/tags/tagged-translations.ja.html
[08:32:19] fsfe.org/tags/tagged-translations.mk.html
[08:32:19] fsfe.org/tags/tagged-translations.nb.html
[08:32:19] fsfe.org/tags/tagged-translations.nl.html
[08:32:19] fsfe.org/tags/tagged-translations.nn.html
[08:32:19] fsfe.org/tags/tagged-translations.pl.html
[08:32:19] fsfe.org/tags/tagged-translations.pt.html
[08:32:19] fsfe.org/tags/tagged-translations.ro.html
[08:32:19] fsfe.org/tags/tagged-translations.ru.html
[08:32:19] fsfe.org/tags/tagged-translations.sk.html
[08:32:19] fsfe.org/tags/tagged-translations.sl.html
[08:32:19] fsfe.org/tags/tagged-translations.sq.html
[08:32:19] fsfe.org/tags/tagged-translations.sr.html
[08:32:19] fsfe.org/tags/tagged-translations.sv.html
[08:32:19] fsfe.org/tags/tagged-translations.tr.html
[08:32:19] fsfe.org/tags/tagged-translations.uk.html
[08:32:19] fsfe.org/tags/tagged-translations.zh.html
[08:32:19] fsfe.org/tags/tagged-yh4f.ar.html
[08:32:19] fsfe.org/tags/tagged-yh4f.bg.html
[08:32:19] fsfe.org/tags/tagged-yh4f.bs.html
[08:32:19] fsfe.org/tags/tagged-yh4f.ca.html
[08:32:19] fsfe.org/tags/tagged-yh4f.cs.html
[08:32:19] fsfe.org/tags/tagged-yh4f.da.html
[08:32:19] fsfe.org/tags/tagged-yh4f.de.html
[08:32:19] fsfe.org/tags/tagged-yh4f.el.html
[08:32:19] fsfe.org/tags/tagged-yh4f.en.html
[08:32:19] fsfe.org/tags/tagged-yh4f.es.html
[08:32:19] fsfe.org/tags/tagged-yh4f.et.html
[08:32:19] fsfe.org/tags/tagged-yh4f.fa.html
[08:32:19] fsfe.org/tags/tagged-yh4f.fi.html
[08:32:19] fsfe.org/tags/tagged-yh4f.fr.html
[08:32:19] fsfe.org/tags/tagged-yh4f.hr.html
[08:32:19] fsfe.org/tags/tagged-yh4f.hu.html
[08:32:19] fsfe.org/tags/tagged-yh4f.it.html
[08:32:19] fsfe.org/tags/tagged-yh4f.ja.html
[08:32:19] fsfe.org/tags/tagged-yh4f.mk.html
[08:32:19] fsfe.org/tags/tagged-yh4f.nb.html
[08:32:19] fsfe.org/tags/tagged-yh4f.nl.html
[08:32:19] fsfe.org/tags/tagged-yh4f.nn.html
[08:32:19] fsfe.org/tags/tagged-yh4f.pl.html
[08:32:19] fsfe.org/tags/tagged-yh4f.pt.html
[08:32:19] fsfe.org/tags/tagged-yh4f.ro.html
[08:32:19] fsfe.org/tags/tagged-yh4f.ru.html
[08:32:19] fsfe.org/tags/tagged-yh4f.sk.html
[08:32:19] fsfe.org/tags/tagged-yh4f.sl.html
[08:32:19] fsfe.org/tags/tagged-yh4f.sq.html
[08:32:19] fsfe.org/tags/tagged-yh4f.sr.html
[08:32:19] fsfe.org/tags/tagged-yh4f.sv.html
[08:32:19] fsfe.org/tags/tagged-yh4f.tr.html
[08:32:19] fsfe.org/tags/tagged-yh4f.uk.html
[08:32:19] fsfe.org/tags/tagged-yh4f.zh.html
[08:32:19] 
[08:32:19] sent 8,465,172 bytes  received 383,319 bytes  5,898,994.00 bytes/sec
[08:32:19] total size is 1,493,775,026  speedup is 168.82
[08:32:19] Syncing files to gahn.fsfeurope.org
[08:32:20] sending incremental file list
[08:32:20] fsfe.org/index.ar.html
[08:32:20] fsfe.org/index.bg.html
[08:32:20] fsfe.org/index.bs.html
[08:32:20] fsfe.org/index.ca.html
[08:32:20] fsfe.org/index.cs.html
[08:32:20] fsfe.org/index.da.html
[08:32:20] fsfe.org/index.de.html
[08:32:20] fsfe.org/index.el.html
[08:32:20] fsfe.org/index.en.html
[08:32:20] fsfe.org/index.es.html
[08:32:20] fsfe.org/index.et.html
[08:32:20] fsfe.org/index.fa.html
[08:32:20] fsfe.org/index.fi.html
[08:32:20] fsfe.org/index.fr.html
[08:32:20] fsfe.org/index.hr.html
[08:32:20] fsfe.org/index.hu.html
[08:32:20] fsfe.org/index.it.html
[08:32:20] fsfe.org/index.ja.html
[08:32:20] fsfe.org/index.mk.html
[08:32:20] fsfe.org/index.nb.html
[08:32:20] fsfe.org/index.nl.html
[08:32:20] fsfe.org/index.nn.html
[08:32:20] fsfe.org/index.pl.html
[08:32:20] fsfe.org/index.pt.html
[08:32:20] fsfe.org/index.ro.html
[08:32:20] fsfe.org/index.ru.html
[08:32:20] fsfe.org/index.sk.html
[08:32:20] fsfe.org/index.sl.html
[08:32:20] fsfe.org/index.sq.html
[08:32:20] fsfe.org/index.sr.html
[08:32:20] fsfe.org/index.sv.html
[08:32:20] fsfe.org/index.tr.html
[08:32:20] fsfe.org/index.uk.html
[08:32:20] fsfe.org/index.zh.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.ar.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.bg.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.bs.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.ca.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.cs.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.da.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.de.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.el.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.en.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.es.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.et.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.fa.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.fi.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.fr.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.hr.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.hu.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.it.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.ja.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.mk.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.nb.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.nl.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.nn.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.pl.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.pt.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.ro.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.ru.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.sk.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.sl.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.sq.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.sr.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.sv.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.tr.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.uk.html
[08:32:20] fsfe.org/activities/deviceneutrality/index.zh.html
[08:32:20] fsfe.org/activities/dma/dma.ar.html
[08:32:20] fsfe.org/activities/dma/dma.bg.html
[08:32:20] fsfe.org/activities/dma/dma.bs.html
[08:32:20] fsfe.org/activities/dma/dma.ca.html
[08:32:20] fsfe.org/activities/dma/dma.cs.html
[08:32:20] fsfe.org/activities/dma/dma.da.html
[08:32:20] fsfe.org/activities/dma/dma.de.html
[08:32:20] fsfe.org/activities/dma/dma.el.html
[08:32:20] fsfe.org/activities/dma/dma.en.html
[08:32:20] fsfe.org/activities/dma/dma.es.html
[08:32:20] fsfe.org/activities/dma/dma.et.html
[08:32:20] fsfe.org/activities/dma/dma.fa.html
[08:32:20] fsfe.org/activities/dma/dma.fi.html
[08:32:20] fsfe.org/activities/dma/dma.fr.html
[08:32:20] fsfe.org/activities/dma/dma.hr.html
[08:32:20] fsfe.org/activities/dma/dma.hu.html
[08:32:20] fsfe.org/activities/dma/dma.it.html
[08:32:20] fsfe.org/activities/dma/dma.ja.html
[08:32:20] fsfe.org/activities/dma/dma.mk.html
[08:32:20] fsfe.org/activities/dma/dma.nb.html
[08:32:20] fsfe.org/activities/dma/dma.nl.html
[08:32:20] fsfe.org/activities/dma/dma.nn.html
[08:32:20] fsfe.org/activities/dma/dma.pl.html
[08:32:20] fsfe.org/activities/dma/dma.pt.html
[08:32:20] fsfe.org/activities/dma/dma.ro.html
[08:32:20] fsfe.org/activities/dma/dma.ru.html
[08:32:20] fsfe.org/activities/dma/dma.sk.html
[08:32:20] fsfe.org/activities/dma/dma.sl.html
[08:32:20] fsfe.org/activities/dma/dma.sq.html
[08:32:20] fsfe.org/activities/dma/dma.sr.html
[08:32:20] fsfe.org/activities/dma/dma.sv.html
[08:32:20] fsfe.org/activities/dma/dma.tr.html
[08:32:20] fsfe.org/activities/dma/dma.uk.html
[08:32:20] fsfe.org/activities/dma/dma.zh.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.ar.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.bg.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.bs.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.ca.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.cs.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.da.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.de.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.el.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.en.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.es.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.et.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.fa.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.fi.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.fr.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.hr.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.hu.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.it.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.ja.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.mk.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.nb.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.nl.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.nn.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.pl.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.pt.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.ro.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.ru.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.sk.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.sl.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.sq.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.sr.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.sv.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.tr.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.uk.html
[08:32:20] fsfe.org/activities/publiccode/publiccode.zh.html
[08:32:20] fsfe.org/activities/routers/routers.ar.html
[08:32:20] fsfe.org/activities/routers/routers.bg.html
[08:32:20] fsfe.org/activities/routers/routers.bs.html
[08:32:20] fsfe.org/activities/routers/routers.ca.html
[08:32:20] fsfe.org/activities/routers/routers.cs.html
[08:32:20] fsfe.org/activities/routers/routers.da.html
[08:32:20] fsfe.org/activities/routers/routers.de.html
[08:32:20] fsfe.org/activities/routers/routers.el.html
[08:32:20] fsfe.org/activities/routers/routers.en.html
[08:32:20] fsfe.org/activities/routers/routers.es.html
[08:32:20] fsfe.org/activities/routers/routers.et.html
[08:32:20] fsfe.org/activities/routers/routers.fa.html
[08:32:20] fsfe.org/activities/routers/routers.fi.html
[08:32:20] fsfe.org/activities/routers/routers.fr.html
[08:32:20] fsfe.org/activities/routers/routers.hr.html
[08:32:20] fsfe.org/activities/routers/routers.hu.html
[08:32:20] fsfe.org/activities/routers/routers.it.html
[08:32:20] fsfe.org/activities/routers/routers.ja.html
[08:32:20] fsfe.org/activities/routers/routers.mk.html
[08:32:20] fsfe.org/activities/routers/routers.nb.html
[08:32:20] fsfe.org/activities/routers/routers.nl.html
[08:32:20] fsfe.org/activities/routers/routers.nn.html
[08:32:20] fsfe.org/activities/routers/routers.pl.html
[08:32:20] fsfe.org/activities/routers/routers.pt.html
[08:32:20] fsfe.org/activities/routers/routers.ro.html
[08:32:20] fsfe.org/activities/routers/routers.ru.html
[08:32:20] fsfe.org/activities/routers/routers.sk.html
[08:32:20] fsfe.org/activities/routers/routers.sl.html
[08:32:20] fsfe.org/activities/routers/routers.sq.html
[08:32:20] fsfe.org/activities/routers/routers.sr.html
[08:32:20] fsfe.org/activities/routers/routers.sv.html
[08:32:20] fsfe.org/activities/routers/routers.tr.html
[08:32:20] fsfe.org/activities/routers/routers.uk.html
[08:32:20] fsfe.org/activities/routers/routers.zh.html
[08:32:20] fsfe.org/activities/yh4f/index.ar.html
[08:32:20] fsfe.org/activities/yh4f/index.bg.html
[08:32:20] fsfe.org/activities/yh4f/index.bs.html
[08:32:20] fsfe.org/activities/yh4f/index.ca.html
[08:32:20] fsfe.org/activities/yh4f/index.cs.html
[08:32:20] fsfe.org/activities/yh4f/index.da.html
[08:32:20] fsfe.org/activities/yh4f/index.de.html
[08:32:20] fsfe.org/activities/yh4f/index.el.html
[08:32:20] fsfe.org/activities/yh4f/index.en.html
[08:32:20] fsfe.org/activities/yh4f/index.es.html
[08:32:20] fsfe.org/activities/yh4f/index.et.html
[08:32:20] fsfe.org/activities/yh4f/index.fa.html
[08:32:20] fsfe.org/activities/yh4f/index.fi.html
[08:32:20] fsfe.org/activities/yh4f/index.fr.html
[08:32:20] fsfe.org/activities/yh4f/index.hr.html
[08:32:20] fsfe.org/activities/yh4f/index.hu.html
[08:32:20] fsfe.org/activities/yh4f/index.it.html
[08:32:20] fsfe.org/activities/yh4f/index.ja.html
[08:32:20] fsfe.org/activities/yh4f/index.mk.html
[08:32:20] fsfe.org/activities/yh4f/index.nb.html
[08:32:20] fsfe.org/activities/yh4f/index.nl.html
[08:32:20] fsfe.org/activities/yh4f/index.nn.html
[08:32:20] fsfe.org/activities/yh4f/index.pl.html
[08:32:20] fsfe.org/activities/yh4f/index.pt.html
[08:32:20] fsfe.org/activities/yh4f/index.ro.html
[08:32:20] fsfe.org/activities/yh4f/index.ru.html
[08:32:20] fsfe.org/activities/yh4f/index.sk.html
[08:32:20] fsfe.org/activities/yh4f/index.sl.html
[08:32:20] fsfe.org/activities/yh4f/index.sq.html
[08:32:20] fsfe.org/activities/yh4f/index.sr.html
[08:32:20] fsfe.org/activities/yh4f/index.sv.html
[08:32:21] fsfe.org/activities/yh4f/index.tr.html
[08:32:21] fsfe.org/activities/yh4f/index.uk.html
[08:32:21] fsfe.org/activities/yh4f/index.zh.html
[08:32:21] fsfe.org/contribute/web/features.ar.html
[08:32:21] fsfe.org/contribute/web/features.bg.html
[08:32:21] fsfe.org/contribute/web/features.bs.html
[08:32:21] fsfe.org/contribute/web/features.ca.html
[08:32:21] fsfe.org/contribute/web/features.cs.html
[08:32:21] fsfe.org/contribute/web/features.da.html
[08:32:21] fsfe.org/contribute/web/features.de.html
[08:32:21] fsfe.org/contribute/web/features.el.html
[08:32:21] fsfe.org/contribute/web/features.en.html
[08:32:21] fsfe.org/contribute/web/features.es.html
[08:32:21] fsfe.org/contribute/web/features.et.html
[08:32:21] fsfe.org/contribute/web/features.fa.html
[08:32:21] fsfe.org/contribute/web/features.fi.html
[08:32:21] fsfe.org/contribute/web/features.fr.html
[08:32:21] fsfe.org/contribute/web/features.hr.html
[08:32:21] fsfe.org/contribute/web/features.hu.html
[08:32:21] fsfe.org/contribute/web/features.it.html
[08:32:21] fsfe.org/contribute/web/features.ja.html
[08:32:21] fsfe.org/contribute/web/features.mk.html
[08:32:21] fsfe.org/contribute/web/features.nb.html
[08:32:21] fsfe.org/contribute/web/features.nl.html
[08:32:21] fsfe.org/contribute/web/features.nn.html
[08:32:21] fsfe.org/contribute/web/features.pl.html
[08:32:21] fsfe.org/contribute/web/features.pt.html
[08:32:21] fsfe.org/contribute/web/features.ro.html
[08:32:21] fsfe.org/contribute/web/features.ru.html
[08:32:21] fsfe.org/contribute/web/features.sk.html
[08:32:21] fsfe.org/contribute/web/features.sl.html
[08:32:21] fsfe.org/contribute/web/features.sq.html
[08:32:21] fsfe.org/contribute/web/features.sr.html
[08:32:21] fsfe.org/contribute/web/features.sv.html
[08:32:21] fsfe.org/contribute/web/features.tr.html
[08:32:21] fsfe.org/contribute/web/features.uk.html
[08:32:21] fsfe.org/contribute/web/features.zh.html
[08:32:21] fsfe.org/freesoftware/education/education.ar.html
[08:32:21] fsfe.org/freesoftware/education/education.bg.html
[08:32:21] fsfe.org/freesoftware/education/education.bs.html
[08:32:21] fsfe.org/freesoftware/education/education.ca.html
[08:32:21] fsfe.org/freesoftware/education/education.cs.html
[08:32:21] fsfe.org/freesoftware/education/education.da.html
[08:32:21] fsfe.org/freesoftware/education/education.de.html
[08:32:21] fsfe.org/freesoftware/education/education.el.html
[08:32:21] fsfe.org/freesoftware/education/education.en.html
[08:32:21] fsfe.org/freesoftware/education/education.es.html
[08:32:21] fsfe.org/freesoftware/education/education.et.html
[08:32:21] fsfe.org/freesoftware/education/education.fa.html
[08:32:21] fsfe.org/freesoftware/education/education.fi.html
[08:32:21] fsfe.org/freesoftware/education/education.fr.html
[08:32:21] fsfe.org/freesoftware/education/education.hr.html
[08:32:21] fsfe.org/freesoftware/education/education.hu.html
[08:32:21] fsfe.org/freesoftware/education/education.it.html
[08:32:21] fsfe.org/freesoftware/education/education.ja.html
[08:32:21] fsfe.org/freesoftware/education/education.mk.html
[08:32:21] fsfe.org/freesoftware/education/education.nb.html
[08:32:21] fsfe.org/freesoftware/education/education.nl.html
[08:32:21] fsfe.org/freesoftware/education/education.nn.html
[08:32:21] fsfe.org/freesoftware/education/education.pl.html
[08:32:21] fsfe.org/freesoftware/education/education.pt.html
[08:32:21] fsfe.org/freesoftware/education/education.ro.html
[08:32:21] fsfe.org/freesoftware/education/education.ru.html
[08:32:21] fsfe.org/freesoftware/education/education.sk.html
[08:32:21] fsfe.org/freesoftware/education/education.sl.html
[08:32:21] fsfe.org/freesoftware/education/education.sq.html
[08:32:21] fsfe.org/freesoftware/education/education.sr.html
[08:32:21] fsfe.org/freesoftware/education/education.sv.html
[08:32:21] fsfe.org/freesoftware/education/education.tr.html
[08:32:21] fsfe.org/freesoftware/education/education.uk.html
[08:32:21] fsfe.org/freesoftware/education/education.zh.html
[08:32:21] fsfe.org/news/news.ar.html
[08:32:21] fsfe.org/news/news.ar.rss
[08:32:21] fsfe.org/news/news.bg.html
[08:32:21] fsfe.org/news/news.bg.rss
[08:32:21] fsfe.org/news/news.bs.html
[08:32:21] fsfe.org/news/news.bs.rss
[08:32:21] fsfe.org/news/news.ca.html
[08:32:21] fsfe.org/news/news.ca.rss
[08:32:21] fsfe.org/news/news.cs.html
[08:32:21] fsfe.org/news/news.cs.rss
[08:32:21] fsfe.org/news/news.da.html
[08:32:21] fsfe.org/news/news.da.rss
[08:32:21] fsfe.org/news/news.de.html
[08:32:21] fsfe.org/news/news.de.rss
[08:32:21] fsfe.org/news/news.el.html
[08:32:21] fsfe.org/news/news.el.rss
[08:32:21] fsfe.org/news/news.en.html
[08:32:21] fsfe.org/news/news.en.rss
[08:32:21] fsfe.org/news/news.es.html
[08:32:21] fsfe.org/news/news.es.rss
[08:32:21] fsfe.org/news/news.et.html
[08:32:21] fsfe.org/news/news.et.rss
[08:32:21] fsfe.org/news/news.fa.html
[08:32:21] fsfe.org/news/news.fa.rss
[08:32:21] fsfe.org/news/news.fi.html
[08:32:21] fsfe.org/news/news.fi.rss
[08:32:21] fsfe.org/news/news.fr.html
[08:32:21] fsfe.org/news/news.fr.rss
[08:32:21] fsfe.org/news/news.hr.html
[08:32:21] fsfe.org/news/news.hr.rss
[08:32:21] fsfe.org/news/news.hu.html
[08:32:21] fsfe.org/news/news.hu.rss
[08:32:21] fsfe.org/news/news.it.html
[08:32:21] fsfe.org/news/news.it.rss
[08:32:22] fsfe.org/news/news.ja.html
[08:32:22] fsfe.org/news/news.ja.rss
[08:32:22] fsfe.org/news/news.mk.html
[08:32:22] fsfe.org/news/news.mk.rss
[08:32:22] fsfe.org/news/news.nb.html
[08:32:22] fsfe.org/news/news.nb.rss
[08:32:22] fsfe.org/news/news.nl.html
[08:32:22] fsfe.org/news/news.nl.rss
[08:32:22] fsfe.org/news/news.nn.html
[08:32:22] fsfe.org/news/news.nn.rss
[08:32:22] fsfe.org/news/news.pl.html
[08:32:22] fsfe.org/news/news.pl.rss
[08:32:22] fsfe.org/news/news.pt.html
[08:32:22] fsfe.org/news/news.pt.rss
[08:32:22] fsfe.org/news/news.ro.html
[08:32:22] fsfe.org/news/news.ro.rss
[08:32:22] fsfe.org/news/news.ru.html
[08:32:22] fsfe.org/news/news.ru.rss
[08:32:22] fsfe.org/news/news.sk.html
[08:32:22] fsfe.org/news/news.sk.rss
[08:32:22] fsfe.org/news/news.sl.html
[08:32:22] fsfe.org/news/news.sl.rss
[08:32:22] fsfe.org/news/news.sq.html
[08:32:22] fsfe.org/news/news.sq.rss
[08:32:22] fsfe.org/news/news.sr.html
[08:32:22] fsfe.org/news/news.sr.rss
[08:32:22] fsfe.org/news/news.sv.html
[08:32:22] fsfe.org/news/news.sv.rss
[08:32:22] fsfe.org/news/news.tr.html
[08:32:22] fsfe.org/news/news.tr.rss
[08:32:22] fsfe.org/news/news.uk.html
[08:32:22] fsfe.org/news/news.uk.rss
[08:32:22] fsfe.org/news/news.zh.html
[08:32:22] fsfe.org/news/news.zh.rss
[08:32:22] fsfe.org/news/2024/news-20240920-01.ar.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.bg.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.bs.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.ca.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.cs.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.da.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.de.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.el.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.en.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.es.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.et.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.fa.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.fi.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.fr.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.hr.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.hu.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.it.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.ja.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.mk.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.nb.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.nl.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.nn.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.pl.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.pt.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.ro.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.ru.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.sk.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.sl.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.sq.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.sr.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.sv.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.tr.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.uk.html
[08:32:22] fsfe.org/news/2024/news-20240920-01.zh.html
[08:32:22] fsfe.org/press/press.ar.html
[08:32:22] fsfe.org/press/press.bg.html
[08:32:22] fsfe.org/press/press.bs.html
[08:32:22] fsfe.org/press/press.ca.html
[08:32:22] fsfe.org/press/press.cs.html
[08:32:22] fsfe.org/press/press.da.html
[08:32:22] fsfe.org/press/press.de.html
[08:32:22] fsfe.org/press/press.el.html
[08:32:22] fsfe.org/press/press.en.html
[08:32:22] fsfe.org/press/press.es.html
[08:32:22] fsfe.org/press/press.et.html
[08:32:22] fsfe.org/press/press.fa.html
[08:32:22] fsfe.org/press/press.fi.html
[08:32:22] fsfe.org/press/press.fr.html
[08:32:22] fsfe.org/press/press.hr.html
[08:32:22] fsfe.org/press/press.hu.html
[08:32:22] fsfe.org/press/press.it.html
[08:32:22] fsfe.org/press/press.ja.html
[08:32:22] fsfe.org/press/press.mk.html
[08:32:22] fsfe.org/press/press.nb.html
[08:32:22] fsfe.org/press/press.nl.html
[08:32:22] fsfe.org/press/press.nn.html
[08:32:22] fsfe.org/press/press.pl.html
[08:32:22] fsfe.org/press/press.pt.html
[08:32:22] fsfe.org/press/press.ro.html
[08:32:22] fsfe.org/press/press.ru.html
[08:32:22] fsfe.org/press/press.sk.html
[08:32:22] fsfe.org/press/press.sl.html
[08:32:22] fsfe.org/press/press.sq.html
[08:32:22] fsfe.org/press/press.sr.html
[08:32:22] fsfe.org/press/press.sv.html
[08:32:22] fsfe.org/press/press.tr.html
[08:32:22] fsfe.org/press/press.uk.html
[08:32:22] fsfe.org/press/press.zh.html
[08:32:22] fsfe.org/search/index.js
[08:32:22] fsfe.org/tags/tagged-AI.ar.html
[08:32:22] fsfe.org/tags/tagged-AI.bg.html
[08:32:22] fsfe.org/tags/tagged-AI.bs.html
[08:32:22] fsfe.org/tags/tagged-AI.ca.html
[08:32:22] fsfe.org/tags/tagged-AI.cs.html
[08:32:22] fsfe.org/tags/tagged-AI.da.html
[08:32:22] fsfe.org/tags/tagged-AI.de.html
[08:32:22] fsfe.org/tags/tagged-AI.el.html
[08:32:22] fsfe.org/tags/tagged-AI.en.html
[08:32:22] fsfe.org/tags/tagged-AI.es.html
[08:32:22] fsfe.org/tags/tagged-AI.et.html
[08:32:22] fsfe.org/tags/tagged-AI.fa.html
[08:32:22] fsfe.org/tags/tagged-AI.fi.html
[08:32:22] fsfe.org/tags/tagged-AI.fr.html
[08:32:22] fsfe.org/tags/tagged-AI.hr.html
[08:32:22] fsfe.org/tags/tagged-AI.hu.html
[08:32:22] fsfe.org/tags/tagged-AI.it.html
[08:32:22] fsfe.org/tags/tagged-AI.ja.html
[08:32:22] fsfe.org/tags/tagged-AI.mk.html
[08:32:22] fsfe.org/tags/tagged-AI.nb.html
[08:32:22] fsfe.org/tags/tagged-AI.nl.html
[08:32:22] fsfe.org/tags/tagged-AI.nn.html
[08:32:22] fsfe.org/tags/tagged-AI.pl.html
[08:32:22] fsfe.org/tags/tagged-AI.pt.html
[08:32:22] fsfe.org/tags/tagged-AI.ro.html
[08:32:22] fsfe.org/tags/tagged-AI.ru.html
[08:32:22] fsfe.org/tags/tagged-AI.sk.html
[08:32:22] fsfe.org/tags/tagged-AI.sl.html
[08:32:22] fsfe.org/tags/tagged-AI.sq.html
[08:32:22] fsfe.org/tags/tagged-AI.sr.html
[08:32:22] fsfe.org/tags/tagged-AI.sv.html
[08:32:22] fsfe.org/tags/tagged-AI.tr.html
[08:32:22] fsfe.org/tags/tagged-AI.uk.html
[08:32:22] fsfe.org/tags/tagged-AI.zh.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.ar.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.bg.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.bs.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.ca.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.cs.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.da.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.de.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.el.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.en.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.es.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.et.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.fa.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.fi.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.fr.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.hr.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.hu.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.it.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.ja.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.mk.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.nb.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.nl.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.nn.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.pl.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.pt.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.ro.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.ru.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.sk.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.sl.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.sq.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.sr.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.sv.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.tr.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.uk.html
[08:32:22] fsfe.org/tags/tagged-ada-zangemann.zh.html
[08:32:22] fsfe.org/tags/tagged-annual-report.ar.html
[08:32:22] fsfe.org/tags/tagged-annual-report.bg.html
[08:32:22] fsfe.org/tags/tagged-annual-report.bs.html
[08:32:22] fsfe.org/tags/tagged-annual-report.ca.html
[08:32:22] fsfe.org/tags/tagged-annual-report.cs.html
[08:32:22] fsfe.org/tags/tagged-annual-report.da.html
[08:32:22] fsfe.org/tags/tagged-annual-report.de.html
[08:32:22] fsfe.org/tags/tagged-annual-report.el.html
[08:32:22] fsfe.org/tags/tagged-annual-report.en.html
[08:32:22] fsfe.org/tags/tagged-annual-report.es.html
[08:32:22] fsfe.org/tags/tagged-annual-report.et.html
[08:32:22] fsfe.org/tags/tagged-annual-report.fa.html
[08:32:22] fsfe.org/tags/tagged-annual-report.fi.html
[08:32:22] fsfe.org/tags/tagged-annual-report.fr.html
[08:32:22] fsfe.org/tags/tagged-annual-report.hr.html
[08:32:22] fsfe.org/tags/tagged-annual-report.hu.html
[08:32:22] fsfe.org/tags/tagged-annual-report.it.html
[08:32:22] fsfe.org/tags/tagged-annual-report.ja.html
[08:32:22] fsfe.org/tags/tagged-annual-report.mk.html
[08:32:22] fsfe.org/tags/tagged-annual-report.nb.html
[08:32:22] fsfe.org/tags/tagged-annual-report.nl.html
[08:32:22] fsfe.org/tags/tagged-annual-report.nn.html
[08:32:22] fsfe.org/tags/tagged-annual-report.pl.html
[08:32:22] fsfe.org/tags/tagged-annual-report.pt.html
[08:32:22] fsfe.org/tags/tagged-annual-report.ro.html
[08:32:22] fsfe.org/tags/tagged-annual-report.ru.html
[08:32:22] fsfe.org/tags/tagged-annual-report.sk.html
[08:32:22] fsfe.org/tags/tagged-annual-report.sl.html
[08:32:22] fsfe.org/tags/tagged-annual-report.sq.html
[08:32:22] fsfe.org/tags/tagged-annual-report.sr.html
[08:32:22] fsfe.org/tags/tagged-annual-report.sv.html
[08:32:22] fsfe.org/tags/tagged-annual-report.tr.html
[08:32:22] fsfe.org/tags/tagged-annual-report.uk.html
[08:32:22] fsfe.org/tags/tagged-annual-report.zh.html
[08:32:22] fsfe.org/tags/tagged-community.ar.html
[08:32:22] fsfe.org/tags/tagged-community.bg.html
[08:32:22] fsfe.org/tags/tagged-community.bs.html
[08:32:22] fsfe.org/tags/tagged-community.ca.html
[08:32:22] fsfe.org/tags/tagged-community.cs.html
[08:32:22] fsfe.org/tags/tagged-community.da.html
[08:32:22] fsfe.org/tags/tagged-community.de.html
[08:32:22] fsfe.org/tags/tagged-community.el.html
[08:32:22] fsfe.org/tags/tagged-community.en.html
[08:32:22] fsfe.org/tags/tagged-community.es.html
[08:32:22] fsfe.org/tags/tagged-community.et.html
[08:32:22] fsfe.org/tags/tagged-community.fa.html
[08:32:22] fsfe.org/tags/tagged-community.fi.html
[08:32:22] fsfe.org/tags/tagged-community.fr.html
[08:32:22] fsfe.org/tags/tagged-community.hr.html
[08:32:22] fsfe.org/tags/tagged-community.hu.html
[08:32:22] fsfe.org/tags/tagged-community.it.html
[08:32:22] fsfe.org/tags/tagged-community.ja.html
[08:32:22] fsfe.org/tags/tagged-community.mk.html
[08:32:22] fsfe.org/tags/tagged-community.nb.html
[08:32:22] fsfe.org/tags/tagged-community.nl.html
[08:32:22] fsfe.org/tags/tagged-community.nn.html
[08:32:22] fsfe.org/tags/tagged-community.pl.html
[08:32:22] fsfe.org/tags/tagged-community.pt.html
[08:32:22] fsfe.org/tags/tagged-community.ro.html
[08:32:22] fsfe.org/tags/tagged-community.ru.html
[08:32:22] fsfe.org/tags/tagged-community.sk.html
[08:32:22] fsfe.org/tags/tagged-community.sl.html
[08:32:22] fsfe.org/tags/tagged-community.sq.html
[08:32:22] fsfe.org/tags/tagged-community.sr.html
[08:32:22] fsfe.org/tags/tagged-community.sv.html
[08:32:22] fsfe.org/tags/tagged-community.tr.html
[08:32:22] fsfe.org/tags/tagged-community.uk.html
[08:32:22] fsfe.org/tags/tagged-community.zh.html
[08:32:22] fsfe.org/tags/tagged-de.ar.html
[08:32:22] fsfe.org/tags/tagged-de.bg.html
[08:32:22] fsfe.org/tags/tagged-de.bs.html
[08:32:22] fsfe.org/tags/tagged-de.ca.html
[08:32:22] fsfe.org/tags/tagged-de.cs.html
[08:32:22] fsfe.org/tags/tagged-de.da.html
[08:32:22] fsfe.org/tags/tagged-de.de.html
[08:32:22] fsfe.org/tags/tagged-de.el.html
[08:32:22] fsfe.org/tags/tagged-de.en.html
[08:32:22] fsfe.org/tags/tagged-de.es.html
[08:32:22] fsfe.org/tags/tagged-de.et.html
[08:32:22] fsfe.org/tags/tagged-de.fa.html
[08:32:22] fsfe.org/tags/tagged-de.fi.html
[08:32:22] fsfe.org/tags/tagged-de.fr.html
[08:32:22] fsfe.org/tags/tagged-de.hr.html
[08:32:22] fsfe.org/tags/tagged-de.hu.html
[08:32:22] fsfe.org/tags/tagged-de.it.html
[08:32:22] fsfe.org/tags/tagged-de.ja.html
[08:32:22] fsfe.org/tags/tagged-de.mk.html
[08:32:22] fsfe.org/tags/tagged-de.nb.html
[08:32:22] fsfe.org/tags/tagged-de.nl.html
[08:32:22] fsfe.org/tags/tagged-de.nn.html
[08:32:22] fsfe.org/tags/tagged-de.pl.html
[08:32:22] fsfe.org/tags/tagged-de.pt.html
[08:32:22] fsfe.org/tags/tagged-de.ro.html
[08:32:22] fsfe.org/tags/tagged-de.ru.html
[08:32:22] fsfe.org/tags/tagged-de.sk.html
[08:32:22] fsfe.org/tags/tagged-de.sl.html
[08:32:22] fsfe.org/tags/tagged-de.sq.html
[08:32:22] fsfe.org/tags/tagged-de.sr.html
[08:32:22] fsfe.org/tags/tagged-de.sv.html
[08:32:22] fsfe.org/tags/tagged-de.tr.html
[08:32:22] fsfe.org/tags/tagged-de.uk.html
[08:32:22] fsfe.org/tags/tagged-de.zh.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.ar.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.bg.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.bs.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.ca.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.cs.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.da.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.de.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.el.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.en.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.es.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.et.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.fa.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.fi.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.fr.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.hr.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.hu.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.it.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.ja.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.mk.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.nb.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.nl.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.nn.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.pl.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.pt.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.ro.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.ru.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.sk.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.sl.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.sq.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.sr.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.sv.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.tr.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.uk.html
[08:32:22] fsfe.org/tags/tagged-deviceneutrality.zh.html
[08:32:22] fsfe.org/tags/tagged-education.ar.html
[08:32:22] fsfe.org/tags/tagged-education.bg.html
[08:32:22] fsfe.org/tags/tagged-education.bs.html
[08:32:22] fsfe.org/tags/tagged-education.ca.html
[08:32:22] fsfe.org/tags/tagged-education.cs.html
[08:32:22] fsfe.org/tags/tagged-education.da.html
[08:32:22] fsfe.org/tags/tagged-education.de.html
[08:32:22] fsfe.org/tags/tagged-education.el.html
[08:32:22] fsfe.org/tags/tagged-education.en.html
[08:32:22] fsfe.org/tags/tagged-education.es.html
[08:32:22] fsfe.org/tags/tagged-education.et.html
[08:32:22] fsfe.org/tags/tagged-education.fa.html
[08:32:22] fsfe.org/tags/tagged-education.fi.html
[08:32:22] fsfe.org/tags/tagged-education.fr.html
[08:32:22] fsfe.org/tags/tagged-education.hr.html
[08:32:22] fsfe.org/tags/tagged-education.hu.html
[08:32:22] fsfe.org/tags/tagged-education.it.html
[08:32:22] fsfe.org/tags/tagged-education.ja.html
[08:32:22] fsfe.org/tags/tagged-education.mk.html
[08:32:22] fsfe.org/tags/tagged-education.nb.html
[08:32:22] fsfe.org/tags/tagged-education.nl.html
[08:32:22] fsfe.org/tags/tagged-education.nn.html
[08:32:22] fsfe.org/tags/tagged-education.pl.html
[08:32:22] fsfe.org/tags/tagged-education.pt.html
[08:32:22] fsfe.org/tags/tagged-education.ro.html
[08:32:22] fsfe.org/tags/tagged-education.ru.html
[08:32:22] fsfe.org/tags/tagged-education.sk.html
[08:32:22] fsfe.org/tags/tagged-education.sl.html
[08:32:22] fsfe.org/tags/tagged-education.sq.html
[08:32:22] fsfe.org/tags/tagged-education.sr.html
[08:32:22] fsfe.org/tags/tagged-education.sv.html
[08:32:22] fsfe.org/tags/tagged-education.tr.html
[08:32:22] fsfe.org/tags/tagged-education.uk.html
[08:32:22] fsfe.org/tags/tagged-education.zh.html
[08:32:22] fsfe.org/tags/tagged-european-commission.ar.html
[08:32:22] fsfe.org/tags/tagged-european-commission.bg.html
[08:32:22] fsfe.org/tags/tagged-european-commission.bs.html
[08:32:22] fsfe.org/tags/tagged-european-commission.ca.html
[08:32:22] fsfe.org/tags/tagged-european-commission.cs.html
[08:32:22] fsfe.org/tags/tagged-european-commission.da.html
[08:32:22] fsfe.org/tags/tagged-european-commission.de.html
[08:32:22] fsfe.org/tags/tagged-european-commission.el.html
[08:32:22] fsfe.org/tags/tagged-european-commission.en.html
[08:32:22] fsfe.org/tags/tagged-european-commission.es.html
[08:32:22] fsfe.org/tags/tagged-european-commission.et.html
[08:32:22] fsfe.org/tags/tagged-european-commission.fa.html
[08:32:22] fsfe.org/tags/tagged-european-commission.fi.html
[08:32:22] fsfe.org/tags/tagged-european-commission.fr.html
[08:32:22] fsfe.org/tags/tagged-european-commission.hr.html
[08:32:22] fsfe.org/tags/tagged-european-commission.hu.html
[08:32:22] fsfe.org/tags/tagged-european-commission.it.html
[08:32:22] fsfe.org/tags/tagged-european-commission.ja.html
[08:32:22] fsfe.org/tags/tagged-european-commission.mk.html
[08:32:22] fsfe.org/tags/tagged-european-commission.nb.html
[08:32:22] fsfe.org/tags/tagged-european-commission.nl.html
[08:32:22] fsfe.org/tags/tagged-european-commission.nn.html
[08:32:22] fsfe.org/tags/tagged-european-commission.pl.html
[08:32:22] fsfe.org/tags/tagged-european-commission.pt.html
[08:32:22] fsfe.org/tags/tagged-european-commission.ro.html
[08:32:22] fsfe.org/tags/tagged-european-commission.ru.html
[08:32:22] fsfe.org/tags/tagged-european-commission.sk.html
[08:32:22] fsfe.org/tags/tagged-european-commission.sl.html
[08:32:22] fsfe.org/tags/tagged-european-commission.sq.html
[08:32:22] fsfe.org/tags/tagged-european-commission.sr.html
[08:32:22] fsfe.org/tags/tagged-european-commission.sv.html
[08:32:22] fsfe.org/tags/tagged-european-commission.tr.html
[08:32:22] fsfe.org/tags/tagged-european-commission.uk.html
[08:32:22] fsfe.org/tags/tagged-european-commission.zh.html
[08:32:22] fsfe.org/tags/tagged-fosdem.ar.html
[08:32:22] fsfe.org/tags/tagged-fosdem.bg.html
[08:32:22] fsfe.org/tags/tagged-fosdem.bs.html
[08:32:22] fsfe.org/tags/tagged-fosdem.ca.html
[08:32:22] fsfe.org/tags/tagged-fosdem.cs.html
[08:32:22] fsfe.org/tags/tagged-fosdem.da.html
[08:32:22] fsfe.org/tags/tagged-fosdem.de.html
[08:32:22] fsfe.org/tags/tagged-fosdem.el.html
[08:32:22] fsfe.org/tags/tagged-fosdem.en.html
[08:32:22] fsfe.org/tags/tagged-fosdem.es.html
[08:32:22] fsfe.org/tags/tagged-fosdem.et.html
[08:32:22] fsfe.org/tags/tagged-fosdem.fa.html
[08:32:22] fsfe.org/tags/tagged-fosdem.fi.html
[08:32:22] fsfe.org/tags/tagged-fosdem.fr.html
[08:32:22] fsfe.org/tags/tagged-fosdem.hr.html
[08:32:22] fsfe.org/tags/tagged-fosdem.hu.html
[08:32:22] fsfe.org/tags/tagged-fosdem.it.html
[08:32:22] fsfe.org/tags/tagged-fosdem.ja.html
[08:32:22] fsfe.org/tags/tagged-fosdem.mk.html
[08:32:22] fsfe.org/tags/tagged-fosdem.nb.html
[08:32:22] fsfe.org/tags/tagged-fosdem.nl.html
[08:32:22] fsfe.org/tags/tagged-fosdem.nn.html
[08:32:22] fsfe.org/tags/tagged-fosdem.pl.html
[08:32:22] fsfe.org/tags/tagged-fosdem.pt.html
[08:32:22] fsfe.org/tags/tagged-fosdem.ro.html
[08:32:22] fsfe.org/tags/tagged-fosdem.ru.html
[08:32:22] fsfe.org/tags/tagged-fosdem.sk.html
[08:32:22] fsfe.org/tags/tagged-fosdem.sl.html
[08:32:22] fsfe.org/tags/tagged-fosdem.sq.html
[08:32:22] fsfe.org/tags/tagged-fosdem.sr.html
[08:32:22] fsfe.org/tags/tagged-fosdem.sv.html
[08:32:22] fsfe.org/tags/tagged-fosdem.tr.html
[08:32:22] fsfe.org/tags/tagged-fosdem.uk.html
[08:32:22] fsfe.org/tags/tagged-fosdem.zh.html
[08:32:22] fsfe.org/tags/tagged-highlights.ar.html
[08:32:22] fsfe.org/tags/tagged-highlights.bg.html
[08:32:22] fsfe.org/tags/tagged-highlights.bs.html
[08:32:22] fsfe.org/tags/tagged-highlights.ca.html
[08:32:22] fsfe.org/tags/tagged-highlights.cs.html
[08:32:22] fsfe.org/tags/tagged-highlights.da.html
[08:32:22] fsfe.org/tags/tagged-highlights.de.html
[08:32:22] fsfe.org/tags/tagged-highlights.el.html
[08:32:22] fsfe.org/tags/tagged-highlights.en.html
[08:32:22] fsfe.org/tags/tagged-highlights.es.html
[08:32:22] fsfe.org/tags/tagged-highlights.et.html
[08:32:22] fsfe.org/tags/tagged-highlights.fa.html
[08:32:22] fsfe.org/tags/tagged-highlights.fi.html
[08:32:22] fsfe.org/tags/tagged-highlights.fr.html
[08:32:22] fsfe.org/tags/tagged-highlights.hr.html
[08:32:22] fsfe.org/tags/tagged-highlights.hu.html
[08:32:22] fsfe.org/tags/tagged-highlights.it.html
[08:32:22] fsfe.org/tags/tagged-highlights.ja.html
[08:32:22] fsfe.org/tags/tagged-highlights.mk.html
[08:32:22] fsfe.org/tags/tagged-highlights.nb.html
[08:32:22] fsfe.org/tags/tagged-highlights.nl.html
[08:32:22] fsfe.org/tags/tagged-highlights.nn.html
[08:32:22] fsfe.org/tags/tagged-highlights.pl.html
[08:32:22] fsfe.org/tags/tagged-highlights.pt.html
[08:32:22] fsfe.org/tags/tagged-highlights.ro.html
[08:32:22] fsfe.org/tags/tagged-highlights.ru.html
[08:32:22] fsfe.org/tags/tagged-highlights.sk.html
[08:32:22] fsfe.org/tags/tagged-highlights.sl.html
[08:32:22] fsfe.org/tags/tagged-highlights.sq.html
[08:32:22] fsfe.org/tags/tagged-highlights.sr.html
[08:32:22] fsfe.org/tags/tagged-highlights.sv.html
[08:32:22] fsfe.org/tags/tagged-highlights.tr.html
[08:32:22] fsfe.org/tags/tagged-highlights.uk.html
[08:32:22] fsfe.org/tags/tagged-highlights.zh.html
[08:32:22] fsfe.org/tags/tagged-it.ar.html
[08:32:22] fsfe.org/tags/tagged-it.bg.html
[08:32:22] fsfe.org/tags/tagged-it.bs.html
[08:32:22] fsfe.org/tags/tagged-it.ca.html
[08:32:22] fsfe.org/tags/tagged-it.cs.html
[08:32:22] fsfe.org/tags/tagged-it.da.html
[08:32:22] fsfe.org/tags/tagged-it.de.html
[08:32:22] fsfe.org/tags/tagged-it.el.html
[08:32:22] fsfe.org/tags/tagged-it.en.html
[08:32:22] fsfe.org/tags/tagged-it.es.html
[08:32:22] fsfe.org/tags/tagged-it.et.html
[08:32:22] fsfe.org/tags/tagged-it.fa.html
[08:32:22] fsfe.org/tags/tagged-it.fi.html
[08:32:22] fsfe.org/tags/tagged-it.fr.html
[08:32:22] fsfe.org/tags/tagged-it.hr.html
[08:32:22] fsfe.org/tags/tagged-it.hu.html
[08:32:22] fsfe.org/tags/tagged-it.it.html
[08:32:22] fsfe.org/tags/tagged-it.ja.html
[08:32:22] fsfe.org/tags/tagged-it.mk.html
[08:32:22] fsfe.org/tags/tagged-it.nb.html
[08:32:22] fsfe.org/tags/tagged-it.nl.html
[08:32:22] fsfe.org/tags/tagged-it.nn.html
[08:32:22] fsfe.org/tags/tagged-it.pl.html
[08:32:22] fsfe.org/tags/tagged-it.pt.html
[08:32:22] fsfe.org/tags/tagged-it.ro.html
[08:32:22] fsfe.org/tags/tagged-it.ru.html
[08:32:22] fsfe.org/tags/tagged-it.sk.html
[08:32:22] fsfe.org/tags/tagged-it.sl.html
[08:32:22] fsfe.org/tags/tagged-it.sq.html
[08:32:22] fsfe.org/tags/tagged-it.sr.html
[08:32:22] fsfe.org/tags/tagged-it.sv.html
[08:32:22] fsfe.org/tags/tagged-it.tr.html
[08:32:22] fsfe.org/tags/tagged-it.uk.html
[08:32:22] fsfe.org/tags/tagged-it.zh.html
[08:32:22] fsfe.org/tags/tagged-legal.ar.html
[08:32:22] fsfe.org/tags/tagged-legal.bg.html
[08:32:22] fsfe.org/tags/tagged-legal.bs.html
[08:32:22] fsfe.org/tags/tagged-legal.ca.html
[08:32:22] fsfe.org/tags/tagged-legal.cs.html
[08:32:22] fsfe.org/tags/tagged-legal.da.html
[08:32:22] fsfe.org/tags/tagged-legal.de.html
[08:32:22] fsfe.org/tags/tagged-legal.el.html
[08:32:22] fsfe.org/tags/tagged-legal.en.html
[08:32:22] fsfe.org/tags/tagged-legal.es.html
[08:32:22] fsfe.org/tags/tagged-legal.et.html
[08:32:22] fsfe.org/tags/tagged-legal.fa.html
[08:32:22] fsfe.org/tags/tagged-legal.fi.html
[08:32:22] fsfe.org/tags/tagged-legal.fr.html
[08:32:22] fsfe.org/tags/tagged-legal.hr.html
[08:32:22] fsfe.org/tags/tagged-legal.hu.html
[08:32:22] fsfe.org/tags/tagged-legal.it.html
[08:32:22] fsfe.org/tags/tagged-legal.ja.html
[08:32:22] fsfe.org/tags/tagged-legal.mk.html
[08:32:22] fsfe.org/tags/tagged-legal.nb.html
[08:32:22] fsfe.org/tags/tagged-legal.nl.html
[08:32:22] fsfe.org/tags/tagged-legal.nn.html
[08:32:22] fsfe.org/tags/tagged-legal.pl.html
[08:32:22] fsfe.org/tags/tagged-legal.pt.html
[08:32:22] fsfe.org/tags/tagged-legal.ro.html
[08:32:22] fsfe.org/tags/tagged-legal.ru.html
[08:32:22] fsfe.org/tags/tagged-legal.sk.html
[08:32:22] fsfe.org/tags/tagged-legal.sl.html
[08:32:22] fsfe.org/tags/tagged-legal.sq.html
[08:32:22] fsfe.org/tags/tagged-legal.sr.html
[08:32:22] fsfe.org/tags/tagged-legal.sv.html
[08:32:22] fsfe.org/tags/tagged-legal.tr.html
[08:32:22] fsfe.org/tags/tagged-legal.uk.html
[08:32:22] fsfe.org/tags/tagged-legal.zh.html
[08:32:22] fsfe.org/tags/tagged-licensing.ar.html
[08:32:22] fsfe.org/tags/tagged-licensing.bg.html
[08:32:22] fsfe.org/tags/tagged-licensing.bs.html
[08:32:22] fsfe.org/tags/tagged-licensing.ca.html
[08:32:22] fsfe.org/tags/tagged-licensing.cs.html
[08:32:22] fsfe.org/tags/tagged-licensing.da.html
[08:32:22] fsfe.org/tags/tagged-licensing.de.html
[08:32:22] fsfe.org/tags/tagged-licensing.el.html
[08:32:22] fsfe.org/tags/tagged-licensing.en.html
[08:32:22] fsfe.org/tags/tagged-licensing.es.html
[08:32:22] fsfe.org/tags/tagged-licensing.et.html
[08:32:22] fsfe.org/tags/tagged-licensing.fa.html
[08:32:22] fsfe.org/tags/tagged-licensing.fi.html
[08:32:22] fsfe.org/tags/tagged-licensing.fr.html
[08:32:22] fsfe.org/tags/tagged-licensing.hr.html
[08:32:22] fsfe.org/tags/tagged-licensing.hu.html
[08:32:22] fsfe.org/tags/tagged-licensing.it.html
[08:32:22] fsfe.org/tags/tagged-licensing.ja.html
[08:32:22] fsfe.org/tags/tagged-licensing.mk.html
[08:32:22] fsfe.org/tags/tagged-licensing.nb.html
[08:32:22] fsfe.org/tags/tagged-licensing.nl.html
[08:32:22] fsfe.org/tags/tagged-licensing.nn.html
[08:32:22] fsfe.org/tags/tagged-licensing.pl.html
[08:32:22] fsfe.org/tags/tagged-licensing.pt.html
[08:32:22] fsfe.org/tags/tagged-licensing.ro.html
[08:32:22] fsfe.org/tags/tagged-licensing.ru.html
[08:32:22] fsfe.org/tags/tagged-licensing.sk.html
[08:32:22] fsfe.org/tags/tagged-licensing.sl.html
[08:32:22] fsfe.org/tags/tagged-licensing.sq.html
[08:32:22] fsfe.org/tags/tagged-licensing.sr.html
[08:32:22] fsfe.org/tags/tagged-licensing.sv.html
[08:32:22] fsfe.org/tags/tagged-licensing.tr.html
[08:32:22] fsfe.org/tags/tagged-licensing.uk.html
[08:32:22] fsfe.org/tags/tagged-licensing.zh.html
[08:32:22] fsfe.org/tags/tagged-localgroup.ar.html
[08:32:22] fsfe.org/tags/tagged-localgroup.bg.html
[08:32:22] fsfe.org/tags/tagged-localgroup.bs.html
[08:32:22] fsfe.org/tags/tagged-localgroup.ca.html
[08:32:22] fsfe.org/tags/tagged-localgroup.cs.html
[08:32:22] fsfe.org/tags/tagged-localgroup.da.html
[08:32:22] fsfe.org/tags/tagged-localgroup.de.html
[08:32:22] fsfe.org/tags/tagged-localgroup.el.html
[08:32:22] fsfe.org/tags/tagged-localgroup.en.html
[08:32:22] fsfe.org/tags/tagged-localgroup.es.html
[08:32:22] fsfe.org/tags/tagged-localgroup.et.html
[08:32:22] fsfe.org/tags/tagged-localgroup.fa.html
[08:32:22] fsfe.org/tags/tagged-localgroup.fi.html
[08:32:22] fsfe.org/tags/tagged-localgroup.fr.html
[08:32:22] fsfe.org/tags/tagged-localgroup.hr.html
[08:32:22] fsfe.org/tags/tagged-localgroup.hu.html
[08:32:22] fsfe.org/tags/tagged-localgroup.it.html
[08:32:22] fsfe.org/tags/tagged-localgroup.ja.html
[08:32:22] fsfe.org/tags/tagged-localgroup.mk.html
[08:32:22] fsfe.org/tags/tagged-localgroup.nb.html
[08:32:22] fsfe.org/tags/tagged-localgroup.nl.html
[08:32:22] fsfe.org/tags/tagged-localgroup.nn.html
[08:32:22] fsfe.org/tags/tagged-localgroup.pl.html
[08:32:22] fsfe.org/tags/tagged-localgroup.pt.html
[08:32:22] fsfe.org/tags/tagged-localgroup.ro.html
[08:32:22] fsfe.org/tags/tagged-localgroup.ru.html
[08:32:22] fsfe.org/tags/tagged-localgroup.sk.html
[08:32:22] fsfe.org/tags/tagged-localgroup.sl.html
[08:32:22] fsfe.org/tags/tagged-localgroup.sq.html
[08:32:22] fsfe.org/tags/tagged-localgroup.sr.html
[08:32:22] fsfe.org/tags/tagged-localgroup.sv.html
[08:32:22] fsfe.org/tags/tagged-localgroup.tr.html
[08:32:22] fsfe.org/tags/tagged-localgroup.uk.html
[08:32:22] fsfe.org/tags/tagged-localgroup.zh.html
[08:32:22] fsfe.org/tags/tagged-ngi.ar.html
[08:32:22] fsfe.org/tags/tagged-ngi.bg.html
[08:32:22] fsfe.org/tags/tagged-ngi.bs.html
[08:32:22] fsfe.org/tags/tagged-ngi.ca.html
[08:32:22] fsfe.org/tags/tagged-ngi.cs.html
[08:32:22] fsfe.org/tags/tagged-ngi.da.html
[08:32:22] fsfe.org/tags/tagged-ngi.de.html
[08:32:22] fsfe.org/tags/tagged-ngi.el.html
[08:32:22] fsfe.org/tags/tagged-ngi.en.html
[08:32:22] fsfe.org/tags/tagged-ngi.es.html
[08:32:22] fsfe.org/tags/tagged-ngi.et.html
[08:32:22] fsfe.org/tags/tagged-ngi.fa.html
[08:32:22] fsfe.org/tags/tagged-ngi.fi.html
[08:32:22] fsfe.org/tags/tagged-ngi.fr.html
[08:32:22] fsfe.org/tags/tagged-ngi.hr.html
[08:32:22] fsfe.org/tags/tagged-ngi.hu.html
[08:32:22] fsfe.org/tags/tagged-ngi.it.html
[08:32:22] fsfe.org/tags/tagged-ngi.ja.html
[08:32:22] fsfe.org/tags/tagged-ngi.mk.html
[08:32:22] fsfe.org/tags/tagged-ngi.nb.html
[08:32:22] fsfe.org/tags/tagged-ngi.nl.html
[08:32:22] fsfe.org/tags/tagged-ngi.nn.html
[08:32:22] fsfe.org/tags/tagged-ngi.pl.html
[08:32:22] fsfe.org/tags/tagged-ngi.pt.html
[08:32:22] fsfe.org/tags/tagged-ngi.ro.html
[08:32:22] fsfe.org/tags/tagged-ngi.ru.html
[08:32:22] fsfe.org/tags/tagged-ngi.sk.html
[08:32:22] fsfe.org/tags/tagged-ngi.sl.html
[08:32:22] fsfe.org/tags/tagged-ngi.sq.html
[08:32:22] fsfe.org/tags/tagged-ngi.sr.html
[08:32:22] fsfe.org/tags/tagged-ngi.sv.html
[08:32:22] fsfe.org/tags/tagged-ngi.tr.html
[08:32:22] fsfe.org/tags/tagged-ngi.uk.html
[08:32:22] fsfe.org/tags/tagged-ngi.zh.html
[08:32:22] fsfe.org/tags/tagged-nl.ar.html
[08:32:22] fsfe.org/tags/tagged-nl.bg.html
[08:32:22] fsfe.org/tags/tagged-nl.bs.html
[08:32:22] fsfe.org/tags/tagged-nl.ca.html
[08:32:22] fsfe.org/tags/tagged-nl.cs.html
[08:32:22] fsfe.org/tags/tagged-nl.da.html
[08:32:22] fsfe.org/tags/tagged-nl.de.html
[08:32:22] fsfe.org/tags/tagged-nl.el.html
[08:32:22] fsfe.org/tags/tagged-nl.en.html
[08:32:22] fsfe.org/tags/tagged-nl.es.html
[08:32:22] fsfe.org/tags/tagged-nl.et.html
[08:32:22] fsfe.org/tags/tagged-nl.fa.html
[08:32:22] fsfe.org/tags/tagged-nl.fi.html
[08:32:22] fsfe.org/tags/tagged-nl.fr.html
[08:32:22] fsfe.org/tags/tagged-nl.hr.html
[08:32:22] fsfe.org/tags/tagged-nl.hu.html
[08:32:22] fsfe.org/tags/tagged-nl.it.html
[08:32:22] fsfe.org/tags/tagged-nl.ja.html
[08:32:22] fsfe.org/tags/tagged-nl.mk.html
[08:32:22] fsfe.org/tags/tagged-nl.nb.html
[08:32:22] fsfe.org/tags/tagged-nl.nl.html
[08:32:22] fsfe.org/tags/tagged-nl.nn.html
[08:32:22] fsfe.org/tags/tagged-nl.pl.html
[08:32:22] fsfe.org/tags/tagged-nl.pt.html
[08:32:22] fsfe.org/tags/tagged-nl.ro.html
[08:32:22] fsfe.org/tags/tagged-nl.ru.html
[08:32:22] fsfe.org/tags/tagged-nl.sk.html
[08:32:22] fsfe.org/tags/tagged-nl.sl.html
[08:32:22] fsfe.org/tags/tagged-nl.sq.html
[08:32:22] fsfe.org/tags/tagged-nl.sr.html
[08:32:22] fsfe.org/tags/tagged-nl.sv.html
[08:32:22] fsfe.org/tags/tagged-nl.tr.html
[08:32:22] fsfe.org/tags/tagged-nl.uk.html
[08:32:22] fsfe.org/tags/tagged-nl.zh.html
[08:32:22] fsfe.org/tags/tagged-pmpc.ar.html
[08:32:22] fsfe.org/tags/tagged-pmpc.bg.html
[08:32:22] fsfe.org/tags/tagged-pmpc.bs.html
[08:32:22] fsfe.org/tags/tagged-pmpc.ca.html
[08:32:22] fsfe.org/tags/tagged-pmpc.cs.html
[08:32:22] fsfe.org/tags/tagged-pmpc.da.html
[08:32:22] fsfe.org/tags/tagged-pmpc.de.html
[08:32:22] fsfe.org/tags/tagged-pmpc.el.html
[08:32:22] fsfe.org/tags/tagged-pmpc.en.html
[08:32:22] fsfe.org/tags/tagged-pmpc.es.html
[08:32:22] fsfe.org/tags/tagged-pmpc.et.html
[08:32:22] fsfe.org/tags/tagged-pmpc.fa.html
[08:32:22] fsfe.org/tags/tagged-pmpc.fi.html
[08:32:22] fsfe.org/tags/tagged-pmpc.fr.html
[08:32:22] fsfe.org/tags/tagged-pmpc.hr.html
[08:32:22] fsfe.org/tags/tagged-pmpc.hu.html
[08:32:22] fsfe.org/tags/tagged-pmpc.it.html
[08:32:22] fsfe.org/tags/tagged-pmpc.ja.html
[08:32:22] fsfe.org/tags/tagged-pmpc.mk.html
[08:32:22] fsfe.org/tags/tagged-pmpc.nb.html
[08:32:22] fsfe.org/tags/tagged-pmpc.nl.html
[08:32:22] fsfe.org/tags/tagged-pmpc.nn.html
[08:32:22] fsfe.org/tags/tagged-pmpc.pl.html
[08:32:22] fsfe.org/tags/tagged-pmpc.pt.html
[08:32:22] fsfe.org/tags/tagged-pmpc.ro.html
[08:32:22] fsfe.org/tags/tagged-pmpc.ru.html
[08:32:22] fsfe.org/tags/tagged-pmpc.sk.html
[08:32:22] fsfe.org/tags/tagged-pmpc.sl.html
[08:32:22] fsfe.org/tags/tagged-pmpc.sq.html
[08:32:22] fsfe.org/tags/tagged-pmpc.sr.html
[08:32:22] fsfe.org/tags/tagged-pmpc.sv.html
[08:32:22] fsfe.org/tags/tagged-pmpc.tr.html
[08:32:22] fsfe.org/tags/tagged-pmpc.uk.html
[08:32:22] fsfe.org/tags/tagged-pmpc.zh.html
[08:32:22] fsfe.org/tags/tagged-podcast.ar.html
[08:32:22] fsfe.org/tags/tagged-podcast.bg.html
[08:32:22] fsfe.org/tags/tagged-podcast.bs.html
[08:32:22] fsfe.org/tags/tagged-podcast.ca.html
[08:32:22] fsfe.org/tags/tagged-podcast.cs.html
[08:32:22] fsfe.org/tags/tagged-podcast.da.html
[08:32:22] fsfe.org/tags/tagged-podcast.de.html
[08:32:22] fsfe.org/tags/tagged-podcast.el.html
[08:32:22] fsfe.org/tags/tagged-podcast.en.html
[08:32:23] fsfe.org/tags/tagged-podcast.es.html
[08:32:23] fsfe.org/tags/tagged-podcast.et.html
[08:32:23] fsfe.org/tags/tagged-podcast.fa.html
[08:32:23] fsfe.org/tags/tagged-podcast.fi.html
[08:32:23] fsfe.org/tags/tagged-podcast.fr.html
[08:32:23] fsfe.org/tags/tagged-podcast.hr.html
[08:32:23] fsfe.org/tags/tagged-podcast.hu.html
[08:32:23] fsfe.org/tags/tagged-podcast.it.html
[08:32:23] fsfe.org/tags/tagged-podcast.ja.html
[08:32:23] fsfe.org/tags/tagged-podcast.mk.html
[08:32:23] fsfe.org/tags/tagged-podcast.nb.html
[08:32:23] fsfe.org/tags/tagged-podcast.nl.html
[08:32:23] fsfe.org/tags/tagged-podcast.nn.html
[08:32:23] fsfe.org/tags/tagged-podcast.pl.html
[08:32:23] fsfe.org/tags/tagged-podcast.pt.html
[08:32:23] fsfe.org/tags/tagged-podcast.ro.html
[08:32:23] fsfe.org/tags/tagged-podcast.ru.html
[08:32:23] fsfe.org/tags/tagged-podcast.sk.html
[08:32:23] fsfe.org/tags/tagged-podcast.sl.html
[08:32:23] fsfe.org/tags/tagged-podcast.sq.html
[08:32:23] fsfe.org/tags/tagged-podcast.sr.html
[08:32:23] fsfe.org/tags/tagged-podcast.sv.html
[08:32:23] fsfe.org/tags/tagged-podcast.tr.html
[08:32:23] fsfe.org/tags/tagged-podcast.uk.html
[08:32:23] fsfe.org/tags/tagged-podcast.zh.html
[08:32:23] fsfe.org/tags/tagged-press.ar.html
[08:32:23] fsfe.org/tags/tagged-press.bg.html
[08:32:23] fsfe.org/tags/tagged-press.bs.html
[08:32:23] fsfe.org/tags/tagged-press.ca.html
[08:32:23] fsfe.org/tags/tagged-press.cs.html
[08:32:23] fsfe.org/tags/tagged-press.da.html
[08:32:23] fsfe.org/tags/tagged-press.de.html
[08:32:23] fsfe.org/tags/tagged-press.el.html
[08:32:23] fsfe.org/tags/tagged-press.en.html
[08:32:23] fsfe.org/tags/tagged-press.es.html
[08:32:23] fsfe.org/tags/tagged-press.et.html
[08:32:23] fsfe.org/tags/tagged-press.fa.html
[08:32:23] fsfe.org/tags/tagged-press.fi.html
[08:32:23] fsfe.org/tags/tagged-press.fr.html
[08:32:23] fsfe.org/tags/tagged-press.hr.html
[08:32:23] fsfe.org/tags/tagged-press.hu.html
[08:32:23] fsfe.org/tags/tagged-press.it.html
[08:32:23] fsfe.org/tags/tagged-press.ja.html
[08:32:23] fsfe.org/tags/tagged-press.mk.html
[08:32:23] fsfe.org/tags/tagged-press.nb.html
[08:32:23] fsfe.org/tags/tagged-press.nl.html
[08:32:23] fsfe.org/tags/tagged-press.nn.html
[08:32:23] fsfe.org/tags/tagged-press.pl.html
[08:32:23] fsfe.org/tags/tagged-press.pt.html
[08:32:23] fsfe.org/tags/tagged-press.ro.html
[08:32:23] fsfe.org/tags/tagged-press.ru.html
[08:32:23] fsfe.org/tags/tagged-press.sk.html
[08:32:23] fsfe.org/tags/tagged-press.sl.html
[08:32:23] fsfe.org/tags/tagged-press.sq.html
[08:32:23] fsfe.org/tags/tagged-press.sr.html
[08:32:23] fsfe.org/tags/tagged-press.sv.html
[08:32:23] fsfe.org/tags/tagged-press.tr.html
[08:32:23] fsfe.org/tags/tagged-press.uk.html
[08:32:23] fsfe.org/tags/tagged-press.zh.html
[08:32:23] fsfe.org/tags/tagged-reuse.ar.html
[08:32:23] fsfe.org/tags/tagged-reuse.bg.html
[08:32:23] fsfe.org/tags/tagged-reuse.bs.html
[08:32:23] fsfe.org/tags/tagged-reuse.ca.html
[08:32:23] fsfe.org/tags/tagged-reuse.cs.html
[08:32:23] fsfe.org/tags/tagged-reuse.da.html
[08:32:23] fsfe.org/tags/tagged-reuse.de.html
[08:32:23] fsfe.org/tags/tagged-reuse.el.html
[08:32:23] fsfe.org/tags/tagged-reuse.en.html
[08:32:23] fsfe.org/tags/tagged-reuse.es.html
[08:32:23] fsfe.org/tags/tagged-reuse.et.html
[08:32:23] fsfe.org/tags/tagged-reuse.fa.html
[08:32:23] fsfe.org/tags/tagged-reuse.fi.html
[08:32:23] fsfe.org/tags/tagged-reuse.fr.html
[08:32:23] fsfe.org/tags/tagged-reuse.hr.html
[08:32:23] fsfe.org/tags/tagged-reuse.hu.html
[08:32:23] fsfe.org/tags/tagged-reuse.it.html
[08:32:23] fsfe.org/tags/tagged-reuse.ja.html
[08:32:23] fsfe.org/tags/tagged-reuse.mk.html
[08:32:23] fsfe.org/tags/tagged-reuse.nb.html
[08:32:23] fsfe.org/tags/tagged-reuse.nl.html
[08:32:23] fsfe.org/tags/tagged-reuse.nn.html
[08:32:23] fsfe.org/tags/tagged-reuse.pl.html
[08:32:23] fsfe.org/tags/tagged-reuse.pt.html
[08:32:23] fsfe.org/tags/tagged-reuse.ro.html
[08:32:23] fsfe.org/tags/tagged-reuse.ru.html
[08:32:23] fsfe.org/tags/tagged-reuse.sk.html
[08:32:23] fsfe.org/tags/tagged-reuse.sl.html
[08:32:23] fsfe.org/tags/tagged-reuse.sq.html
[08:32:23] fsfe.org/tags/tagged-reuse.sr.html
[08:32:23] fsfe.org/tags/tagged-reuse.sv.html
[08:32:23] fsfe.org/tags/tagged-reuse.tr.html
[08:32:23] fsfe.org/tags/tagged-reuse.uk.html
[08:32:23] fsfe.org/tags/tagged-reuse.zh.html
[08:32:23] fsfe.org/tags/tagged-routers.ar.html
[08:32:23] fsfe.org/tags/tagged-routers.bg.html
[08:32:23] fsfe.org/tags/tagged-routers.bs.html
[08:32:23] fsfe.org/tags/tagged-routers.ca.html
[08:32:23] fsfe.org/tags/tagged-routers.cs.html
[08:32:23] fsfe.org/tags/tagged-routers.da.html
[08:32:23] fsfe.org/tags/tagged-routers.de.html
[08:32:23] fsfe.org/tags/tagged-routers.el.html
[08:32:23] fsfe.org/tags/tagged-routers.en.html
[08:32:23] fsfe.org/tags/tagged-routers.es.html
[08:32:23] fsfe.org/tags/tagged-routers.et.html
[08:32:23] fsfe.org/tags/tagged-routers.fa.html
[08:32:23] fsfe.org/tags/tagged-routers.fi.html
[08:32:23] fsfe.org/tags/tagged-routers.fr.html
[08:32:23] fsfe.org/tags/tagged-routers.hr.html
[08:32:23] fsfe.org/tags/tagged-routers.hu.html
[08:32:23] fsfe.org/tags/tagged-routers.it.html
[08:32:23] fsfe.org/tags/tagged-routers.ja.html
[08:32:23] fsfe.org/tags/tagged-routers.mk.html
[08:32:23] fsfe.org/tags/tagged-routers.nb.html
[08:32:23] fsfe.org/tags/tagged-routers.nl.html
[08:32:23] fsfe.org/tags/tagged-routers.nn.html
[08:32:23] fsfe.org/tags/tagged-routers.pl.html
[08:32:23] fsfe.org/tags/tagged-routers.pt.html
[08:32:23] fsfe.org/tags/tagged-routers.ro.html
[08:32:23] fsfe.org/tags/tagged-routers.ru.html
[08:32:23] fsfe.org/tags/tagged-routers.sk.html
[08:32:23] fsfe.org/tags/tagged-routers.sl.html
[08:32:23] fsfe.org/tags/tagged-routers.sq.html
[08:32:23] fsfe.org/tags/tagged-routers.sr.html
[08:32:23] fsfe.org/tags/tagged-routers.sv.html
[08:32:23] fsfe.org/tags/tagged-routers.tr.html
[08:32:23] fsfe.org/tags/tagged-routers.uk.html
[08:32:23] fsfe.org/tags/tagged-routers.zh.html
[08:32:23] fsfe.org/tags/tagged-se.ar.html
[08:32:23] fsfe.org/tags/tagged-se.bg.html
[08:32:23] fsfe.org/tags/tagged-se.bs.html
[08:32:23] fsfe.org/tags/tagged-se.ca.html
[08:32:23] fsfe.org/tags/tagged-se.cs.html
[08:32:23] fsfe.org/tags/tagged-se.da.html
[08:32:23] fsfe.org/tags/tagged-se.de.html
[08:32:23] fsfe.org/tags/tagged-se.el.html
[08:32:23] fsfe.org/tags/tagged-se.en.html
[08:32:23] fsfe.org/tags/tagged-se.es.html
[08:32:23] fsfe.org/tags/tagged-se.et.html
[08:32:23] fsfe.org/tags/tagged-se.fa.html
[08:32:23] fsfe.org/tags/tagged-se.fi.html
[08:32:23] fsfe.org/tags/tagged-se.fr.html
[08:32:23] fsfe.org/tags/tagged-se.hr.html
[08:32:23] fsfe.org/tags/tagged-se.hu.html
[08:32:23] fsfe.org/tags/tagged-se.it.html
[08:32:23] fsfe.org/tags/tagged-se.ja.html
[08:32:23] fsfe.org/tags/tagged-se.mk.html
[08:32:23] fsfe.org/tags/tagged-se.nb.html
[08:32:23] fsfe.org/tags/tagged-se.nl.html
[08:32:23] fsfe.org/tags/tagged-se.nn.html
[08:32:23] fsfe.org/tags/tagged-se.pl.html
[08:32:23] fsfe.org/tags/tagged-se.pt.html
[08:32:23] fsfe.org/tags/tagged-se.ro.html
[08:32:23] fsfe.org/tags/tagged-se.ru.html
[08:32:23] fsfe.org/tags/tagged-se.sk.html
[08:32:23] fsfe.org/tags/tagged-se.sl.html
[08:32:23] fsfe.org/tags/tagged-se.sq.html
[08:32:23] fsfe.org/tags/tagged-se.sr.html
[08:32:23] fsfe.org/tags/tagged-se.sv.html
[08:32:23] fsfe.org/tags/tagged-se.tr.html
[08:32:23] fsfe.org/tags/tagged-se.uk.html
[08:32:23] fsfe.org/tags/tagged-se.zh.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.ar.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.bg.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.bs.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.ca.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.cs.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.da.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.de.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.el.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.en.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.es.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.et.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.fa.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.fi.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.fr.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.hr.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.hu.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.it.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.ja.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.mk.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.nb.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.nl.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.nn.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.pl.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.pt.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.ro.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.ru.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.sk.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.sl.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.sq.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.sr.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.sv.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.tr.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.uk.html
[08:32:23] fsfe.org/tags/tagged-tech-teams.zh.html
[08:32:23] fsfe.org/tags/tagged-translations.ar.html
[08:32:23] fsfe.org/tags/tagged-translations.bg.html
[08:32:24] fsfe.org/tags/tagged-translations.bs.html
[08:32:24] fsfe.org/tags/tagged-translations.ca.html
[08:32:24] fsfe.org/tags/tagged-translations.cs.html
[08:32:24] fsfe.org/tags/tagged-translations.da.html
[08:32:24] fsfe.org/tags/tagged-translations.de.html
[08:32:24] fsfe.org/tags/tagged-translations.el.html
[08:32:24] fsfe.org/tags/tagged-translations.en.html
[08:32:24] fsfe.org/tags/tagged-translations.es.html
[08:32:24] fsfe.org/tags/tagged-translations.et.html
[08:32:24] fsfe.org/tags/tagged-translations.fa.html
[08:32:24] fsfe.org/tags/tagged-translations.fi.html
[08:32:24] fsfe.org/tags/tagged-translations.fr.html
[08:32:24] fsfe.org/tags/tagged-translations.hr.html
[08:32:24] fsfe.org/tags/tagged-translations.hu.html
[08:32:24] fsfe.org/tags/tagged-translations.it.html
[08:32:24] fsfe.org/tags/tagged-translations.ja.html
[08:32:24] fsfe.org/tags/tagged-translations.mk.html
[08:32:24] fsfe.org/tags/tagged-translations.nb.html
[08:32:24] fsfe.org/tags/tagged-translations.nl.html
[08:32:24] fsfe.org/tags/tagged-translations.nn.html
[08:32:24] fsfe.org/tags/tagged-translations.pl.html
[08:32:24] fsfe.org/tags/tagged-translations.pt.html
[08:32:24] fsfe.org/tags/tagged-translations.ro.html
[08:32:24] fsfe.org/tags/tagged-translations.ru.html
[08:32:24] fsfe.org/tags/tagged-translations.sk.html
[08:32:24] fsfe.org/tags/tagged-translations.sl.html
[08:32:24] fsfe.org/tags/tagged-translations.sq.html
[08:32:24] fsfe.org/tags/tagged-translations.sr.html
[08:32:24] fsfe.org/tags/tagged-translations.sv.html
[08:32:24] fsfe.org/tags/tagged-translations.tr.html
[08:32:24] fsfe.org/tags/tagged-translations.uk.html
[08:32:24] fsfe.org/tags/tagged-translations.zh.html
[08:32:24] fsfe.org/tags/tagged-yh4f.ar.html
[08:32:24] fsfe.org/tags/tagged-yh4f.bg.html
[08:32:24] fsfe.org/tags/tagged-yh4f.bs.html
[08:32:24] fsfe.org/tags/tagged-yh4f.ca.html
[08:32:24] fsfe.org/tags/tagged-yh4f.cs.html
[08:32:24] fsfe.org/tags/tagged-yh4f.da.html
[08:32:24] fsfe.org/tags/tagged-yh4f.de.html
[08:32:24] fsfe.org/tags/tagged-yh4f.el.html
[08:32:24] fsfe.org/tags/tagged-yh4f.en.html
[08:32:24] fsfe.org/tags/tagged-yh4f.es.html
[08:32:24] fsfe.org/tags/tagged-yh4f.et.html
[08:32:24] fsfe.org/tags/tagged-yh4f.fa.html
[08:32:24] fsfe.org/tags/tagged-yh4f.fi.html
[08:32:24] fsfe.org/tags/tagged-yh4f.fr.html
[08:32:24] fsfe.org/tags/tagged-yh4f.hr.html
[08:32:24] fsfe.org/tags/tagged-yh4f.hu.html
[08:32:24] fsfe.org/tags/tagged-yh4f.it.html
[08:32:24] fsfe.org/tags/tagged-yh4f.ja.html
[08:32:24] fsfe.org/tags/tagged-yh4f.mk.html
[08:32:24] fsfe.org/tags/tagged-yh4f.nb.html
[08:32:24] fsfe.org/tags/tagged-yh4f.nl.html
[08:32:24] fsfe.org/tags/tagged-yh4f.nn.html
[08:32:24] fsfe.org/tags/tagged-yh4f.pl.html
[08:32:24] fsfe.org/tags/tagged-yh4f.pt.html
[08:32:24] fsfe.org/tags/tagged-yh4f.ro.html
[08:32:24] fsfe.org/tags/tagged-yh4f.ru.html
[08:32:24] fsfe.org/tags/tagged-yh4f.sk.html
[08:32:24] fsfe.org/tags/tagged-yh4f.sl.html
[08:32:24] fsfe.org/tags/tagged-yh4f.sq.html
[08:32:24] fsfe.org/tags/tagged-yh4f.sr.html
[08:32:24] fsfe.org/tags/tagged-yh4f.sv.html
[08:32:24] fsfe.org/tags/tagged-yh4f.tr.html
[08:32:24] fsfe.org/tags/tagged-yh4f.uk.html
[08:32:24] fsfe.org/tags/tagged-yh4f.zh.html
[08:32:24] 
[08:32:24] sent 8,465,196 bytes  received 383,323 bytes  1,361,310.62 bytes/sec
[08:32:24] total size is 1,493,775,026  speedup is 168.82
Errors: none
File Manifest: 125403 files