Build report
- Start time:
- 2024-11-29 09:16:01 (UTC)
- End time:
- 2024-11-29 09:18:38 (UTC)
- Duration:
- 2 minutes 37 seconds
- Termination Status:
- Success
Previous builds
GIT changes: at 2024-11-29 09:16:04 (UTC)
Updating bd126c95a8..b9cc799215 Fast-forward global/data/topbanner/topbanner.de.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)checked
Phase 1: 1 minute 3 seconds
[09:16:04] Starting phase 1 [09:16:04] * Spawning 4 processes [09:16:04] * Indexing 5255 files [09:16:20] * Indexation done in 15 seconds! [09:16:20] * Written index to /srv/www/fsfe.org_git/fsfe.org/search/index.js [09:16:20] * Creating search index [09:16:20] * Updating XSL stylesheets [09:16:20] * Preparing subdirectory fsfe.org/news [09:16:20] * Preparing subdirectory fsfe.org/events [09:16:21] * Updating default stylesheets [09:16:21] * Updating local menus [09:16:22] * Generating tag maps [09:16:51] * Updating tag lists [09:16:57] * Updating XML lists [09:17:03] * Checking contents of XML lists [09:17:07] 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" 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 -regex "$(INPUTDIR)/[a-z\.]+\.[a-z]+/.*" -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 "* Copying file $*" rsync -l "$<" "$@" # ----------------------------------------------------------------------------- # 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: 1 minute 9 seconds
[09:17:08] Starting phase 2 [09:17:14] * Building drm.info/act-now.de.html [09:17:14] * Building drm.info/citizen-rights.de.html [09:17:14] * Building drm.info/creativity.de.html [09:17:14] * Building drm.info/index.de.html [09:17:14] * Building drm.info/losing-heritage.de.html [09:17:14] * Building drm.info/privacy.de.html [09:17:14] * Building drm.info/what-is-drm.de.html [09:17:14] * Building fsfe.org/about/about.de.html [09:17:14] * Building fsfe.org/about/associates/associates.de.html [09:17:14] * Building fsfe.org/about/codeofconduct.de.html [09:17:14] * Building fsfe.org/about/contact.de.html [09:17:14] * Building fsfe.org/about/fsfnetwork.de.html [09:17:14] * Building fsfe.org/about/funds/2001.de.html [09:17:14] * Building fsfe.org/about/funds/2002.de.html [09:17:14] * Building fsfe.org/about/funds/2003.de.html [09:17:14] * Building fsfe.org/about/funds/2004.de.html [09:17:14] * Building fsfe.org/about/funds/2005.de.html [09:17:14] * Building fsfe.org/about/funds/2006.de.html [09:17:14] * Building fsfe.org/about/funds/2007.de.html [09:17:14] * Building fsfe.org/about/funds/2008.de.html [09:17:14] * Building fsfe.org/about/funds/2009.de.html [09:17:14] * Building fsfe.org/about/funds/2010.de.html [09:17:15] * Building fsfe.org/about/funds/2011.de.html [09:17:15] * Building fsfe.org/about/funds/2012.de.html [09:17:15] * Building fsfe.org/about/funds/2013.de.html [09:17:15] * Building fsfe.org/about/funds/2014.de.html [09:17:15] * Building fsfe.org/about/funds/2015.de.html [09:17:15] * Building fsfe.org/about/funds/2016.de.html [09:17:15] * Building fsfe.org/about/funds/2017.de.html [09:17:15] * Building fsfe.org/about/funds/2018.de.html [09:17:15] * Building fsfe.org/about/funds/2019.de.html [09:17:15] * Building fsfe.org/about/funds/2020.de.html [09:17:15] * Building fsfe.org/about/funds/2021.de.html [09:17:15] * Building fsfe.org/about/funds/2022.de.html [09:17:15] * Building fsfe.org/about/funds/funds.de.html [09:17:15] * Building fsfe.org/about/graphics/graphics.de.html [09:17:15] * Building fsfe.org/about/graphics/sponsoring/sponsoring.de.html [09:17:15] * Building fsfe.org/about/groups.de.html [09:17:15] * Building fsfe.org/about/history/doi.de.html [09:17:15] * Building fsfe.org/about/history/preamble.de.html [09:17:15] * Building fsfe.org/about/jobs/index.de.html [09:17:15] * Building fsfe.org/about/jobs/internship.de.html [09:17:15] * Building fsfe.org/about/js-licences.de.html [09:17:15] * Building fsfe.org/about/legal/imprint.de.html [09:17:15] * Building fsfe.org/about/legal/legal.de.html [09:17:15] * Building fsfe.org/about/mission.de.html [09:17:15] * Building fsfe.org/about/ourwork.de.html [09:17:15] * Building fsfe.org/about/overview2010.de.html [09:17:15] * Building fsfe.org/about/people/albers/albers.de.html [09:17:15] * Building fsfe.org/about/people/bakker/bakker.de.html [09:17:15] * Building fsfe.org/about/people/ceballos/ceballos.de.html [09:17:15] * Building fsfe.org/about/people/gerloff/gerloff.de.html [09:17:15] * Building fsfe.org/about/people/greve/cv.de.html [09:17:15] * Building fsfe.org/about/people/greve/greve.de.html [09:17:15] * Building fsfe.org/about/people/index.de.html [09:17:15] * Building fsfe.org/about/people/interviews/cryptie.de.html [09:17:15] * Building fsfe.org/about/people/interviews/gkotsopoulou.de.html [09:17:15] * Building fsfe.org/about/people/interviews/grun.de.html [09:17:15] * Building fsfe.org/about/people/interviews/lequertier.de.html [09:17:16] * Building fsfe.org/about/people/interviews/mueller.de.html [09:17:16] * Building fsfe.org/about/people/interviews/ockers.de.html [09:17:16] * Building fsfe.org/about/people/interviews/snow.de.html [09:17:16] * Building fsfe.org/about/people/interviews/weitzhofer.de.html [09:17:16] * Building fsfe.org/about/people/interviews/zerolo.de.html [09:17:16] * Building fsfe.org/about/people/kirschner/kirschner.de.html [09:17:16] * Building fsfe.org/about/people/ku/ku.de.html [09:17:16] * Building fsfe.org/about/people/lasota/lasota.de.html [09:17:16] * Building fsfe.org/about/people/mehl/mehl.de.html [09:17:16] * Building fsfe.org/about/people/partsafyllidou/partsafyllidou.de.html [09:17:16] * Building fsfe.org/about/people/repentinus/repentinus.de.html [09:17:16] * Building fsfe.org/about/people/rikken/rikken.de.html [09:17:16] * Building fsfe.org/about/people/roussos/roussos.de.html [09:17:16] * Building fsfe.org/about/people/roy/roy.de.html [09:17:16] * Building fsfe.org/about/people/sander/sander.de.html [09:17:16] * Building fsfe.org/about/people/testimonials.de.html [09:17:16] * Building fsfe.org/about/people/tobiasd/tobiasd.de.html [09:17:16] * Building fsfe.org/about/principles.de.html [09:17:16] * Building fsfe.org/about/softwarefreedom/testimonials.de.html [09:17:16] * Building fsfe.org/about/statement-20201220.de.html [09:17:16] * Building fsfe.org/about/timeline.de.html [09:17:16] * Building fsfe.org/about/transparency-commitment.de.html [09:17:16] * Building fsfe.org/activities/15years/15years.de.html [09:17:16] * Building fsfe.org/activities/20years/20years.de.html [09:17:16] * Building fsfe.org/activities/activities.de.html [09:17:16] * Building fsfe.org/activities/ada-zangemann/book-reviews.de.html [09:17:16] * Building fsfe.org/activities/ada-zangemann/index.de.html [09:17:16] * Building fsfe.org/activities/ada-zangemann/letters.de.html [09:17:16] * Building fsfe.org/activities/ada-zangemann/movie.de.html [09:17:16] * Building fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.de.html [09:17:16] * Building fsfe.org/activities/agnula/agnula.de.html [09:17:17] * Building fsfe.org/activities/agnula/deliverable-1.3.1.de.html [09:17:17] * Building fsfe.org/activities/agnula/java.de.html [09:17:17] * Building fsfe.org/activities/agnula/license.de.html [09:17:17] * Building fsfe.org/activities/agnula/license-faq.de.html [09:17:17] * Building fsfe.org/activities/android/android.de.html [09:17:17] * Building fsfe.org/activities/android/artwork.de.html [09:17:17] * Building fsfe.org/activities/android/artwork/DIN_A1.de.html [09:17:17] * Building fsfe.org/activities/android/artwork/DIN_A7.de.html [09:17:17] * Building fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.de.html [09:17:17] * Building fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.de.html [09:17:17] * Building fsfe.org/activities/android/flashingdevices.de.html [09:17:17] * Building fsfe.org/activities/android/help.de.html [09:17:17] * Building fsfe.org/activities/android/is-flashing-legal.de.html [09:17:17] * Building fsfe.org/activities/android/liberate.de.html [09:17:17] * Building fsfe.org/activities/android/sustainability.de.html [09:17:17] * Building fsfe.org/activities/android/workshops.de.html [09:17:17] * Building fsfe.org/activities/apple-litigation/apple-litigation.de.html [09:17:17] * Building fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.html [09:17:17] * Building fsfe.org/activities/awareness.de.html [09:17:17] * Building fsfe.org/activities/bgw/bgw.de.html [09:17:17] * Building fsfe.org/activities/conf-events/conf-events.de.html [09:17:17] * Building fsfe.org/activities/conf-events/report-cccamp23.de.html [09:17:17] * Building fsfe.org/activities/deviceneutrality/index.de.html [09:17:17] * Building fsfe.org/activities/dma/dma.de.html [09:17:17] * Building fsfe.org/activities/drm/drm.de.html [09:17:17] * Building fsfe.org/activities/drm/open-letter-ec-drm-html.de.html [09:17:17] * Building fsfe.org/activities/drm/sony-rootkit-fiasco.de.html [09:17:17] * Building fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.html [09:17:17] * Building fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/askyourcandidates.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/example-questions.de.html [09:17:18] * Building fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.html [09:17:18] * Building fsfe.org/activities/elections/digitalomat.de.html [09:17:18] * Building fsfe.org/activities/elections/freedomvote.de.html [09:17:18] * Building fsfe.org/activities/elections/index.de.html [09:17:18] * Building fsfe.org/activities/elections/letspromise.de.html [09:17:18] * Building fsfe.org/activities/eucd/eucd.de.html [09:17:18] * Building fsfe.org/activities/eucd/eucd-fs.de.html [09:17:18] * Building fsfe.org/activities/eura-slovakia/eura-slovakia.de.html [09:17:18] * Building fsfe.org/activities/fla/fiduciary.de.html [09:17:18] * Building fsfe.org/activities/fla/fla.de.html [09:17:18] * Building fsfe.org/activities/foss4smes/foss4smes.de.html [09:17:18] * Building fsfe.org/activities/fp6/focal.de.html [09:17:19] * Building fsfe.org/activities/fp6/fp6.de.html [09:17:19] * Building fsfe.org/activities/fp6/lafis.de.html [09:17:19] * Building fsfe.org/activities/fp6/more-support.de.html [09:17:19] * Building fsfe.org/activities/fp6/reasoning.de.html [09:17:19] * Building fsfe.org/activities/fp6/recommendation.de.html [09:17:19] * Building fsfe.org/activities/fp6/supporting-parties.de.html [09:17:19] * Building fsfe.org/activities/fp7/fp7.de.html [09:17:19] * Building fsfe.org/activities/gbn/gbn.de.html [09:17:19] * Building fsfe.org/activities/gplv3/bangalore-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/barcelona-moglen-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/barcelona-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/barcelona-summaries.de.html [09:17:19] * Building fsfe.org/activities/gplv3/brussels-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/diff-draft1-draft2.de.html [09:17:19] * Building fsfe.org/activities/gplv3/diff-draft2-draft3.de.html [09:17:19] * Building fsfe.org/activities/gplv3/diff-gplv2-draft2.de.html [09:17:19] * Building fsfe.org/activities/gplv3/drm-and-gplv3.de.html [09:17:19] * Building fsfe.org/activities/gplv3/europe-gplv3-conference.de.html [09:17:19] * Building fsfe.org/activities/gplv3/events.de.html [09:17:19] * Building fsfe.org/activities/gplv3/fisl-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/gplv3.de.html [09:17:19] * Building fsfe.org/activities/gplv3/gplv3-torino.de.html [09:17:19] * Building fsfe.org/activities/gplv3/links.de.html [09:17:19] * Building fsfe.org/activities/gplv3/patents-and-gplv3.de.html [09:17:19] * Building fsfe.org/activities/gplv3/timeline.de.html [09:17:19] * Building fsfe.org/activities/gplv3/tokyo-ciaran-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/tokyo-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/gplv3/topics.de.html [09:17:19] * Building fsfe.org/activities/gplv3/torino-rms-transcript.de.html [09:17:19] * Building fsfe.org/activities/igf/a2k.de.html [09:17:19] * Building fsfe.org/activities/igf/dcos.de.html [09:17:19] * Building fsfe.org/activities/igf/igf.de.html [09:17:19] * Building fsfe.org/activities/igf/sovsoft.de.html [09:17:19] * Building fsfe.org/activities/igf/wgig.de.html [09:17:19] * Building fsfe.org/activities/ilovefs/artwork/artwork.de.html [09:17:19] * Building fsfe.org/activities/ilovefs/index.de.html [09:17:19] * Building fsfe.org/activities/ilovefs/report/report_2023.de.html [09:17:20] * Building fsfe.org/activities/ilovefs/whylovefs/gallery.de.html [09:17:20] * Building fsfe.org/activities/ilovefs/report/report_2024.de.html [09:17:20] * Building fsfe.org/activities/ilovefs/whylovefs/whylovefs.de.html [09:17:20] * Building fsfe.org/activities/ipred2/ipred2.de.html [09:17:20] * Building fsfe.org/activities/ipred2/letter-april-2007.de.html [09:17:20] * Building fsfe.org/activities/legal.de.html [09:17:20] * Building fsfe.org/activities/licence-questions/licence-questions.de.html [09:17:20] * Building fsfe.org/activities/ln/application.de.html [09:17:20] * Building fsfe.org/activities/ln/application-confirm.de.html [09:17:20] * Building fsfe.org/activities/ln/application-success.de.html [09:17:20] * Building fsfe.org/activities/ln/council.de.html [09:17:20] * Building fsfe.org/activities/ln/llw.de.html [09:17:20] * Building fsfe.org/activities/ln/llw-conf.de.html [09:17:20] * Building fsfe.org/activities/ln/llw-past.de.html [09:17:20] * Building fsfe.org/activities/ln/ln.de.html [09:17:20] * Building fsfe.org/activities/ln/ln-procedures.de.html [09:17:20] * Building fsfe.org/activities/ln/memberlist.de.html [09:17:20] * Building fsfe.org/activities/ln/memberlist-confirm.de.html [09:17:20] * Building fsfe.org/activities/ln/memberlist-success.de.html [09:17:20] * Building fsfe.org/activities/ln/modpolicy.de.html [09:17:20] * Building fsfe.org/activities/ln/rules.de.html [09:17:20] * Building fsfe.org/activities/mankind/contact.de.html [09:17:20] * Building fsfe.org/activities/mankind/done.de.html [09:17:20] * Building fsfe.org/activities/mankind/help.de.html [09:17:20] * Building fsfe.org/activities/mankind/links.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/index.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/press-release.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/conclusion.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/contact.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/ethical.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/facts.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/independence.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/origin.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/plan.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/social.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/support.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/technical.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/threats.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/unesco.de.html [09:17:20] * Building fsfe.org/activities/mankind/lsm2002/slides/why1.de.html [09:17:21] * Building fsfe.org/activities/mankind/lsm2002/slides/why2.de.html [09:17:21] * Building fsfe.org/activities/mankind/lsm2002/slides/workdone.de.html [09:17:21] * Building fsfe.org/activities/mankind/lsm2002/slides/workinprogress.de.html [09:17:21] * Building fsfe.org/activities/mankind/mankind.de.html [09:17:21] * Building fsfe.org/activities/mankind/press.de.html [09:17:21] * Building fsfe.org/activities/mankind/support.de.html [09:17:21] * Building fsfe.org/activities/ms-vs-eu/article-20060421.de.html [09:17:21] * Building fsfe.org/activities/ms-vs-eu/background.de.html [09:17:21] * Building fsfe.org/activities/ms-vs-eu/intervention-20040930.de.html [09:17:21] * Building fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.html [09:17:21] * Building fsfe.org/activities/ms-vs-eu/timeline.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml-converter-hoax.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml-idiosyncrasies.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml-interoperability.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml-questions.de.html [09:17:21] * Building fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.html [09:17:21] * Building fsfe.org/activities/ngi/ngi.de.html [09:17:21] * Building fsfe.org/activities/ngi/ngi-past.de.html [09:17:21] * Building fsfe.org/activities/nledu/nledu.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/bug-report.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/bug-report-uk.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/buglist.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/follow-up.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/guideline.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/letter.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/pdfreaders.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/pdfsprint.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/petition.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/petition-error.de.html [09:17:21] * Building fsfe.org/activities/pdfreaders/petition-success.de.html [09:17:22] * Building fsfe.org/activities/policy.de.html [09:17:22] * Building fsfe.org/activities/publiccode/bea.de.html [09:17:22] * Building fsfe.org/activities/publiccode/brochure.de.html [09:17:22] * Building fsfe.org/activities/publiccode/get-active.de.html [09:17:22] * Building fsfe.org/activities/publiccode/publiccode.de.html [09:17:22] * Building fsfe.org/activities/radiodirective/radiodirective.de.html [09:17:22] * Building fsfe.org/activities/radiodirective/statement.de.html [09:17:22] * Building fsfe.org/activities/routers/routers.de.html [09:17:22] * Building fsfe.org/activities/routers/timeline.de.html [09:17:22] * Building fsfe.org/activities/self/self.de.html [09:17:22] * Building fsfe.org/activities/stacs/belgrade.de.html [09:17:22] * Building fsfe.org/activities/stacs/belgrade-register.de.html [09:17:22] * Building fsfe.org/activities/stacs/london.de.html [09:17:22] * Building fsfe.org/activities/stacs/london-register.de.html [09:17:22] * Building fsfe.org/activities/stacs/stacs.de.html [09:17:22] * Building fsfe.org/activities/stacs/tmpl-belgrade.de.html [09:17:22] * Building fsfe.org/activities/stacs/tmpl-london.de.html [09:17:22] * Building fsfe.org/activities/swpat/background.de.html [09:17:22] * Building fsfe.org/activities/swpat/current/model-letter-companies.de.html [09:17:22] * Building fsfe.org/activities/swpat/current/unitary-patent.de.html [09:17:22] * Building fsfe.org/activities/swpat/documents.de.html [09:17:22] * Building fsfe.org/activities/swpat/fsfe-patstrat-response.de.html [09:17:22] * Building fsfe.org/activities/swpat/how-the-eu-patent-system-works.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20040510.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20040531.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20040706.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20040802.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20040906.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20041004.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20041101.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20041206.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050103.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050207.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050307.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050405.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050502.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20050606.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20101222.de.html [09:17:23] * Building fsfe.org/activities/swpat/letter-20110406.de.html [09:17:23] * Building fsfe.org/activities/swpat/memorandum.de.html [09:17:23] * Building fsfe.org/activities/swpat/nortel.de.html [09:17:23] * Building fsfe.org/activities/swpat/novell-cptn.de.html [09:17:23] * Building fsfe.org/activities/swpat/second-reading-bullets.de.html [09:17:23] * Building fsfe.org/activities/swpat/status.de.html [09:17:23] * Building fsfe.org/activities/swpat/swpat.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool1.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool2.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool3.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool4.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool5.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool6.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool7.de.html [09:17:23] * Building fsfe.org/activities/tgs/tagatschool8.de.html [09:17:23] * Building fsfe.org/activities/tgs/tgs.de.html [09:17:23] * Building fsfe.org/activities/upcyclingandroid/application-confirm.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/application-success.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/howtoupcycle.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/individual-signatures.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/informationmaterial.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/is-flashing-legal.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/openletter.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.html [09:17:24] * Building fsfe.org/activities/upcyclingandroid/workshops.de.html [09:17:24] * Building fsfe.org/activities/whyfs/whyfs.de.html [09:17:24] * Building fsfe.org/activities/wipo/fser.de.html [09:17:24] * Building fsfe.org/activities/wipo/iprip.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20050413.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20050415.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20050620.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20050721.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20050930.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20060223.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20060628.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20070928.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090324.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090325.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090327.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090420-01.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090420-02.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090430-01.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090430-02.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20090501.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100125.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100125-01.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100125-02.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100125-03.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100127-01.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20100127-02.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20101013.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20101124-01.de.html [09:17:24] * Building fsfe.org/activities/wipo/statement-20101124-02.de.html [09:17:24] * Building fsfe.org/activities/wipo/wipo.de.html [09:17:25] * Building fsfe.org/activities/wipo/wiwo.de.html [09:17:25] * Building fsfe.org/activities/wsis/cs-benchmarks-03-11-14.de.html [09:17:25] * Building fsfe.org/activities/wsis/debriefing-geneva.de.html [09:17:25] * Building fsfe.org/activities/wsis/debriefing-paris.de.html [09:17:25] * Building fsfe.org/activities/wsis/event-03-12-10.de.html [09:17:25] * Building fsfe.org/activities/wsis/fs.de.html [09:17:25] * Building fsfe.org/activities/wsis/issues.de.html [09:17:25] * Building fsfe.org/activities/wsis/ps-20030923.de.html [09:17:25] * Building fsfe.org/activities/wsis/wsis.de.html [09:17:25] * Building fsfe.org/activities/wsis/wsis-and-software.de.html [09:17:25] * Building fsfe.org/activities/yh4f/faq.de.html [09:17:25] * Building fsfe.org/activities/yh4f/index.de.html [09:17:25] * Building fsfe.org/activities/yh4f/jury.de.html [09:17:25] * Building fsfe.org/activities/yh4f/media.de.html [09:17:25] * Building fsfe.org/activities/yh4f/register-confirm.de.html [09:17:25] * Building fsfe.org/activities/yh4f/register-success.de.html [09:17:25] * Building fsfe.org/activities/zooom/zooom.de.html [09:17:25] * Building fsfe.org/boilerplate.de.html [09:17:25] * Building fsfe.org/contact/email-updates.de.html [09:17:25] * Building fsfe.org/contact/projects-call/projects-call.de.html [09:17:25] * Building fsfe.org/contact/projects-call/submission-confirm.de.html [09:17:25] * Building fsfe.org/contact/projects-call/submission-success.de.html [09:17:25] * Building fsfe.org/contribute/advocacy/cwfs.de.html [09:17:25] * Building fsfe.org/contribute/contribute.de.html [09:17:25] * Building fsfe.org/contribute/designers/designers.de.html [09:17:25] * Building fsfe.org/contribute/designers/styleguide.de.html [09:17:25] * Building fsfe.org/contribute/editors/editorial-guidelines.de.html [09:17:25] * Building fsfe.org/contribute/editors/editors.de.html [09:17:25] * Building fsfe.org/contribute/getyourgraphic.de.html [09:17:25] * Building fsfe.org/contribute/promotion-materials-archive.de.html [09:17:25] * Building fsfe.org/contribute/spreadtheword.de.html [09:17:25] * Building fsfe.org/contribute/spreadtheword-freebie.de.html [09:17:25] * Building fsfe.org/contribute/spreadtheword-ordererror.de.html [09:17:26] * Building fsfe.org/contribute/spreadtheword-orderthanks.de.html [09:17:26] * Building fsfe.org/contribute/translators/translators.de.html [09:17:26] * Building fsfe.org/contribute/translators/wordlist.de.html [09:17:26] * Building fsfe.org/contribute/web/features.de.html [09:17:26] * Building fsfe.org/contribute/web/web.de.html [09:17:26] * Building fsfe.org/donate/donate.de.html [09:17:26] * Building fsfe.org/donate/germany.de.html [09:17:26] * Building fsfe.org/donate/hardware.de.html [09:17:26] * Building fsfe.org/donate/letter-20041209.de.html [09:17:26] * Building fsfe.org/donate/letter-2009.de.html [09:17:26] * Building fsfe.org/donate/letter-2011.de.html [09:17:26] * Building fsfe.org/donate/luxembourg.de.html [09:17:26] * Building fsfe.org/donate/netherlands.de.html [09:17:26] * Building fsfe.org/donate/payment.de.html [09:17:26] * Building fsfe.org/donate/switzerland.de.html [09:17:26] * Building fsfe.org/donate/thankgnus.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2001.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2002.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2003.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2004.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2005.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2006.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2007.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2008.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2009.de.html [09:17:26] * Building fsfe.org/donate/thankgnus-2010.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2011.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2012.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2013.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2014.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2015.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2016.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2017.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2018.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2019.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2020.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2021.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2022.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2023.de.html [09:17:27] * Building fsfe.org/donate/thankgnus-2024.de.html [09:17:27] * Building fsfe.org/donate/thankyou.de.html [09:17:27] * Building fsfe.org/error/400.de.html [09:17:27] * Building fsfe.org/error/401.de.html [09:17:27] * Building fsfe.org/error/403.de.html [09:17:27] * Building fsfe.org/error/404.de.html [09:17:27] * Building fsfe.org/error/405.de.html [09:17:27] * Building fsfe.org/error/408.de.html [09:17:27] * Building fsfe.org/error/410.de.html [09:17:27] * Building fsfe.org/error/411.de.html [09:17:27] * Building fsfe.org/error/412.de.html [09:17:27] * Building fsfe.org/error/413.de.html [09:17:27] * Building fsfe.org/error/414.de.html [09:17:27] * Building fsfe.org/error/415.de.html [09:17:27] * Building fsfe.org/error/500.de.html [09:17:27] * Building fsfe.org/error/501.de.html [09:17:27] * Building fsfe.org/error/502.de.html [09:17:27] * Building fsfe.org/error/503.de.html [09:17:27] * Building fsfe.org/events/2004/FISL/fisl.de.html [09:17:27] * Building fsfe.org/events/2004/index.de.html [09:17:28] * Building fsfe.org/events/2004/picnic.de.html [09:17:28] * Building fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.de.html [09:17:28] * Building fsfe.org/events/2005/index.de.html [09:17:28] * Building fsfe.org/events/2005/wsf-brazil/wsf-brazil.de.html [09:17:28] * Building fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.de.html [09:17:28] * Building fsfe.org/events/2006/index.de.html [09:17:28] * Building fsfe.org/events/2007/index.de.html [09:17:28] * Building fsfe.org/events/2008/index.de.html [09:17:28] * Building fsfe.org/events/2009/index.de.html [09:17:28] * Building fsfe.org/events/2010/index.de.html [09:17:28] * Building fsfe.org/events/2011/index.de.html [09:17:28] * Building fsfe.org/events/2011/lnm-award-debian.de.html [09:17:28] * Building fsfe.org/events/2012/fscons-2012.de.html [09:17:28] * Building fsfe.org/events/2012/index.de.html [09:17:28] * Building fsfe.org/events/2013/index.de.html [09:17:29] * Building fsfe.org/events/2013/linuxtag-2013.de.html [09:17:29] * Building fsfe.org/events/2013/panel-btw2013.de.html [09:17:29] * Building fsfe.org/events/2013/rmll-2-2013.de.html [09:17:29] * Building fsfe.org/events/2013/rmll-2013.de.html [09:17:29] * Building fsfe.org/events/2014/index.de.html [09:17:29] * Building fsfe.org/events/2015/index.de.html [09:17:29] * Building fsfe.org/events/2016/index.de.html [09:17:29] * Building fsfe.org/events/2016/summit/event-20160616-01.de.html [09:17:29] * Building fsfe.org/events/2016/summit/event-20161106-01.de.html [09:17:29] * Building fsfe.org/events/2016/summit/event-20161106-02.de.html [09:17:29] * Building fsfe.org/events/2017/index.de.html [09:17:29] * Building fsfe.org/events/2018/index.de.html [09:17:29] * Building fsfe.org/events/2019/index.de.html [09:17:30] * Building fsfe.org/events/2020/index.de.html [09:17:30] * Building fsfe.org/events/2021/index.de.html [09:17:30] * Building fsfe.org/events/2022/index.de.html [09:17:30] * Building fsfe.org/events/SFD-2010.de.html [09:17:30] * Building fsfe.org/events/archive-template.de.html [09:17:30] * Building fsfe.org/events/clt/clt-bus.de.html [09:17:30] * Building fsfe.org/events/clt/clt-hotel.de.html [09:17:30] * Building fsfe.org/events/events.de.html [09:17:30] * Building fsfe.org/events/fscons-2010.de.html [09:17:30] * Building fsfe.org/events/tools/eventregistration.de.html [09:17:30] * Building fsfe.org/freesoftware/artificial-intelligence.de.html [09:17:30] * Building fsfe.org/freesoftware/comparison.de.html [09:17:30] * Building fsfe.org/freesoftware/democracy.de.html [09:17:30] * Building fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.html [09:17:30] * Building fsfe.org/freesoftware/education/argumentation.de.html [09:17:30] * Building fsfe.org/freesoftware/education/edu-related-content.de.html [09:17:31] * Building fsfe.org/freesoftware/education/education.de.html [09:17:31] * Building fsfe.org/freesoftware/education/eduteam.de.html [09:17:31] * Building fsfe.org/freesoftware/freesoftware.de.html [09:17:31] * Building fsfe.org/freesoftware/gnuproject.de.html [09:17:31] * Building fsfe.org/freesoftware/legal/faq.de.html [09:17:31] * Building fsfe.org/freesoftware/legal/led.de.html [09:17:31] * Building fsfe.org/freesoftware/legal/legal.de.html [09:17:31] * Building fsfe.org/freesoftware/procurement/mEUcrosoft.de.html [09:17:31] * Building fsfe.org/freesoftware/procurement/procurement.de.html [09:17:31] * Building fsfe.org/freesoftware/secure-boot.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/bsa-letter-analysis.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/bt-open-letter.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/def.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/dfd.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/eif-v3.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/eifv2.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/eifv2-01.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/guardian-open-letter.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/minimalisticstandards.de.html [09:17:31] * Building fsfe.org/freesoftware/standards/ps.de.html [09:17:32] * Building fsfe.org/freesoftware/standards/standards.de.html [09:17:32] * Building fsfe.org/freesoftware/standards/transparency-letter.de.html [09:17:32] * Building fsfe.org/freesoftware/standards/uk-standards-consultation.de.html [09:17:32] * Building fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.de.html [09:17:32] * Building fsfe.org/freesoftware/sustainability/sustainability.de.html [09:17:32] * Building fsfe.org/index.de.html [09:17:32] * Building fsfe.org/internal/bc.de.html [09:17:32] * Building fsfe.org/internal/er.de.html [09:17:32] * Building fsfe.org/internal/nt.de.html [09:17:32] * Building fsfe.org/internal/pd.de.html [09:17:32] * Building fsfe.org/internal/pd-result.de.html [09:17:32] * Building fsfe.org/internal/pt.de.html [09:17:32] * Building fsfe.org/internal/rc.de.html [09:17:32] * Building fsfe.org/internal/rc-result.de.html [09:17:32] * Building fsfe.org/news/2001/article-13.12.2001.de.html [09:17:32] * Building fsfe.org/news/2001/article-24.9.2001.de.html [09:17:32] * Building fsfe.org/news/2001/article2001-10-20-01.de.html [09:17:32] * Building fsfe.org/news/2001/article2001-12-17-01.de.html [09:17:32] * Building fsfe.org/news/2001/index.de.html [09:17:32] * Building fsfe.org/news/2002/article-25.04.2002.de.html [09:17:32] * Building fsfe.org/news/2002/article-30.9.2002.de.html [09:17:32] * Building fsfe.org/news/2002/article2002-01-18-01.de.html [09:17:32] * Building fsfe.org/news/2002/index.de.html [09:17:32] * Building fsfe.org/news/2003/commissione-meo-presentazione.de.html [09:17:32] * Building fsfe.org/news/2003/commissione-meo-risposte.de.html [09:17:32] * Building fsfe.org/news/2003/index.de.html [09:17:33] * Building fsfe.org/news/2003/lettera_MIUR-2003-07-16.de.html [09:17:33] * Building fsfe.org/news/2003/news-20030211-01.de.html [09:17:33] * Building fsfe.org/news/2003/news-20030602-01.de.html [09:17:33] * Building fsfe.org/news/2003/vsi-studie.de.html [09:17:33] * Building fsfe.org/news/2004/cie.de.html [09:17:33] * Building fsfe.org/news/2004/cw-interview.de.html [09:17:33] * Building fsfe.org/news/2004/index.de.html [09:17:33] * Building fsfe.org/news/2004/navigator-20040521.de.html [09:17:33] * Building fsfe.org/news/2004/navigator-20040624.de.html [09:17:33] * Building fsfe.org/news/2004/navigator-20040917.de.html [09:17:33] * Building fsfe.org/news/2004/navigator-20040930.de.html [09:17:33] * Building fsfe.org/news/2004/navigator-20041129.de.html [09:17:33] * Building fsfe.org/news/2004/news-20040510-01.de.html [09:17:33] * Building fsfe.org/news/2004/news-20040621-01.de.html [09:17:33] * Building fsfe.org/news/2004/news-20040701-01.de.html [09:17:33] * Building fsfe.org/news/2004/news-20040727-01.de.html [09:17:33] * Building fsfe.org/news/2005/index.de.html [09:17:33] * Building fsfe.org/news/2005/letter-20050511-it-mep.de.html [09:17:33] * Building fsfe.org/news/2005/news-20050507-01.de.html [09:17:33] * Building fsfe.org/news/2006/index.de.html [09:17:33] * Building fsfe.org/news/2007/index.de.html [09:17:33] * Building fsfe.org/news/2007/news-20070630-01.de.html [09:17:34] * Building fsfe.org/news/2007/news-20071220-01.de.html [09:17:34] * Building fsfe.org/news/2007/news-20071221-01.de.html [09:17:34] * Building fsfe.org/news/2008/freedom-not-fear.de.html [09:17:34] * Building fsfe.org/news/2008/gnu-25-years.de.html [09:17:34] * Building fsfe.org/news/2008/index.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080118-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080214-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080220-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080222-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080228-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080301-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20080305-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20081202-02.de.html [09:17:34] * Building fsfe.org/news/2008/news-20081208-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20081210-01.de.html [09:17:34] * Building fsfe.org/news/2008/news-20081215-01.de.html [09:17:34] * Building fsfe.org/news/2009/index.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090120-02.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090123-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090202-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090227-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090301-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090311-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090323-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090325-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090411-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090414-01.de.html [09:17:34] * Building fsfe.org/news/2009/news-20090418-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090430-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090515-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090601-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090604-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090610-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090620-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090624-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090728-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090831-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090908-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20090921-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091005-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091006-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091008-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091019-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091023-02.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091109-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091109-02.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091118-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091127-01.de.html [09:17:35] * Building fsfe.org/news/2009/news-20091216-01.de.html [09:17:35] * Building fsfe.org/news/2009/nyr.de.html [09:17:35] * Building fsfe.org/news/2010/index.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100126-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100129-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100212-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100222-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100302-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100305-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100324-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100330-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100331-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100428-01.de.html [09:17:35] * Building fsfe.org/news/2010/news-20100508-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100510-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100519-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100702-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100705-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100802-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100803-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100907-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20100913-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101016-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101018-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101102-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101108-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101207-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101216-01.de.html [09:17:36] * Building fsfe.org/news/2010/news-20101217-01.de.html [09:17:36] * Building fsfe.org/news/2010/th-eulogy-20100508.de.html [09:17:36] * Building fsfe.org/news/2011/index.de.html [09:17:36] * Building fsfe.org/news/2011/mapping-uk.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110113-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110113-02.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110201-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110202-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110202-02.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110209-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110214-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110215-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110225-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110301-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110310-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110318-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110321-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110325-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110330-01.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110330-02.de.html [09:17:36] * Building fsfe.org/news/2011/news-20110330-03.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110330-04.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110401-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110412-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110415-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110418-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110420-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110421-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110502-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110511-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110520-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110523-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110525-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110608-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110620-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110622-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110718-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110809-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110913-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20110919-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111025-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111107-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111110-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111114-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111117-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111122-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111128-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111128-02.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111201-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111201-02.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111206-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111208-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111208-02.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111213-01.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111213-02.de.html [09:17:37] * Building fsfe.org/news/2011/news-20111220-01.de.html [09:17:37] * Building fsfe.org/news/2012/index.de.html [09:17:37] * Building fsfe.org/news/2012/news-20120109-02.de.html [09:17:37] * Building fsfe.org/news/2012/news-20120110-01.de.html [09:17:37] * Building fsfe.org/news/2012/news-20120110-02.de.html [09:17:37] * Building fsfe.org/news/2012/news-20120120-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120126-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120130-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120131-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120202-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120202-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120204-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120210-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120209-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120214-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120223-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120228-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120303-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120321-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120322-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120323-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120323-03.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120328-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120328-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120330-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120402-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120405-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120412-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120412-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120425-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120425-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120426-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120501-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120502-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120508-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120509-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120509-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120525-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120528-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120601-02.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120607-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120616-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120619-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120627-01.de.html [09:17:38] * Building fsfe.org/news/2012/news-20120711-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120730-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120730-02.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120831-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120907-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120918-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120920-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120921-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20120925-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121018-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121022-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121101-02.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121102-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121106-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121112-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121116-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121120-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121122-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121129-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121208-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121211-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121214-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20121217-01.de.html [09:17:39] * Building fsfe.org/news/2012/news-20130329-01.de.html [09:17:39] * Building fsfe.org/news/2012/report-2012.de.html [09:17:39] * Building fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.de.html [09:17:39] * Building fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.de.html [09:17:39] * Building fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.de.html [09:17:39] * Building fsfe.org/news/2013/index.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130212-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130218-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130221-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130226-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130312-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130319-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130327-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130327-02.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130402-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130422-01.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130423-02.de.html [09:17:39] * Building fsfe.org/news/2013/news-20130424-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130429-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130503-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130611-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130612-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130620-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130620-02.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130625-02.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130626-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130703-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130712-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130716-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130729-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130729-02.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130730-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130918-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130920-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130923-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130926-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20130927-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20131104-02.de.html [09:17:40] * Building fsfe.org/news/2013/news-20131105-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20131107-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20131211-01.de.html [09:17:40] * Building fsfe.org/news/2013/news-20131213-01.de.html [09:17:40] * Building fsfe.org/news/2014/index.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140116-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140210-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140211-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140221-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140226-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140303-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140304-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140310-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140314-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140324-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140326-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140326-02.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140328-01.de.html [09:17:40] * Building fsfe.org/news/2014/news-20140424-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140506-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140527-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140528-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140708-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140801-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140912-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141016-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20140929-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141017-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141017-02.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141120-02.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141203-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141212-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141217-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141218-01.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141218-02.de.html [09:17:41] * Building fsfe.org/news/2014/news-20141219-01.de.html [09:17:41] * Building fsfe.org/news/2015/index.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150209-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150210-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150218-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150301-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150224-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150302-02.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150303-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150306-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150316-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150324-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150325-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150331-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150401-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150401-02.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150414-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150506-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150527-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150605-01.de.html [09:17:41] * Building fsfe.org/news/2015/news-20150605-02.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150616-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150817-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150829-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150902-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150916-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150918-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150918-02.de.html [09:17:42] * Building fsfe.org/news/2015/news-20150922-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151013-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151020-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151028-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151104-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151105-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151110-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151203-01.de.html [09:17:42] * Building fsfe.org/news/2015/news-20151216-01.de.html [09:17:42] * Building fsfe.org/news/2016/index.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160118-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160122-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160126-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160128-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160205-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160208-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160222-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160224-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160406-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160411-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160428-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160428-02.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160502-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160624-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160630-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160725-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160804-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160809-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160817-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160823-01.de.html [09:17:42] * Building fsfe.org/news/2016/news-20160831-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20160907-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20160928-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20160930-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20161027-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20161031-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20161110-01.de.html [09:17:43] * Building fsfe.org/news/2016/news-20161202-01.de.html [09:17:43] * Building fsfe.org/news/2017/index.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170105-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170109-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170110-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170116-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170209-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170214-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170214-02.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170217-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170301-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170302-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170315-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170321-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170328-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170419-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170425-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170613-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170616-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170619-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170710-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170726-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170811-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170829-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170905-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170906-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170908-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170911-01.de.html [09:17:43] * Building fsfe.org/news/2017/news-20170913-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171005-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171013-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171024-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171107-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171108-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171109-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171114-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171116-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171130-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171206-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171207-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171207-02.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171211-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171212-01.de.html [09:17:44] * Building fsfe.org/news/2017/news-20171219-01.de.html [09:17:44] * Building fsfe.org/news/2018/index.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180111-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180119-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180212-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180215-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180219-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180302-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180308-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180322-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180414-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180526-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180529-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180530-02.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180601-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180613-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180705-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180716-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180723-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180725-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180905-02.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180907-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180913-01.de.html [09:17:44] * Building fsfe.org/news/2018/news-20180917-01.de.html [09:17:45] * Building fsfe.org/news/2018/news-20181010-01.de.html [09:17:45] * Building fsfe.org/news/2018/news-20181023-02.de.html [09:17:45] * Building fsfe.org/news/2018/news-20181024-01.de.html [09:17:45] * Building fsfe.org/news/2018/news-20181105-01.de.html [09:17:45] * Building fsfe.org/news/2018/news-20181205-01.de.html [09:17:45] * Building fsfe.org/news/2019/index.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190108-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190124-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190205-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190214-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190308-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190326-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190329-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190514-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190515-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190515-02.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190520-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190701-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190806-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190807-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190827-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190917-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20190927-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191002-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191007-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191012-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191014-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191022-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191028-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191102-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191112-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191113-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191120-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191125-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191128-01.de.html [09:17:45] * Building fsfe.org/news/2019/news-20191205-01.de.html [09:17:45] * Building fsfe.org/news/2020/index.de.html [09:17:45] * Building fsfe.org/news/2020/news-20200121-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200129-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200212-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200228-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200302-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200310-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200311-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200327-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200330-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200402-02.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200403-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200408-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200411-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200415-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200424-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200427-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200506-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200514-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200519-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200601-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200609-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200610-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200629-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200630-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200720-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200810-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200820-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200904-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200907-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20200910-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201005-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201009-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201019-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201023-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201110-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201112-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201120-01.de.html [09:17:46] * Building fsfe.org/news/2020/news-20201208-01.de.html [09:17:47] * Building fsfe.org/news/2020/news-20201210-01.de.html [09:17:47] * Building fsfe.org/news/2020/news-20201211-01.de.html [09:17:47] * Building fsfe.org/news/2020/news-20201215-01.de.html [09:17:47] * Building fsfe.org/news/2021/index.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210119-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210127-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210203-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210204-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210204-02.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210209-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210214-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210219-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210302-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210305-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210311-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210317-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210318-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210324-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210330-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210331-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210406-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210420-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210427-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210504-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210505-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210506-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210521-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210525-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210526-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210529-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210609-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210611-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210625-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210629-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210721-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210805-01.de.html [09:17:47] * Building fsfe.org/news/2021/news-20210830-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20210920-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20210928-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211008-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211011-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211015-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211027-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211102-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211110-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211118-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211122-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211123-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211124-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211125-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211129-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211203-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211206-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211209-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211210-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211213-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211215-01.de.html [09:17:48] * Building fsfe.org/news/2021/news-20211216-01.de.html [09:17:48] * Building fsfe.org/news/2022/index.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220112-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220121-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220127-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220201-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220202-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220224-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220225-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220310-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220315-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220316-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220323-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220328-01.de.html [09:17:48] * Building fsfe.org/news/2022/news-20220330-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220414-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220420-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220425-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220427-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220503-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220504-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220510-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220516-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220520-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220531-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220602-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220615-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220628-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220712-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220714-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220823-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220905-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220915-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20220928-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221004-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221026-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221026-02.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221104-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221104-02.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221118-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221121-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221205-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221206-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221209-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221212-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221214-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221215-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221215-02.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221219-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221220-01.de.html [09:17:49] * Building fsfe.org/news/2022/news-20221221-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230104-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230109-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230113-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230119-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230123-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230126-01.de.html [09:17:49] * Building fsfe.org/news/2023/news-20230215-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230220-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230222-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230227-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230301-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230308-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230321-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230313-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230323-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230323-02.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230412-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230413-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230418-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230425-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230428-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230508-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230509-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230511-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230511-02.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230515-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230515-02.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230524-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230606-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230614-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230623-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230629-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230629-02.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230712-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230719-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230719-02.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230724-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230807-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230815-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230824-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230825-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230831-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230829-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230906-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230907-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230915-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230920-01.de.html [09:17:50] * Building fsfe.org/news/2023/news-20230920-02.de.html [09:17:51] * Building fsfe.org/news/2023/news-20230926-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231011-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231017-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231020-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231025-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231102-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231106-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231108-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231110-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231113-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231113-02.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231115-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231116-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231201-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231207-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231211-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231214-01.de.html [09:17:51] * Building fsfe.org/news/2023/news-20231220-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240109-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240111-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240117-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240122-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240126-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240130-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240208-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240206-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240226-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240301-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240307-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240312-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240318-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240318-02.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240321-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240417-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240430-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240506-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240515-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240530-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240610-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240620-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240627-01.de.html [09:17:51] * Building fsfe.org/news/2024/news-20240628-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240701-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240709-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240715-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240719-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240726-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240808-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240809-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240812-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240813-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240828-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240911-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240911-02.de.html [09:17:52] * Building fsfe.org/news/2024/news-20240920-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241002-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241016-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241027-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241101-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241108-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241113-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241114-01.de.html [09:17:52] * Building fsfe.org/news/2024/news-20241121-01.de.html [09:17:52] * Building fsfe.org/news/archive-template.de.html [09:17:52] * Building fsfe.org/news/news.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-1.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-10.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-11.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-12.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-13.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-14.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-15.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-16.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-17.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-18.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-19.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-2.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-20.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-21.de.html [09:17:52] * Building fsfe.org/news/news/podcast/transcript/episode-22.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-23.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-24.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-25.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-3.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-4.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-5.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-6.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-7.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-8.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-9.de.html [09:17:53] * Building fsfe.org/news/news/podcast/transcript/episode-special-1.de.html [09:17:53] * Building fsfe.org/news/newsletter.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200904.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200905.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200906.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200907.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200908.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200909.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200910.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200911.de.html [09:17:53] * Building fsfe.org/news/nl/nl-200912.de.html [09:17:53] * Building fsfe.org/news/nl/nl-201001.de.html [09:17:53] * Building fsfe.org/news/nl/nl-201006.de.html [09:17:53] * Building fsfe.org/news/nl/nl-201007.de.html [09:17:53] * Building fsfe.org/news/nl/nl-201008.de.html [09:17:53] * Building fsfe.org/news/nl/nl-201009.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201010.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201011.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201012.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201101.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201102.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201103.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201104.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201105.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201106.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201107.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201108.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201109.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201110.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201111.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201112.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201201.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201202.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201203.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201204.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201205.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201206.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201207.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201208.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201209.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201210.de.html [09:17:54] * Building fsfe.org/news/nl/nl-201211.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201212.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201302.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201303.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201305.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201306.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201307.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201308.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201309.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201310.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201311.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201312.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201401.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201402.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201403.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201404.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201405.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201406.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201407.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201408.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201409.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201410.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201411.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201412.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201501.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201502.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201503.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201504.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201505.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201506.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201507.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201508.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201509.de.html [09:17:55] * Building fsfe.org/news/nl/nl-201510.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201511.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201512.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201602.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201603.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201604.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201605.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201606.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201607.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201608.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201609.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201610.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201611.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201612.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201702.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201703.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201704.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201705.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201706.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201709.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201707.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201710.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201711.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201712.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201802.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201803.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201804.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201805.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201806.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201807.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201809.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201810.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201811.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201812.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201902.de.html [09:17:56] * Building fsfe.org/news/nl/nl-201903.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201904.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201905.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201906.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201907.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201909.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201910.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201911.de.html [09:17:57] * Building fsfe.org/news/nl/nl-201912.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202001.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202002.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202004.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202005.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202006.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202007.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202008.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202009.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202010.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202011.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202012.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202101.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202102.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202103.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202104.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202105.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202106.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202107.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202109.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202110.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202111.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202112.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202201.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202202.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202203.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202204.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202205.de.html [09:17:57] * Building fsfe.org/news/nl/nl-202206.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202207.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202209.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202210.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202211.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202212.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202301.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202302.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202303.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202304.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202305.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202306.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202307.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202308.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202309.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202310.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202311.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202312.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202401.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202402.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202403.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202404.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202405.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202406.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202407.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202408.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202409.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202410.de.html [09:17:58] * Building fsfe.org/news/nl/nl-202411.de.html [09:17:58] * Building fsfe.org/news/podcast.de.html [09:17:58] * Building fsfe.org/news/podcast-opus.de.html [09:17:58] * Building fsfe.org/news/podcast/episode-1.de.html [09:17:58] * Building fsfe.org/news/podcast/episode-10.de.html [09:17:58] * Building fsfe.org/news/podcast/episode-12.de.html [09:17:58] * Building fsfe.org/news/podcast/episode-11.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-13.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-14.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-15.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-16.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-17.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-18.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-19.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-2.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-20.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-21.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-22.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-23.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-24.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-25.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-26.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-3.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-4.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-5.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-6.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-7.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-8.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-9.de.html [09:17:59] * Building fsfe.org/news/podcast/episode-special-1.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-1.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-10.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-11.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-12.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-13.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-14.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-15.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-16.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-17.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-18.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-19.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-2.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-20.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-21.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-22.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-23.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-24.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-25.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-26.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-3.de.html [09:17:59] * Building fsfe.org/news/podcast/transcript/episode-4.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-5.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-6.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-7.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-8.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-9.de.html [09:18:00] * Building fsfe.org/news/podcast/transcript/episode-special-1.de.html [09:18:00] * Building fsfe.org/order/cancel.de.html [09:18:00] * Building fsfe.org/order/order.de.html [09:18:00] * Building fsfe.org/order/size.de.html [09:18:00] * Building fsfe.org/order/thankyou.de.html [09:18:00] * Building fsfe.org/order/tmpl-concardis.de.html [09:18:00] * Building fsfe.org/order/tmpl-thankyou.de.html [09:18:00] * Building fsfe.org/press/press.de.html [09:18:00] * Building fsfe.org/search/search.de.html [09:18:00] * Building fsfe.org/tags/tagged.de.html [09:18:00] * Building fsfe.org/tags/tagged-2FA.de.html [09:18:00] * Building fsfe.org/tags/tagged-AI.de.html [09:18:00] * Building fsfe.org/tags/tagged-Belgium.de.html [09:18:00] * Building fsfe.org/tags/tagged-Bewustmaking.de.html [09:18:00] * Building fsfe.org/tags/tagged-Bewustzijn.de.html [09:18:00] * Building fsfe.org/tags/tagged-DMA.de.html [09:18:00] * Building fsfe.org/tags/tagged-Denmark.de.html [09:18:00] * Building fsfe.org/tags/tagged-Deutschland.de.html [09:18:00] * Building fsfe.org/tags/tagged-Estonia.de.html [09:18:00] * Building fsfe.org/tags/tagged-France.de.html [09:18:00] * Building fsfe.org/tags/tagged-Germany.de.html [09:18:00] * Building fsfe.org/tags/tagged-IEA.de.html [09:18:00] * Building fsfe.org/tags/tagged-Italia.de.html [09:18:00] * Building fsfe.org/tags/tagged-Italy.de.html [09:18:00] * Building fsfe.org/tags/tagged-Luxembourg.de.html [09:18:00] * Building fsfe.org/tags/tagged-Netherlands.de.html [09:18:00] * Building fsfe.org/tags/tagged-PR.de.html [09:18:00] * Building fsfe.org/tags/tagged-Poland.de.html [09:18:01] * Building fsfe.org/tags/tagged-Switzerland.de.html [09:18:01] * Building fsfe.org/tags/tagged-Taiwan.de.html [09:18:01] * Building fsfe.org/tags/tagged-ada-zangemann.de.html [09:18:01] * Building fsfe.org/tags/tagged-United.de.html [09:18:01] * Building fsfe.org/tags/tagged-anniversary.de.html [09:18:01] * Building fsfe.org/tags/tagged-annual-report.de.html [09:18:01] * Building fsfe.org/tags/tagged-antitrust.de.html [09:18:01] * Building fsfe.org/tags/tagged-at.de.html [09:18:01] * Building fsfe.org/tags/tagged-avm.de.html [09:18:01] * Building fsfe.org/tags/tagged-awareness.de.html [09:18:01] * Building fsfe.org/tags/tagged-ayc.de.html [09:18:01] * Building fsfe.org/tags/tagged-barcelona.de.html [09:18:01] * Building fsfe.org/tags/tagged-be.de.html [09:18:01] * Building fsfe.org/tags/tagged-bea.de.html [09:18:01] * Building fsfe.org/tags/tagged-beleid.de.html [09:18:01] * Building fsfe.org/tags/tagged-berlin.de.html [09:18:01] * Building fsfe.org/tags/tagged-bg.de.html [09:18:01] * Building fsfe.org/tags/tagged-by.de.html [09:18:01] * Building fsfe.org/tags/tagged-campaigns.de.html [09:18:01] * Building fsfe.org/tags/tagged-career.de.html [09:18:01] * Building fsfe.org/tags/tagged-ccc.de.html [09:18:02] * Building fsfe.org/tags/tagged-cfp.de.html [09:18:02] * Building fsfe.org/tags/tagged-ch.de.html [09:18:02] * Building fsfe.org/tags/tagged-cloud.de.html [09:18:02] * Building fsfe.org/tags/tagged-coc.de.html [09:18:02] * Building fsfe.org/tags/tagged-community.de.html [09:18:02] * Building fsfe.org/tags/tagged-community-meeting.de.html [09:18:02] * Building fsfe.org/tags/tagged-competition.de.html [09:18:02] * Building fsfe.org/tags/tagged-compliance.de.html [09:18:02] * Building fsfe.org/tags/tagged-copyright.de.html [09:18:02] * Building fsfe.org/tags/tagged-corona.de.html [09:18:02] * Building fsfe.org/tags/tagged-cz.de.html [09:18:02] * Building fsfe.org/tags/tagged-de.de.html [09:18:02] * Building fsfe.org/tags/tagged-device-neutrality.de.html [09:18:02] * Building fsfe.org/tags/tagged-deviceneutrality.de.html [09:18:02] * Building fsfe.org/tags/tagged-dfd.de.html [09:18:02] * Building fsfe.org/tags/tagged-digital-o-mat.de.html [09:18:03] * Building fsfe.org/tags/tagged-digital-single-market.de.html [09:18:03] * Building fsfe.org/tags/tagged-dk.de.html [09:18:03] * Building fsfe.org/tags/tagged-dma.de.html [09:18:03] * Building fsfe.org/tags/tagged-drm.de.html [09:18:03] * Building fsfe.org/tags/tagged-education.de.html [09:18:03] * Building fsfe.org/tags/tagged-ee.de.html [09:18:03] * Building fsfe.org/tags/tagged-eif.de.html [09:18:03] * Building fsfe.org/tags/tagged-elections.de.html [09:18:03] * Building fsfe.org/tags/tagged-electronic-voting.de.html [09:18:03] * Building fsfe.org/tags/tagged-en.de.html [09:18:03] * Building fsfe.org/tags/tagged-encryption.de.html [09:18:03] * Building fsfe.org/tags/tagged-enterprise.de.html [09:18:03] * Building fsfe.org/tags/tagged-es.de.html [09:18:03] * Building fsfe.org/tags/tagged-eura-slovakia.de.html [09:18:03] * Building fsfe.org/tags/tagged-european-commission.de.html [09:18:04] * Building fsfe.org/tags/tagged-european-court-justice.de.html [09:18:04] * Building fsfe.org/tags/tagged-european-parliament.de.html [09:18:04] * Building fsfe.org/tags/tagged-european-union.de.html [09:18:04] * Building fsfe.org/tags/tagged-european=union.de.html [09:18:04] * Building fsfe.org/tags/tagged-event.de.html [09:18:04] * Building fsfe.org/tags/tagged-fediverse.de.html [09:18:04] * Building fsfe.org/tags/tagged-fellowship.de.html [09:18:04] * Building fsfe.org/tags/tagged-fi.de.html [09:18:04] * Building fsfe.org/tags/tagged-fla.de.html [09:18:04] * Building fsfe.org/tags/tagged-fosdem.de.html [09:18:04] * Building fsfe.org/tags/tagged-fr.de.html [09:18:04] * Building fsfe.org/tags/tagged-frand.de.html [09:18:04] * Building fsfe.org/tags/tagged-freedomvote.de.html [09:18:05] * Building fsfe.org/tags/tagged-fsfe-summit.de.html [09:18:05] * Building fsfe.org/tags/tagged-fsfe20.de.html [09:18:05] * Building fsfe.org/tags/tagged-fspact.de.html [09:18:05] * Building fsfe.org/tags/tagged-funding.de.html [09:18:05] * Building fsfe.org/tags/tagged-fya.de.html [09:18:05] * Building fsfe.org/tags/tagged-ga.de.html [09:18:05] * Building fsfe.org/tags/tagged-gaming.de.html [09:18:05] * Building fsfe.org/tags/tagged-gb.de.html [09:18:05] * Building fsfe.org/tags/tagged-general-purpose-computing.de.html [09:18:05] * Building fsfe.org/tags/tagged-gnu.de.html [09:18:05] * Building fsfe.org/tags/tagged-google.de.html [09:18:05] * Building fsfe.org/tags/tagged-gpl.de.html [09:18:05] * Building fsfe.org/tags/tagged-gr.de.html [09:18:05] * Building fsfe.org/tags/tagged-hamburg-group.de.html [09:18:05] * Building fsfe.org/tags/tagged-helsinki.de.html [09:18:05] * Building fsfe.org/tags/tagged-hide.de.html [09:18:05] * Building fsfe.org/tags/tagged-highlights.de.html [09:18:06] * Building fsfe.org/tags/tagged-horizon2020.de.html [09:18:06] * Building fsfe.org/tags/tagged-hr.de.html [09:18:06] * Building fsfe.org/tags/tagged-hu.de.html [09:18:06] * Building fsfe.org/tags/tagged-huawei.de.html [09:18:06] * Building fsfe.org/tags/tagged-ie.de.html [09:18:06] * Building fsfe.org/tags/tagged-ilovefs.de.html [09:18:06] * Building fsfe.org/tags/tagged-ilovefs-report.de.html [09:18:06] * Building fsfe.org/tags/tagged-infobooth.de.html [09:18:06] * Building fsfe.org/tags/tagged-internal.de.html [09:18:06] * Building fsfe.org/tags/tagged-internship.de.html [09:18:06] * Building fsfe.org/tags/tagged-interview.de.html [09:18:06] * Building fsfe.org/tags/tagged-it.de.html [09:18:06] * Building fsfe.org/tags/tagged-jp.de.html [09:18:06] * Building fsfe.org/tags/tagged-juridisch.de.html [09:18:06] * Building fsfe.org/tags/tagged-koalition-freies-wissen.de.html [09:18:06] * Building fsfe.org/tags/tagged-legal.de.html [09:18:07] * Building fsfe.org/tags/tagged-licensing.de.html [09:18:07] * Building fsfe.org/tags/tagged-limux.de.html [09:18:07] * Building fsfe.org/tags/tagged-llw.de.html [09:18:07] * Building fsfe.org/tags/tagged-localgroup.de.html [09:18:07] * Building fsfe.org/tags/tagged-lt.de.html [09:18:07] * Building fsfe.org/tags/tagged-lu.de.html [09:18:07] * Building fsfe.org/tags/tagged-lv.de.html [09:18:07] * Building fsfe.org/tags/tagged-manchester.de.html [09:18:07] * Building fsfe.org/tags/tagged-meeting.de.html [09:18:07] * Building fsfe.org/tags/tagged-merchandise.de.html [09:18:07] * Building fsfe.org/tags/tagged-microsoft.de.html [09:18:07] * Building fsfe.org/tags/tagged-news.de.html [09:18:07] * Building fsfe.org/tags/tagged-newsletter.de.html [09:18:07] * Building fsfe.org/tags/tagged-ngi.de.html [09:18:08] * Building fsfe.org/tags/tagged-nl.de.html [09:18:08] * Building fsfe.org/tags/tagged-no.de.html [09:18:08] * Building fsfe.org/tags/tagged-office-suites.de.html [09:18:08] * Building fsfe.org/tags/tagged-open-justitia.de.html [09:18:08] * Building fsfe.org/tags/tagged-open-letter.de.html [09:18:08] * Building fsfe.org/tags/tagged-open-science.de.html [09:18:08] * Building fsfe.org/tags/tagged-openstandards.de.html [09:18:09] * Building fsfe.org/tags/tagged-panel.de.html [09:18:09] * Building fsfe.org/tags/tagged-pdfreaders.de.html [09:18:09] * Building fsfe.org/tags/tagged-pl.de.html [09:18:09] * Building fsfe.org/tags/tagged-pmpc.de.html [09:18:09] * Building fsfe.org/tags/tagged-podcast.de.html [09:18:09] * Building fsfe.org/tags/tagged-policy.de.html [09:18:09] * Building fsfe.org/tags/tagged-press.de.html [09:18:09] * Building fsfe.org/tags/tagged-privacy.de.html [09:18:10] * Building fsfe.org/tags/tagged-procurement.de.html [09:18:10] * Building fsfe.org/tags/tagged-pt.de.html [09:18:10] * Building fsfe.org/tags/tagged-public-administration.de.html [09:18:10] * Building fsfe.org/tags/tagged-radiodirective.de.html [09:18:10] * Building fsfe.org/tags/tagged-reuse.de.html [09:18:10] * Building fsfe.org/tags/tagged-rmll.de.html [09:18:10] * Building fsfe.org/tags/tagged-ro.de.html [09:18:10] * Building fsfe.org/tags/tagged-router-freedom.de.html [09:18:10] * Building fsfe.org/tags/tagged-routers.de.html [09:18:10] * Building fsfe.org/tags/tagged-rs.de.html [09:18:10] * Building fsfe.org/tags/tagged-samba.de.html [09:18:10] * Building fsfe.org/tags/tagged-savecodeshare.de.html [09:18:10] * Building fsfe.org/tags/tagged-se.de.html [09:18:10] * Building fsfe.org/tags/tagged-security.de.html [09:18:10] * Building fsfe.org/tags/tagged-sfd.de.html [09:18:11] * Building fsfe.org/tags/tagged-sfscon.de.html [09:18:11] * Building fsfe.org/tags/tagged-sha.de.html [09:18:11] * Building fsfe.org/tags/tagged-sk.de.html [09:18:11] * Building fsfe.org/tags/tagged-software-freedom.de.html [09:18:11] * Building fsfe.org/tags/tagged-sq.de.html [09:18:11] * Building fsfe.org/tags/tagged-sustainability.de.html [09:18:11] * Building fsfe.org/tags/tagged-swpat.de.html [09:18:11] * Building fsfe.org/tags/tagged-talk.de.html [09:18:11] * Building fsfe.org/tags/tagged-tech-teams.de.html [09:18:11] * Building fsfe.org/tags/tagged-tedective.de.html [09:18:11] * Building fsfe.org/tags/tagged-tools.de.html [09:18:11] * Building fsfe.org/tags/tagged-tr.de.html [09:18:11] * Building fsfe.org/tags/tagged-translations.de.html [09:18:11] * Building fsfe.org/tags/tagged-tw.de.html [09:18:11] * Building fsfe.org/tags/tagged-ua.de.html [09:18:11] * Building fsfe.org/tags/tagged-uk.de.html [09:18:11] * Building fsfe.org/tags/tagged-united-nations.de.html [09:18:11] * Building fsfe.org/tags/tagged-upcyclingandroid.de.html [09:18:11] * Building fsfe.org/tags/tagged-us.de.html [09:18:11] * Building fsfe.org/tags/tagged-w3c.de.html [09:18:11] * Building fsfe.org/tags/tagged-windows-tax.de.html [09:18:11] * Building fsfe.org/tags/tagged-women.de.html [09:18:12] * Building fsfe.org/tags/tagged-women-group.de.html [09:18:12] * Building fsfe.org/tags/tagged-workshop.de.html [09:18:12] * Building fsfe.org/tags/tagged-yh4f.de.html [09:18:12] * Building fsfe.org/tags/tagged-yh4f-project.de.html [09:18:12] * Building fsfe.org/tags/tagged-zooom.de.html [09:18:12] * Building fsfe.org/tags/tags.de.html [09:18:12] * Building fsfe.org/templates/concardis_relay.de.html [09:18:12] * Building fsfe.org/templates/registerevent/error.de.html [09:18:12] * Building fsfe.org/templates/registerevent/success.de.html [09:18:12] * Building pdfreaders.org/about.de.html [09:18:12] * Building pdfreaders.org/graphics.de.html [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/eo: No such file or directory [09:18:12] * Building pdfreaders.org/index.de.html [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/gl: No such file or directory [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/he: No such file or directory [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/eo: No such file or directory [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/gl: No such file or directory [09:18:12] cat: /srv/www/fsfe.org_git/global/languages/he: No such file or directory [09:18:12] * Building pdfreaders.org/os.de.html [09:18:12] * Building status.fsfe.org/fsfe.org/template.de.html [09:18:12] * Building status.fsfe.org/index.de.html [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/eo: No such file or directory [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/eo: No such file or directory [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/gl: No such file or directory [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/he: No such file or directory [09:18:13] * Building status.fsfe.org/test.fsfe.org/template.de.html [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/gl: No such file or directory [09:18:13] cat: /srv/www/fsfe.org_git/global/languages/he: No such file or directory [09:18:13] * Building status.fsfe.org/translations/index.de.html [09:18:14] * Copying file fsfe.org/search/index.js [09:18:17] Finishing phase 2
Target update: 5192 updated files
[09:18:17] Syncing files to bunsen.fsfeurope.org [09:18:18] sending incremental file list [09:18:18] drm.info/act-now.de.html [09:18:18] drm.info/citizen-rights.de.html [09:18:18] drm.info/creativity.de.html [09:18:18] drm.info/index.de.html [09:18:18] drm.info/losing-heritage.de.html [09:18:18] drm.info/privacy.de.html [09:18:18] drm.info/what-is-drm.de.html [09:18:18] fsfe.org/boilerplate.de.html [09:18:18] fsfe.org/index.de.html [09:18:18] fsfe.org/about/about.de.html [09:18:18] fsfe.org/about/codeofconduct.de.html [09:18:18] fsfe.org/about/contact.de.html [09:18:18] fsfe.org/about/fsfnetwork.de.html [09:18:18] fsfe.org/about/groups.de.html [09:18:18] fsfe.org/about/js-licences.de.html [09:18:18] fsfe.org/about/mission.de.html [09:18:18] fsfe.org/about/ourwork.de.html [09:18:18] fsfe.org/about/overview2010.de.html [09:18:18] fsfe.org/about/principles.de.html [09:18:18] fsfe.org/about/statement-20201220.de.html [09:18:18] fsfe.org/about/timeline.de.html [09:18:18] fsfe.org/about/transparency-commitment.de.html [09:18:18] fsfe.org/about/associates/associates.de.html [09:18:18] fsfe.org/about/funds/2001.de.html [09:18:18] fsfe.org/about/funds/2002.de.html [09:18:18] fsfe.org/about/funds/2003.de.html [09:18:18] fsfe.org/about/funds/2004.de.html [09:18:18] fsfe.org/about/funds/2005.de.html [09:18:18] fsfe.org/about/funds/2006.de.html [09:18:18] fsfe.org/about/funds/2007.de.html [09:18:18] fsfe.org/about/funds/2008.de.html [09:18:18] fsfe.org/about/funds/2009.de.html [09:18:18] fsfe.org/about/funds/2010.de.html [09:18:18] fsfe.org/about/funds/2011.de.html [09:18:18] fsfe.org/about/funds/2012.de.html [09:18:18] fsfe.org/about/funds/2013.de.html [09:18:18] fsfe.org/about/funds/2014.de.html [09:18:18] fsfe.org/about/funds/2015.de.html [09:18:18] fsfe.org/about/funds/2016.de.html [09:18:18] fsfe.org/about/funds/2017.de.html [09:18:18] fsfe.org/about/funds/2018.de.html [09:18:18] fsfe.org/about/funds/2019.de.html [09:18:18] fsfe.org/about/funds/2020.de.html [09:18:18] fsfe.org/about/funds/2021.de.html [09:18:18] fsfe.org/about/funds/2022.de.html [09:18:18] fsfe.org/about/funds/funds.de.html [09:18:18] fsfe.org/about/graphics/graphics.de.html [09:18:18] fsfe.org/about/graphics/sponsoring/sponsoring.de.html [09:18:18] fsfe.org/about/history/doi.de.html [09:18:18] fsfe.org/about/history/preamble.de.html [09:18:18] fsfe.org/about/jobs/index.de.html [09:18:18] fsfe.org/about/jobs/internship.de.html [09:18:18] fsfe.org/about/legal/imprint.de.html [09:18:18] fsfe.org/about/legal/legal.de.html [09:18:18] fsfe.org/about/people/index.de.html [09:18:18] fsfe.org/about/people/testimonials.de.html [09:18:18] fsfe.org/about/people/albers/albers.de.html [09:18:18] fsfe.org/about/people/bakker/bakker.de.html [09:18:18] fsfe.org/about/people/ceballos/ceballos.de.html [09:18:18] fsfe.org/about/people/gerloff/gerloff.de.html [09:18:18] fsfe.org/about/people/greve/cv.de.html [09:18:18] fsfe.org/about/people/greve/greve.de.html [09:18:18] fsfe.org/about/people/interviews/cryptie.de.html [09:18:18] fsfe.org/about/people/interviews/gkotsopoulou.de.html [09:18:18] fsfe.org/about/people/interviews/grun.de.html [09:18:18] fsfe.org/about/people/interviews/lequertier.de.html [09:18:18] fsfe.org/about/people/interviews/mueller.de.html [09:18:18] fsfe.org/about/people/interviews/ockers.de.html [09:18:18] fsfe.org/about/people/interviews/snow.de.html [09:18:18] fsfe.org/about/people/interviews/weitzhofer.de.html [09:18:18] fsfe.org/about/people/interviews/zerolo.de.html [09:18:18] fsfe.org/about/people/kirschner/kirschner.de.html [09:18:18] fsfe.org/about/people/ku/ku.de.html [09:18:18] fsfe.org/about/people/lasota/lasota.de.html [09:18:18] fsfe.org/about/people/mehl/mehl.de.html [09:18:18] fsfe.org/about/people/partsafyllidou/partsafyllidou.de.html [09:18:18] fsfe.org/about/people/repentinus/repentinus.de.html [09:18:18] fsfe.org/about/people/rikken/rikken.de.html [09:18:18] fsfe.org/about/people/roussos/roussos.de.html [09:18:18] fsfe.org/about/people/roy/roy.de.html [09:18:18] fsfe.org/about/people/sander/sander.de.html [09:18:18] fsfe.org/about/people/tobiasd/tobiasd.de.html [09:18:18] fsfe.org/about/softwarefreedom/testimonials.de.html [09:18:18] fsfe.org/activities/activities.de.html [09:18:18] fsfe.org/activities/awareness.de.html [09:18:18] fsfe.org/activities/legal.de.html [09:18:18] fsfe.org/activities/policy.de.html [09:18:18] fsfe.org/activities/15years/15years.de.html [09:18:18] fsfe.org/activities/20years/20years.de.html [09:18:18] fsfe.org/activities/ada-zangemann/book-reviews.de.html [09:18:18] fsfe.org/activities/ada-zangemann/index.de.html [09:18:18] fsfe.org/activities/ada-zangemann/letters.de.html [09:18:18] fsfe.org/activities/ada-zangemann/movie.de.html [09:18:18] fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.de.html [09:18:18] fsfe.org/activities/agnula/agnula.de.html [09:18:18] fsfe.org/activities/agnula/deliverable-1.3.1.de.html [09:18:18] fsfe.org/activities/agnula/java.de.html [09:18:18] fsfe.org/activities/agnula/license-faq.de.html [09:18:18] fsfe.org/activities/agnula/license.de.html [09:18:18] fsfe.org/activities/android/android.de.html [09:18:18] fsfe.org/activities/android/artwork.de.html [09:18:18] fsfe.org/activities/android/flashingdevices.de.html [09:18:18] fsfe.org/activities/android/help.de.html [09:18:18] fsfe.org/activities/android/is-flashing-legal.de.html [09:18:18] fsfe.org/activities/android/liberate.de.html [09:18:18] fsfe.org/activities/android/sustainability.de.html [09:18:18] fsfe.org/activities/android/workshops.de.html [09:18:18] fsfe.org/activities/android/artwork/DIN_A1.de.html [09:18:18] fsfe.org/activities/android/artwork/DIN_A7.de.html [09:18:18] fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.de.html [09:18:18] fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.de.html [09:18:18] fsfe.org/activities/apple-litigation/apple-litigation.de.html [09:18:18] fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.html [09:18:18] fsfe.org/activities/bgw/bgw.de.html [09:18:18] fsfe.org/activities/conf-events/conf-events.de.html [09:18:18] fsfe.org/activities/conf-events/report-cccamp23.de.html [09:18:18] fsfe.org/activities/deviceneutrality/index.de.html [09:18:18] fsfe.org/activities/dma/dma.de.html [09:18:18] fsfe.org/activities/drm/drm.de.html [09:18:18] fsfe.org/activities/drm/open-letter-ec-drm-html.de.html [09:18:18] fsfe.org/activities/drm/sony-rootkit-fiasco.de.html [09:18:18] fsfe.org/activities/elections/digitalomat.de.html [09:18:18] fsfe.org/activities/elections/freedomvote.de.html [09:18:18] fsfe.org/activities/elections/index.de.html [09:18:18] fsfe.org/activities/elections/letspromise.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/askyourcandidates.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/example-questions.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.de.html [09:18:18] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.de.html [09:18:18] fsfe.org/activities/eucd/eucd-fs.de.html [09:18:18] fsfe.org/activities/eucd/eucd.de.html [09:18:18] fsfe.org/activities/eura-slovakia/eura-slovakia.de.html [09:18:19] fsfe.org/activities/fla/fiduciary.de.html [09:18:19] fsfe.org/activities/fla/fla.de.html [09:18:19] fsfe.org/activities/foss4smes/foss4smes.de.html [09:18:19] fsfe.org/activities/fp6/focal.de.html [09:18:19] fsfe.org/activities/fp6/fp6.de.html [09:18:19] fsfe.org/activities/fp6/lafis.de.html [09:18:19] fsfe.org/activities/fp6/more-support.de.html [09:18:19] fsfe.org/activities/fp6/reasoning.de.html [09:18:19] fsfe.org/activities/fp6/recommendation.de.html [09:18:19] fsfe.org/activities/fp6/supporting-parties.de.html [09:18:19] fsfe.org/activities/fp7/fp7.de.html [09:18:19] fsfe.org/activities/gbn/gbn.de.html [09:18:19] fsfe.org/activities/gplv3/bangalore-rms-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/barcelona-moglen-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/barcelona-rms-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/barcelona-summaries.de.html [09:18:19] fsfe.org/activities/gplv3/brussels-rms-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/diff-draft1-draft2.de.html [09:18:19] fsfe.org/activities/gplv3/diff-draft2-draft3.de.html [09:18:19] fsfe.org/activities/gplv3/diff-gplv2-draft2.de.html [09:18:19] fsfe.org/activities/gplv3/drm-and-gplv3.de.html [09:18:19] fsfe.org/activities/gplv3/europe-gplv3-conference.de.html [09:18:19] fsfe.org/activities/gplv3/events.de.html [09:18:19] fsfe.org/activities/gplv3/fisl-rms-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/gplv3-torino.de.html [09:18:19] fsfe.org/activities/gplv3/gplv3.de.html [09:18:19] fsfe.org/activities/gplv3/links.de.html [09:18:19] fsfe.org/activities/gplv3/patents-and-gplv3.de.html [09:18:19] fsfe.org/activities/gplv3/timeline.de.html [09:18:19] fsfe.org/activities/gplv3/tokyo-ciaran-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/tokyo-rms-transcript.de.html [09:18:19] fsfe.org/activities/gplv3/topics.de.html [09:18:19] fsfe.org/activities/gplv3/torino-rms-transcript.de.html [09:18:19] fsfe.org/activities/igf/a2k.de.html [09:18:19] fsfe.org/activities/igf/dcos.de.html [09:18:19] fsfe.org/activities/igf/igf.de.html [09:18:19] fsfe.org/activities/igf/sovsoft.de.html [09:18:19] fsfe.org/activities/igf/wgig.de.html [09:18:19] fsfe.org/activities/ilovefs/index.de.html [09:18:19] fsfe.org/activities/ilovefs/artwork/artwork.de.html [09:18:19] fsfe.org/activities/ilovefs/report/report_2023.de.html [09:18:19] fsfe.org/activities/ilovefs/report/report_2024.de.html [09:18:19] fsfe.org/activities/ilovefs/whylovefs/gallery.de.html [09:18:19] fsfe.org/activities/ilovefs/whylovefs/whylovefs.de.html [09:18:19] fsfe.org/activities/ipred2/ipred2.de.html [09:18:19] fsfe.org/activities/ipred2/letter-april-2007.de.html [09:18:19] fsfe.org/activities/licence-questions/licence-questions.de.html [09:18:19] fsfe.org/activities/ln/application-confirm.de.html [09:18:19] fsfe.org/activities/ln/application-success.de.html [09:18:19] fsfe.org/activities/ln/application.de.html [09:18:19] fsfe.org/activities/ln/council.de.html [09:18:19] fsfe.org/activities/ln/llw-conf.de.html [09:18:19] fsfe.org/activities/ln/llw-past.de.html [09:18:19] fsfe.org/activities/ln/llw.de.html [09:18:19] fsfe.org/activities/ln/ln-procedures.de.html [09:18:19] fsfe.org/activities/ln/ln.de.html [09:18:19] fsfe.org/activities/ln/memberlist-confirm.de.html [09:18:19] fsfe.org/activities/ln/memberlist-success.de.html [09:18:19] fsfe.org/activities/ln/memberlist.de.html [09:18:19] fsfe.org/activities/ln/modpolicy.de.html [09:18:19] fsfe.org/activities/ln/rules.de.html [09:18:19] fsfe.org/activities/mankind/contact.de.html [09:18:19] fsfe.org/activities/mankind/done.de.html [09:18:19] fsfe.org/activities/mankind/help.de.html [09:18:19] fsfe.org/activities/mankind/links.de.html [09:18:19] fsfe.org/activities/mankind/mankind.de.html [09:18:19] fsfe.org/activities/mankind/press.de.html [09:18:19] fsfe.org/activities/mankind/support.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/index.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/press-release.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/conclusion.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/contact.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/ethical.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/facts.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/independence.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/origin.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/plan.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/social.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/support.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/technical.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/threats.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/unesco.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/why1.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/why2.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/workdone.de.html [09:18:19] fsfe.org/activities/mankind/lsm2002/slides/workinprogress.de.html [09:18:19] fsfe.org/activities/ms-vs-eu/article-20060421.de.html [09:18:19] fsfe.org/activities/ms-vs-eu/background.de.html [09:18:19] fsfe.org/activities/ms-vs-eu/intervention-20040930.de.html [09:18:19] fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.html [09:18:19] fsfe.org/activities/ms-vs-eu/timeline.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml-converter-hoax.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml-idiosyncrasies.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml-interoperability.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml-questions.de.html [09:18:19] fsfe.org/activities/msooxml/msooxml.de.html [09:18:19] fsfe.org/activities/ngi/ngi-past.de.html [09:18:19] fsfe.org/activities/ngi/ngi.de.html [09:18:19] fsfe.org/activities/nledu/nledu.de.html [09:18:19] fsfe.org/activities/pdfreaders/bug-report-uk.de.html [09:18:19] fsfe.org/activities/pdfreaders/bug-report.de.html [09:18:19] fsfe.org/activities/pdfreaders/buglist.de.html [09:18:19] fsfe.org/activities/pdfreaders/follow-up.de.html [09:18:19] fsfe.org/activities/pdfreaders/guideline.de.html [09:18:19] fsfe.org/activities/pdfreaders/letter.de.html [09:18:19] fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.html [09:18:19] fsfe.org/activities/pdfreaders/pdfreaders.de.html [09:18:19] fsfe.org/activities/pdfreaders/pdfsprint.de.html [09:18:19] fsfe.org/activities/pdfreaders/petition-error.de.html [09:18:19] fsfe.org/activities/pdfreaders/petition-success.de.html [09:18:19] fsfe.org/activities/pdfreaders/petition.de.html [09:18:19] fsfe.org/activities/publiccode/bea.de.html [09:18:19] fsfe.org/activities/publiccode/brochure.de.html [09:18:19] fsfe.org/activities/publiccode/get-active.de.html [09:18:19] fsfe.org/activities/publiccode/publiccode.de.html [09:18:19] fsfe.org/activities/radiodirective/radiodirective.de.html [09:18:19] fsfe.org/activities/radiodirective/statement.de.html [09:18:19] fsfe.org/activities/routers/routers.de.html [09:18:19] fsfe.org/activities/routers/timeline.de.html [09:18:19] fsfe.org/activities/self/self.de.html [09:18:19] fsfe.org/activities/stacs/belgrade-register.de.html [09:18:19] fsfe.org/activities/stacs/belgrade.de.html [09:18:19] fsfe.org/activities/stacs/london-register.de.html [09:18:19] fsfe.org/activities/stacs/london.de.html [09:18:19] fsfe.org/activities/stacs/stacs.de.html [09:18:19] fsfe.org/activities/stacs/tmpl-belgrade.de.html [09:18:19] fsfe.org/activities/stacs/tmpl-london.de.html [09:18:19] fsfe.org/activities/swpat/background.de.html [09:18:19] fsfe.org/activities/swpat/documents.de.html [09:18:19] fsfe.org/activities/swpat/fsfe-patstrat-response.de.html [09:18:19] fsfe.org/activities/swpat/how-the-eu-patent-system-works.de.html [09:18:19] fsfe.org/activities/swpat/letter-20040510.de.html [09:18:19] fsfe.org/activities/swpat/letter-20040531.de.html [09:18:19] fsfe.org/activities/swpat/letter-20040706.de.html [09:18:19] fsfe.org/activities/swpat/letter-20040802.de.html [09:18:19] fsfe.org/activities/swpat/letter-20040906.de.html [09:18:19] fsfe.org/activities/swpat/letter-20041004.de.html [09:18:19] fsfe.org/activities/swpat/letter-20041101.de.html [09:18:19] fsfe.org/activities/swpat/letter-20041206.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050103.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050207.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050307.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050405.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050502.de.html [09:18:19] fsfe.org/activities/swpat/letter-20050606.de.html [09:18:19] fsfe.org/activities/swpat/letter-20101222.de.html [09:18:19] fsfe.org/activities/swpat/letter-20110406.de.html [09:18:19] fsfe.org/activities/swpat/memorandum.de.html [09:18:19] fsfe.org/activities/swpat/nortel.de.html [09:18:19] fsfe.org/activities/swpat/novell-cptn.de.html [09:18:19] fsfe.org/activities/swpat/second-reading-bullets.de.html [09:18:19] fsfe.org/activities/swpat/status.de.html [09:18:19] fsfe.org/activities/swpat/swpat.de.html [09:18:19] fsfe.org/activities/swpat/current/model-letter-companies.de.html [09:18:19] fsfe.org/activities/swpat/current/unitary-patent.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool1.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool2.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool3.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool4.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool5.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool6.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool7.de.html [09:18:19] fsfe.org/activities/tgs/tagatschool8.de.html [09:18:19] fsfe.org/activities/tgs/tgs.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/application-confirm.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/application-success.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/howtoupcycle.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/individual-signatures.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/informationmaterial.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/is-flashing-legal.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/openletter.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.html [09:18:19] fsfe.org/activities/upcyclingandroid/workshops.de.html [09:18:19] fsfe.org/activities/whyfs/whyfs.de.html [09:18:19] fsfe.org/activities/wipo/fser.de.html [09:18:19] fsfe.org/activities/wipo/iprip.de.html [09:18:19] fsfe.org/activities/wipo/statement-20050413.de.html [09:18:19] fsfe.org/activities/wipo/statement-20050415.de.html [09:18:19] fsfe.org/activities/wipo/statement-20050620.de.html [09:18:19] fsfe.org/activities/wipo/statement-20050721.de.html [09:18:19] fsfe.org/activities/wipo/statement-20050930.de.html [09:18:19] fsfe.org/activities/wipo/statement-20060223.de.html [09:18:19] fsfe.org/activities/wipo/statement-20060628.de.html [09:18:19] fsfe.org/activities/wipo/statement-20070928.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090324.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090325.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090327.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090420-01.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090420-02.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090430-01.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090430-02.de.html [09:18:19] fsfe.org/activities/wipo/statement-20090501.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100125-01.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100125-02.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100125-03.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100125.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100127-01.de.html [09:18:19] fsfe.org/activities/wipo/statement-20100127-02.de.html [09:18:19] fsfe.org/activities/wipo/statement-20101013.de.html [09:18:19] fsfe.org/activities/wipo/statement-20101124-01.de.html [09:18:19] fsfe.org/activities/wipo/statement-20101124-02.de.html [09:18:19] fsfe.org/activities/wipo/wipo.de.html [09:18:19] fsfe.org/activities/wipo/wiwo.de.html [09:18:19] fsfe.org/activities/wsis/cs-benchmarks-03-11-14.de.html [09:18:19] fsfe.org/activities/wsis/debriefing-geneva.de.html [09:18:19] fsfe.org/activities/wsis/debriefing-paris.de.html [09:18:19] fsfe.org/activities/wsis/event-03-12-10.de.html [09:18:19] fsfe.org/activities/wsis/fs.de.html [09:18:19] fsfe.org/activities/wsis/issues.de.html [09:18:19] fsfe.org/activities/wsis/ps-20030923.de.html [09:18:19] fsfe.org/activities/wsis/wsis-and-software.de.html [09:18:19] fsfe.org/activities/wsis/wsis.de.html [09:18:19] fsfe.org/activities/yh4f/faq.de.html [09:18:19] fsfe.org/activities/yh4f/index.de.html [09:18:19] fsfe.org/activities/yh4f/jury.de.html [09:18:19] fsfe.org/activities/yh4f/media.de.html [09:18:19] fsfe.org/activities/yh4f/register-confirm.de.html [09:18:19] fsfe.org/activities/yh4f/register-success.de.html [09:18:19] fsfe.org/activities/zooom/zooom.de.html [09:18:19] fsfe.org/contact/email-updates.de.html [09:18:19] fsfe.org/contact/projects-call/projects-call.de.html [09:18:19] fsfe.org/contact/projects-call/submission-confirm.de.html [09:18:19] fsfe.org/contact/projects-call/submission-success.de.html [09:18:19] fsfe.org/contribute/contribute.de.html [09:18:19] fsfe.org/contribute/getyourgraphic.de.html [09:18:19] fsfe.org/contribute/promotion-materials-archive.de.html [09:18:19] fsfe.org/contribute/spreadtheword-freebie.de.html [09:18:19] fsfe.org/contribute/spreadtheword-ordererror.de.html [09:18:19] fsfe.org/contribute/spreadtheword-orderthanks.de.html [09:18:19] fsfe.org/contribute/spreadtheword.de.html [09:18:19] fsfe.org/contribute/advocacy/cwfs.de.html [09:18:19] fsfe.org/contribute/designers/designers.de.html [09:18:19] fsfe.org/contribute/designers/styleguide.de.html [09:18:19] fsfe.org/contribute/editors/editorial-guidelines.de.html [09:18:19] fsfe.org/contribute/editors/editors.de.html [09:18:19] fsfe.org/contribute/translators/translators.de.html [09:18:19] fsfe.org/contribute/translators/wordlist.de.html [09:18:19] fsfe.org/contribute/web/features.de.html [09:18:19] fsfe.org/contribute/web/web.de.html [09:18:19] fsfe.org/donate/donate.de.html [09:18:19] fsfe.org/donate/germany.de.html [09:18:19] fsfe.org/donate/hardware.de.html [09:18:19] fsfe.org/donate/letter-20041209.de.html [09:18:19] fsfe.org/donate/letter-2009.de.html [09:18:19] fsfe.org/donate/letter-2011.de.html [09:18:19] fsfe.org/donate/luxembourg.de.html [09:18:19] fsfe.org/donate/netherlands.de.html [09:18:19] fsfe.org/donate/payment.de.html [09:18:19] fsfe.org/donate/switzerland.de.html [09:18:19] fsfe.org/donate/thankgnus-2001.de.html [09:18:19] fsfe.org/donate/thankgnus-2002.de.html [09:18:19] fsfe.org/donate/thankgnus-2003.de.html [09:18:19] fsfe.org/donate/thankgnus-2004.de.html [09:18:19] fsfe.org/donate/thankgnus-2005.de.html [09:18:19] fsfe.org/donate/thankgnus-2006.de.html [09:18:19] fsfe.org/donate/thankgnus-2007.de.html [09:18:19] fsfe.org/donate/thankgnus-2008.de.html [09:18:19] fsfe.org/donate/thankgnus-2009.de.html [09:18:19] fsfe.org/donate/thankgnus-2010.de.html [09:18:19] fsfe.org/donate/thankgnus-2011.de.html [09:18:19] fsfe.org/donate/thankgnus-2012.de.html [09:18:19] fsfe.org/donate/thankgnus-2013.de.html [09:18:19] fsfe.org/donate/thankgnus-2014.de.html [09:18:19] fsfe.org/donate/thankgnus-2015.de.html [09:18:19] fsfe.org/donate/thankgnus-2016.de.html [09:18:19] fsfe.org/donate/thankgnus-2017.de.html [09:18:20] fsfe.org/donate/thankgnus-2018.de.html [09:18:20] fsfe.org/donate/thankgnus-2019.de.html [09:18:20] fsfe.org/donate/thankgnus-2020.de.html [09:18:20] fsfe.org/donate/thankgnus-2021.de.html [09:18:20] fsfe.org/donate/thankgnus-2022.de.html [09:18:20] fsfe.org/donate/thankgnus-2023.de.html [09:18:20] fsfe.org/donate/thankgnus-2024.de.html [09:18:20] fsfe.org/donate/thankgnus.de.html [09:18:20] fsfe.org/donate/thankyou.de.html [09:18:20] fsfe.org/error/400.de.html [09:18:20] fsfe.org/error/401.de.html [09:18:20] fsfe.org/error/403.de.html [09:18:20] fsfe.org/error/404.de.html [09:18:20] fsfe.org/error/405.de.html [09:18:20] fsfe.org/error/408.de.html [09:18:20] fsfe.org/error/410.de.html [09:18:20] fsfe.org/error/411.de.html [09:18:20] fsfe.org/error/412.de.html [09:18:20] fsfe.org/error/413.de.html [09:18:20] fsfe.org/error/414.de.html [09:18:20] fsfe.org/error/415.de.html [09:18:20] fsfe.org/error/500.de.html [09:18:20] fsfe.org/error/501.de.html [09:18:20] fsfe.org/error/502.de.html [09:18:20] fsfe.org/error/503.de.html [09:18:20] fsfe.org/events/SFD-2010.de.html [09:18:20] fsfe.org/events/archive-template.de.html [09:18:20] fsfe.org/events/events.de.html [09:18:20] fsfe.org/events/fscons-2010.de.html [09:18:20] fsfe.org/events/2004/index.de.html [09:18:20] fsfe.org/events/2004/picnic.de.html [09:18:20] fsfe.org/events/2004/FISL/fisl.de.html [09:18:20] fsfe.org/events/2005/index.de.html [09:18:20] fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.de.html [09:18:20] fsfe.org/events/2005/wsf-brazil/wsf-brazil.de.html [09:18:20] fsfe.org/events/2006/index.de.html [09:18:20] fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.de.html [09:18:20] fsfe.org/events/2007/index.de.html [09:18:20] fsfe.org/events/2008/index.de.html [09:18:20] fsfe.org/events/2009/index.de.html [09:18:20] fsfe.org/events/2010/index.de.html [09:18:20] fsfe.org/events/2011/index.de.html [09:18:20] fsfe.org/events/2011/lnm-award-debian.de.html [09:18:20] fsfe.org/events/2012/fscons-2012.de.html [09:18:20] fsfe.org/events/2012/index.de.html [09:18:20] fsfe.org/events/2013/index.de.html [09:18:20] fsfe.org/events/2013/linuxtag-2013.de.html [09:18:20] fsfe.org/events/2013/panel-btw2013.de.html [09:18:20] fsfe.org/events/2013/rmll-2-2013.de.html [09:18:20] fsfe.org/events/2013/rmll-2013.de.html [09:18:20] fsfe.org/events/2014/index.de.html [09:18:20] fsfe.org/events/2015/index.de.html [09:18:20] fsfe.org/events/2016/index.de.html [09:18:20] fsfe.org/events/2016/summit/event-20160616-01.de.html [09:18:20] fsfe.org/events/2016/summit/event-20161106-01.de.html [09:18:20] fsfe.org/events/2016/summit/event-20161106-02.de.html [09:18:20] fsfe.org/events/2017/index.de.html [09:18:20] fsfe.org/events/2018/index.de.html [09:18:20] fsfe.org/events/2019/index.de.html [09:18:20] fsfe.org/events/2020/index.de.html [09:18:20] fsfe.org/events/2021/index.de.html [09:18:20] fsfe.org/events/2022/index.de.html [09:18:20] fsfe.org/events/clt/clt-bus.de.html [09:18:20] fsfe.org/events/clt/clt-hotel.de.html [09:18:20] fsfe.org/events/tools/eventregistration.de.html [09:18:20] fsfe.org/freesoftware/artificial-intelligence.de.html [09:18:20] fsfe.org/freesoftware/comparison.de.html [09:18:20] fsfe.org/freesoftware/democracy.de.html [09:18:20] fsfe.org/freesoftware/freesoftware.de.html [09:18:20] fsfe.org/freesoftware/gnuproject.de.html [09:18:20] fsfe.org/freesoftware/secure-boot.de.html [09:18:20] fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.html [09:18:20] fsfe.org/freesoftware/education/argumentation.de.html [09:18:20] fsfe.org/freesoftware/education/edu-related-content.de.html [09:18:20] fsfe.org/freesoftware/education/education.de.html [09:18:20] fsfe.org/freesoftware/education/eduteam.de.html [09:18:20] fsfe.org/freesoftware/legal/faq.de.html [09:18:20] fsfe.org/freesoftware/legal/led.de.html [09:18:20] fsfe.org/freesoftware/legal/legal.de.html [09:18:20] fsfe.org/freesoftware/procurement/mEUcrosoft.de.html [09:18:20] fsfe.org/freesoftware/procurement/procurement.de.html [09:18:20] fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.de.html [09:18:20] fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.de.html [09:18:20] fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.de.html [09:18:20] fsfe.org/freesoftware/standards/bsa-letter-analysis.de.html [09:18:20] fsfe.org/freesoftware/standards/bt-open-letter.de.html [09:18:20] fsfe.org/freesoftware/standards/def.de.html [09:18:20] fsfe.org/freesoftware/standards/dfd.de.html [09:18:20] fsfe.org/freesoftware/standards/eif-v3.de.html [09:18:20] fsfe.org/freesoftware/standards/eifv2-01.de.html [09:18:20] fsfe.org/freesoftware/standards/eifv2.de.html [09:18:20] fsfe.org/freesoftware/standards/guardian-open-letter.de.html [09:18:20] fsfe.org/freesoftware/standards/minimalisticstandards.de.html [09:18:20] fsfe.org/freesoftware/standards/ps.de.html [09:18:20] fsfe.org/freesoftware/standards/standards.de.html [09:18:20] fsfe.org/freesoftware/standards/transparency-letter.de.html [09:18:20] fsfe.org/freesoftware/standards/uk-standards-consultation.de.html [09:18:20] fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.de.html [09:18:20] fsfe.org/freesoftware/sustainability/sustainability.de.html [09:18:20] fsfe.org/internal/bc.de.html [09:18:20] fsfe.org/internal/er.de.html [09:18:20] fsfe.org/internal/nt.de.html [09:18:20] fsfe.org/internal/pd-result.de.html [09:18:20] fsfe.org/internal/pd.de.html [09:18:20] fsfe.org/internal/pt.de.html [09:18:20] fsfe.org/internal/rc-result.de.html [09:18:20] fsfe.org/internal/rc.de.html [09:18:20] fsfe.org/news/archive-template.de.html [09:18:20] fsfe.org/news/news.de.html [09:18:20] fsfe.org/news/newsletter.de.html [09:18:20] fsfe.org/news/podcast-opus.de.html [09:18:20] fsfe.org/news/podcast.de.html [09:18:20] fsfe.org/news/2001/article-13.12.2001.de.html [09:18:20] fsfe.org/news/2001/article-24.9.2001.de.html [09:18:20] fsfe.org/news/2001/article2001-10-20-01.de.html [09:18:20] fsfe.org/news/2001/article2001-12-17-01.de.html [09:18:20] fsfe.org/news/2001/index.de.html [09:18:20] fsfe.org/news/2002/article-25.04.2002.de.html [09:18:20] fsfe.org/news/2002/article-30.9.2002.de.html [09:18:20] fsfe.org/news/2002/article2002-01-18-01.de.html [09:18:20] fsfe.org/news/2002/index.de.html [09:18:20] fsfe.org/news/2003/commissione-meo-presentazione.de.html [09:18:20] fsfe.org/news/2003/commissione-meo-risposte.de.html [09:18:20] fsfe.org/news/2003/index.de.html [09:18:20] fsfe.org/news/2003/lettera_MIUR-2003-07-16.de.html [09:18:20] fsfe.org/news/2003/news-20030211-01.de.html [09:18:20] fsfe.org/news/2003/news-20030602-01.de.html [09:18:20] fsfe.org/news/2003/vsi-studie.de.html [09:18:20] fsfe.org/news/2004/cie.de.html [09:18:20] fsfe.org/news/2004/cw-interview.de.html [09:18:20] fsfe.org/news/2004/index.de.html [09:18:20] fsfe.org/news/2004/navigator-20040521.de.html [09:18:20] fsfe.org/news/2004/navigator-20040624.de.html [09:18:20] fsfe.org/news/2004/navigator-20040917.de.html [09:18:20] fsfe.org/news/2004/navigator-20040930.de.html [09:18:20] fsfe.org/news/2004/navigator-20041129.de.html [09:18:20] fsfe.org/news/2004/news-20040510-01.de.html [09:18:20] fsfe.org/news/2004/news-20040621-01.de.html [09:18:20] fsfe.org/news/2004/news-20040701-01.de.html [09:18:20] fsfe.org/news/2004/news-20040727-01.de.html [09:18:20] fsfe.org/news/2005/index.de.html [09:18:20] fsfe.org/news/2005/letter-20050511-it-mep.de.html [09:18:20] fsfe.org/news/2005/news-20050507-01.de.html [09:18:20] fsfe.org/news/2006/index.de.html [09:18:20] fsfe.org/news/2007/index.de.html [09:18:20] fsfe.org/news/2007/news-20070630-01.de.html [09:18:20] fsfe.org/news/2007/news-20071220-01.de.html [09:18:20] fsfe.org/news/2007/news-20071221-01.de.html [09:18:20] fsfe.org/news/2008/freedom-not-fear.de.html [09:18:20] fsfe.org/news/2008/gnu-25-years.de.html [09:18:20] fsfe.org/news/2008/index.de.html [09:18:20] fsfe.org/news/2008/news-20080118-01.de.html [09:18:20] fsfe.org/news/2008/news-20080214-01.de.html [09:18:20] fsfe.org/news/2008/news-20080220-01.de.html [09:18:20] fsfe.org/news/2008/news-20080222-01.de.html [09:18:20] fsfe.org/news/2008/news-20080228-01.de.html [09:18:20] fsfe.org/news/2008/news-20080301-01.de.html [09:18:20] fsfe.org/news/2008/news-20080305-01.de.html [09:18:20] fsfe.org/news/2008/news-20081202-02.de.html [09:18:20] fsfe.org/news/2008/news-20081208-01.de.html [09:18:20] fsfe.org/news/2008/news-20081210-01.de.html [09:18:20] fsfe.org/news/2008/news-20081215-01.de.html [09:18:20] fsfe.org/news/2009/index.de.html [09:18:20] fsfe.org/news/2009/news-20090120-02.de.html [09:18:20] fsfe.org/news/2009/news-20090123-01.de.html [09:18:20] fsfe.org/news/2009/news-20090202-01.de.html [09:18:20] fsfe.org/news/2009/news-20090227-01.de.html [09:18:20] fsfe.org/news/2009/news-20090301-01.de.html [09:18:20] fsfe.org/news/2009/news-20090311-01.de.html [09:18:20] fsfe.org/news/2009/news-20090323-01.de.html [09:18:20] fsfe.org/news/2009/news-20090325-01.de.html [09:18:20] fsfe.org/news/2009/news-20090411-01.de.html [09:18:20] fsfe.org/news/2009/news-20090414-01.de.html [09:18:20] fsfe.org/news/2009/news-20090418-01.de.html [09:18:20] fsfe.org/news/2009/news-20090430-01.de.html [09:18:20] fsfe.org/news/2009/news-20090515-01.de.html [09:18:20] fsfe.org/news/2009/news-20090601-01.de.html [09:18:20] fsfe.org/news/2009/news-20090604-01.de.html [09:18:20] fsfe.org/news/2009/news-20090610-01.de.html [09:18:20] fsfe.org/news/2009/news-20090620-01.de.html [09:18:20] fsfe.org/news/2009/news-20090624-01.de.html [09:18:20] fsfe.org/news/2009/news-20090728-01.de.html [09:18:20] fsfe.org/news/2009/news-20090831-01.de.html [09:18:20] fsfe.org/news/2009/news-20090908-01.de.html [09:18:20] fsfe.org/news/2009/news-20090921-01.de.html [09:18:20] fsfe.org/news/2009/news-20091005-01.de.html [09:18:20] fsfe.org/news/2009/news-20091006-01.de.html [09:18:20] fsfe.org/news/2009/news-20091008-01.de.html [09:18:20] fsfe.org/news/2009/news-20091019-01.de.html [09:18:20] fsfe.org/news/2009/news-20091023-02.de.html [09:18:20] fsfe.org/news/2009/news-20091109-01.de.html [09:18:20] fsfe.org/news/2009/news-20091109-02.de.html [09:18:20] fsfe.org/news/2009/news-20091118-01.de.html [09:18:20] fsfe.org/news/2009/news-20091127-01.de.html [09:18:20] fsfe.org/news/2009/news-20091216-01.de.html [09:18:20] fsfe.org/news/2009/nyr.de.html [09:18:21] fsfe.org/news/2010/index.de.html [09:18:21] fsfe.org/news/2010/news-20100126-01.de.html [09:18:21] fsfe.org/news/2010/news-20100129-01.de.html [09:18:21] fsfe.org/news/2010/news-20100212-01.de.html [09:18:21] fsfe.org/news/2010/news-20100222-01.de.html [09:18:21] fsfe.org/news/2010/news-20100302-01.de.html [09:18:21] fsfe.org/news/2010/news-20100305-01.de.html [09:18:21] fsfe.org/news/2010/news-20100324-01.de.html [09:18:21] fsfe.org/news/2010/news-20100330-01.de.html [09:18:21] fsfe.org/news/2010/news-20100331-01.de.html [09:18:21] fsfe.org/news/2010/news-20100428-01.de.html [09:18:21] fsfe.org/news/2010/news-20100508-01.de.html [09:18:21] fsfe.org/news/2010/news-20100510-01.de.html [09:18:21] fsfe.org/news/2010/news-20100519-01.de.html [09:18:21] fsfe.org/news/2010/news-20100702-01.de.html [09:18:21] fsfe.org/news/2010/news-20100705-01.de.html [09:18:21] fsfe.org/news/2010/news-20100802-01.de.html [09:18:21] fsfe.org/news/2010/news-20100803-01.de.html [09:18:21] fsfe.org/news/2010/news-20100907-01.de.html [09:18:21] fsfe.org/news/2010/news-20100913-01.de.html [09:18:21] fsfe.org/news/2010/news-20101016-01.de.html [09:18:21] fsfe.org/news/2010/news-20101018-01.de.html [09:18:21] fsfe.org/news/2010/news-20101102-01.de.html [09:18:21] fsfe.org/news/2010/news-20101108-01.de.html [09:18:21] fsfe.org/news/2010/news-20101207-01.de.html [09:18:21] fsfe.org/news/2010/news-20101216-01.de.html [09:18:21] fsfe.org/news/2010/news-20101217-01.de.html [09:18:21] fsfe.org/news/2010/th-eulogy-20100508.de.html [09:18:21] fsfe.org/news/2011/index.de.html [09:18:21] fsfe.org/news/2011/mapping-uk.de.html [09:18:21] fsfe.org/news/2011/news-20110113-01.de.html [09:18:21] fsfe.org/news/2011/news-20110113-02.de.html [09:18:21] fsfe.org/news/2011/news-20110201-01.de.html [09:18:21] fsfe.org/news/2011/news-20110202-01.de.html [09:18:21] fsfe.org/news/2011/news-20110202-02.de.html [09:18:21] fsfe.org/news/2011/news-20110209-01.de.html [09:18:21] fsfe.org/news/2011/news-20110214-01.de.html [09:18:21] fsfe.org/news/2011/news-20110215-01.de.html [09:18:21] fsfe.org/news/2011/news-20110225-01.de.html [09:18:21] fsfe.org/news/2011/news-20110301-01.de.html [09:18:21] fsfe.org/news/2011/news-20110310-01.de.html [09:18:21] fsfe.org/news/2011/news-20110318-01.de.html [09:18:21] fsfe.org/news/2011/news-20110321-01.de.html [09:18:21] fsfe.org/news/2011/news-20110325-01.de.html [09:18:21] fsfe.org/news/2011/news-20110330-01.de.html [09:18:21] fsfe.org/news/2011/news-20110330-02.de.html [09:18:21] fsfe.org/news/2011/news-20110330-03.de.html [09:18:21] fsfe.org/news/2011/news-20110330-04.de.html [09:18:21] fsfe.org/news/2011/news-20110401-01.de.html [09:18:21] fsfe.org/news/2011/news-20110412-01.de.html [09:18:21] fsfe.org/news/2011/news-20110415-01.de.html [09:18:21] fsfe.org/news/2011/news-20110418-01.de.html [09:18:21] fsfe.org/news/2011/news-20110420-01.de.html [09:18:21] fsfe.org/news/2011/news-20110421-01.de.html [09:18:21] fsfe.org/news/2011/news-20110502-01.de.html [09:18:21] fsfe.org/news/2011/news-20110511-01.de.html [09:18:21] fsfe.org/news/2011/news-20110520-01.de.html [09:18:21] fsfe.org/news/2011/news-20110523-01.de.html [09:18:21] fsfe.org/news/2011/news-20110525-01.de.html [09:18:21] fsfe.org/news/2011/news-20110608-01.de.html [09:18:21] fsfe.org/news/2011/news-20110620-01.de.html [09:18:21] fsfe.org/news/2011/news-20110622-01.de.html [09:18:21] fsfe.org/news/2011/news-20110718-01.de.html [09:18:21] fsfe.org/news/2011/news-20110809-01.de.html [09:18:21] fsfe.org/news/2011/news-20110913-01.de.html [09:18:21] fsfe.org/news/2011/news-20110919-01.de.html [09:18:21] fsfe.org/news/2011/news-20111025-01.de.html [09:18:21] fsfe.org/news/2011/news-20111107-01.de.html [09:18:21] fsfe.org/news/2011/news-20111110-01.de.html [09:18:21] fsfe.org/news/2011/news-20111114-01.de.html [09:18:21] fsfe.org/news/2011/news-20111117-01.de.html [09:18:21] fsfe.org/news/2011/news-20111122-01.de.html [09:18:21] fsfe.org/news/2011/news-20111128-01.de.html [09:18:21] fsfe.org/news/2011/news-20111128-02.de.html [09:18:21] fsfe.org/news/2011/news-20111201-01.de.html [09:18:21] fsfe.org/news/2011/news-20111201-02.de.html [09:18:21] fsfe.org/news/2011/news-20111206-01.de.html [09:18:21] fsfe.org/news/2011/news-20111208-01.de.html [09:18:21] fsfe.org/news/2011/news-20111208-02.de.html [09:18:21] fsfe.org/news/2011/news-20111213-01.de.html [09:18:21] fsfe.org/news/2011/news-20111213-02.de.html [09:18:21] fsfe.org/news/2011/news-20111220-01.de.html [09:18:21] fsfe.org/news/2012/index.de.html [09:18:21] fsfe.org/news/2012/news-20120109-02.de.html [09:18:21] fsfe.org/news/2012/news-20120110-01.de.html [09:18:21] fsfe.org/news/2012/news-20120110-02.de.html [09:18:21] fsfe.org/news/2012/news-20120120-01.de.html [09:18:21] fsfe.org/news/2012/news-20120126-01.de.html [09:18:21] fsfe.org/news/2012/news-20120130-01.de.html [09:18:21] fsfe.org/news/2012/news-20120131-01.de.html [09:18:21] fsfe.org/news/2012/news-20120202-01.de.html [09:18:21] fsfe.org/news/2012/news-20120202-02.de.html [09:18:21] fsfe.org/news/2012/news-20120204-01.de.html [09:18:21] fsfe.org/news/2012/news-20120209-01.de.html [09:18:21] fsfe.org/news/2012/news-20120210-01.de.html [09:18:21] fsfe.org/news/2012/news-20120214-01.de.html [09:18:21] fsfe.org/news/2012/news-20120223-01.de.html [09:18:21] fsfe.org/news/2012/news-20120228-01.de.html [09:18:21] fsfe.org/news/2012/news-20120303-01.de.html [09:18:21] fsfe.org/news/2012/news-20120321-01.de.html [09:18:21] fsfe.org/news/2012/news-20120322-01.de.html [09:18:21] fsfe.org/news/2012/news-20120323-02.de.html [09:18:21] fsfe.org/news/2012/news-20120323-03.de.html [09:18:21] fsfe.org/news/2012/news-20120328-01.de.html [09:18:21] fsfe.org/news/2012/news-20120328-02.de.html [09:18:21] fsfe.org/news/2012/news-20120330-01.de.html [09:18:21] fsfe.org/news/2012/news-20120402-01.de.html [09:18:21] fsfe.org/news/2012/news-20120405-01.de.html [09:18:21] fsfe.org/news/2012/news-20120412-01.de.html [09:18:21] fsfe.org/news/2012/news-20120412-02.de.html [09:18:21] fsfe.org/news/2012/news-20120425-01.de.html [09:18:21] fsfe.org/news/2012/news-20120425-02.de.html [09:18:21] fsfe.org/news/2012/news-20120426-01.de.html [09:18:21] fsfe.org/news/2012/news-20120501-02.de.html [09:18:21] fsfe.org/news/2012/news-20120502-01.de.html [09:18:21] fsfe.org/news/2012/news-20120508-01.de.html [09:18:21] fsfe.org/news/2012/news-20120509-01.de.html [09:18:21] fsfe.org/news/2012/news-20120509-02.de.html [09:18:21] fsfe.org/news/2012/news-20120525-01.de.html [09:18:21] fsfe.org/news/2012/news-20120528-01.de.html [09:18:21] fsfe.org/news/2012/news-20120601-02.de.html [09:18:21] fsfe.org/news/2012/news-20120607-01.de.html [09:18:21] fsfe.org/news/2012/news-20120616-01.de.html [09:18:21] fsfe.org/news/2012/news-20120619-01.de.html [09:18:21] fsfe.org/news/2012/news-20120627-01.de.html [09:18:21] fsfe.org/news/2012/news-20120711-01.de.html [09:18:21] fsfe.org/news/2012/news-20120730-01.de.html [09:18:21] fsfe.org/news/2012/news-20120730-02.de.html [09:18:21] fsfe.org/news/2012/news-20120831-01.de.html [09:18:21] fsfe.org/news/2012/news-20120907-01.de.html [09:18:21] fsfe.org/news/2012/news-20120918-01.de.html [09:18:21] fsfe.org/news/2012/news-20120920-01.de.html [09:18:21] fsfe.org/news/2012/news-20120921-01.de.html [09:18:21] fsfe.org/news/2012/news-20120925-01.de.html [09:18:21] fsfe.org/news/2012/news-20121018-01.de.html [09:18:21] fsfe.org/news/2012/news-20121022-01.de.html [09:18:21] fsfe.org/news/2012/news-20121101-02.de.html [09:18:21] fsfe.org/news/2012/news-20121102-01.de.html [09:18:21] fsfe.org/news/2012/news-20121106-01.de.html [09:18:21] fsfe.org/news/2012/news-20121112-01.de.html [09:18:21] fsfe.org/news/2012/news-20121116-01.de.html [09:18:21] fsfe.org/news/2012/news-20121120-01.de.html [09:18:21] fsfe.org/news/2012/news-20121122-01.de.html [09:18:21] fsfe.org/news/2012/news-20121129-01.de.html [09:18:21] fsfe.org/news/2012/news-20121208-01.de.html [09:18:21] fsfe.org/news/2012/news-20121211-01.de.html [09:18:21] fsfe.org/news/2012/news-20121214-01.de.html [09:18:21] fsfe.org/news/2012/news-20121217-01.de.html [09:18:21] fsfe.org/news/2012/news-20130329-01.de.html [09:18:21] fsfe.org/news/2012/report-2012.de.html [09:18:21] fsfe.org/news/2013/index.de.html [09:18:21] fsfe.org/news/2013/news-20130212-01.de.html [09:18:21] fsfe.org/news/2013/news-20130218-01.de.html [09:18:21] fsfe.org/news/2013/news-20130221-01.de.html [09:18:21] fsfe.org/news/2013/news-20130226-01.de.html [09:18:21] fsfe.org/news/2013/news-20130312-01.de.html [09:18:21] fsfe.org/news/2013/news-20130319-01.de.html [09:18:21] fsfe.org/news/2013/news-20130327-01.de.html [09:18:21] fsfe.org/news/2013/news-20130327-02.de.html [09:18:21] fsfe.org/news/2013/news-20130402-01.de.html [09:18:21] fsfe.org/news/2013/news-20130422-01.de.html [09:18:21] fsfe.org/news/2013/news-20130423-02.de.html [09:18:21] fsfe.org/news/2013/news-20130424-01.de.html [09:18:21] fsfe.org/news/2013/news-20130429-01.de.html [09:18:21] fsfe.org/news/2013/news-20130503-01.de.html [09:18:21] fsfe.org/news/2013/news-20130611-01.de.html [09:18:21] fsfe.org/news/2013/news-20130612-01.de.html [09:18:21] fsfe.org/news/2013/news-20130620-01.de.html [09:18:21] fsfe.org/news/2013/news-20130620-02.de.html [09:18:21] fsfe.org/news/2013/news-20130625-02.de.html [09:18:21] fsfe.org/news/2013/news-20130626-01.de.html [09:18:21] fsfe.org/news/2013/news-20130703-01.de.html [09:18:21] fsfe.org/news/2013/news-20130712-01.de.html [09:18:21] fsfe.org/news/2013/news-20130716-01.de.html [09:18:21] fsfe.org/news/2013/news-20130729-01.de.html [09:18:21] fsfe.org/news/2013/news-20130729-02.de.html [09:18:21] fsfe.org/news/2013/news-20130730-01.de.html [09:18:21] fsfe.org/news/2013/news-20130918-01.de.html [09:18:21] fsfe.org/news/2013/news-20130920-01.de.html [09:18:21] fsfe.org/news/2013/news-20130923-01.de.html [09:18:21] fsfe.org/news/2013/news-20130926-01.de.html [09:18:21] fsfe.org/news/2013/news-20130927-01.de.html [09:18:21] fsfe.org/news/2013/news-20131104-02.de.html [09:18:21] fsfe.org/news/2013/news-20131105-01.de.html [09:18:21] fsfe.org/news/2013/news-20131107-01.de.html [09:18:21] fsfe.org/news/2013/news-20131211-01.de.html [09:18:21] fsfe.org/news/2013/news-20131213-01.de.html [09:18:22] fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.de.html [09:18:22] fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.de.html [09:18:22] fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.de.html [09:18:22] fsfe.org/news/2014/index.de.html [09:18:22] fsfe.org/news/2014/news-20140116-01.de.html [09:18:22] fsfe.org/news/2014/news-20140210-01.de.html [09:18:22] fsfe.org/news/2014/news-20140211-01.de.html [09:18:22] fsfe.org/news/2014/news-20140221-01.de.html [09:18:22] fsfe.org/news/2014/news-20140226-01.de.html [09:18:22] fsfe.org/news/2014/news-20140303-01.de.html [09:18:22] fsfe.org/news/2014/news-20140304-01.de.html [09:18:22] fsfe.org/news/2014/news-20140310-01.de.html [09:18:22] fsfe.org/news/2014/news-20140314-01.de.html [09:18:22] fsfe.org/news/2014/news-20140324-01.de.html [09:18:22] fsfe.org/news/2014/news-20140326-01.de.html [09:18:22] fsfe.org/news/2014/news-20140326-02.de.html [09:18:22] fsfe.org/news/2014/news-20140328-01.de.html [09:18:22] fsfe.org/news/2014/news-20140424-01.de.html [09:18:22] fsfe.org/news/2014/news-20140506-01.de.html [09:18:22] fsfe.org/news/2014/news-20140527-01.de.html [09:18:22] fsfe.org/news/2014/news-20140528-01.de.html [09:18:22] fsfe.org/news/2014/news-20140708-01.de.html [09:18:22] fsfe.org/news/2014/news-20140801-01.de.html [09:18:22] fsfe.org/news/2014/news-20140912-01.de.html [09:18:22] fsfe.org/news/2014/news-20140929-01.de.html [09:18:22] fsfe.org/news/2014/news-20141016-01.de.html [09:18:22] fsfe.org/news/2014/news-20141017-01.de.html [09:18:22] fsfe.org/news/2014/news-20141017-02.de.html [09:18:22] fsfe.org/news/2014/news-20141120-02.de.html [09:18:22] fsfe.org/news/2014/news-20141203-01.de.html [09:18:22] fsfe.org/news/2014/news-20141212-01.de.html [09:18:22] fsfe.org/news/2014/news-20141217-01.de.html [09:18:22] fsfe.org/news/2014/news-20141218-01.de.html [09:18:22] fsfe.org/news/2014/news-20141218-02.de.html [09:18:22] fsfe.org/news/2014/news-20141219-01.de.html [09:18:22] fsfe.org/news/2015/index.de.html [09:18:22] fsfe.org/news/2015/news-20150209-01.de.html [09:18:22] fsfe.org/news/2015/news-20150210-01.de.html [09:18:22] fsfe.org/news/2015/news-20150218-01.de.html [09:18:22] fsfe.org/news/2015/news-20150224-01.de.html [09:18:22] fsfe.org/news/2015/news-20150301-01.de.html [09:18:22] fsfe.org/news/2015/news-20150302-02.de.html [09:18:22] fsfe.org/news/2015/news-20150303-01.de.html [09:18:22] fsfe.org/news/2015/news-20150306-01.de.html [09:18:22] fsfe.org/news/2015/news-20150316-01.de.html [09:18:22] fsfe.org/news/2015/news-20150324-01.de.html [09:18:22] fsfe.org/news/2015/news-20150325-01.de.html [09:18:22] fsfe.org/news/2015/news-20150331-01.de.html [09:18:22] fsfe.org/news/2015/news-20150401-01.de.html [09:18:22] fsfe.org/news/2015/news-20150401-02.de.html [09:18:22] fsfe.org/news/2015/news-20150414-01.de.html [09:18:22] fsfe.org/news/2015/news-20150506-01.de.html [09:18:22] fsfe.org/news/2015/news-20150527-01.de.html [09:18:22] fsfe.org/news/2015/news-20150605-01.de.html [09:18:22] fsfe.org/news/2015/news-20150605-02.de.html [09:18:22] fsfe.org/news/2015/news-20150616-01.de.html [09:18:22] fsfe.org/news/2015/news-20150817-01.de.html [09:18:22] fsfe.org/news/2015/news-20150829-01.de.html [09:18:22] fsfe.org/news/2015/news-20150902-01.de.html [09:18:22] fsfe.org/news/2015/news-20150916-01.de.html [09:18:22] fsfe.org/news/2015/news-20150918-01.de.html [09:18:22] fsfe.org/news/2015/news-20150918-02.de.html [09:18:22] fsfe.org/news/2015/news-20150922-01.de.html [09:18:22] fsfe.org/news/2015/news-20151013-01.de.html [09:18:22] fsfe.org/news/2015/news-20151020-01.de.html [09:18:22] fsfe.org/news/2015/news-20151028-01.de.html [09:18:22] fsfe.org/news/2015/news-20151104-01.de.html [09:18:22] fsfe.org/news/2015/news-20151105-01.de.html [09:18:22] fsfe.org/news/2015/news-20151110-01.de.html [09:18:22] fsfe.org/news/2015/news-20151203-01.de.html [09:18:22] fsfe.org/news/2015/news-20151216-01.de.html [09:18:22] fsfe.org/news/2016/index.de.html [09:18:22] fsfe.org/news/2016/news-20160118-01.de.html [09:18:22] fsfe.org/news/2016/news-20160122-01.de.html [09:18:22] fsfe.org/news/2016/news-20160126-01.de.html [09:18:22] fsfe.org/news/2016/news-20160128-01.de.html [09:18:22] fsfe.org/news/2016/news-20160205-01.de.html [09:18:22] fsfe.org/news/2016/news-20160208-01.de.html [09:18:22] fsfe.org/news/2016/news-20160222-01.de.html [09:18:22] fsfe.org/news/2016/news-20160224-01.de.html [09:18:22] fsfe.org/news/2016/news-20160406-01.de.html [09:18:22] fsfe.org/news/2016/news-20160411-01.de.html [09:18:22] fsfe.org/news/2016/news-20160428-01.de.html [09:18:22] fsfe.org/news/2016/news-20160428-02.de.html [09:18:22] fsfe.org/news/2016/news-20160502-01.de.html [09:18:22] fsfe.org/news/2016/news-20160624-01.de.html [09:18:22] fsfe.org/news/2016/news-20160630-01.de.html [09:18:22] fsfe.org/news/2016/news-20160725-01.de.html [09:18:22] fsfe.org/news/2016/news-20160804-01.de.html [09:18:22] fsfe.org/news/2016/news-20160809-01.de.html [09:18:22] fsfe.org/news/2016/news-20160817-01.de.html [09:18:22] fsfe.org/news/2016/news-20160823-01.de.html [09:18:23] fsfe.org/news/2016/news-20160831-01.de.html [09:18:23] fsfe.org/news/2016/news-20160907-01.de.html [09:18:23] fsfe.org/news/2016/news-20160928-01.de.html [09:18:23] fsfe.org/news/2016/news-20160930-01.de.html [09:18:23] fsfe.org/news/2016/news-20161027-01.de.html [09:18:23] fsfe.org/news/2016/news-20161031-01.de.html [09:18:23] fsfe.org/news/2016/news-20161110-01.de.html [09:18:23] fsfe.org/news/2016/news-20161202-01.de.html [09:18:23] fsfe.org/news/2017/index.de.html [09:18:23] fsfe.org/news/2017/news-20170105-01.de.html [09:18:23] fsfe.org/news/2017/news-20170109-01.de.html [09:18:23] fsfe.org/news/2017/news-20170110-01.de.html [09:18:23] fsfe.org/news/2017/news-20170116-01.de.html [09:18:23] fsfe.org/news/2017/news-20170209-01.de.html [09:18:23] fsfe.org/news/2017/news-20170214-01.de.html [09:18:23] fsfe.org/news/2017/news-20170214-02.de.html [09:18:23] fsfe.org/news/2017/news-20170217-01.de.html [09:18:23] fsfe.org/news/2017/news-20170301-01.de.html [09:18:23] fsfe.org/news/2017/news-20170302-01.de.html [09:18:23] fsfe.org/news/2017/news-20170315-01.de.html [09:18:23] fsfe.org/news/2017/news-20170321-01.de.html [09:18:23] fsfe.org/news/2017/news-20170328-01.de.html [09:18:23] fsfe.org/news/2017/news-20170419-01.de.html [09:18:23] fsfe.org/news/2017/news-20170425-01.de.html [09:18:23] fsfe.org/news/2017/news-20170613-01.de.html [09:18:23] fsfe.org/news/2017/news-20170616-01.de.html [09:18:23] fsfe.org/news/2017/news-20170619-01.de.html [09:18:23] fsfe.org/news/2017/news-20170710-01.de.html [09:18:23] fsfe.org/news/2017/news-20170726-01.de.html [09:18:23] fsfe.org/news/2017/news-20170811-01.de.html [09:18:23] fsfe.org/news/2017/news-20170829-01.de.html [09:18:23] fsfe.org/news/2017/news-20170905-01.de.html [09:18:23] fsfe.org/news/2017/news-20170906-01.de.html [09:18:23] fsfe.org/news/2017/news-20170908-01.de.html [09:18:23] fsfe.org/news/2017/news-20170911-01.de.html [09:18:23] fsfe.org/news/2017/news-20170913-01.de.html [09:18:23] fsfe.org/news/2017/news-20171005-01.de.html [09:18:23] fsfe.org/news/2017/news-20171013-01.de.html [09:18:23] fsfe.org/news/2017/news-20171024-01.de.html [09:18:23] fsfe.org/news/2017/news-20171107-01.de.html [09:18:23] fsfe.org/news/2017/news-20171108-01.de.html [09:18:23] fsfe.org/news/2017/news-20171109-01.de.html [09:18:23] fsfe.org/news/2017/news-20171114-01.de.html [09:18:23] fsfe.org/news/2017/news-20171116-01.de.html [09:18:23] fsfe.org/news/2017/news-20171130-01.de.html [09:18:23] fsfe.org/news/2017/news-20171206-01.de.html [09:18:23] fsfe.org/news/2017/news-20171207-01.de.html [09:18:23] fsfe.org/news/2017/news-20171207-02.de.html [09:18:23] fsfe.org/news/2017/news-20171211-01.de.html [09:18:23] fsfe.org/news/2017/news-20171212-01.de.html [09:18:23] fsfe.org/news/2017/news-20171219-01.de.html [09:18:23] fsfe.org/news/2018/index.de.html [09:18:23] fsfe.org/news/2018/news-20180111-01.de.html [09:18:23] fsfe.org/news/2018/news-20180119-01.de.html [09:18:23] fsfe.org/news/2018/news-20180212-01.de.html [09:18:23] fsfe.org/news/2018/news-20180215-01.de.html [09:18:23] fsfe.org/news/2018/news-20180219-01.de.html [09:18:23] fsfe.org/news/2018/news-20180302-01.de.html [09:18:23] fsfe.org/news/2018/news-20180308-01.de.html [09:18:23] fsfe.org/news/2018/news-20180322-01.de.html [09:18:23] fsfe.org/news/2018/news-20180414-01.de.html [09:18:23] fsfe.org/news/2018/news-20180526-01.de.html [09:18:23] fsfe.org/news/2018/news-20180529-01.de.html [09:18:23] fsfe.org/news/2018/news-20180530-02.de.html [09:18:23] fsfe.org/news/2018/news-20180601-01.de.html [09:18:23] fsfe.org/news/2018/news-20180613-01.de.html [09:18:23] fsfe.org/news/2018/news-20180705-01.de.html [09:18:23] fsfe.org/news/2018/news-20180716-01.de.html [09:18:23] fsfe.org/news/2018/news-20180723-01.de.html [09:18:23] fsfe.org/news/2018/news-20180725-01.de.html [09:18:23] fsfe.org/news/2018/news-20180905-02.de.html [09:18:23] fsfe.org/news/2018/news-20180907-01.de.html [09:18:23] fsfe.org/news/2018/news-20180913-01.de.html [09:18:23] fsfe.org/news/2018/news-20180917-01.de.html [09:18:23] fsfe.org/news/2018/news-20181010-01.de.html [09:18:23] fsfe.org/news/2018/news-20181023-02.de.html [09:18:23] fsfe.org/news/2018/news-20181024-01.de.html [09:18:23] fsfe.org/news/2018/news-20181105-01.de.html [09:18:23] fsfe.org/news/2018/news-20181205-01.de.html [09:18:23] fsfe.org/news/2019/index.de.html [09:18:23] fsfe.org/news/2019/news-20190108-01.de.html [09:18:23] fsfe.org/news/2019/news-20190124-01.de.html [09:18:23] fsfe.org/news/2019/news-20190205-01.de.html [09:18:23] fsfe.org/news/2019/news-20190214-01.de.html [09:18:23] fsfe.org/news/2019/news-20190308-01.de.html [09:18:23] fsfe.org/news/2019/news-20190326-01.de.html [09:18:23] fsfe.org/news/2019/news-20190329-01.de.html [09:18:23] fsfe.org/news/2019/news-20190514-01.de.html [09:18:23] fsfe.org/news/2019/news-20190515-01.de.html [09:18:23] fsfe.org/news/2019/news-20190515-02.de.html [09:18:23] fsfe.org/news/2019/news-20190520-01.de.html [09:18:23] fsfe.org/news/2019/news-20190701-01.de.html [09:18:23] fsfe.org/news/2019/news-20190806-01.de.html [09:18:23] fsfe.org/news/2019/news-20190807-01.de.html [09:18:23] fsfe.org/news/2019/news-20190827-01.de.html [09:18:23] fsfe.org/news/2019/news-20190917-01.de.html [09:18:23] fsfe.org/news/2019/news-20190927-01.de.html [09:18:23] fsfe.org/news/2019/news-20191002-01.de.html [09:18:23] fsfe.org/news/2019/news-20191007-01.de.html [09:18:23] fsfe.org/news/2019/news-20191012-01.de.html [09:18:23] fsfe.org/news/2019/news-20191014-01.de.html [09:18:23] fsfe.org/news/2019/news-20191022-01.de.html [09:18:23] fsfe.org/news/2019/news-20191028-01.de.html [09:18:23] fsfe.org/news/2019/news-20191102-01.de.html [09:18:23] fsfe.org/news/2019/news-20191112-01.de.html [09:18:23] fsfe.org/news/2019/news-20191113-01.de.html [09:18:23] fsfe.org/news/2019/news-20191120-01.de.html [09:18:23] fsfe.org/news/2019/news-20191125-01.de.html [09:18:23] fsfe.org/news/2019/news-20191128-01.de.html [09:18:23] fsfe.org/news/2019/news-20191205-01.de.html [09:18:23] fsfe.org/news/2020/index.de.html [09:18:23] fsfe.org/news/2020/news-20200121-01.de.html [09:18:23] fsfe.org/news/2020/news-20200129-01.de.html [09:18:23] fsfe.org/news/2020/news-20200212-01.de.html [09:18:23] fsfe.org/news/2020/news-20200228-01.de.html [09:18:23] fsfe.org/news/2020/news-20200302-01.de.html [09:18:23] fsfe.org/news/2020/news-20200310-01.de.html [09:18:23] fsfe.org/news/2020/news-20200311-01.de.html [09:18:23] fsfe.org/news/2020/news-20200327-01.de.html [09:18:23] fsfe.org/news/2020/news-20200330-01.de.html [09:18:23] fsfe.org/news/2020/news-20200402-02.de.html [09:18:23] fsfe.org/news/2020/news-20200403-01.de.html [09:18:23] fsfe.org/news/2020/news-20200408-01.de.html [09:18:23] fsfe.org/news/2020/news-20200411-01.de.html [09:18:23] fsfe.org/news/2020/news-20200415-01.de.html [09:18:23] fsfe.org/news/2020/news-20200424-01.de.html [09:18:23] fsfe.org/news/2020/news-20200427-01.de.html [09:18:23] fsfe.org/news/2020/news-20200506-01.de.html [09:18:23] fsfe.org/news/2020/news-20200514-01.de.html [09:18:23] fsfe.org/news/2020/news-20200519-01.de.html [09:18:23] fsfe.org/news/2020/news-20200601-01.de.html [09:18:23] fsfe.org/news/2020/news-20200609-01.de.html [09:18:23] fsfe.org/news/2020/news-20200610-01.de.html [09:18:23] fsfe.org/news/2020/news-20200629-01.de.html [09:18:23] fsfe.org/news/2020/news-20200630-01.de.html [09:18:23] fsfe.org/news/2020/news-20200720-01.de.html [09:18:23] fsfe.org/news/2020/news-20200810-01.de.html [09:18:23] fsfe.org/news/2020/news-20200820-01.de.html [09:18:23] fsfe.org/news/2020/news-20200904-01.de.html [09:18:23] fsfe.org/news/2020/news-20200907-01.de.html [09:18:23] fsfe.org/news/2020/news-20200910-01.de.html [09:18:23] fsfe.org/news/2020/news-20201005-01.de.html [09:18:23] fsfe.org/news/2020/news-20201009-01.de.html [09:18:23] fsfe.org/news/2020/news-20201019-01.de.html [09:18:23] fsfe.org/news/2020/news-20201023-01.de.html [09:18:23] fsfe.org/news/2020/news-20201110-01.de.html [09:18:23] fsfe.org/news/2020/news-20201112-01.de.html [09:18:23] fsfe.org/news/2020/news-20201120-01.de.html [09:18:23] fsfe.org/news/2020/news-20201208-01.de.html [09:18:23] fsfe.org/news/2020/news-20201210-01.de.html [09:18:23] fsfe.org/news/2020/news-20201211-01.de.html [09:18:23] fsfe.org/news/2020/news-20201215-01.de.html [09:18:23] fsfe.org/news/2021/index.de.html [09:18:23] fsfe.org/news/2021/news-20210119-01.de.html [09:18:23] fsfe.org/news/2021/news-20210127-01.de.html [09:18:23] fsfe.org/news/2021/news-20210203-01.de.html [09:18:23] fsfe.org/news/2021/news-20210204-01.de.html [09:18:23] fsfe.org/news/2021/news-20210204-02.de.html [09:18:23] fsfe.org/news/2021/news-20210209-01.de.html [09:18:23] fsfe.org/news/2021/news-20210214-01.de.html [09:18:23] fsfe.org/news/2021/news-20210219-01.de.html [09:18:23] fsfe.org/news/2021/news-20210302-01.de.html [09:18:23] fsfe.org/news/2021/news-20210305-01.de.html [09:18:23] fsfe.org/news/2021/news-20210311-01.de.html [09:18:23] fsfe.org/news/2021/news-20210317-01.de.html [09:18:23] fsfe.org/news/2021/news-20210318-01.de.html [09:18:23] fsfe.org/news/2021/news-20210324-01.de.html [09:18:23] fsfe.org/news/2021/news-20210330-01.de.html [09:18:23] fsfe.org/news/2021/news-20210331-01.de.html [09:18:23] fsfe.org/news/2021/news-20210406-01.de.html [09:18:23] fsfe.org/news/2021/news-20210420-01.de.html [09:18:23] fsfe.org/news/2021/news-20210427-01.de.html [09:18:23] fsfe.org/news/2021/news-20210504-01.de.html [09:18:23] fsfe.org/news/2021/news-20210505-01.de.html [09:18:23] fsfe.org/news/2021/news-20210506-01.de.html [09:18:23] fsfe.org/news/2021/news-20210521-01.de.html [09:18:23] fsfe.org/news/2021/news-20210525-01.de.html [09:18:23] fsfe.org/news/2021/news-20210526-01.de.html [09:18:23] fsfe.org/news/2021/news-20210529-01.de.html [09:18:23] fsfe.org/news/2021/news-20210609-01.de.html [09:18:23] fsfe.org/news/2021/news-20210611-01.de.html [09:18:23] fsfe.org/news/2021/news-20210625-01.de.html [09:18:23] fsfe.org/news/2021/news-20210629-01.de.html [09:18:23] fsfe.org/news/2021/news-20210721-01.de.html [09:18:23] fsfe.org/news/2021/news-20210805-01.de.html [09:18:23] fsfe.org/news/2021/news-20210830-01.de.html [09:18:23] fsfe.org/news/2021/news-20210920-01.de.html [09:18:23] fsfe.org/news/2021/news-20210928-01.de.html [09:18:23] fsfe.org/news/2021/news-20211008-01.de.html [09:18:23] fsfe.org/news/2021/news-20211011-01.de.html [09:18:23] fsfe.org/news/2021/news-20211015-01.de.html [09:18:23] fsfe.org/news/2021/news-20211027-01.de.html [09:18:23] fsfe.org/news/2021/news-20211102-01.de.html [09:18:23] fsfe.org/news/2021/news-20211110-01.de.html [09:18:23] fsfe.org/news/2021/news-20211118-01.de.html [09:18:23] fsfe.org/news/2021/news-20211122-01.de.html [09:18:23] fsfe.org/news/2021/news-20211123-01.de.html [09:18:23] fsfe.org/news/2021/news-20211124-01.de.html [09:18:23] fsfe.org/news/2021/news-20211125-01.de.html [09:18:23] fsfe.org/news/2021/news-20211129-01.de.html [09:18:23] fsfe.org/news/2021/news-20211203-01.de.html [09:18:23] fsfe.org/news/2021/news-20211206-01.de.html [09:18:23] fsfe.org/news/2021/news-20211209-01.de.html [09:18:23] fsfe.org/news/2021/news-20211210-01.de.html [09:18:23] fsfe.org/news/2021/news-20211213-01.de.html [09:18:23] fsfe.org/news/2021/news-20211215-01.de.html [09:18:23] fsfe.org/news/2021/news-20211216-01.de.html [09:18:23] fsfe.org/news/2022/index.de.html [09:18:23] fsfe.org/news/2022/news-20220112-01.de.html [09:18:23] fsfe.org/news/2022/news-20220121-01.de.html [09:18:23] fsfe.org/news/2022/news-20220127-01.de.html [09:18:23] fsfe.org/news/2022/news-20220201-01.de.html [09:18:23] fsfe.org/news/2022/news-20220202-01.de.html [09:18:23] fsfe.org/news/2022/news-20220224-01.de.html [09:18:23] fsfe.org/news/2022/news-20220225-01.de.html [09:18:23] fsfe.org/news/2022/news-20220310-01.de.html [09:18:23] fsfe.org/news/2022/news-20220315-01.de.html [09:18:23] fsfe.org/news/2022/news-20220316-01.de.html [09:18:23] fsfe.org/news/2022/news-20220323-01.de.html [09:18:23] fsfe.org/news/2022/news-20220328-01.de.html [09:18:23] fsfe.org/news/2022/news-20220330-01.de.html [09:18:23] fsfe.org/news/2022/news-20220414-01.de.html [09:18:23] fsfe.org/news/2022/news-20220420-01.de.html [09:18:23] fsfe.org/news/2022/news-20220425-01.de.html [09:18:23] fsfe.org/news/2022/news-20220427-01.de.html [09:18:23] fsfe.org/news/2022/news-20220503-01.de.html [09:18:24] fsfe.org/news/2022/news-20220504-01.de.html [09:18:24] fsfe.org/news/2022/news-20220510-01.de.html [09:18:24] fsfe.org/news/2022/news-20220516-01.de.html [09:18:24] fsfe.org/news/2022/news-20220520-01.de.html [09:18:24] fsfe.org/news/2022/news-20220531-01.de.html [09:18:24] fsfe.org/news/2022/news-20220602-01.de.html [09:18:24] fsfe.org/news/2022/news-20220615-01.de.html [09:18:24] fsfe.org/news/2022/news-20220628-01.de.html [09:18:24] fsfe.org/news/2022/news-20220712-01.de.html [09:18:24] fsfe.org/news/2022/news-20220714-01.de.html [09:18:24] fsfe.org/news/2022/news-20220823-01.de.html [09:18:24] fsfe.org/news/2022/news-20220905-01.de.html [09:18:24] fsfe.org/news/2022/news-20220915-01.de.html [09:18:24] fsfe.org/news/2022/news-20220928-01.de.html [09:18:24] fsfe.org/news/2022/news-20221004-01.de.html [09:18:24] fsfe.org/news/2022/news-20221026-01.de.html [09:18:24] fsfe.org/news/2022/news-20221026-02.de.html [09:18:24] fsfe.org/news/2022/news-20221104-01.de.html [09:18:24] fsfe.org/news/2022/news-20221104-02.de.html [09:18:24] fsfe.org/news/2022/news-20221118-01.de.html [09:18:24] fsfe.org/news/2022/news-20221121-01.de.html [09:18:24] fsfe.org/news/2022/news-20221205-01.de.html [09:18:24] fsfe.org/news/2022/news-20221206-01.de.html [09:18:24] fsfe.org/news/2022/news-20221209-01.de.html [09:18:24] fsfe.org/news/2022/news-20221212-01.de.html [09:18:24] fsfe.org/news/2022/news-20221214-01.de.html [09:18:24] fsfe.org/news/2022/news-20221215-01.de.html [09:18:24] fsfe.org/news/2022/news-20221215-02.de.html [09:18:24] fsfe.org/news/2022/news-20221219-01.de.html [09:18:24] fsfe.org/news/2022/news-20221220-01.de.html [09:18:24] fsfe.org/news/2022/news-20221221-01.de.html [09:18:24] fsfe.org/news/2023/news-20230104-01.de.html [09:18:24] fsfe.org/news/2023/news-20230109-01.de.html [09:18:24] fsfe.org/news/2023/news-20230113-01.de.html [09:18:24] fsfe.org/news/2023/news-20230119-01.de.html [09:18:24] fsfe.org/news/2023/news-20230123-01.de.html [09:18:24] fsfe.org/news/2023/news-20230126-01.de.html [09:18:24] fsfe.org/news/2023/news-20230215-01.de.html [09:18:24] fsfe.org/news/2023/news-20230220-01.de.html [09:18:24] fsfe.org/news/2023/news-20230222-01.de.html [09:18:24] fsfe.org/news/2023/news-20230227-01.de.html [09:18:24] fsfe.org/news/2023/news-20230301-01.de.html [09:18:24] fsfe.org/news/2023/news-20230308-01.de.html [09:18:24] fsfe.org/news/2023/news-20230313-01.de.html [09:18:24] fsfe.org/news/2023/news-20230321-01.de.html [09:18:24] fsfe.org/news/2023/news-20230323-01.de.html [09:18:24] fsfe.org/news/2023/news-20230323-02.de.html [09:18:24] fsfe.org/news/2023/news-20230412-01.de.html [09:18:24] fsfe.org/news/2023/news-20230413-01.de.html [09:18:24] fsfe.org/news/2023/news-20230418-01.de.html [09:18:24] fsfe.org/news/2023/news-20230425-01.de.html [09:18:24] fsfe.org/news/2023/news-20230428-01.de.html [09:18:24] fsfe.org/news/2023/news-20230508-01.de.html [09:18:24] fsfe.org/news/2023/news-20230509-01.de.html [09:18:28] fsfe.org/news/2023/news-20230511-01.de.html [09:18:28] fsfe.org/news/2023/news-20230511-02.de.html [09:18:28] fsfe.org/news/2023/news-20230515-01.de.html [09:18:28] fsfe.org/news/2023/news-20230515-02.de.html [09:18:28] fsfe.org/news/2023/news-20230524-01.de.html [09:18:28] fsfe.org/news/2023/news-20230606-01.de.html [09:18:28] fsfe.org/news/2023/news-20230614-01.de.html [09:18:28] fsfe.org/news/2023/news-20230623-01.de.html [09:18:28] fsfe.org/news/2023/news-20230629-01.de.html [09:18:28] fsfe.org/news/2023/news-20230629-02.de.html [09:18:28] fsfe.org/news/2023/news-20230712-01.de.html [09:18:28] fsfe.org/news/2023/news-20230719-01.de.html [09:18:28] fsfe.org/news/2023/news-20230719-02.de.html [09:18:28] fsfe.org/news/2023/news-20230724-01.de.html [09:18:28] fsfe.org/news/2023/news-20230807-01.de.html [09:18:28] fsfe.org/news/2023/news-20230815-01.de.html [09:18:28] fsfe.org/news/2023/news-20230824-01.de.html [09:18:28] fsfe.org/news/2023/news-20230825-01.de.html [09:18:28] fsfe.org/news/2023/news-20230829-01.de.html [09:18:28] fsfe.org/news/2023/news-20230831-01.de.html [09:18:28] fsfe.org/news/2023/news-20230906-01.de.html [09:18:28] fsfe.org/news/2023/news-20230907-01.de.html [09:18:28] fsfe.org/news/2023/news-20230915-01.de.html [09:18:28] fsfe.org/news/2023/news-20230920-01.de.html [09:18:28] fsfe.org/news/2023/news-20230920-02.de.html [09:18:28] fsfe.org/news/2023/news-20230926-01.de.html [09:18:28] fsfe.org/news/2023/news-20231011-01.de.html [09:18:28] fsfe.org/news/2023/news-20231017-01.de.html [09:18:28] fsfe.org/news/2023/news-20231020-01.de.html [09:18:28] fsfe.org/news/2023/news-20231025-01.de.html [09:18:28] fsfe.org/news/2023/news-20231102-01.de.html [09:18:28] fsfe.org/news/2023/news-20231106-01.de.html [09:18:28] fsfe.org/news/2023/news-20231108-01.de.html [09:18:28] fsfe.org/news/2023/news-20231110-01.de.html [09:18:28] fsfe.org/news/2023/news-20231113-01.de.html [09:18:28] fsfe.org/news/2023/news-20231113-02.de.html [09:18:28] fsfe.org/news/2023/news-20231115-01.de.html [09:18:28] fsfe.org/news/2023/news-20231116-01.de.html [09:18:28] fsfe.org/news/2023/news-20231201-01.de.html [09:18:28] fsfe.org/news/2023/news-20231207-01.de.html [09:18:28] fsfe.org/news/2023/news-20231211-01.de.html [09:18:28] fsfe.org/news/2023/news-20231214-01.de.html [09:18:28] fsfe.org/news/2023/news-20231220-01.de.html [09:18:28] fsfe.org/news/2024/news-20240109-01.de.html [09:18:28] fsfe.org/news/2024/news-20240111-01.de.html [09:18:28] fsfe.org/news/2024/news-20240117-01.de.html [09:18:28] fsfe.org/news/2024/news-20240122-01.de.html [09:18:28] fsfe.org/news/2024/news-20240126-01.de.html [09:18:28] fsfe.org/news/2024/news-20240130-01.de.html [09:18:28] fsfe.org/news/2024/news-20240206-01.de.html [09:18:28] fsfe.org/news/2024/news-20240208-01.de.html [09:18:28] fsfe.org/news/2024/news-20240226-01.de.html [09:18:28] fsfe.org/news/2024/news-20240301-01.de.html [09:18:28] fsfe.org/news/2024/news-20240307-01.de.html [09:18:28] fsfe.org/news/2024/news-20240312-01.de.html [09:18:28] fsfe.org/news/2024/news-20240318-01.de.html [09:18:28] fsfe.org/news/2024/news-20240318-02.de.html [09:18:28] fsfe.org/news/2024/news-20240321-01.de.html [09:18:28] fsfe.org/news/2024/news-20240417-01.de.html [09:18:28] fsfe.org/news/2024/news-20240430-01.de.html [09:18:28] fsfe.org/news/2024/news-20240506-01.de.html [09:18:28] fsfe.org/news/2024/news-20240515-01.de.html [09:18:28] fsfe.org/news/2024/news-20240530-01.de.html [09:18:28] fsfe.org/news/2024/news-20240610-01.de.html [09:18:28] fsfe.org/news/2024/news-20240620-01.de.html [09:18:28] fsfe.org/news/2024/news-20240627-01.de.html [09:18:28] fsfe.org/news/2024/news-20240628-01.de.html [09:18:28] fsfe.org/news/2024/news-20240701-01.de.html [09:18:28] fsfe.org/news/2024/news-20240709-01.de.html [09:18:28] fsfe.org/news/2024/news-20240715-01.de.html [09:18:28] fsfe.org/news/2024/news-20240719-01.de.html [09:18:28] fsfe.org/news/2024/news-20240726-01.de.html [09:18:28] fsfe.org/news/2024/news-20240808-01.de.html [09:18:28] fsfe.org/news/2024/news-20240809-01.de.html [09:18:28] fsfe.org/news/2024/news-20240812-01.de.html [09:18:28] fsfe.org/news/2024/news-20240813-01.de.html [09:18:28] fsfe.org/news/2024/news-20240828-01.de.html [09:18:28] fsfe.org/news/2024/news-20240911-01.de.html [09:18:28] fsfe.org/news/2024/news-20240911-02.de.html [09:18:28] fsfe.org/news/2024/news-20240920-01.de.html [09:18:28] fsfe.org/news/2024/news-20241002-01.de.html [09:18:28] fsfe.org/news/2024/news-20241016-01.de.html [09:18:28] fsfe.org/news/2024/news-20241027-01.de.html [09:18:28] fsfe.org/news/2024/news-20241101-01.de.html [09:18:28] fsfe.org/news/2024/news-20241108-01.de.html [09:18:28] fsfe.org/news/2024/news-20241113-01.de.html [09:18:28] fsfe.org/news/2024/news-20241114-01.de.html [09:18:28] fsfe.org/news/2024/news-20241121-01.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-1.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-10.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-11.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-12.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-13.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-14.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-15.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-16.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-17.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-18.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-19.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-2.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-20.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-21.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-22.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-23.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-24.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-25.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-3.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-4.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-5.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-6.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-7.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-8.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-9.de.html [09:18:28] fsfe.org/news/news/podcast/transcript/episode-special-1.de.html [09:18:28] fsfe.org/news/nl/nl-200904.de.html [09:18:28] fsfe.org/news/nl/nl-200905.de.html [09:18:28] fsfe.org/news/nl/nl-200906.de.html [09:18:28] fsfe.org/news/nl/nl-200907.de.html [09:18:28] fsfe.org/news/nl/nl-200908.de.html [09:18:28] fsfe.org/news/nl/nl-200909.de.html [09:18:28] fsfe.org/news/nl/nl-200910.de.html [09:18:28] fsfe.org/news/nl/nl-200911.de.html [09:18:28] fsfe.org/news/nl/nl-200912.de.html [09:18:28] fsfe.org/news/nl/nl-201001.de.html [09:18:28] fsfe.org/news/nl/nl-201006.de.html [09:18:28] fsfe.org/news/nl/nl-201007.de.html [09:18:28] fsfe.org/news/nl/nl-201008.de.html [09:18:28] fsfe.org/news/nl/nl-201009.de.html [09:18:28] fsfe.org/news/nl/nl-201010.de.html [09:18:28] fsfe.org/news/nl/nl-201011.de.html [09:18:28] fsfe.org/news/nl/nl-201012.de.html [09:18:28] fsfe.org/news/nl/nl-201101.de.html [09:18:28] fsfe.org/news/nl/nl-201102.de.html [09:18:28] fsfe.org/news/nl/nl-201103.de.html [09:18:28] fsfe.org/news/nl/nl-201104.de.html [09:18:28] fsfe.org/news/nl/nl-201105.de.html [09:18:28] fsfe.org/news/nl/nl-201106.de.html [09:18:28] fsfe.org/news/nl/nl-201107.de.html [09:18:28] fsfe.org/news/nl/nl-201108.de.html [09:18:28] fsfe.org/news/nl/nl-201109.de.html [09:18:28] fsfe.org/news/nl/nl-201110.de.html [09:18:28] fsfe.org/news/nl/nl-201111.de.html [09:18:28] fsfe.org/news/nl/nl-201112.de.html [09:18:28] fsfe.org/news/nl/nl-201201.de.html [09:18:28] fsfe.org/news/nl/nl-201202.de.html [09:18:28] fsfe.org/news/nl/nl-201203.de.html [09:18:28] fsfe.org/news/nl/nl-201204.de.html [09:18:28] fsfe.org/news/nl/nl-201205.de.html [09:18:28] fsfe.org/news/nl/nl-201206.de.html [09:18:28] fsfe.org/news/nl/nl-201207.de.html [09:18:28] fsfe.org/news/nl/nl-201208.de.html [09:18:28] fsfe.org/news/nl/nl-201209.de.html [09:18:28] fsfe.org/news/nl/nl-201210.de.html [09:18:28] fsfe.org/news/nl/nl-201211.de.html [09:18:28] fsfe.org/news/nl/nl-201212.de.html [09:18:28] fsfe.org/news/nl/nl-201302.de.html [09:18:28] fsfe.org/news/nl/nl-201303.de.html [09:18:28] fsfe.org/news/nl/nl-201305.de.html [09:18:28] fsfe.org/news/nl/nl-201306.de.html [09:18:28] fsfe.org/news/nl/nl-201307.de.html [09:18:28] fsfe.org/news/nl/nl-201308.de.html [09:18:28] fsfe.org/news/nl/nl-201309.de.html [09:18:28] fsfe.org/news/nl/nl-201310.de.html [09:18:28] fsfe.org/news/nl/nl-201311.de.html [09:18:28] fsfe.org/news/nl/nl-201312.de.html [09:18:28] fsfe.org/news/nl/nl-201401.de.html [09:18:28] fsfe.org/news/nl/nl-201402.de.html [09:18:28] fsfe.org/news/nl/nl-201403.de.html [09:18:28] fsfe.org/news/nl/nl-201404.de.html [09:18:28] fsfe.org/news/nl/nl-201405.de.html [09:18:28] fsfe.org/news/nl/nl-201406.de.html [09:18:28] fsfe.org/news/nl/nl-201407.de.html [09:18:28] fsfe.org/news/nl/nl-201408.de.html [09:18:28] fsfe.org/news/nl/nl-201409.de.html [09:18:28] fsfe.org/news/nl/nl-201410.de.html [09:18:28] fsfe.org/news/nl/nl-201411.de.html [09:18:28] fsfe.org/news/nl/nl-201412.de.html [09:18:28] fsfe.org/news/nl/nl-201501.de.html [09:18:28] fsfe.org/news/nl/nl-201502.de.html [09:18:28] fsfe.org/news/nl/nl-201503.de.html [09:18:28] fsfe.org/news/nl/nl-201504.de.html [09:18:28] fsfe.org/news/nl/nl-201505.de.html [09:18:28] fsfe.org/news/nl/nl-201506.de.html [09:18:28] fsfe.org/news/nl/nl-201507.de.html [09:18:28] fsfe.org/news/nl/nl-201508.de.html [09:18:28] fsfe.org/news/nl/nl-201509.de.html [09:18:28] fsfe.org/news/nl/nl-201510.de.html [09:18:28] fsfe.org/news/nl/nl-201511.de.html [09:18:28] fsfe.org/news/nl/nl-201512.de.html [09:18:28] fsfe.org/news/nl/nl-201602.de.html [09:18:28] fsfe.org/news/nl/nl-201603.de.html [09:18:28] fsfe.org/news/nl/nl-201604.de.html [09:18:28] fsfe.org/news/nl/nl-201605.de.html [09:18:28] fsfe.org/news/nl/nl-201606.de.html [09:18:28] fsfe.org/news/nl/nl-201607.de.html [09:18:28] fsfe.org/news/nl/nl-201608.de.html [09:18:29] fsfe.org/news/nl/nl-201609.de.html [09:18:29] fsfe.org/news/nl/nl-201610.de.html [09:18:29] fsfe.org/news/nl/nl-201611.de.html [09:18:29] fsfe.org/news/nl/nl-201612.de.html [09:18:29] fsfe.org/news/nl/nl-201702.de.html [09:18:29] fsfe.org/news/nl/nl-201703.de.html [09:18:29] fsfe.org/news/nl/nl-201704.de.html [09:18:29] fsfe.org/news/nl/nl-201705.de.html [09:18:29] fsfe.org/news/nl/nl-201706.de.html [09:18:29] fsfe.org/news/nl/nl-201707.de.html [09:18:29] fsfe.org/news/nl/nl-201709.de.html [09:18:29] fsfe.org/news/nl/nl-201710.de.html [09:18:29] fsfe.org/news/nl/nl-201711.de.html [09:18:29] fsfe.org/news/nl/nl-201712.de.html [09:18:29] fsfe.org/news/nl/nl-201802.de.html [09:18:29] fsfe.org/news/nl/nl-201803.de.html [09:18:29] fsfe.org/news/nl/nl-201804.de.html [09:18:29] fsfe.org/news/nl/nl-201805.de.html [09:18:29] fsfe.org/news/nl/nl-201806.de.html [09:18:29] fsfe.org/news/nl/nl-201807.de.html [09:18:29] fsfe.org/news/nl/nl-201809.de.html [09:18:29] fsfe.org/news/nl/nl-201810.de.html [09:18:29] fsfe.org/news/nl/nl-201811.de.html [09:18:29] fsfe.org/news/nl/nl-201812.de.html [09:18:29] fsfe.org/news/nl/nl-201902.de.html [09:18:29] fsfe.org/news/nl/nl-201903.de.html [09:18:29] fsfe.org/news/nl/nl-201904.de.html [09:18:29] fsfe.org/news/nl/nl-201905.de.html [09:18:29] fsfe.org/news/nl/nl-201906.de.html [09:18:29] fsfe.org/news/nl/nl-201907.de.html [09:18:29] fsfe.org/news/nl/nl-201909.de.html [09:18:29] fsfe.org/news/nl/nl-201910.de.html [09:18:29] fsfe.org/news/nl/nl-201911.de.html [09:18:29] fsfe.org/news/nl/nl-201912.de.html [09:18:29] fsfe.org/news/nl/nl-202001.de.html [09:18:29] fsfe.org/news/nl/nl-202002.de.html [09:18:29] fsfe.org/news/nl/nl-202004.de.html [09:18:29] fsfe.org/news/nl/nl-202005.de.html [09:18:29] fsfe.org/news/nl/nl-202006.de.html [09:18:29] fsfe.org/news/nl/nl-202007.de.html [09:18:29] fsfe.org/news/nl/nl-202008.de.html [09:18:29] fsfe.org/news/nl/nl-202009.de.html [09:18:29] fsfe.org/news/nl/nl-202010.de.html [09:18:29] fsfe.org/news/nl/nl-202011.de.html [09:18:29] fsfe.org/news/nl/nl-202012.de.html [09:18:29] fsfe.org/news/nl/nl-202101.de.html [09:18:29] fsfe.org/news/nl/nl-202102.de.html [09:18:29] fsfe.org/news/nl/nl-202103.de.html [09:18:29] fsfe.org/news/nl/nl-202104.de.html [09:18:29] fsfe.org/news/nl/nl-202105.de.html [09:18:29] fsfe.org/news/nl/nl-202106.de.html [09:18:29] fsfe.org/news/nl/nl-202107.de.html [09:18:29] fsfe.org/news/nl/nl-202109.de.html [09:18:29] fsfe.org/news/nl/nl-202110.de.html [09:18:29] fsfe.org/news/nl/nl-202111.de.html [09:18:29] fsfe.org/news/nl/nl-202112.de.html [09:18:29] fsfe.org/news/nl/nl-202201.de.html [09:18:29] fsfe.org/news/nl/nl-202202.de.html [09:18:29] fsfe.org/news/nl/nl-202203.de.html [09:18:29] fsfe.org/news/nl/nl-202204.de.html [09:18:29] fsfe.org/news/nl/nl-202205.de.html [09:18:29] fsfe.org/news/nl/nl-202206.de.html [09:18:29] fsfe.org/news/nl/nl-202207.de.html [09:18:29] fsfe.org/news/nl/nl-202209.de.html [09:18:29] fsfe.org/news/nl/nl-202210.de.html [09:18:29] fsfe.org/news/nl/nl-202211.de.html [09:18:29] fsfe.org/news/nl/nl-202212.de.html [09:18:29] fsfe.org/news/nl/nl-202301.de.html [09:18:29] fsfe.org/news/nl/nl-202302.de.html [09:18:29] fsfe.org/news/nl/nl-202303.de.html [09:18:29] fsfe.org/news/nl/nl-202304.de.html [09:18:29] fsfe.org/news/nl/nl-202305.de.html [09:18:29] fsfe.org/news/nl/nl-202306.de.html [09:18:29] fsfe.org/news/nl/nl-202307.de.html [09:18:29] fsfe.org/news/nl/nl-202308.de.html [09:18:29] fsfe.org/news/nl/nl-202309.de.html [09:18:29] fsfe.org/news/nl/nl-202310.de.html [09:18:29] fsfe.org/news/nl/nl-202311.de.html [09:18:29] fsfe.org/news/nl/nl-202312.de.html [09:18:29] fsfe.org/news/nl/nl-202401.de.html [09:18:29] fsfe.org/news/nl/nl-202402.de.html [09:18:29] fsfe.org/news/nl/nl-202403.de.html [09:18:29] fsfe.org/news/nl/nl-202404.de.html [09:18:29] fsfe.org/news/nl/nl-202405.de.html [09:18:29] fsfe.org/news/nl/nl-202406.de.html [09:18:29] fsfe.org/news/nl/nl-202407.de.html [09:18:29] fsfe.org/news/nl/nl-202408.de.html [09:18:29] fsfe.org/news/nl/nl-202409.de.html [09:18:29] fsfe.org/news/nl/nl-202410.de.html [09:18:29] fsfe.org/news/nl/nl-202411.de.html [09:18:29] fsfe.org/news/podcast/episode-1.de.html [09:18:29] fsfe.org/news/podcast/episode-10.de.html [09:18:29] fsfe.org/news/podcast/episode-11.de.html [09:18:29] fsfe.org/news/podcast/episode-12.de.html [09:18:29] fsfe.org/news/podcast/episode-13.de.html [09:18:29] fsfe.org/news/podcast/episode-14.de.html [09:18:29] fsfe.org/news/podcast/episode-15.de.html [09:18:29] fsfe.org/news/podcast/episode-16.de.html [09:18:29] fsfe.org/news/podcast/episode-17.de.html [09:18:29] fsfe.org/news/podcast/episode-18.de.html [09:18:29] fsfe.org/news/podcast/episode-19.de.html [09:18:29] fsfe.org/news/podcast/episode-2.de.html [09:18:29] fsfe.org/news/podcast/episode-20.de.html [09:18:29] fsfe.org/news/podcast/episode-21.de.html [09:18:29] fsfe.org/news/podcast/episode-22.de.html [09:18:29] fsfe.org/news/podcast/episode-23.de.html [09:18:29] fsfe.org/news/podcast/episode-24.de.html [09:18:29] fsfe.org/news/podcast/episode-25.de.html [09:18:29] fsfe.org/news/podcast/episode-26.de.html [09:18:29] fsfe.org/news/podcast/episode-3.de.html [09:18:29] fsfe.org/news/podcast/episode-4.de.html [09:18:29] fsfe.org/news/podcast/episode-5.de.html [09:18:29] fsfe.org/news/podcast/episode-6.de.html [09:18:29] fsfe.org/news/podcast/episode-7.de.html [09:18:29] fsfe.org/news/podcast/episode-8.de.html [09:18:29] fsfe.org/news/podcast/episode-9.de.html [09:18:29] fsfe.org/news/podcast/episode-special-1.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-1.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-10.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-11.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-12.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-13.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-14.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-15.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-16.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-17.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-18.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-19.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-2.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-20.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-21.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-22.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-23.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-24.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-25.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-26.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-3.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-4.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-5.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-6.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-7.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-8.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-9.de.html [09:18:29] fsfe.org/news/podcast/transcript/episode-special-1.de.html [09:18:29] fsfe.org/order/cancel.de.html [09:18:29] fsfe.org/order/order.de.html [09:18:29] fsfe.org/order/size.de.html [09:18:29] fsfe.org/order/thankyou.de.html [09:18:29] fsfe.org/order/tmpl-concardis.de.html [09:18:29] fsfe.org/order/tmpl-thankyou.de.html [09:18:29] fsfe.org/press/press.de.html [09:18:29] fsfe.org/search/ [09:18:29] fsfe.org/search/index.js [09:18:29] fsfe.org/search/search.de.html [09:18:29] fsfe.org/tags/tagged-2FA.de.html [09:18:29] fsfe.org/tags/tagged-AI.de.html [09:18:29] fsfe.org/tags/tagged-Belgium.de.html [09:18:29] fsfe.org/tags/tagged-Bewustmaking.de.html [09:18:29] fsfe.org/tags/tagged-Bewustzijn.de.html [09:18:29] fsfe.org/tags/tagged-DMA.de.html [09:18:29] fsfe.org/tags/tagged-Denmark.de.html [09:18:29] fsfe.org/tags/tagged-Deutschland.de.html [09:18:29] fsfe.org/tags/tagged-Estonia.de.html [09:18:29] fsfe.org/tags/tagged-France.de.html [09:18:29] fsfe.org/tags/tagged-Germany.de.html [09:18:29] fsfe.org/tags/tagged-IEA.de.html [09:18:29] fsfe.org/tags/tagged-Italia.de.html [09:18:29] fsfe.org/tags/tagged-Italy.de.html [09:18:29] fsfe.org/tags/tagged-Luxembourg.de.html [09:18:29] fsfe.org/tags/tagged-Netherlands.de.html [09:18:29] fsfe.org/tags/tagged-PR.de.html [09:18:29] fsfe.org/tags/tagged-Poland.de.html [09:18:29] fsfe.org/tags/tagged-Switzerland.de.html [09:18:29] fsfe.org/tags/tagged-Taiwan.de.html [09:18:29] fsfe.org/tags/tagged-United.de.html [09:18:29] fsfe.org/tags/tagged-ada-zangemann.de.html [09:18:29] fsfe.org/tags/tagged-anniversary.de.html [09:18:29] fsfe.org/tags/tagged-annual-report.de.html [09:18:29] fsfe.org/tags/tagged-antitrust.de.html [09:18:29] fsfe.org/tags/tagged-at.de.html [09:18:29] fsfe.org/tags/tagged-avm.de.html [09:18:29] fsfe.org/tags/tagged-awareness.de.html [09:18:29] fsfe.org/tags/tagged-ayc.de.html [09:18:29] fsfe.org/tags/tagged-barcelona.de.html [09:18:29] fsfe.org/tags/tagged-be.de.html [09:18:29] fsfe.org/tags/tagged-bea.de.html [09:18:29] fsfe.org/tags/tagged-beleid.de.html [09:18:29] fsfe.org/tags/tagged-berlin.de.html [09:18:29] fsfe.org/tags/tagged-bg.de.html [09:18:29] fsfe.org/tags/tagged-by.de.html [09:18:29] fsfe.org/tags/tagged-campaigns.de.html [09:18:29] fsfe.org/tags/tagged-career.de.html [09:18:29] fsfe.org/tags/tagged-ccc.de.html [09:18:29] fsfe.org/tags/tagged-cfp.de.html [09:18:29] fsfe.org/tags/tagged-ch.de.html [09:18:29] fsfe.org/tags/tagged-cloud.de.html [09:18:29] fsfe.org/tags/tagged-coc.de.html [09:18:29] fsfe.org/tags/tagged-community-meeting.de.html [09:18:29] fsfe.org/tags/tagged-community.de.html [09:18:29] fsfe.org/tags/tagged-competition.de.html [09:18:29] fsfe.org/tags/tagged-compliance.de.html [09:18:29] fsfe.org/tags/tagged-copyright.de.html [09:18:29] fsfe.org/tags/tagged-corona.de.html [09:18:29] fsfe.org/tags/tagged-cz.de.html [09:18:29] fsfe.org/tags/tagged-de.de.html [09:18:29] fsfe.org/tags/tagged-device-neutrality.de.html [09:18:29] fsfe.org/tags/tagged-deviceneutrality.de.html [09:18:29] fsfe.org/tags/tagged-dfd.de.html [09:18:29] fsfe.org/tags/tagged-digital-o-mat.de.html [09:18:29] fsfe.org/tags/tagged-digital-single-market.de.html [09:18:29] fsfe.org/tags/tagged-dk.de.html [09:18:29] fsfe.org/tags/tagged-dma.de.html [09:18:29] fsfe.org/tags/tagged-drm.de.html [09:18:29] fsfe.org/tags/tagged-education.de.html [09:18:29] fsfe.org/tags/tagged-ee.de.html [09:18:29] fsfe.org/tags/tagged-eif.de.html [09:18:29] fsfe.org/tags/tagged-elections.de.html [09:18:29] fsfe.org/tags/tagged-electronic-voting.de.html [09:18:29] fsfe.org/tags/tagged-en.de.html [09:18:29] fsfe.org/tags/tagged-encryption.de.html [09:18:29] fsfe.org/tags/tagged-enterprise.de.html [09:18:29] fsfe.org/tags/tagged-es.de.html [09:18:29] fsfe.org/tags/tagged-eura-slovakia.de.html [09:18:29] fsfe.org/tags/tagged-european-commission.de.html [09:18:29] fsfe.org/tags/tagged-european-court-justice.de.html [09:18:29] fsfe.org/tags/tagged-european-parliament.de.html [09:18:29] fsfe.org/tags/tagged-european-union.de.html [09:18:29] fsfe.org/tags/tagged-european=union.de.html [09:18:29] fsfe.org/tags/tagged-event.de.html [09:18:29] fsfe.org/tags/tagged-fediverse.de.html [09:18:29] fsfe.org/tags/tagged-fellowship.de.html [09:18:29] fsfe.org/tags/tagged-fi.de.html [09:18:29] fsfe.org/tags/tagged-fla.de.html [09:18:29] fsfe.org/tags/tagged-fosdem.de.html [09:18:29] fsfe.org/tags/tagged-fr.de.html [09:18:29] fsfe.org/tags/tagged-frand.de.html [09:18:29] fsfe.org/tags/tagged-freedomvote.de.html [09:18:29] fsfe.org/tags/tagged-fsfe-summit.de.html [09:18:29] fsfe.org/tags/tagged-fsfe20.de.html [09:18:29] fsfe.org/tags/tagged-fspact.de.html [09:18:29] fsfe.org/tags/tagged-funding.de.html [09:18:29] fsfe.org/tags/tagged-fya.de.html [09:18:29] fsfe.org/tags/tagged-ga.de.html [09:18:29] fsfe.org/tags/tagged-gaming.de.html [09:18:29] fsfe.org/tags/tagged-gb.de.html [09:18:29] fsfe.org/tags/tagged-general-purpose-computing.de.html [09:18:29] fsfe.org/tags/tagged-gnu.de.html [09:18:29] fsfe.org/tags/tagged-google.de.html [09:18:29] fsfe.org/tags/tagged-gpl.de.html [09:18:29] fsfe.org/tags/tagged-gr.de.html [09:18:29] fsfe.org/tags/tagged-hamburg-group.de.html [09:18:29] fsfe.org/tags/tagged-helsinki.de.html [09:18:29] fsfe.org/tags/tagged-hide.de.html [09:18:29] fsfe.org/tags/tagged-highlights.de.html [09:18:29] fsfe.org/tags/tagged-horizon2020.de.html [09:18:29] fsfe.org/tags/tagged-hr.de.html [09:18:29] fsfe.org/tags/tagged-hu.de.html [09:18:29] fsfe.org/tags/tagged-huawei.de.html [09:18:29] fsfe.org/tags/tagged-ie.de.html [09:18:29] fsfe.org/tags/tagged-ilovefs-report.de.html [09:18:29] fsfe.org/tags/tagged-ilovefs.de.html [09:18:29] fsfe.org/tags/tagged-infobooth.de.html [09:18:29] fsfe.org/tags/tagged-internal.de.html [09:18:29] fsfe.org/tags/tagged-internship.de.html [09:18:29] fsfe.org/tags/tagged-interview.de.html [09:18:29] fsfe.org/tags/tagged-it.de.html [09:18:29] fsfe.org/tags/tagged-jp.de.html [09:18:29] fsfe.org/tags/tagged-juridisch.de.html [09:18:29] fsfe.org/tags/tagged-koalition-freies-wissen.de.html [09:18:29] fsfe.org/tags/tagged-legal.de.html [09:18:29] fsfe.org/tags/tagged-licensing.de.html [09:18:29] fsfe.org/tags/tagged-limux.de.html [09:18:29] fsfe.org/tags/tagged-llw.de.html [09:18:29] fsfe.org/tags/tagged-localgroup.de.html [09:18:29] fsfe.org/tags/tagged-lt.de.html [09:18:29] fsfe.org/tags/tagged-lu.de.html [09:18:29] fsfe.org/tags/tagged-lv.de.html [09:18:29] fsfe.org/tags/tagged-manchester.de.html [09:18:29] fsfe.org/tags/tagged-meeting.de.html [09:18:29] fsfe.org/tags/tagged-merchandise.de.html [09:18:29] fsfe.org/tags/tagged-microsoft.de.html [09:18:29] fsfe.org/tags/tagged-news.de.html [09:18:29] fsfe.org/tags/tagged-newsletter.de.html [09:18:29] fsfe.org/tags/tagged-ngi.de.html [09:18:29] fsfe.org/tags/tagged-nl.de.html [09:18:29] fsfe.org/tags/tagged-no.de.html [09:18:29] fsfe.org/tags/tagged-office-suites.de.html [09:18:29] fsfe.org/tags/tagged-open-justitia.de.html [09:18:29] fsfe.org/tags/tagged-open-letter.de.html [09:18:29] fsfe.org/tags/tagged-open-science.de.html [09:18:29] fsfe.org/tags/tagged-openstandards.de.html [09:18:29] fsfe.org/tags/tagged-panel.de.html [09:18:29] fsfe.org/tags/tagged-pdfreaders.de.html [09:18:29] fsfe.org/tags/tagged-pl.de.html [09:18:29] fsfe.org/tags/tagged-pmpc.de.html [09:18:29] fsfe.org/tags/tagged-podcast.de.html [09:18:29] fsfe.org/tags/tagged-policy.de.html [09:18:29] fsfe.org/tags/tagged-press.de.html [09:18:29] fsfe.org/tags/tagged-privacy.de.html [09:18:29] fsfe.org/tags/tagged-procurement.de.html [09:18:29] fsfe.org/tags/tagged-pt.de.html [09:18:29] fsfe.org/tags/tagged-public-administration.de.html [09:18:29] fsfe.org/tags/tagged-radiodirective.de.html [09:18:29] fsfe.org/tags/tagged-reuse.de.html [09:18:29] fsfe.org/tags/tagged-rmll.de.html [09:18:29] fsfe.org/tags/tagged-ro.de.html [09:18:29] fsfe.org/tags/tagged-router-freedom.de.html [09:18:29] fsfe.org/tags/tagged-routers.de.html [09:18:29] fsfe.org/tags/tagged-rs.de.html [09:18:29] fsfe.org/tags/tagged-samba.de.html [09:18:29] fsfe.org/tags/tagged-savecodeshare.de.html [09:18:29] fsfe.org/tags/tagged-se.de.html [09:18:29] fsfe.org/tags/tagged-security.de.html [09:18:29] fsfe.org/tags/tagged-sfd.de.html [09:18:29] fsfe.org/tags/tagged-sfscon.de.html [09:18:29] fsfe.org/tags/tagged-sha.de.html [09:18:30] fsfe.org/tags/tagged-sk.de.html [09:18:30] fsfe.org/tags/tagged-software-freedom.de.html [09:18:30] fsfe.org/tags/tagged-sq.de.html [09:18:30] fsfe.org/tags/tagged-sustainability.de.html [09:18:30] fsfe.org/tags/tagged-swpat.de.html [09:18:30] fsfe.org/tags/tagged-talk.de.html [09:18:30] fsfe.org/tags/tagged-tech-teams.de.html [09:18:30] fsfe.org/tags/tagged-tedective.de.html [09:18:30] fsfe.org/tags/tagged-tools.de.html [09:18:30] fsfe.org/tags/tagged-tr.de.html [09:18:30] fsfe.org/tags/tagged-translations.de.html [09:18:30] fsfe.org/tags/tagged-tw.de.html [09:18:30] fsfe.org/tags/tagged-ua.de.html [09:18:30] fsfe.org/tags/tagged-uk.de.html [09:18:30] fsfe.org/tags/tagged-united-nations.de.html [09:18:30] fsfe.org/tags/tagged-upcyclingandroid.de.html [09:18:30] fsfe.org/tags/tagged-us.de.html [09:18:30] fsfe.org/tags/tagged-w3c.de.html [09:18:30] fsfe.org/tags/tagged-windows-tax.de.html [09:18:30] fsfe.org/tags/tagged-women-group.de.html [09:18:30] fsfe.org/tags/tagged-women.de.html [09:18:30] fsfe.org/tags/tagged-workshop.de.html [09:18:30] fsfe.org/tags/tagged-yh4f-project.de.html [09:18:30] fsfe.org/tags/tagged-yh4f.de.html [09:18:30] fsfe.org/tags/tagged-zooom.de.html [09:18:30] fsfe.org/tags/tagged.de.html [09:18:30] fsfe.org/tags/tags.de.html [09:18:30] fsfe.org/templates/concardis_relay.de.html [09:18:30] fsfe.org/templates/registerevent/error.de.html [09:18:30] fsfe.org/templates/registerevent/success.de.html [09:18:30] pdfreaders.org/about.de.html [09:18:30] pdfreaders.org/graphics.de.html [09:18:30] pdfreaders.org/index.de.html [09:18:30] pdfreaders.org/os.de.html [09:18:30] status.fsfe.org/index.de.html [09:18:30] status.fsfe.org/fsfe.org/template.de.html [09:18:30] status.fsfe.org/test.fsfe.org/template.de.html [09:18:30] status.fsfe.org/translations/index.de.html [09:18:30] [09:18:30] sent 9,630,373 bytes received 351,366 bytes 739,388.07 bytes/sec [09:18:30] total size is 1,539,752,252 speedup is 154.26 [09:18:30] Syncing files to noddack.fsfeurope.org [09:18:30] sending incremental file list [09:18:30] drm.info/act-now.de.html [09:18:30] drm.info/citizen-rights.de.html [09:18:30] drm.info/creativity.de.html [09:18:30] drm.info/index.de.html [09:18:30] drm.info/losing-heritage.de.html [09:18:30] drm.info/privacy.de.html [09:18:30] drm.info/what-is-drm.de.html [09:18:30] fsfe.org/boilerplate.de.html [09:18:30] fsfe.org/index.de.html [09:18:30] fsfe.org/about/about.de.html [09:18:30] fsfe.org/about/codeofconduct.de.html [09:18:30] fsfe.org/about/contact.de.html [09:18:30] fsfe.org/about/fsfnetwork.de.html [09:18:30] fsfe.org/about/groups.de.html [09:18:30] fsfe.org/about/js-licences.de.html [09:18:30] fsfe.org/about/mission.de.html [09:18:30] fsfe.org/about/ourwork.de.html [09:18:30] fsfe.org/about/overview2010.de.html [09:18:30] fsfe.org/about/principles.de.html [09:18:30] fsfe.org/about/statement-20201220.de.html [09:18:30] fsfe.org/about/timeline.de.html [09:18:30] fsfe.org/about/transparency-commitment.de.html [09:18:30] fsfe.org/about/associates/associates.de.html [09:18:30] fsfe.org/about/funds/2001.de.html [09:18:30] fsfe.org/about/funds/2002.de.html [09:18:30] fsfe.org/about/funds/2003.de.html [09:18:30] fsfe.org/about/funds/2004.de.html [09:18:30] fsfe.org/about/funds/2005.de.html [09:18:30] fsfe.org/about/funds/2006.de.html [09:18:30] fsfe.org/about/funds/2007.de.html [09:18:30] fsfe.org/about/funds/2008.de.html [09:18:30] fsfe.org/about/funds/2009.de.html [09:18:30] fsfe.org/about/funds/2010.de.html [09:18:30] fsfe.org/about/funds/2011.de.html [09:18:30] fsfe.org/about/funds/2012.de.html [09:18:30] fsfe.org/about/funds/2013.de.html [09:18:30] fsfe.org/about/funds/2014.de.html [09:18:30] fsfe.org/about/funds/2015.de.html [09:18:30] fsfe.org/about/funds/2016.de.html [09:18:30] fsfe.org/about/funds/2017.de.html [09:18:30] fsfe.org/about/funds/2018.de.html [09:18:30] fsfe.org/about/funds/2019.de.html [09:18:30] fsfe.org/about/funds/2020.de.html [09:18:30] fsfe.org/about/funds/2021.de.html [09:18:30] fsfe.org/about/funds/2022.de.html [09:18:30] fsfe.org/about/funds/funds.de.html [09:18:30] fsfe.org/about/graphics/graphics.de.html [09:18:30] fsfe.org/about/graphics/sponsoring/sponsoring.de.html [09:18:30] fsfe.org/about/history/doi.de.html [09:18:30] fsfe.org/about/history/preamble.de.html [09:18:30] fsfe.org/about/jobs/index.de.html [09:18:30] fsfe.org/about/jobs/internship.de.html [09:18:30] fsfe.org/about/legal/imprint.de.html [09:18:30] fsfe.org/about/legal/legal.de.html [09:18:30] fsfe.org/about/people/index.de.html [09:18:30] fsfe.org/about/people/testimonials.de.html [09:18:30] fsfe.org/about/people/albers/albers.de.html [09:18:30] fsfe.org/about/people/bakker/bakker.de.html [09:18:30] fsfe.org/about/people/ceballos/ceballos.de.html [09:18:30] fsfe.org/about/people/gerloff/gerloff.de.html [09:18:30] fsfe.org/about/people/greve/cv.de.html [09:18:30] fsfe.org/about/people/greve/greve.de.html [09:18:30] fsfe.org/about/people/interviews/cryptie.de.html [09:18:30] fsfe.org/about/people/interviews/gkotsopoulou.de.html [09:18:30] fsfe.org/about/people/interviews/grun.de.html [09:18:30] fsfe.org/about/people/interviews/lequertier.de.html [09:18:30] fsfe.org/about/people/interviews/mueller.de.html [09:18:30] fsfe.org/about/people/interviews/ockers.de.html [09:18:30] fsfe.org/about/people/interviews/snow.de.html [09:18:30] fsfe.org/about/people/interviews/weitzhofer.de.html [09:18:30] fsfe.org/about/people/interviews/zerolo.de.html [09:18:30] fsfe.org/about/people/kirschner/kirschner.de.html [09:18:30] fsfe.org/about/people/ku/ku.de.html [09:18:30] fsfe.org/about/people/lasota/lasota.de.html [09:18:30] fsfe.org/about/people/mehl/mehl.de.html [09:18:30] fsfe.org/about/people/partsafyllidou/partsafyllidou.de.html [09:18:30] fsfe.org/about/people/repentinus/repentinus.de.html [09:18:30] fsfe.org/about/people/rikken/rikken.de.html [09:18:30] fsfe.org/about/people/roussos/roussos.de.html [09:18:30] fsfe.org/about/people/roy/roy.de.html [09:18:30] fsfe.org/about/people/sander/sander.de.html [09:18:30] fsfe.org/about/people/tobiasd/tobiasd.de.html [09:18:30] fsfe.org/about/softwarefreedom/testimonials.de.html [09:18:30] fsfe.org/activities/activities.de.html [09:18:30] fsfe.org/activities/awareness.de.html [09:18:30] fsfe.org/activities/legal.de.html [09:18:30] fsfe.org/activities/policy.de.html [09:18:30] fsfe.org/activities/15years/15years.de.html [09:18:30] fsfe.org/activities/20years/20years.de.html [09:18:30] fsfe.org/activities/ada-zangemann/book-reviews.de.html [09:18:30] fsfe.org/activities/ada-zangemann/index.de.html [09:18:30] fsfe.org/activities/ada-zangemann/letters.de.html [09:18:30] fsfe.org/activities/ada-zangemann/movie.de.html [09:18:30] fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.de.html [09:18:30] fsfe.org/activities/agnula/agnula.de.html [09:18:30] fsfe.org/activities/agnula/deliverable-1.3.1.de.html [09:18:30] fsfe.org/activities/agnula/java.de.html [09:18:30] fsfe.org/activities/agnula/license-faq.de.html [09:18:30] fsfe.org/activities/agnula/license.de.html [09:18:30] fsfe.org/activities/android/android.de.html [09:18:30] fsfe.org/activities/android/artwork.de.html [09:18:30] fsfe.org/activities/android/flashingdevices.de.html [09:18:30] fsfe.org/activities/android/help.de.html [09:18:30] fsfe.org/activities/android/is-flashing-legal.de.html [09:18:30] fsfe.org/activities/android/liberate.de.html [09:18:30] fsfe.org/activities/android/sustainability.de.html [09:18:30] fsfe.org/activities/android/workshops.de.html [09:18:30] fsfe.org/activities/android/artwork/DIN_A1.de.html [09:18:30] fsfe.org/activities/android/artwork/DIN_A7.de.html [09:18:30] fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.de.html [09:18:30] fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.de.html [09:18:30] fsfe.org/activities/apple-litigation/apple-litigation.de.html [09:18:30] fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.html [09:18:30] fsfe.org/activities/bgw/bgw.de.html [09:18:30] fsfe.org/activities/conf-events/conf-events.de.html [09:18:30] fsfe.org/activities/conf-events/report-cccamp23.de.html [09:18:30] fsfe.org/activities/deviceneutrality/index.de.html [09:18:30] fsfe.org/activities/dma/dma.de.html [09:18:30] fsfe.org/activities/drm/drm.de.html [09:18:30] fsfe.org/activities/drm/open-letter-ec-drm-html.de.html [09:18:30] fsfe.org/activities/drm/sony-rootkit-fiasco.de.html [09:18:30] fsfe.org/activities/elections/digitalomat.de.html [09:18:30] fsfe.org/activities/elections/freedomvote.de.html [09:18:30] fsfe.org/activities/elections/index.de.html [09:18:30] fsfe.org/activities/elections/letspromise.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/askyourcandidates.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/example-questions.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.de.html [09:18:30] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.de.html [09:18:30] fsfe.org/activities/eucd/eucd-fs.de.html [09:18:30] fsfe.org/activities/eucd/eucd.de.html [09:18:30] fsfe.org/activities/eura-slovakia/eura-slovakia.de.html [09:18:30] fsfe.org/activities/fla/fiduciary.de.html [09:18:30] fsfe.org/activities/fla/fla.de.html [09:18:30] fsfe.org/activities/foss4smes/foss4smes.de.html [09:18:30] fsfe.org/activities/fp6/focal.de.html [09:18:30] fsfe.org/activities/fp6/fp6.de.html [09:18:30] fsfe.org/activities/fp6/lafis.de.html [09:18:30] fsfe.org/activities/fp6/more-support.de.html [09:18:30] fsfe.org/activities/fp6/reasoning.de.html [09:18:30] fsfe.org/activities/fp6/recommendation.de.html [09:18:30] fsfe.org/activities/fp6/supporting-parties.de.html [09:18:30] fsfe.org/activities/fp7/fp7.de.html [09:18:30] fsfe.org/activities/gbn/gbn.de.html [09:18:30] fsfe.org/activities/gplv3/bangalore-rms-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/barcelona-moglen-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/barcelona-rms-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/barcelona-summaries.de.html [09:18:30] fsfe.org/activities/gplv3/brussels-rms-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/diff-draft1-draft2.de.html [09:18:30] fsfe.org/activities/gplv3/diff-draft2-draft3.de.html [09:18:30] fsfe.org/activities/gplv3/diff-gplv2-draft2.de.html [09:18:30] fsfe.org/activities/gplv3/drm-and-gplv3.de.html [09:18:30] fsfe.org/activities/gplv3/europe-gplv3-conference.de.html [09:18:30] fsfe.org/activities/gplv3/events.de.html [09:18:30] fsfe.org/activities/gplv3/fisl-rms-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/gplv3-torino.de.html [09:18:30] fsfe.org/activities/gplv3/gplv3.de.html [09:18:30] fsfe.org/activities/gplv3/links.de.html [09:18:30] fsfe.org/activities/gplv3/patents-and-gplv3.de.html [09:18:30] fsfe.org/activities/gplv3/timeline.de.html [09:18:30] fsfe.org/activities/gplv3/tokyo-ciaran-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/tokyo-rms-transcript.de.html [09:18:30] fsfe.org/activities/gplv3/topics.de.html [09:18:30] fsfe.org/activities/gplv3/torino-rms-transcript.de.html [09:18:30] fsfe.org/activities/igf/a2k.de.html [09:18:30] fsfe.org/activities/igf/dcos.de.html [09:18:30] fsfe.org/activities/igf/igf.de.html [09:18:30] fsfe.org/activities/igf/sovsoft.de.html [09:18:30] fsfe.org/activities/igf/wgig.de.html [09:18:30] fsfe.org/activities/ilovefs/index.de.html [09:18:30] fsfe.org/activities/ilovefs/artwork/artwork.de.html [09:18:30] fsfe.org/activities/ilovefs/report/report_2023.de.html [09:18:30] fsfe.org/activities/ilovefs/report/report_2024.de.html [09:18:30] fsfe.org/activities/ilovefs/whylovefs/gallery.de.html [09:18:30] fsfe.org/activities/ilovefs/whylovefs/whylovefs.de.html [09:18:30] fsfe.org/activities/ipred2/ipred2.de.html [09:18:30] fsfe.org/activities/ipred2/letter-april-2007.de.html [09:18:30] fsfe.org/activities/licence-questions/licence-questions.de.html [09:18:30] fsfe.org/activities/ln/application-confirm.de.html [09:18:30] fsfe.org/activities/ln/application-success.de.html [09:18:30] fsfe.org/activities/ln/application.de.html [09:18:30] fsfe.org/activities/ln/council.de.html [09:18:30] fsfe.org/activities/ln/llw-conf.de.html [09:18:30] fsfe.org/activities/ln/llw-past.de.html [09:18:30] fsfe.org/activities/ln/llw.de.html [09:18:30] fsfe.org/activities/ln/ln-procedures.de.html [09:18:30] fsfe.org/activities/ln/ln.de.html [09:18:30] fsfe.org/activities/ln/memberlist-confirm.de.html [09:18:30] fsfe.org/activities/ln/memberlist-success.de.html [09:18:30] fsfe.org/activities/ln/memberlist.de.html [09:18:30] fsfe.org/activities/ln/modpolicy.de.html [09:18:30] fsfe.org/activities/ln/rules.de.html [09:18:30] fsfe.org/activities/mankind/contact.de.html [09:18:30] fsfe.org/activities/mankind/done.de.html [09:18:30] fsfe.org/activities/mankind/help.de.html [09:18:30] fsfe.org/activities/mankind/links.de.html [09:18:30] fsfe.org/activities/mankind/mankind.de.html [09:18:30] fsfe.org/activities/mankind/press.de.html [09:18:30] fsfe.org/activities/mankind/support.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/index.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/press-release.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/conclusion.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/contact.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/ethical.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/facts.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/independence.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/origin.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/plan.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/social.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/support.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/technical.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/threats.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/unesco.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/why1.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/why2.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/workdone.de.html [09:18:30] fsfe.org/activities/mankind/lsm2002/slides/workinprogress.de.html [09:18:30] fsfe.org/activities/ms-vs-eu/article-20060421.de.html [09:18:30] fsfe.org/activities/ms-vs-eu/background.de.html [09:18:30] fsfe.org/activities/ms-vs-eu/intervention-20040930.de.html [09:18:30] fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.html [09:18:30] fsfe.org/activities/ms-vs-eu/timeline.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml-converter-hoax.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml-idiosyncrasies.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml-interoperability.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml-questions.de.html [09:18:30] fsfe.org/activities/msooxml/msooxml.de.html [09:18:30] fsfe.org/activities/ngi/ngi-past.de.html [09:18:30] fsfe.org/activities/ngi/ngi.de.html [09:18:30] fsfe.org/activities/nledu/nledu.de.html [09:18:30] fsfe.org/activities/pdfreaders/bug-report-uk.de.html [09:18:30] fsfe.org/activities/pdfreaders/bug-report.de.html [09:18:30] fsfe.org/activities/pdfreaders/buglist.de.html [09:18:30] fsfe.org/activities/pdfreaders/follow-up.de.html [09:18:30] fsfe.org/activities/pdfreaders/guideline.de.html [09:18:30] fsfe.org/activities/pdfreaders/letter.de.html [09:18:30] fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.html [09:18:30] fsfe.org/activities/pdfreaders/pdfreaders.de.html [09:18:30] fsfe.org/activities/pdfreaders/pdfsprint.de.html [09:18:30] fsfe.org/activities/pdfreaders/petition-error.de.html [09:18:30] fsfe.org/activities/pdfreaders/petition-success.de.html [09:18:30] fsfe.org/activities/pdfreaders/petition.de.html [09:18:30] fsfe.org/activities/publiccode/bea.de.html [09:18:30] fsfe.org/activities/publiccode/brochure.de.html [09:18:30] fsfe.org/activities/publiccode/get-active.de.html [09:18:30] fsfe.org/activities/publiccode/publiccode.de.html [09:18:30] fsfe.org/activities/radiodirective/radiodirective.de.html [09:18:30] fsfe.org/activities/radiodirective/statement.de.html [09:18:30] fsfe.org/activities/routers/routers.de.html [09:18:30] fsfe.org/activities/routers/timeline.de.html [09:18:30] fsfe.org/activities/self/self.de.html [09:18:30] fsfe.org/activities/stacs/belgrade-register.de.html [09:18:30] fsfe.org/activities/stacs/belgrade.de.html [09:18:30] fsfe.org/activities/stacs/london-register.de.html [09:18:30] fsfe.org/activities/stacs/london.de.html [09:18:30] fsfe.org/activities/stacs/stacs.de.html [09:18:30] fsfe.org/activities/stacs/tmpl-belgrade.de.html [09:18:30] fsfe.org/activities/stacs/tmpl-london.de.html [09:18:30] fsfe.org/activities/swpat/background.de.html [09:18:30] fsfe.org/activities/swpat/documents.de.html [09:18:30] fsfe.org/activities/swpat/fsfe-patstrat-response.de.html [09:18:30] fsfe.org/activities/swpat/how-the-eu-patent-system-works.de.html [09:18:30] fsfe.org/activities/swpat/letter-20040510.de.html [09:18:30] fsfe.org/activities/swpat/letter-20040531.de.html [09:18:30] fsfe.org/activities/swpat/letter-20040706.de.html [09:18:30] fsfe.org/activities/swpat/letter-20040802.de.html [09:18:30] fsfe.org/activities/swpat/letter-20040906.de.html [09:18:30] fsfe.org/activities/swpat/letter-20041004.de.html [09:18:30] fsfe.org/activities/swpat/letter-20041101.de.html [09:18:30] fsfe.org/activities/swpat/letter-20041206.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050103.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050207.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050307.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050405.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050502.de.html [09:18:30] fsfe.org/activities/swpat/letter-20050606.de.html [09:18:30] fsfe.org/activities/swpat/letter-20101222.de.html [09:18:30] fsfe.org/activities/swpat/letter-20110406.de.html [09:18:30] fsfe.org/activities/swpat/memorandum.de.html [09:18:30] fsfe.org/activities/swpat/nortel.de.html [09:18:30] fsfe.org/activities/swpat/novell-cptn.de.html [09:18:30] fsfe.org/activities/swpat/second-reading-bullets.de.html [09:18:30] fsfe.org/activities/swpat/status.de.html [09:18:30] fsfe.org/activities/swpat/swpat.de.html [09:18:30] fsfe.org/activities/swpat/current/model-letter-companies.de.html [09:18:30] fsfe.org/activities/swpat/current/unitary-patent.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool1.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool2.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool3.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool4.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool5.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool6.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool7.de.html [09:18:30] fsfe.org/activities/tgs/tagatschool8.de.html [09:18:30] fsfe.org/activities/tgs/tgs.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/application-confirm.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/application-success.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/howtoupcycle.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/individual-signatures.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/informationmaterial.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/is-flashing-legal.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/openletter.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.html [09:18:30] fsfe.org/activities/upcyclingandroid/workshops.de.html [09:18:30] fsfe.org/activities/whyfs/whyfs.de.html [09:18:30] fsfe.org/activities/wipo/fser.de.html [09:18:30] fsfe.org/activities/wipo/iprip.de.html [09:18:30] fsfe.org/activities/wipo/statement-20050413.de.html [09:18:30] fsfe.org/activities/wipo/statement-20050415.de.html [09:18:30] fsfe.org/activities/wipo/statement-20050620.de.html [09:18:30] fsfe.org/activities/wipo/statement-20050721.de.html [09:18:30] fsfe.org/activities/wipo/statement-20050930.de.html [09:18:30] fsfe.org/activities/wipo/statement-20060223.de.html [09:18:30] fsfe.org/activities/wipo/statement-20060628.de.html [09:18:30] fsfe.org/activities/wipo/statement-20070928.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090324.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090325.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090327.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090420-01.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090420-02.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090430-01.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090430-02.de.html [09:18:30] fsfe.org/activities/wipo/statement-20090501.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100125-01.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100125-02.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100125-03.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100125.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100127-01.de.html [09:18:30] fsfe.org/activities/wipo/statement-20100127-02.de.html [09:18:30] fsfe.org/activities/wipo/statement-20101013.de.html [09:18:30] fsfe.org/activities/wipo/statement-20101124-01.de.html [09:18:30] fsfe.org/activities/wipo/statement-20101124-02.de.html [09:18:30] fsfe.org/activities/wipo/wipo.de.html [09:18:30] fsfe.org/activities/wipo/wiwo.de.html [09:18:30] fsfe.org/activities/wsis/cs-benchmarks-03-11-14.de.html [09:18:30] fsfe.org/activities/wsis/debriefing-geneva.de.html [09:18:30] fsfe.org/activities/wsis/debriefing-paris.de.html [09:18:30] fsfe.org/activities/wsis/event-03-12-10.de.html [09:18:30] fsfe.org/activities/wsis/fs.de.html [09:18:30] fsfe.org/activities/wsis/issues.de.html [09:18:30] fsfe.org/activities/wsis/ps-20030923.de.html [09:18:30] fsfe.org/activities/wsis/wsis-and-software.de.html [09:18:30] fsfe.org/activities/wsis/wsis.de.html [09:18:30] fsfe.org/activities/yh4f/faq.de.html [09:18:30] fsfe.org/activities/yh4f/index.de.html [09:18:30] fsfe.org/activities/yh4f/jury.de.html [09:18:30] fsfe.org/activities/yh4f/media.de.html [09:18:30] fsfe.org/activities/yh4f/register-confirm.de.html [09:18:30] fsfe.org/activities/yh4f/register-success.de.html [09:18:30] fsfe.org/activities/zooom/zooom.de.html [09:18:30] fsfe.org/contact/email-updates.de.html [09:18:30] fsfe.org/contact/projects-call/projects-call.de.html [09:18:30] fsfe.org/contact/projects-call/submission-confirm.de.html [09:18:30] fsfe.org/contact/projects-call/submission-success.de.html [09:18:30] fsfe.org/contribute/contribute.de.html [09:18:30] fsfe.org/contribute/getyourgraphic.de.html [09:18:30] fsfe.org/contribute/promotion-materials-archive.de.html [09:18:30] fsfe.org/contribute/spreadtheword-freebie.de.html [09:18:30] fsfe.org/contribute/spreadtheword-ordererror.de.html [09:18:30] fsfe.org/contribute/spreadtheword-orderthanks.de.html [09:18:30] fsfe.org/contribute/spreadtheword.de.html [09:18:30] fsfe.org/contribute/advocacy/cwfs.de.html [09:18:30] fsfe.org/contribute/designers/designers.de.html [09:18:30] fsfe.org/contribute/designers/styleguide.de.html [09:18:30] fsfe.org/contribute/editors/editorial-guidelines.de.html [09:18:30] fsfe.org/contribute/editors/editors.de.html [09:18:30] fsfe.org/contribute/translators/translators.de.html [09:18:30] fsfe.org/contribute/translators/wordlist.de.html [09:18:30] fsfe.org/contribute/web/features.de.html [09:18:30] fsfe.org/contribute/web/web.de.html [09:18:30] fsfe.org/donate/donate.de.html [09:18:30] fsfe.org/donate/germany.de.html [09:18:30] fsfe.org/donate/hardware.de.html [09:18:30] fsfe.org/donate/letter-20041209.de.html [09:18:30] fsfe.org/donate/letter-2009.de.html [09:18:30] fsfe.org/donate/letter-2011.de.html [09:18:30] fsfe.org/donate/luxembourg.de.html [09:18:30] fsfe.org/donate/netherlands.de.html [09:18:30] fsfe.org/donate/payment.de.html [09:18:30] fsfe.org/donate/switzerland.de.html [09:18:30] fsfe.org/donate/thankgnus-2001.de.html [09:18:30] fsfe.org/donate/thankgnus-2002.de.html [09:18:30] fsfe.org/donate/thankgnus-2003.de.html [09:18:30] fsfe.org/donate/thankgnus-2004.de.html [09:18:30] fsfe.org/donate/thankgnus-2005.de.html [09:18:30] fsfe.org/donate/thankgnus-2006.de.html [09:18:30] fsfe.org/donate/thankgnus-2007.de.html [09:18:30] fsfe.org/donate/thankgnus-2008.de.html [09:18:30] fsfe.org/donate/thankgnus-2009.de.html [09:18:30] fsfe.org/donate/thankgnus-2010.de.html [09:18:30] fsfe.org/donate/thankgnus-2011.de.html [09:18:30] fsfe.org/donate/thankgnus-2012.de.html [09:18:30] fsfe.org/donate/thankgnus-2013.de.html [09:18:30] fsfe.org/donate/thankgnus-2014.de.html [09:18:30] fsfe.org/donate/thankgnus-2015.de.html [09:18:30] fsfe.org/donate/thankgnus-2016.de.html [09:18:30] fsfe.org/donate/thankgnus-2017.de.html [09:18:30] fsfe.org/donate/thankgnus-2018.de.html [09:18:30] fsfe.org/donate/thankgnus-2019.de.html [09:18:30] fsfe.org/donate/thankgnus-2020.de.html [09:18:30] fsfe.org/donate/thankgnus-2021.de.html [09:18:30] fsfe.org/donate/thankgnus-2022.de.html [09:18:30] fsfe.org/donate/thankgnus-2023.de.html [09:18:30] fsfe.org/donate/thankgnus-2024.de.html [09:18:30] fsfe.org/donate/thankgnus.de.html [09:18:30] fsfe.org/donate/thankyou.de.html [09:18:30] fsfe.org/error/400.de.html [09:18:30] fsfe.org/error/401.de.html [09:18:30] fsfe.org/error/403.de.html [09:18:30] fsfe.org/error/404.de.html [09:18:30] fsfe.org/error/405.de.html [09:18:30] fsfe.org/error/408.de.html [09:18:30] fsfe.org/error/410.de.html [09:18:31] fsfe.org/error/411.de.html [09:18:31] fsfe.org/error/412.de.html [09:18:31] fsfe.org/error/413.de.html [09:18:31] fsfe.org/error/414.de.html [09:18:31] fsfe.org/error/415.de.html [09:18:31] fsfe.org/error/500.de.html [09:18:31] fsfe.org/error/501.de.html [09:18:31] fsfe.org/error/502.de.html [09:18:31] fsfe.org/error/503.de.html [09:18:31] fsfe.org/events/SFD-2010.de.html [09:18:31] fsfe.org/events/archive-template.de.html [09:18:31] fsfe.org/events/events.de.html [09:18:31] fsfe.org/events/fscons-2010.de.html [09:18:31] fsfe.org/events/2004/index.de.html [09:18:31] fsfe.org/events/2004/picnic.de.html [09:18:31] fsfe.org/events/2004/FISL/fisl.de.html [09:18:31] fsfe.org/events/2005/index.de.html [09:18:31] fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.de.html [09:18:31] fsfe.org/events/2005/wsf-brazil/wsf-brazil.de.html [09:18:31] fsfe.org/events/2006/index.de.html [09:18:31] fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.de.html [09:18:31] fsfe.org/events/2007/index.de.html [09:18:31] fsfe.org/events/2008/index.de.html [09:18:31] fsfe.org/events/2009/index.de.html [09:18:31] fsfe.org/events/2010/index.de.html [09:18:31] fsfe.org/events/2011/index.de.html [09:18:31] fsfe.org/events/2011/lnm-award-debian.de.html [09:18:31] fsfe.org/events/2012/fscons-2012.de.html [09:18:31] fsfe.org/events/2012/index.de.html [09:18:31] fsfe.org/events/2013/index.de.html [09:18:31] fsfe.org/events/2013/linuxtag-2013.de.html [09:18:31] fsfe.org/events/2013/panel-btw2013.de.html [09:18:31] fsfe.org/events/2013/rmll-2-2013.de.html [09:18:31] fsfe.org/events/2013/rmll-2013.de.html [09:18:31] fsfe.org/events/2014/index.de.html [09:18:31] fsfe.org/events/2015/index.de.html [09:18:31] fsfe.org/events/2016/index.de.html [09:18:31] fsfe.org/events/2016/summit/event-20160616-01.de.html [09:18:31] fsfe.org/events/2016/summit/event-20161106-01.de.html [09:18:31] fsfe.org/events/2016/summit/event-20161106-02.de.html [09:18:31] fsfe.org/events/2017/index.de.html [09:18:31] fsfe.org/events/2018/index.de.html [09:18:31] fsfe.org/events/2019/index.de.html [09:18:31] fsfe.org/events/2020/index.de.html [09:18:31] fsfe.org/events/2021/index.de.html [09:18:31] fsfe.org/events/2022/index.de.html [09:18:31] fsfe.org/events/clt/clt-bus.de.html [09:18:31] fsfe.org/events/clt/clt-hotel.de.html [09:18:31] fsfe.org/events/tools/eventregistration.de.html [09:18:31] fsfe.org/freesoftware/artificial-intelligence.de.html [09:18:31] fsfe.org/freesoftware/comparison.de.html [09:18:31] fsfe.org/freesoftware/democracy.de.html [09:18:31] fsfe.org/freesoftware/freesoftware.de.html [09:18:31] fsfe.org/freesoftware/gnuproject.de.html [09:18:31] fsfe.org/freesoftware/secure-boot.de.html [09:18:31] fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.html [09:18:31] fsfe.org/freesoftware/education/argumentation.de.html [09:18:31] fsfe.org/freesoftware/education/edu-related-content.de.html [09:18:31] fsfe.org/freesoftware/education/education.de.html [09:18:31] fsfe.org/freesoftware/education/eduteam.de.html [09:18:31] fsfe.org/freesoftware/legal/faq.de.html [09:18:31] fsfe.org/freesoftware/legal/led.de.html [09:18:31] fsfe.org/freesoftware/legal/legal.de.html [09:18:31] fsfe.org/freesoftware/procurement/mEUcrosoft.de.html [09:18:31] fsfe.org/freesoftware/procurement/procurement.de.html [09:18:31] fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.de.html [09:18:31] fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.de.html [09:18:31] fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.de.html [09:18:31] fsfe.org/freesoftware/standards/bsa-letter-analysis.de.html [09:18:31] fsfe.org/freesoftware/standards/bt-open-letter.de.html [09:18:31] fsfe.org/freesoftware/standards/def.de.html [09:18:31] fsfe.org/freesoftware/standards/dfd.de.html [09:18:31] fsfe.org/freesoftware/standards/eif-v3.de.html [09:18:31] fsfe.org/freesoftware/standards/eifv2-01.de.html [09:18:31] fsfe.org/freesoftware/standards/eifv2.de.html [09:18:31] fsfe.org/freesoftware/standards/guardian-open-letter.de.html [09:18:31] fsfe.org/freesoftware/standards/minimalisticstandards.de.html [09:18:31] fsfe.org/freesoftware/standards/ps.de.html [09:18:31] fsfe.org/freesoftware/standards/standards.de.html [09:18:31] fsfe.org/freesoftware/standards/transparency-letter.de.html [09:18:31] fsfe.org/freesoftware/standards/uk-standards-consultation.de.html [09:18:31] fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.de.html [09:18:31] fsfe.org/freesoftware/sustainability/sustainability.de.html [09:18:31] fsfe.org/internal/bc.de.html [09:18:31] fsfe.org/internal/er.de.html [09:18:31] fsfe.org/internal/nt.de.html [09:18:31] fsfe.org/internal/pd-result.de.html [09:18:31] fsfe.org/internal/pd.de.html [09:18:31] fsfe.org/internal/pt.de.html [09:18:31] fsfe.org/internal/rc-result.de.html [09:18:31] fsfe.org/internal/rc.de.html [09:18:31] fsfe.org/news/archive-template.de.html [09:18:31] fsfe.org/news/news.de.html [09:18:31] fsfe.org/news/newsletter.de.html [09:18:31] fsfe.org/news/podcast-opus.de.html [09:18:31] fsfe.org/news/podcast.de.html [09:18:31] fsfe.org/news/2001/article-13.12.2001.de.html [09:18:31] fsfe.org/news/2001/article-24.9.2001.de.html [09:18:31] fsfe.org/news/2001/article2001-10-20-01.de.html [09:18:31] fsfe.org/news/2001/article2001-12-17-01.de.html [09:18:31] fsfe.org/news/2001/index.de.html [09:18:31] fsfe.org/news/2002/article-25.04.2002.de.html [09:18:31] fsfe.org/news/2002/article-30.9.2002.de.html [09:18:31] fsfe.org/news/2002/article2002-01-18-01.de.html [09:18:31] fsfe.org/news/2002/index.de.html [09:18:31] fsfe.org/news/2003/commissione-meo-presentazione.de.html [09:18:31] fsfe.org/news/2003/commissione-meo-risposte.de.html [09:18:31] fsfe.org/news/2003/index.de.html [09:18:31] fsfe.org/news/2003/lettera_MIUR-2003-07-16.de.html [09:18:31] fsfe.org/news/2003/news-20030211-01.de.html [09:18:31] fsfe.org/news/2003/news-20030602-01.de.html [09:18:31] fsfe.org/news/2003/vsi-studie.de.html [09:18:31] fsfe.org/news/2004/cie.de.html [09:18:31] fsfe.org/news/2004/cw-interview.de.html [09:18:31] fsfe.org/news/2004/index.de.html [09:18:31] fsfe.org/news/2004/navigator-20040521.de.html [09:18:31] fsfe.org/news/2004/navigator-20040624.de.html [09:18:31] fsfe.org/news/2004/navigator-20040917.de.html [09:18:31] fsfe.org/news/2004/navigator-20040930.de.html [09:18:31] fsfe.org/news/2004/navigator-20041129.de.html [09:18:31] fsfe.org/news/2004/news-20040510-01.de.html [09:18:31] fsfe.org/news/2004/news-20040621-01.de.html [09:18:31] fsfe.org/news/2004/news-20040701-01.de.html [09:18:31] fsfe.org/news/2004/news-20040727-01.de.html [09:18:31] fsfe.org/news/2005/index.de.html [09:18:31] fsfe.org/news/2005/letter-20050511-it-mep.de.html [09:18:31] fsfe.org/news/2005/news-20050507-01.de.html [09:18:31] fsfe.org/news/2006/index.de.html [09:18:31] fsfe.org/news/2007/index.de.html [09:18:31] fsfe.org/news/2007/news-20070630-01.de.html [09:18:31] fsfe.org/news/2007/news-20071220-01.de.html [09:18:31] fsfe.org/news/2007/news-20071221-01.de.html [09:18:31] fsfe.org/news/2008/freedom-not-fear.de.html [09:18:31] fsfe.org/news/2008/gnu-25-years.de.html [09:18:31] fsfe.org/news/2008/index.de.html [09:18:31] fsfe.org/news/2008/news-20080118-01.de.html [09:18:31] fsfe.org/news/2008/news-20080214-01.de.html [09:18:31] fsfe.org/news/2008/news-20080220-01.de.html [09:18:31] fsfe.org/news/2008/news-20080222-01.de.html [09:18:31] fsfe.org/news/2008/news-20080228-01.de.html [09:18:31] fsfe.org/news/2008/news-20080301-01.de.html [09:18:31] fsfe.org/news/2008/news-20080305-01.de.html [09:18:31] fsfe.org/news/2008/news-20081202-02.de.html [09:18:31] fsfe.org/news/2008/news-20081208-01.de.html [09:18:31] fsfe.org/news/2008/news-20081210-01.de.html [09:18:31] fsfe.org/news/2008/news-20081215-01.de.html [09:18:31] fsfe.org/news/2009/index.de.html [09:18:31] fsfe.org/news/2009/news-20090120-02.de.html [09:18:31] fsfe.org/news/2009/news-20090123-01.de.html [09:18:31] fsfe.org/news/2009/news-20090202-01.de.html [09:18:31] fsfe.org/news/2009/news-20090227-01.de.html [09:18:31] fsfe.org/news/2009/news-20090301-01.de.html [09:18:31] fsfe.org/news/2009/news-20090311-01.de.html [09:18:31] fsfe.org/news/2009/news-20090323-01.de.html [09:18:31] fsfe.org/news/2009/news-20090325-01.de.html [09:18:31] fsfe.org/news/2009/news-20090411-01.de.html [09:18:31] fsfe.org/news/2009/news-20090414-01.de.html [09:18:31] fsfe.org/news/2009/news-20090418-01.de.html [09:18:31] fsfe.org/news/2009/news-20090430-01.de.html [09:18:31] fsfe.org/news/2009/news-20090515-01.de.html [09:18:31] fsfe.org/news/2009/news-20090601-01.de.html [09:18:31] fsfe.org/news/2009/news-20090604-01.de.html [09:18:31] fsfe.org/news/2009/news-20090610-01.de.html [09:18:31] fsfe.org/news/2009/news-20090620-01.de.html [09:18:31] fsfe.org/news/2009/news-20090624-01.de.html [09:18:31] fsfe.org/news/2009/news-20090728-01.de.html [09:18:31] fsfe.org/news/2009/news-20090831-01.de.html [09:18:31] fsfe.org/news/2009/news-20090908-01.de.html [09:18:31] fsfe.org/news/2009/news-20090921-01.de.html [09:18:31] fsfe.org/news/2009/news-20091005-01.de.html [09:18:31] fsfe.org/news/2009/news-20091006-01.de.html [09:18:31] fsfe.org/news/2009/news-20091008-01.de.html [09:18:31] fsfe.org/news/2009/news-20091019-01.de.html [09:18:31] fsfe.org/news/2009/news-20091023-02.de.html [09:18:31] fsfe.org/news/2009/news-20091109-01.de.html [09:18:31] fsfe.org/news/2009/news-20091109-02.de.html [09:18:31] fsfe.org/news/2009/news-20091118-01.de.html [09:18:31] fsfe.org/news/2009/news-20091127-01.de.html [09:18:31] fsfe.org/news/2009/news-20091216-01.de.html [09:18:31] fsfe.org/news/2009/nyr.de.html [09:18:31] fsfe.org/news/2010/index.de.html [09:18:31] fsfe.org/news/2010/news-20100126-01.de.html [09:18:31] fsfe.org/news/2010/news-20100129-01.de.html [09:18:31] fsfe.org/news/2010/news-20100212-01.de.html [09:18:31] fsfe.org/news/2010/news-20100222-01.de.html [09:18:31] fsfe.org/news/2010/news-20100302-01.de.html [09:18:31] fsfe.org/news/2010/news-20100305-01.de.html [09:18:31] fsfe.org/news/2010/news-20100324-01.de.html [09:18:31] fsfe.org/news/2010/news-20100330-01.de.html [09:18:31] fsfe.org/news/2010/news-20100331-01.de.html [09:18:31] fsfe.org/news/2010/news-20100428-01.de.html [09:18:31] fsfe.org/news/2010/news-20100508-01.de.html [09:18:31] fsfe.org/news/2010/news-20100510-01.de.html [09:18:31] fsfe.org/news/2010/news-20100519-01.de.html [09:18:31] fsfe.org/news/2010/news-20100702-01.de.html [09:18:31] fsfe.org/news/2010/news-20100705-01.de.html [09:18:31] fsfe.org/news/2010/news-20100802-01.de.html [09:18:31] fsfe.org/news/2010/news-20100803-01.de.html [09:18:31] fsfe.org/news/2010/news-20100907-01.de.html [09:18:31] fsfe.org/news/2010/news-20100913-01.de.html [09:18:31] fsfe.org/news/2010/news-20101016-01.de.html [09:18:31] fsfe.org/news/2010/news-20101018-01.de.html [09:18:31] fsfe.org/news/2010/news-20101102-01.de.html [09:18:31] fsfe.org/news/2010/news-20101108-01.de.html [09:18:31] fsfe.org/news/2010/news-20101207-01.de.html [09:18:31] fsfe.org/news/2010/news-20101216-01.de.html [09:18:31] fsfe.org/news/2010/news-20101217-01.de.html [09:18:31] fsfe.org/news/2010/th-eulogy-20100508.de.html [09:18:31] fsfe.org/news/2011/index.de.html [09:18:31] fsfe.org/news/2011/mapping-uk.de.html [09:18:31] fsfe.org/news/2011/news-20110113-01.de.html [09:18:31] fsfe.org/news/2011/news-20110113-02.de.html [09:18:31] fsfe.org/news/2011/news-20110201-01.de.html [09:18:31] fsfe.org/news/2011/news-20110202-01.de.html [09:18:31] fsfe.org/news/2011/news-20110202-02.de.html [09:18:31] fsfe.org/news/2011/news-20110209-01.de.html [09:18:31] fsfe.org/news/2011/news-20110214-01.de.html [09:18:31] fsfe.org/news/2011/news-20110215-01.de.html [09:18:31] fsfe.org/news/2011/news-20110225-01.de.html [09:18:31] fsfe.org/news/2011/news-20110301-01.de.html [09:18:31] fsfe.org/news/2011/news-20110310-01.de.html [09:18:31] fsfe.org/news/2011/news-20110318-01.de.html [09:18:31] fsfe.org/news/2011/news-20110321-01.de.html [09:18:31] fsfe.org/news/2011/news-20110325-01.de.html [09:18:31] fsfe.org/news/2011/news-20110330-01.de.html [09:18:31] fsfe.org/news/2011/news-20110330-02.de.html [09:18:31] fsfe.org/news/2011/news-20110330-03.de.html [09:18:31] fsfe.org/news/2011/news-20110330-04.de.html [09:18:31] fsfe.org/news/2011/news-20110401-01.de.html [09:18:31] fsfe.org/news/2011/news-20110412-01.de.html [09:18:31] fsfe.org/news/2011/news-20110415-01.de.html [09:18:31] fsfe.org/news/2011/news-20110418-01.de.html [09:18:31] fsfe.org/news/2011/news-20110420-01.de.html [09:18:31] fsfe.org/news/2011/news-20110421-01.de.html [09:18:31] fsfe.org/news/2011/news-20110502-01.de.html [09:18:31] fsfe.org/news/2011/news-20110511-01.de.html [09:18:31] fsfe.org/news/2011/news-20110520-01.de.html [09:18:31] fsfe.org/news/2011/news-20110523-01.de.html [09:18:31] fsfe.org/news/2011/news-20110525-01.de.html [09:18:31] fsfe.org/news/2011/news-20110608-01.de.html [09:18:31] fsfe.org/news/2011/news-20110620-01.de.html [09:18:31] fsfe.org/news/2011/news-20110622-01.de.html [09:18:31] fsfe.org/news/2011/news-20110718-01.de.html [09:18:31] fsfe.org/news/2011/news-20110809-01.de.html [09:18:31] fsfe.org/news/2011/news-20110913-01.de.html [09:18:31] fsfe.org/news/2011/news-20110919-01.de.html [09:18:31] fsfe.org/news/2011/news-20111025-01.de.html [09:18:31] fsfe.org/news/2011/news-20111107-01.de.html [09:18:31] fsfe.org/news/2011/news-20111110-01.de.html [09:18:31] fsfe.org/news/2011/news-20111114-01.de.html [09:18:31] fsfe.org/news/2011/news-20111117-01.de.html [09:18:31] fsfe.org/news/2011/news-20111122-01.de.html [09:18:31] fsfe.org/news/2011/news-20111128-01.de.html [09:18:31] fsfe.org/news/2011/news-20111128-02.de.html [09:18:31] fsfe.org/news/2011/news-20111201-01.de.html [09:18:31] fsfe.org/news/2011/news-20111201-02.de.html [09:18:31] fsfe.org/news/2011/news-20111206-01.de.html [09:18:31] fsfe.org/news/2011/news-20111208-01.de.html [09:18:31] fsfe.org/news/2011/news-20111208-02.de.html [09:18:31] fsfe.org/news/2011/news-20111213-01.de.html [09:18:31] fsfe.org/news/2011/news-20111213-02.de.html [09:18:31] fsfe.org/news/2011/news-20111220-01.de.html [09:18:31] fsfe.org/news/2012/index.de.html [09:18:31] fsfe.org/news/2012/news-20120109-02.de.html [09:18:31] fsfe.org/news/2012/news-20120110-01.de.html [09:18:31] fsfe.org/news/2012/news-20120110-02.de.html [09:18:31] fsfe.org/news/2012/news-20120120-01.de.html [09:18:31] fsfe.org/news/2012/news-20120126-01.de.html [09:18:31] fsfe.org/news/2012/news-20120130-01.de.html [09:18:31] fsfe.org/news/2012/news-20120131-01.de.html [09:18:31] fsfe.org/news/2012/news-20120202-01.de.html [09:18:31] fsfe.org/news/2012/news-20120202-02.de.html [09:18:31] fsfe.org/news/2012/news-20120204-01.de.html [09:18:31] fsfe.org/news/2012/news-20120209-01.de.html [09:18:31] fsfe.org/news/2012/news-20120210-01.de.html [09:18:31] fsfe.org/news/2012/news-20120214-01.de.html [09:18:31] fsfe.org/news/2012/news-20120223-01.de.html [09:18:31] fsfe.org/news/2012/news-20120228-01.de.html [09:18:31] fsfe.org/news/2012/news-20120303-01.de.html [09:18:31] fsfe.org/news/2012/news-20120321-01.de.html [09:18:31] fsfe.org/news/2012/news-20120322-01.de.html [09:18:31] fsfe.org/news/2012/news-20120323-02.de.html [09:18:31] fsfe.org/news/2012/news-20120323-03.de.html [09:18:31] fsfe.org/news/2012/news-20120328-01.de.html [09:18:31] fsfe.org/news/2012/news-20120328-02.de.html [09:18:31] fsfe.org/news/2012/news-20120330-01.de.html [09:18:31] fsfe.org/news/2012/news-20120402-01.de.html [09:18:31] fsfe.org/news/2012/news-20120405-01.de.html [09:18:31] fsfe.org/news/2012/news-20120412-01.de.html [09:18:31] fsfe.org/news/2012/news-20120412-02.de.html [09:18:31] fsfe.org/news/2012/news-20120425-01.de.html [09:18:31] fsfe.org/news/2012/news-20120425-02.de.html [09:18:31] fsfe.org/news/2012/news-20120426-01.de.html [09:18:31] fsfe.org/news/2012/news-20120501-02.de.html [09:18:31] fsfe.org/news/2012/news-20120502-01.de.html [09:18:31] fsfe.org/news/2012/news-20120508-01.de.html [09:18:31] fsfe.org/news/2012/news-20120509-01.de.html [09:18:31] fsfe.org/news/2012/news-20120509-02.de.html [09:18:31] fsfe.org/news/2012/news-20120525-01.de.html [09:18:31] fsfe.org/news/2012/news-20120528-01.de.html [09:18:31] fsfe.org/news/2012/news-20120601-02.de.html [09:18:31] fsfe.org/news/2012/news-20120607-01.de.html [09:18:31] fsfe.org/news/2012/news-20120616-01.de.html [09:18:31] fsfe.org/news/2012/news-20120619-01.de.html [09:18:31] fsfe.org/news/2012/news-20120627-01.de.html [09:18:31] fsfe.org/news/2012/news-20120711-01.de.html [09:18:31] fsfe.org/news/2012/news-20120730-01.de.html [09:18:31] fsfe.org/news/2012/news-20120730-02.de.html [09:18:31] fsfe.org/news/2012/news-20120831-01.de.html [09:18:31] fsfe.org/news/2012/news-20120907-01.de.html [09:18:31] fsfe.org/news/2012/news-20120918-01.de.html [09:18:31] fsfe.org/news/2012/news-20120920-01.de.html [09:18:31] fsfe.org/news/2012/news-20120921-01.de.html [09:18:31] fsfe.org/news/2012/news-20120925-01.de.html [09:18:31] fsfe.org/news/2012/news-20121018-01.de.html [09:18:31] fsfe.org/news/2012/news-20121022-01.de.html [09:18:31] fsfe.org/news/2012/news-20121101-02.de.html [09:18:31] fsfe.org/news/2012/news-20121102-01.de.html [09:18:31] fsfe.org/news/2012/news-20121106-01.de.html [09:18:31] fsfe.org/news/2012/news-20121112-01.de.html [09:18:31] fsfe.org/news/2012/news-20121116-01.de.html [09:18:31] fsfe.org/news/2012/news-20121120-01.de.html [09:18:31] fsfe.org/news/2012/news-20121122-01.de.html [09:18:31] fsfe.org/news/2012/news-20121129-01.de.html [09:18:31] fsfe.org/news/2012/news-20121208-01.de.html [09:18:31] fsfe.org/news/2012/news-20121211-01.de.html [09:18:31] fsfe.org/news/2012/news-20121214-01.de.html [09:18:31] fsfe.org/news/2012/news-20121217-01.de.html [09:18:31] fsfe.org/news/2012/news-20130329-01.de.html [09:18:31] fsfe.org/news/2012/report-2012.de.html [09:18:31] fsfe.org/news/2013/index.de.html [09:18:31] fsfe.org/news/2013/news-20130212-01.de.html [09:18:31] fsfe.org/news/2013/news-20130218-01.de.html [09:18:31] fsfe.org/news/2013/news-20130221-01.de.html [09:18:31] fsfe.org/news/2013/news-20130226-01.de.html [09:18:31] fsfe.org/news/2013/news-20130312-01.de.html [09:18:31] fsfe.org/news/2013/news-20130319-01.de.html [09:18:31] fsfe.org/news/2013/news-20130327-01.de.html [09:18:31] fsfe.org/news/2013/news-20130327-02.de.html [09:18:31] fsfe.org/news/2013/news-20130402-01.de.html [09:18:31] fsfe.org/news/2013/news-20130422-01.de.html [09:18:31] fsfe.org/news/2013/news-20130423-02.de.html [09:18:31] fsfe.org/news/2013/news-20130424-01.de.html [09:18:31] fsfe.org/news/2013/news-20130429-01.de.html [09:18:31] fsfe.org/news/2013/news-20130503-01.de.html [09:18:31] fsfe.org/news/2013/news-20130611-01.de.html [09:18:31] fsfe.org/news/2013/news-20130612-01.de.html [09:18:31] fsfe.org/news/2013/news-20130620-01.de.html [09:18:31] fsfe.org/news/2013/news-20130620-02.de.html [09:18:31] fsfe.org/news/2013/news-20130625-02.de.html [09:18:31] fsfe.org/news/2013/news-20130626-01.de.html [09:18:31] fsfe.org/news/2013/news-20130703-01.de.html [09:18:31] fsfe.org/news/2013/news-20130712-01.de.html [09:18:31] fsfe.org/news/2013/news-20130716-01.de.html [09:18:31] fsfe.org/news/2013/news-20130729-01.de.html [09:18:31] fsfe.org/news/2013/news-20130729-02.de.html [09:18:31] fsfe.org/news/2013/news-20130730-01.de.html [09:18:31] fsfe.org/news/2013/news-20130918-01.de.html [09:18:31] fsfe.org/news/2013/news-20130920-01.de.html [09:18:31] fsfe.org/news/2013/news-20130923-01.de.html [09:18:31] fsfe.org/news/2013/news-20130926-01.de.html [09:18:31] fsfe.org/news/2013/news-20130927-01.de.html [09:18:31] fsfe.org/news/2013/news-20131104-02.de.html [09:18:31] fsfe.org/news/2013/news-20131105-01.de.html [09:18:31] fsfe.org/news/2013/news-20131107-01.de.html [09:18:31] fsfe.org/news/2013/news-20131211-01.de.html [09:18:31] fsfe.org/news/2013/news-20131213-01.de.html [09:18:31] fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.de.html [09:18:31] fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.de.html [09:18:31] fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.de.html [09:18:31] fsfe.org/news/2014/index.de.html [09:18:31] fsfe.org/news/2014/news-20140116-01.de.html [09:18:31] fsfe.org/news/2014/news-20140210-01.de.html [09:18:31] fsfe.org/news/2014/news-20140211-01.de.html [09:18:31] fsfe.org/news/2014/news-20140221-01.de.html [09:18:31] fsfe.org/news/2014/news-20140226-01.de.html [09:18:31] fsfe.org/news/2014/news-20140303-01.de.html [09:18:31] fsfe.org/news/2014/news-20140304-01.de.html [09:18:31] fsfe.org/news/2014/news-20140310-01.de.html [09:18:31] fsfe.org/news/2014/news-20140314-01.de.html [09:18:31] fsfe.org/news/2014/news-20140324-01.de.html [09:18:31] fsfe.org/news/2014/news-20140326-01.de.html [09:18:31] fsfe.org/news/2014/news-20140326-02.de.html [09:18:31] fsfe.org/news/2014/news-20140328-01.de.html [09:18:31] fsfe.org/news/2014/news-20140424-01.de.html [09:18:31] fsfe.org/news/2014/news-20140506-01.de.html [09:18:31] fsfe.org/news/2014/news-20140527-01.de.html [09:18:31] fsfe.org/news/2014/news-20140528-01.de.html [09:18:31] fsfe.org/news/2014/news-20140708-01.de.html [09:18:31] fsfe.org/news/2014/news-20140801-01.de.html [09:18:31] fsfe.org/news/2014/news-20140912-01.de.html [09:18:31] fsfe.org/news/2014/news-20140929-01.de.html [09:18:31] fsfe.org/news/2014/news-20141016-01.de.html [09:18:31] fsfe.org/news/2014/news-20141017-01.de.html [09:18:31] fsfe.org/news/2014/news-20141017-02.de.html [09:18:31] fsfe.org/news/2014/news-20141120-02.de.html [09:18:31] fsfe.org/news/2014/news-20141203-01.de.html [09:18:31] fsfe.org/news/2014/news-20141212-01.de.html [09:18:31] fsfe.org/news/2014/news-20141217-01.de.html [09:18:31] fsfe.org/news/2014/news-20141218-01.de.html [09:18:31] fsfe.org/news/2014/news-20141218-02.de.html [09:18:31] fsfe.org/news/2014/news-20141219-01.de.html [09:18:31] fsfe.org/news/2015/index.de.html [09:18:31] fsfe.org/news/2015/news-20150209-01.de.html [09:18:31] fsfe.org/news/2015/news-20150210-01.de.html [09:18:31] fsfe.org/news/2015/news-20150218-01.de.html [09:18:31] fsfe.org/news/2015/news-20150224-01.de.html [09:18:31] fsfe.org/news/2015/news-20150301-01.de.html [09:18:31] fsfe.org/news/2015/news-20150302-02.de.html [09:18:31] fsfe.org/news/2015/news-20150303-01.de.html [09:18:31] fsfe.org/news/2015/news-20150306-01.de.html [09:18:31] fsfe.org/news/2015/news-20150316-01.de.html [09:18:31] fsfe.org/news/2015/news-20150324-01.de.html [09:18:31] fsfe.org/news/2015/news-20150325-01.de.html [09:18:31] fsfe.org/news/2015/news-20150331-01.de.html [09:18:31] fsfe.org/news/2015/news-20150401-01.de.html [09:18:31] fsfe.org/news/2015/news-20150401-02.de.html [09:18:31] fsfe.org/news/2015/news-20150414-01.de.html [09:18:31] fsfe.org/news/2015/news-20150506-01.de.html [09:18:31] fsfe.org/news/2015/news-20150527-01.de.html [09:18:31] fsfe.org/news/2015/news-20150605-01.de.html [09:18:31] fsfe.org/news/2015/news-20150605-02.de.html [09:18:31] fsfe.org/news/2015/news-20150616-01.de.html [09:18:31] fsfe.org/news/2015/news-20150817-01.de.html [09:18:31] fsfe.org/news/2015/news-20150829-01.de.html [09:18:31] fsfe.org/news/2015/news-20150902-01.de.html [09:18:31] fsfe.org/news/2015/news-20150916-01.de.html [09:18:31] fsfe.org/news/2015/news-20150918-01.de.html [09:18:31] fsfe.org/news/2015/news-20150918-02.de.html [09:18:31] fsfe.org/news/2015/news-20150922-01.de.html [09:18:31] fsfe.org/news/2015/news-20151013-01.de.html [09:18:31] fsfe.org/news/2015/news-20151020-01.de.html [09:18:31] fsfe.org/news/2015/news-20151028-01.de.html [09:18:31] fsfe.org/news/2015/news-20151104-01.de.html [09:18:31] fsfe.org/news/2015/news-20151105-01.de.html [09:18:31] fsfe.org/news/2015/news-20151110-01.de.html [09:18:31] fsfe.org/news/2015/news-20151203-01.de.html [09:18:31] fsfe.org/news/2015/news-20151216-01.de.html [09:18:31] fsfe.org/news/2016/index.de.html [09:18:31] fsfe.org/news/2016/news-20160118-01.de.html [09:18:31] fsfe.org/news/2016/news-20160122-01.de.html [09:18:31] fsfe.org/news/2016/news-20160126-01.de.html [09:18:31] fsfe.org/news/2016/news-20160128-01.de.html [09:18:31] fsfe.org/news/2016/news-20160205-01.de.html [09:18:31] fsfe.org/news/2016/news-20160208-01.de.html [09:18:31] fsfe.org/news/2016/news-20160222-01.de.html [09:18:31] fsfe.org/news/2016/news-20160224-01.de.html [09:18:31] fsfe.org/news/2016/news-20160406-01.de.html [09:18:31] fsfe.org/news/2016/news-20160411-01.de.html [09:18:31] fsfe.org/news/2016/news-20160428-01.de.html [09:18:31] fsfe.org/news/2016/news-20160428-02.de.html [09:18:31] fsfe.org/news/2016/news-20160502-01.de.html [09:18:31] fsfe.org/news/2016/news-20160624-01.de.html [09:18:31] fsfe.org/news/2016/news-20160630-01.de.html [09:18:31] fsfe.org/news/2016/news-20160725-01.de.html [09:18:31] fsfe.org/news/2016/news-20160804-01.de.html [09:18:31] fsfe.org/news/2016/news-20160809-01.de.html [09:18:31] fsfe.org/news/2016/news-20160817-01.de.html [09:18:31] fsfe.org/news/2016/news-20160823-01.de.html [09:18:31] fsfe.org/news/2016/news-20160831-01.de.html [09:18:31] fsfe.org/news/2016/news-20160907-01.de.html [09:18:31] fsfe.org/news/2016/news-20160928-01.de.html [09:18:31] fsfe.org/news/2016/news-20160930-01.de.html [09:18:31] fsfe.org/news/2016/news-20161027-01.de.html [09:18:31] fsfe.org/news/2016/news-20161031-01.de.html [09:18:31] fsfe.org/news/2016/news-20161110-01.de.html [09:18:31] fsfe.org/news/2016/news-20161202-01.de.html [09:18:31] fsfe.org/news/2017/index.de.html [09:18:31] fsfe.org/news/2017/news-20170105-01.de.html [09:18:31] fsfe.org/news/2017/news-20170109-01.de.html [09:18:31] fsfe.org/news/2017/news-20170110-01.de.html [09:18:31] fsfe.org/news/2017/news-20170116-01.de.html [09:18:31] fsfe.org/news/2017/news-20170209-01.de.html [09:18:31] fsfe.org/news/2017/news-20170214-01.de.html [09:18:31] fsfe.org/news/2017/news-20170214-02.de.html [09:18:31] fsfe.org/news/2017/news-20170217-01.de.html [09:18:31] fsfe.org/news/2017/news-20170301-01.de.html [09:18:31] fsfe.org/news/2017/news-20170302-01.de.html [09:18:31] fsfe.org/news/2017/news-20170315-01.de.html [09:18:31] fsfe.org/news/2017/news-20170321-01.de.html [09:18:31] fsfe.org/news/2017/news-20170328-01.de.html [09:18:31] fsfe.org/news/2017/news-20170419-01.de.html [09:18:31] fsfe.org/news/2017/news-20170425-01.de.html [09:18:31] fsfe.org/news/2017/news-20170613-01.de.html [09:18:31] fsfe.org/news/2017/news-20170616-01.de.html [09:18:31] fsfe.org/news/2017/news-20170619-01.de.html [09:18:31] fsfe.org/news/2017/news-20170710-01.de.html [09:18:31] fsfe.org/news/2017/news-20170726-01.de.html [09:18:31] fsfe.org/news/2017/news-20170811-01.de.html [09:18:31] fsfe.org/news/2017/news-20170829-01.de.html [09:18:31] fsfe.org/news/2017/news-20170905-01.de.html [09:18:31] fsfe.org/news/2017/news-20170906-01.de.html [09:18:31] fsfe.org/news/2017/news-20170908-01.de.html [09:18:31] fsfe.org/news/2017/news-20170911-01.de.html [09:18:31] fsfe.org/news/2017/news-20170913-01.de.html [09:18:31] fsfe.org/news/2017/news-20171005-01.de.html [09:18:31] fsfe.org/news/2017/news-20171013-01.de.html [09:18:31] fsfe.org/news/2017/news-20171024-01.de.html [09:18:31] fsfe.org/news/2017/news-20171107-01.de.html [09:18:31] fsfe.org/news/2017/news-20171108-01.de.html [09:18:31] fsfe.org/news/2017/news-20171109-01.de.html [09:18:31] fsfe.org/news/2017/news-20171114-01.de.html [09:18:31] fsfe.org/news/2017/news-20171116-01.de.html [09:18:31] fsfe.org/news/2017/news-20171130-01.de.html [09:18:31] fsfe.org/news/2017/news-20171206-01.de.html [09:18:31] fsfe.org/news/2017/news-20171207-01.de.html [09:18:31] fsfe.org/news/2017/news-20171207-02.de.html [09:18:31] fsfe.org/news/2017/news-20171211-01.de.html [09:18:31] fsfe.org/news/2017/news-20171212-01.de.html [09:18:31] fsfe.org/news/2017/news-20171219-01.de.html [09:18:31] fsfe.org/news/2018/index.de.html [09:18:31] fsfe.org/news/2018/news-20180111-01.de.html [09:18:31] fsfe.org/news/2018/news-20180119-01.de.html [09:18:31] fsfe.org/news/2018/news-20180212-01.de.html [09:18:31] fsfe.org/news/2018/news-20180215-01.de.html [09:18:31] fsfe.org/news/2018/news-20180219-01.de.html [09:18:31] fsfe.org/news/2018/news-20180302-01.de.html [09:18:31] fsfe.org/news/2018/news-20180308-01.de.html [09:18:31] fsfe.org/news/2018/news-20180322-01.de.html [09:18:31] fsfe.org/news/2018/news-20180414-01.de.html [09:18:31] fsfe.org/news/2018/news-20180526-01.de.html [09:18:31] fsfe.org/news/2018/news-20180529-01.de.html [09:18:31] fsfe.org/news/2018/news-20180530-02.de.html [09:18:31] fsfe.org/news/2018/news-20180601-01.de.html [09:18:31] fsfe.org/news/2018/news-20180613-01.de.html [09:18:31] fsfe.org/news/2018/news-20180705-01.de.html [09:18:31] fsfe.org/news/2018/news-20180716-01.de.html [09:18:31] fsfe.org/news/2018/news-20180723-01.de.html [09:18:31] fsfe.org/news/2018/news-20180725-01.de.html [09:18:31] fsfe.org/news/2018/news-20180905-02.de.html [09:18:31] fsfe.org/news/2018/news-20180907-01.de.html [09:18:31] fsfe.org/news/2018/news-20180913-01.de.html [09:18:31] fsfe.org/news/2018/news-20180917-01.de.html [09:18:31] fsfe.org/news/2018/news-20181010-01.de.html [09:18:31] fsfe.org/news/2018/news-20181023-02.de.html [09:18:31] fsfe.org/news/2018/news-20181024-01.de.html [09:18:31] fsfe.org/news/2018/news-20181105-01.de.html [09:18:31] fsfe.org/news/2018/news-20181205-01.de.html [09:18:31] fsfe.org/news/2019/index.de.html [09:18:31] fsfe.org/news/2019/news-20190108-01.de.html [09:18:31] fsfe.org/news/2019/news-20190124-01.de.html [09:18:31] fsfe.org/news/2019/news-20190205-01.de.html [09:18:31] fsfe.org/news/2019/news-20190214-01.de.html [09:18:31] fsfe.org/news/2019/news-20190308-01.de.html [09:18:31] fsfe.org/news/2019/news-20190326-01.de.html [09:18:31] fsfe.org/news/2019/news-20190329-01.de.html [09:18:31] fsfe.org/news/2019/news-20190514-01.de.html [09:18:31] fsfe.org/news/2019/news-20190515-01.de.html [09:18:31] fsfe.org/news/2019/news-20190515-02.de.html [09:18:31] fsfe.org/news/2019/news-20190520-01.de.html [09:18:31] fsfe.org/news/2019/news-20190701-01.de.html [09:18:31] fsfe.org/news/2019/news-20190806-01.de.html [09:18:31] fsfe.org/news/2019/news-20190807-01.de.html [09:18:31] fsfe.org/news/2019/news-20190827-01.de.html [09:18:31] fsfe.org/news/2019/news-20190917-01.de.html [09:18:31] fsfe.org/news/2019/news-20190927-01.de.html [09:18:31] fsfe.org/news/2019/news-20191002-01.de.html [09:18:31] fsfe.org/news/2019/news-20191007-01.de.html [09:18:31] fsfe.org/news/2019/news-20191012-01.de.html [09:18:31] fsfe.org/news/2019/news-20191014-01.de.html [09:18:31] fsfe.org/news/2019/news-20191022-01.de.html [09:18:31] fsfe.org/news/2019/news-20191028-01.de.html [09:18:31] fsfe.org/news/2019/news-20191102-01.de.html [09:18:31] fsfe.org/news/2019/news-20191112-01.de.html [09:18:31] fsfe.org/news/2019/news-20191113-01.de.html [09:18:31] fsfe.org/news/2019/news-20191120-01.de.html [09:18:31] fsfe.org/news/2019/news-20191125-01.de.html [09:18:31] fsfe.org/news/2019/news-20191128-01.de.html [09:18:31] fsfe.org/news/2019/news-20191205-01.de.html [09:18:31] fsfe.org/news/2020/index.de.html [09:18:31] fsfe.org/news/2020/news-20200121-01.de.html [09:18:31] fsfe.org/news/2020/news-20200129-01.de.html [09:18:31] fsfe.org/news/2020/news-20200212-01.de.html [09:18:31] fsfe.org/news/2020/news-20200228-01.de.html [09:18:31] fsfe.org/news/2020/news-20200302-01.de.html [09:18:31] fsfe.org/news/2020/news-20200310-01.de.html [09:18:31] fsfe.org/news/2020/news-20200311-01.de.html [09:18:31] fsfe.org/news/2020/news-20200327-01.de.html [09:18:31] fsfe.org/news/2020/news-20200330-01.de.html [09:18:31] fsfe.org/news/2020/news-20200402-02.de.html [09:18:31] fsfe.org/news/2020/news-20200403-01.de.html [09:18:31] fsfe.org/news/2020/news-20200408-01.de.html [09:18:31] fsfe.org/news/2020/news-20200411-01.de.html [09:18:31] fsfe.org/news/2020/news-20200415-01.de.html [09:18:31] fsfe.org/news/2020/news-20200424-01.de.html [09:18:31] fsfe.org/news/2020/news-20200427-01.de.html [09:18:31] fsfe.org/news/2020/news-20200506-01.de.html [09:18:31] fsfe.org/news/2020/news-20200514-01.de.html [09:18:31] fsfe.org/news/2020/news-20200519-01.de.html [09:18:31] fsfe.org/news/2020/news-20200601-01.de.html [09:18:31] fsfe.org/news/2020/news-20200609-01.de.html [09:18:31] fsfe.org/news/2020/news-20200610-01.de.html [09:18:31] fsfe.org/news/2020/news-20200629-01.de.html [09:18:31] fsfe.org/news/2020/news-20200630-01.de.html [09:18:31] fsfe.org/news/2020/news-20200720-01.de.html [09:18:31] fsfe.org/news/2020/news-20200810-01.de.html [09:18:31] fsfe.org/news/2020/news-20200820-01.de.html [09:18:31] fsfe.org/news/2020/news-20200904-01.de.html [09:18:31] fsfe.org/news/2020/news-20200907-01.de.html [09:18:31] fsfe.org/news/2020/news-20200910-01.de.html [09:18:31] fsfe.org/news/2020/news-20201005-01.de.html [09:18:31] fsfe.org/news/2020/news-20201009-01.de.html [09:18:31] fsfe.org/news/2020/news-20201019-01.de.html [09:18:31] fsfe.org/news/2020/news-20201023-01.de.html [09:18:31] fsfe.org/news/2020/news-20201110-01.de.html [09:18:31] fsfe.org/news/2020/news-20201112-01.de.html [09:18:31] fsfe.org/news/2020/news-20201120-01.de.html [09:18:31] fsfe.org/news/2020/news-20201208-01.de.html [09:18:31] fsfe.org/news/2020/news-20201210-01.de.html [09:18:31] fsfe.org/news/2020/news-20201211-01.de.html [09:18:31] fsfe.org/news/2020/news-20201215-01.de.html [09:18:31] fsfe.org/news/2021/index.de.html [09:18:31] fsfe.org/news/2021/news-20210119-01.de.html [09:18:31] fsfe.org/news/2021/news-20210127-01.de.html [09:18:31] fsfe.org/news/2021/news-20210203-01.de.html [09:18:31] fsfe.org/news/2021/news-20210204-01.de.html [09:18:31] fsfe.org/news/2021/news-20210204-02.de.html [09:18:31] fsfe.org/news/2021/news-20210209-01.de.html [09:18:31] fsfe.org/news/2021/news-20210214-01.de.html [09:18:31] fsfe.org/news/2021/news-20210219-01.de.html [09:18:31] fsfe.org/news/2021/news-20210302-01.de.html [09:18:31] fsfe.org/news/2021/news-20210305-01.de.html [09:18:31] fsfe.org/news/2021/news-20210311-01.de.html [09:18:31] fsfe.org/news/2021/news-20210317-01.de.html [09:18:31] fsfe.org/news/2021/news-20210318-01.de.html [09:18:31] fsfe.org/news/2021/news-20210324-01.de.html [09:18:31] fsfe.org/news/2021/news-20210330-01.de.html [09:18:31] fsfe.org/news/2021/news-20210331-01.de.html [09:18:31] fsfe.org/news/2021/news-20210406-01.de.html [09:18:31] fsfe.org/news/2021/news-20210420-01.de.html [09:18:31] fsfe.org/news/2021/news-20210427-01.de.html [09:18:31] fsfe.org/news/2021/news-20210504-01.de.html [09:18:31] fsfe.org/news/2021/news-20210505-01.de.html [09:18:31] fsfe.org/news/2021/news-20210506-01.de.html [09:18:31] fsfe.org/news/2021/news-20210521-01.de.html [09:18:31] fsfe.org/news/2021/news-20210525-01.de.html [09:18:31] fsfe.org/news/2021/news-20210526-01.de.html [09:18:31] fsfe.org/news/2021/news-20210529-01.de.html [09:18:31] fsfe.org/news/2021/news-20210609-01.de.html [09:18:31] fsfe.org/news/2021/news-20210611-01.de.html [09:18:31] fsfe.org/news/2021/news-20210625-01.de.html [09:18:31] fsfe.org/news/2021/news-20210629-01.de.html [09:18:31] fsfe.org/news/2021/news-20210721-01.de.html [09:18:31] fsfe.org/news/2021/news-20210805-01.de.html [09:18:31] fsfe.org/news/2021/news-20210830-01.de.html [09:18:31] fsfe.org/news/2021/news-20210920-01.de.html [09:18:31] fsfe.org/news/2021/news-20210928-01.de.html [09:18:31] fsfe.org/news/2021/news-20211008-01.de.html [09:18:31] fsfe.org/news/2021/news-20211011-01.de.html [09:18:31] fsfe.org/news/2021/news-20211015-01.de.html [09:18:31] fsfe.org/news/2021/news-20211027-01.de.html [09:18:31] fsfe.org/news/2021/news-20211102-01.de.html [09:18:31] fsfe.org/news/2021/news-20211110-01.de.html [09:18:31] fsfe.org/news/2021/news-20211118-01.de.html [09:18:31] fsfe.org/news/2021/news-20211122-01.de.html [09:18:31] fsfe.org/news/2021/news-20211123-01.de.html [09:18:31] fsfe.org/news/2021/news-20211124-01.de.html [09:18:31] fsfe.org/news/2021/news-20211125-01.de.html [09:18:31] fsfe.org/news/2021/news-20211129-01.de.html [09:18:31] fsfe.org/news/2021/news-20211203-01.de.html [09:18:31] fsfe.org/news/2021/news-20211206-01.de.html [09:18:31] fsfe.org/news/2021/news-20211209-01.de.html [09:18:31] fsfe.org/news/2021/news-20211210-01.de.html [09:18:31] fsfe.org/news/2021/news-20211213-01.de.html [09:18:31] fsfe.org/news/2021/news-20211215-01.de.html [09:18:31] fsfe.org/news/2021/news-20211216-01.de.html [09:18:31] fsfe.org/news/2022/index.de.html [09:18:31] fsfe.org/news/2022/news-20220112-01.de.html [09:18:31] fsfe.org/news/2022/news-20220121-01.de.html [09:18:31] fsfe.org/news/2022/news-20220127-01.de.html [09:18:31] fsfe.org/news/2022/news-20220201-01.de.html [09:18:31] fsfe.org/news/2022/news-20220202-01.de.html [09:18:31] fsfe.org/news/2022/news-20220224-01.de.html [09:18:31] fsfe.org/news/2022/news-20220225-01.de.html [09:18:31] fsfe.org/news/2022/news-20220310-01.de.html [09:18:31] fsfe.org/news/2022/news-20220315-01.de.html [09:18:31] fsfe.org/news/2022/news-20220316-01.de.html [09:18:31] fsfe.org/news/2022/news-20220323-01.de.html [09:18:31] fsfe.org/news/2022/news-20220328-01.de.html [09:18:31] fsfe.org/news/2022/news-20220330-01.de.html [09:18:31] fsfe.org/news/2022/news-20220414-01.de.html [09:18:31] fsfe.org/news/2022/news-20220420-01.de.html [09:18:31] fsfe.org/news/2022/news-20220425-01.de.html [09:18:31] fsfe.org/news/2022/news-20220427-01.de.html [09:18:31] fsfe.org/news/2022/news-20220503-01.de.html [09:18:31] fsfe.org/news/2022/news-20220504-01.de.html [09:18:31] fsfe.org/news/2022/news-20220510-01.de.html [09:18:31] fsfe.org/news/2022/news-20220516-01.de.html [09:18:31] fsfe.org/news/2022/news-20220520-01.de.html [09:18:31] fsfe.org/news/2022/news-20220531-01.de.html [09:18:31] fsfe.org/news/2022/news-20220602-01.de.html [09:18:31] fsfe.org/news/2022/news-20220615-01.de.html [09:18:31] fsfe.org/news/2022/news-20220628-01.de.html [09:18:31] fsfe.org/news/2022/news-20220712-01.de.html [09:18:31] fsfe.org/news/2022/news-20220714-01.de.html [09:18:31] fsfe.org/news/2022/news-20220823-01.de.html [09:18:31] fsfe.org/news/2022/news-20220905-01.de.html [09:18:31] fsfe.org/news/2022/news-20220915-01.de.html [09:18:31] fsfe.org/news/2022/news-20220928-01.de.html [09:18:31] fsfe.org/news/2022/news-20221004-01.de.html [09:18:31] fsfe.org/news/2022/news-20221026-01.de.html [09:18:31] fsfe.org/news/2022/news-20221026-02.de.html [09:18:31] fsfe.org/news/2022/news-20221104-01.de.html [09:18:31] fsfe.org/news/2022/news-20221104-02.de.html [09:18:31] fsfe.org/news/2022/news-20221118-01.de.html [09:18:31] fsfe.org/news/2022/news-20221121-01.de.html [09:18:31] fsfe.org/news/2022/news-20221205-01.de.html [09:18:31] fsfe.org/news/2022/news-20221206-01.de.html [09:18:31] fsfe.org/news/2022/news-20221209-01.de.html [09:18:31] fsfe.org/news/2022/news-20221212-01.de.html [09:18:31] fsfe.org/news/2022/news-20221214-01.de.html [09:18:31] fsfe.org/news/2022/news-20221215-01.de.html [09:18:31] fsfe.org/news/2022/news-20221215-02.de.html [09:18:31] fsfe.org/news/2022/news-20221219-01.de.html [09:18:31] fsfe.org/news/2022/news-20221220-01.de.html [09:18:31] fsfe.org/news/2022/news-20221221-01.de.html [09:18:31] fsfe.org/news/2023/news-20230104-01.de.html [09:18:31] fsfe.org/news/2023/news-20230109-01.de.html [09:18:31] fsfe.org/news/2023/news-20230113-01.de.html [09:18:31] fsfe.org/news/2023/news-20230119-01.de.html [09:18:31] fsfe.org/news/2023/news-20230123-01.de.html [09:18:31] fsfe.org/news/2023/news-20230126-01.de.html [09:18:31] fsfe.org/news/2023/news-20230215-01.de.html [09:18:31] fsfe.org/news/2023/news-20230220-01.de.html [09:18:31] fsfe.org/news/2023/news-20230222-01.de.html [09:18:31] fsfe.org/news/2023/news-20230227-01.de.html [09:18:31] fsfe.org/news/2023/news-20230301-01.de.html [09:18:31] fsfe.org/news/2023/news-20230308-01.de.html [09:18:31] fsfe.org/news/2023/news-20230313-01.de.html [09:18:31] fsfe.org/news/2023/news-20230321-01.de.html [09:18:31] fsfe.org/news/2023/news-20230323-01.de.html [09:18:31] fsfe.org/news/2023/news-20230323-02.de.html [09:18:31] fsfe.org/news/2023/news-20230412-01.de.html [09:18:31] fsfe.org/news/2023/news-20230413-01.de.html [09:18:31] fsfe.org/news/2023/news-20230418-01.de.html [09:18:31] fsfe.org/news/2023/news-20230425-01.de.html [09:18:31] fsfe.org/news/2023/news-20230428-01.de.html [09:18:31] fsfe.org/news/2023/news-20230508-01.de.html [09:18:31] fsfe.org/news/2023/news-20230509-01.de.html [09:18:31] fsfe.org/news/2023/news-20230511-01.de.html [09:18:31] fsfe.org/news/2023/news-20230511-02.de.html [09:18:31] fsfe.org/news/2023/news-20230515-01.de.html [09:18:31] fsfe.org/news/2023/news-20230515-02.de.html [09:18:31] fsfe.org/news/2023/news-20230524-01.de.html [09:18:31] fsfe.org/news/2023/news-20230606-01.de.html [09:18:31] fsfe.org/news/2023/news-20230614-01.de.html [09:18:31] fsfe.org/news/2023/news-20230623-01.de.html [09:18:31] fsfe.org/news/2023/news-20230629-01.de.html [09:18:31] fsfe.org/news/2023/news-20230629-02.de.html [09:18:31] fsfe.org/news/2023/news-20230712-01.de.html [09:18:31] fsfe.org/news/2023/news-20230719-01.de.html [09:18:31] fsfe.org/news/2023/news-20230719-02.de.html [09:18:31] fsfe.org/news/2023/news-20230724-01.de.html [09:18:31] fsfe.org/news/2023/news-20230807-01.de.html [09:18:31] fsfe.org/news/2023/news-20230815-01.de.html [09:18:31] fsfe.org/news/2023/news-20230824-01.de.html [09:18:31] fsfe.org/news/2023/news-20230825-01.de.html [09:18:31] fsfe.org/news/2023/news-20230829-01.de.html [09:18:31] fsfe.org/news/2023/news-20230831-01.de.html [09:18:31] fsfe.org/news/2023/news-20230906-01.de.html [09:18:31] fsfe.org/news/2023/news-20230907-01.de.html [09:18:31] fsfe.org/news/2023/news-20230915-01.de.html [09:18:31] fsfe.org/news/2023/news-20230920-01.de.html [09:18:31] fsfe.org/news/2023/news-20230920-02.de.html [09:18:31] fsfe.org/news/2023/news-20230926-01.de.html [09:18:31] fsfe.org/news/2023/news-20231011-01.de.html [09:18:31] fsfe.org/news/2023/news-20231017-01.de.html [09:18:31] fsfe.org/news/2023/news-20231020-01.de.html [09:18:31] fsfe.org/news/2023/news-20231025-01.de.html [09:18:31] fsfe.org/news/2023/news-20231102-01.de.html [09:18:31] fsfe.org/news/2023/news-20231106-01.de.html [09:18:31] fsfe.org/news/2023/news-20231108-01.de.html [09:18:31] fsfe.org/news/2023/news-20231110-01.de.html [09:18:31] fsfe.org/news/2023/news-20231113-01.de.html [09:18:31] fsfe.org/news/2023/news-20231113-02.de.html [09:18:31] fsfe.org/news/2023/news-20231115-01.de.html [09:18:31] fsfe.org/news/2023/news-20231116-01.de.html [09:18:31] fsfe.org/news/2023/news-20231201-01.de.html [09:18:31] fsfe.org/news/2023/news-20231207-01.de.html [09:18:31] fsfe.org/news/2023/news-20231211-01.de.html [09:18:31] fsfe.org/news/2023/news-20231214-01.de.html [09:18:31] fsfe.org/news/2023/news-20231220-01.de.html [09:18:31] fsfe.org/news/2024/news-20240109-01.de.html [09:18:31] fsfe.org/news/2024/news-20240111-01.de.html [09:18:31] fsfe.org/news/2024/news-20240117-01.de.html [09:18:31] fsfe.org/news/2024/news-20240122-01.de.html [09:18:31] fsfe.org/news/2024/news-20240126-01.de.html [09:18:31] fsfe.org/news/2024/news-20240130-01.de.html [09:18:31] fsfe.org/news/2024/news-20240206-01.de.html [09:18:31] fsfe.org/news/2024/news-20240208-01.de.html [09:18:31] fsfe.org/news/2024/news-20240226-01.de.html [09:18:31] fsfe.org/news/2024/news-20240301-01.de.html [09:18:31] fsfe.org/news/2024/news-20240307-01.de.html [09:18:31] fsfe.org/news/2024/news-20240312-01.de.html [09:18:31] fsfe.org/news/2024/news-20240318-01.de.html [09:18:31] fsfe.org/news/2024/news-20240318-02.de.html [09:18:31] fsfe.org/news/2024/news-20240321-01.de.html [09:18:31] fsfe.org/news/2024/news-20240417-01.de.html [09:18:31] fsfe.org/news/2024/news-20240430-01.de.html [09:18:31] fsfe.org/news/2024/news-20240506-01.de.html [09:18:31] fsfe.org/news/2024/news-20240515-01.de.html [09:18:31] fsfe.org/news/2024/news-20240530-01.de.html [09:18:31] fsfe.org/news/2024/news-20240610-01.de.html [09:18:31] fsfe.org/news/2024/news-20240620-01.de.html [09:18:31] fsfe.org/news/2024/news-20240627-01.de.html [09:18:31] fsfe.org/news/2024/news-20240628-01.de.html [09:18:31] fsfe.org/news/2024/news-20240701-01.de.html [09:18:31] fsfe.org/news/2024/news-20240709-01.de.html [09:18:31] fsfe.org/news/2024/news-20240715-01.de.html [09:18:31] fsfe.org/news/2024/news-20240719-01.de.html [09:18:31] fsfe.org/news/2024/news-20240726-01.de.html [09:18:31] fsfe.org/news/2024/news-20240808-01.de.html [09:18:31] fsfe.org/news/2024/news-20240809-01.de.html [09:18:31] fsfe.org/news/2024/news-20240812-01.de.html [09:18:31] fsfe.org/news/2024/news-20240813-01.de.html [09:18:31] fsfe.org/news/2024/news-20240828-01.de.html [09:18:31] fsfe.org/news/2024/news-20240911-01.de.html [09:18:31] fsfe.org/news/2024/news-20240911-02.de.html [09:18:31] fsfe.org/news/2024/news-20240920-01.de.html [09:18:31] fsfe.org/news/2024/news-20241002-01.de.html [09:18:31] fsfe.org/news/2024/news-20241016-01.de.html [09:18:31] fsfe.org/news/2024/news-20241027-01.de.html [09:18:31] fsfe.org/news/2024/news-20241101-01.de.html [09:18:31] fsfe.org/news/2024/news-20241108-01.de.html [09:18:31] fsfe.org/news/2024/news-20241113-01.de.html [09:18:31] fsfe.org/news/2024/news-20241114-01.de.html [09:18:31] fsfe.org/news/2024/news-20241121-01.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-1.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-10.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-11.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-12.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-13.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-14.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-15.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-16.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-17.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-18.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-19.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-2.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-20.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-21.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-22.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-23.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-24.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-25.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-3.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-4.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-5.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-6.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-7.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-8.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-9.de.html [09:18:31] fsfe.org/news/news/podcast/transcript/episode-special-1.de.html [09:18:31] fsfe.org/news/nl/nl-200904.de.html [09:18:31] fsfe.org/news/nl/nl-200905.de.html [09:18:31] fsfe.org/news/nl/nl-200906.de.html [09:18:31] fsfe.org/news/nl/nl-200907.de.html [09:18:31] fsfe.org/news/nl/nl-200908.de.html [09:18:31] fsfe.org/news/nl/nl-200909.de.html [09:18:31] fsfe.org/news/nl/nl-200910.de.html [09:18:31] fsfe.org/news/nl/nl-200911.de.html [09:18:31] fsfe.org/news/nl/nl-200912.de.html [09:18:31] fsfe.org/news/nl/nl-201001.de.html [09:18:31] fsfe.org/news/nl/nl-201006.de.html [09:18:31] fsfe.org/news/nl/nl-201007.de.html [09:18:31] fsfe.org/news/nl/nl-201008.de.html [09:18:31] fsfe.org/news/nl/nl-201009.de.html [09:18:31] fsfe.org/news/nl/nl-201010.de.html [09:18:31] fsfe.org/news/nl/nl-201011.de.html [09:18:31] fsfe.org/news/nl/nl-201012.de.html [09:18:31] fsfe.org/news/nl/nl-201101.de.html [09:18:31] fsfe.org/news/nl/nl-201102.de.html [09:18:31] fsfe.org/news/nl/nl-201103.de.html [09:18:31] fsfe.org/news/nl/nl-201104.de.html [09:18:31] fsfe.org/news/nl/nl-201105.de.html [09:18:31] fsfe.org/news/nl/nl-201106.de.html [09:18:31] fsfe.org/news/nl/nl-201107.de.html [09:18:31] fsfe.org/news/nl/nl-201108.de.html [09:18:31] fsfe.org/news/nl/nl-201109.de.html [09:18:31] fsfe.org/news/nl/nl-201110.de.html [09:18:31] fsfe.org/news/nl/nl-201111.de.html [09:18:31] fsfe.org/news/nl/nl-201112.de.html [09:18:31] fsfe.org/news/nl/nl-201201.de.html [09:18:31] fsfe.org/news/nl/nl-201202.de.html [09:18:31] fsfe.org/news/nl/nl-201203.de.html [09:18:31] fsfe.org/news/nl/nl-201204.de.html [09:18:31] fsfe.org/news/nl/nl-201205.de.html [09:18:31] fsfe.org/news/nl/nl-201206.de.html [09:18:31] fsfe.org/news/nl/nl-201207.de.html [09:18:31] fsfe.org/news/nl/nl-201208.de.html [09:18:31] fsfe.org/news/nl/nl-201209.de.html [09:18:31] fsfe.org/news/nl/nl-201210.de.html [09:18:31] fsfe.org/news/nl/nl-201211.de.html [09:18:31] fsfe.org/news/nl/nl-201212.de.html [09:18:31] fsfe.org/news/nl/nl-201302.de.html [09:18:31] fsfe.org/news/nl/nl-201303.de.html [09:18:31] fsfe.org/news/nl/nl-201305.de.html [09:18:31] fsfe.org/news/nl/nl-201306.de.html [09:18:31] fsfe.org/news/nl/nl-201307.de.html [09:18:31] fsfe.org/news/nl/nl-201308.de.html [09:18:31] fsfe.org/news/nl/nl-201309.de.html [09:18:31] fsfe.org/news/nl/nl-201310.de.html [09:18:31] fsfe.org/news/nl/nl-201311.de.html [09:18:31] fsfe.org/news/nl/nl-201312.de.html [09:18:31] fsfe.org/news/nl/nl-201401.de.html [09:18:31] fsfe.org/news/nl/nl-201402.de.html [09:18:31] fsfe.org/news/nl/nl-201403.de.html [09:18:31] fsfe.org/news/nl/nl-201404.de.html [09:18:31] fsfe.org/news/nl/nl-201405.de.html [09:18:31] fsfe.org/news/nl/nl-201406.de.html [09:18:31] fsfe.org/news/nl/nl-201407.de.html [09:18:31] fsfe.org/news/nl/nl-201408.de.html [09:18:31] fsfe.org/news/nl/nl-201409.de.html [09:18:31] fsfe.org/news/nl/nl-201410.de.html [09:18:31] fsfe.org/news/nl/nl-201411.de.html [09:18:31] fsfe.org/news/nl/nl-201412.de.html [09:18:31] fsfe.org/news/nl/nl-201501.de.html [09:18:31] fsfe.org/news/nl/nl-201502.de.html [09:18:31] fsfe.org/news/nl/nl-201503.de.html [09:18:31] fsfe.org/news/nl/nl-201504.de.html [09:18:31] fsfe.org/news/nl/nl-201505.de.html [09:18:31] fsfe.org/news/nl/nl-201506.de.html [09:18:31] fsfe.org/news/nl/nl-201507.de.html [09:18:31] fsfe.org/news/nl/nl-201508.de.html [09:18:31] fsfe.org/news/nl/nl-201509.de.html [09:18:31] fsfe.org/news/nl/nl-201510.de.html [09:18:31] fsfe.org/news/nl/nl-201511.de.html [09:18:31] fsfe.org/news/nl/nl-201512.de.html [09:18:31] fsfe.org/news/nl/nl-201602.de.html [09:18:31] fsfe.org/news/nl/nl-201603.de.html [09:18:31] fsfe.org/news/nl/nl-201604.de.html [09:18:31] fsfe.org/news/nl/nl-201605.de.html [09:18:31] fsfe.org/news/nl/nl-201606.de.html [09:18:31] fsfe.org/news/nl/nl-201607.de.html [09:18:31] fsfe.org/news/nl/nl-201608.de.html [09:18:31] fsfe.org/news/nl/nl-201609.de.html [09:18:31] fsfe.org/news/nl/nl-201610.de.html [09:18:31] fsfe.org/news/nl/nl-201611.de.html [09:18:31] fsfe.org/news/nl/nl-201612.de.html [09:18:31] fsfe.org/news/nl/nl-201702.de.html [09:18:31] fsfe.org/news/nl/nl-201703.de.html [09:18:31] fsfe.org/news/nl/nl-201704.de.html [09:18:31] fsfe.org/news/nl/nl-201705.de.html [09:18:31] fsfe.org/news/nl/nl-201706.de.html [09:18:31] fsfe.org/news/nl/nl-201707.de.html [09:18:31] fsfe.org/news/nl/nl-201709.de.html [09:18:31] fsfe.org/news/nl/nl-201710.de.html [09:18:31] fsfe.org/news/nl/nl-201711.de.html [09:18:31] fsfe.org/news/nl/nl-201712.de.html [09:18:31] fsfe.org/news/nl/nl-201802.de.html [09:18:31] fsfe.org/news/nl/nl-201803.de.html [09:18:31] fsfe.org/news/nl/nl-201804.de.html [09:18:31] fsfe.org/news/nl/nl-201805.de.html [09:18:31] fsfe.org/news/nl/nl-201806.de.html [09:18:31] fsfe.org/news/nl/nl-201807.de.html [09:18:31] fsfe.org/news/nl/nl-201809.de.html [09:18:31] fsfe.org/news/nl/nl-201810.de.html [09:18:31] fsfe.org/news/nl/nl-201811.de.html [09:18:31] fsfe.org/news/nl/nl-201812.de.html [09:18:31] fsfe.org/news/nl/nl-201902.de.html [09:18:31] fsfe.org/news/nl/nl-201903.de.html [09:18:31] fsfe.org/news/nl/nl-201904.de.html [09:18:31] fsfe.org/news/nl/nl-201905.de.html [09:18:31] fsfe.org/news/nl/nl-201906.de.html [09:18:31] fsfe.org/news/nl/nl-201907.de.html [09:18:31] fsfe.org/news/nl/nl-201909.de.html [09:18:31] fsfe.org/news/nl/nl-201910.de.html [09:18:31] fsfe.org/news/nl/nl-201911.de.html [09:18:31] fsfe.org/news/nl/nl-201912.de.html [09:18:31] fsfe.org/news/nl/nl-202001.de.html [09:18:31] fsfe.org/news/nl/nl-202002.de.html [09:18:31] fsfe.org/news/nl/nl-202004.de.html [09:18:31] fsfe.org/news/nl/nl-202005.de.html [09:18:31] fsfe.org/news/nl/nl-202006.de.html [09:18:31] fsfe.org/news/nl/nl-202007.de.html [09:18:31] fsfe.org/news/nl/nl-202008.de.html [09:18:31] fsfe.org/news/nl/nl-202009.de.html [09:18:31] fsfe.org/news/nl/nl-202010.de.html [09:18:31] fsfe.org/news/nl/nl-202011.de.html [09:18:31] fsfe.org/news/nl/nl-202012.de.html [09:18:31] fsfe.org/news/nl/nl-202101.de.html [09:18:31] fsfe.org/news/nl/nl-202102.de.html [09:18:31] fsfe.org/news/nl/nl-202103.de.html [09:18:31] fsfe.org/news/nl/nl-202104.de.html [09:18:31] fsfe.org/news/nl/nl-202105.de.html [09:18:31] fsfe.org/news/nl/nl-202106.de.html [09:18:31] fsfe.org/news/nl/nl-202107.de.html [09:18:31] fsfe.org/news/nl/nl-202109.de.html [09:18:31] fsfe.org/news/nl/nl-202110.de.html [09:18:31] fsfe.org/news/nl/nl-202111.de.html [09:18:31] fsfe.org/news/nl/nl-202112.de.html [09:18:31] fsfe.org/news/nl/nl-202201.de.html [09:18:31] fsfe.org/news/nl/nl-202202.de.html [09:18:31] fsfe.org/news/nl/nl-202203.de.html [09:18:31] fsfe.org/news/nl/nl-202204.de.html [09:18:31] fsfe.org/news/nl/nl-202205.de.html [09:18:31] fsfe.org/news/nl/nl-202206.de.html [09:18:31] fsfe.org/news/nl/nl-202207.de.html [09:18:31] fsfe.org/news/nl/nl-202209.de.html [09:18:31] fsfe.org/news/nl/nl-202210.de.html [09:18:31] fsfe.org/news/nl/nl-202211.de.html [09:18:31] fsfe.org/news/nl/nl-202212.de.html [09:18:31] fsfe.org/news/nl/nl-202301.de.html [09:18:31] fsfe.org/news/nl/nl-202302.de.html [09:18:31] fsfe.org/news/nl/nl-202303.de.html [09:18:31] fsfe.org/news/nl/nl-202304.de.html [09:18:31] fsfe.org/news/nl/nl-202305.de.html [09:18:31] fsfe.org/news/nl/nl-202306.de.html [09:18:31] fsfe.org/news/nl/nl-202307.de.html [09:18:31] fsfe.org/news/nl/nl-202308.de.html [09:18:31] fsfe.org/news/nl/nl-202309.de.html [09:18:31] fsfe.org/news/nl/nl-202310.de.html [09:18:31] fsfe.org/news/nl/nl-202311.de.html [09:18:31] fsfe.org/news/nl/nl-202312.de.html [09:18:31] fsfe.org/news/nl/nl-202401.de.html [09:18:31] fsfe.org/news/nl/nl-202402.de.html [09:18:31] fsfe.org/news/nl/nl-202403.de.html [09:18:31] fsfe.org/news/nl/nl-202404.de.html [09:18:31] fsfe.org/news/nl/nl-202405.de.html [09:18:31] fsfe.org/news/nl/nl-202406.de.html [09:18:31] fsfe.org/news/nl/nl-202407.de.html [09:18:31] fsfe.org/news/nl/nl-202408.de.html [09:18:31] fsfe.org/news/nl/nl-202409.de.html [09:18:31] fsfe.org/news/nl/nl-202410.de.html [09:18:31] fsfe.org/news/nl/nl-202411.de.html [09:18:31] fsfe.org/news/podcast/episode-1.de.html [09:18:31] fsfe.org/news/podcast/episode-10.de.html [09:18:31] fsfe.org/news/podcast/episode-11.de.html [09:18:31] fsfe.org/news/podcast/episode-12.de.html [09:18:31] fsfe.org/news/podcast/episode-13.de.html [09:18:31] fsfe.org/news/podcast/episode-14.de.html [09:18:31] fsfe.org/news/podcast/episode-15.de.html [09:18:31] fsfe.org/news/podcast/episode-16.de.html [09:18:31] fsfe.org/news/podcast/episode-17.de.html [09:18:31] fsfe.org/news/podcast/episode-18.de.html [09:18:31] fsfe.org/news/podcast/episode-19.de.html [09:18:31] fsfe.org/news/podcast/episode-2.de.html [09:18:32] fsfe.org/news/podcast/episode-20.de.html [09:18:32] fsfe.org/news/podcast/episode-21.de.html [09:18:32] fsfe.org/news/podcast/episode-22.de.html [09:18:32] fsfe.org/news/podcast/episode-23.de.html [09:18:32] fsfe.org/news/podcast/episode-24.de.html [09:18:32] fsfe.org/news/podcast/episode-25.de.html [09:18:32] fsfe.org/news/podcast/episode-26.de.html [09:18:32] fsfe.org/news/podcast/episode-3.de.html [09:18:32] fsfe.org/news/podcast/episode-4.de.html [09:18:32] fsfe.org/news/podcast/episode-5.de.html [09:18:32] fsfe.org/news/podcast/episode-6.de.html [09:18:32] fsfe.org/news/podcast/episode-7.de.html [09:18:32] fsfe.org/news/podcast/episode-8.de.html [09:18:32] fsfe.org/news/podcast/episode-9.de.html [09:18:32] fsfe.org/news/podcast/episode-special-1.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-1.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-10.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-11.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-12.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-13.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-14.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-15.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-16.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-17.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-18.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-19.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-2.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-20.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-21.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-22.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-23.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-24.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-25.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-26.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-3.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-4.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-5.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-6.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-7.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-8.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-9.de.html [09:18:32] fsfe.org/news/podcast/transcript/episode-special-1.de.html [09:18:32] fsfe.org/order/cancel.de.html [09:18:32] fsfe.org/order/order.de.html [09:18:32] fsfe.org/order/size.de.html [09:18:32] fsfe.org/order/thankyou.de.html [09:18:32] fsfe.org/order/tmpl-concardis.de.html [09:18:32] fsfe.org/order/tmpl-thankyou.de.html [09:18:32] fsfe.org/press/press.de.html [09:18:32] fsfe.org/search/ [09:18:32] fsfe.org/search/index.js [09:18:32] fsfe.org/search/search.de.html [09:18:32] fsfe.org/tags/tagged-2FA.de.html [09:18:32] fsfe.org/tags/tagged-AI.de.html [09:18:32] fsfe.org/tags/tagged-Belgium.de.html [09:18:32] fsfe.org/tags/tagged-Bewustmaking.de.html [09:18:32] fsfe.org/tags/tagged-Bewustzijn.de.html [09:18:32] fsfe.org/tags/tagged-DMA.de.html [09:18:32] fsfe.org/tags/tagged-Denmark.de.html [09:18:32] fsfe.org/tags/tagged-Deutschland.de.html [09:18:32] fsfe.org/tags/tagged-Estonia.de.html [09:18:32] fsfe.org/tags/tagged-France.de.html [09:18:32] fsfe.org/tags/tagged-Germany.de.html [09:18:32] fsfe.org/tags/tagged-IEA.de.html [09:18:32] fsfe.org/tags/tagged-Italia.de.html [09:18:32] fsfe.org/tags/tagged-Italy.de.html [09:18:32] fsfe.org/tags/tagged-Luxembourg.de.html [09:18:32] fsfe.org/tags/tagged-Netherlands.de.html [09:18:32] fsfe.org/tags/tagged-PR.de.html [09:18:32] fsfe.org/tags/tagged-Poland.de.html [09:18:32] fsfe.org/tags/tagged-Switzerland.de.html [09:18:32] fsfe.org/tags/tagged-Taiwan.de.html [09:18:32] fsfe.org/tags/tagged-United.de.html [09:18:32] fsfe.org/tags/tagged-ada-zangemann.de.html [09:18:32] fsfe.org/tags/tagged-anniversary.de.html [09:18:32] fsfe.org/tags/tagged-annual-report.de.html [09:18:32] fsfe.org/tags/tagged-antitrust.de.html [09:18:32] fsfe.org/tags/tagged-at.de.html [09:18:32] fsfe.org/tags/tagged-avm.de.html [09:18:32] fsfe.org/tags/tagged-awareness.de.html [09:18:32] fsfe.org/tags/tagged-ayc.de.html [09:18:32] fsfe.org/tags/tagged-barcelona.de.html [09:18:32] fsfe.org/tags/tagged-be.de.html [09:18:32] fsfe.org/tags/tagged-bea.de.html [09:18:32] fsfe.org/tags/tagged-beleid.de.html [09:18:32] fsfe.org/tags/tagged-berlin.de.html [09:18:32] fsfe.org/tags/tagged-bg.de.html [09:18:32] fsfe.org/tags/tagged-by.de.html [09:18:32] fsfe.org/tags/tagged-campaigns.de.html [09:18:32] fsfe.org/tags/tagged-career.de.html [09:18:32] fsfe.org/tags/tagged-ccc.de.html [09:18:32] fsfe.org/tags/tagged-cfp.de.html [09:18:32] fsfe.org/tags/tagged-ch.de.html [09:18:32] fsfe.org/tags/tagged-cloud.de.html [09:18:32] fsfe.org/tags/tagged-coc.de.html [09:18:32] fsfe.org/tags/tagged-community-meeting.de.html [09:18:32] fsfe.org/tags/tagged-community.de.html [09:18:32] fsfe.org/tags/tagged-competition.de.html [09:18:32] fsfe.org/tags/tagged-compliance.de.html [09:18:32] fsfe.org/tags/tagged-copyright.de.html [09:18:32] fsfe.org/tags/tagged-corona.de.html [09:18:32] fsfe.org/tags/tagged-cz.de.html [09:18:32] fsfe.org/tags/tagged-de.de.html [09:18:32] fsfe.org/tags/tagged-device-neutrality.de.html [09:18:32] fsfe.org/tags/tagged-deviceneutrality.de.html [09:18:32] fsfe.org/tags/tagged-dfd.de.html [09:18:32] fsfe.org/tags/tagged-digital-o-mat.de.html [09:18:32] fsfe.org/tags/tagged-digital-single-market.de.html [09:18:32] fsfe.org/tags/tagged-dk.de.html [09:18:32] fsfe.org/tags/tagged-dma.de.html [09:18:32] fsfe.org/tags/tagged-drm.de.html [09:18:32] fsfe.org/tags/tagged-education.de.html [09:18:32] fsfe.org/tags/tagged-ee.de.html [09:18:32] fsfe.org/tags/tagged-eif.de.html [09:18:32] fsfe.org/tags/tagged-elections.de.html [09:18:32] fsfe.org/tags/tagged-electronic-voting.de.html [09:18:32] fsfe.org/tags/tagged-en.de.html [09:18:32] fsfe.org/tags/tagged-encryption.de.html [09:18:32] fsfe.org/tags/tagged-enterprise.de.html [09:18:32] fsfe.org/tags/tagged-es.de.html [09:18:32] fsfe.org/tags/tagged-eura-slovakia.de.html [09:18:32] fsfe.org/tags/tagged-european-commission.de.html [09:18:32] fsfe.org/tags/tagged-european-court-justice.de.html [09:18:32] fsfe.org/tags/tagged-european-parliament.de.html [09:18:32] fsfe.org/tags/tagged-european-union.de.html [09:18:32] fsfe.org/tags/tagged-european=union.de.html [09:18:32] fsfe.org/tags/tagged-event.de.html [09:18:32] fsfe.org/tags/tagged-fediverse.de.html [09:18:32] fsfe.org/tags/tagged-fellowship.de.html [09:18:32] fsfe.org/tags/tagged-fi.de.html [09:18:32] fsfe.org/tags/tagged-fla.de.html [09:18:32] fsfe.org/tags/tagged-fosdem.de.html [09:18:32] fsfe.org/tags/tagged-fr.de.html [09:18:32] fsfe.org/tags/tagged-frand.de.html [09:18:32] fsfe.org/tags/tagged-freedomvote.de.html [09:18:32] fsfe.org/tags/tagged-fsfe-summit.de.html [09:18:32] fsfe.org/tags/tagged-fsfe20.de.html [09:18:32] fsfe.org/tags/tagged-fspact.de.html [09:18:32] fsfe.org/tags/tagged-funding.de.html [09:18:32] fsfe.org/tags/tagged-fya.de.html [09:18:32] fsfe.org/tags/tagged-ga.de.html [09:18:32] fsfe.org/tags/tagged-gaming.de.html [09:18:32] fsfe.org/tags/tagged-gb.de.html [09:18:32] fsfe.org/tags/tagged-general-purpose-computing.de.html [09:18:32] fsfe.org/tags/tagged-gnu.de.html [09:18:32] fsfe.org/tags/tagged-google.de.html [09:18:32] fsfe.org/tags/tagged-gpl.de.html [09:18:32] fsfe.org/tags/tagged-gr.de.html [09:18:32] fsfe.org/tags/tagged-hamburg-group.de.html [09:18:32] fsfe.org/tags/tagged-helsinki.de.html [09:18:32] fsfe.org/tags/tagged-hide.de.html [09:18:32] fsfe.org/tags/tagged-highlights.de.html [09:18:32] fsfe.org/tags/tagged-horizon2020.de.html [09:18:32] fsfe.org/tags/tagged-hr.de.html [09:18:32] fsfe.org/tags/tagged-hu.de.html [09:18:32] fsfe.org/tags/tagged-huawei.de.html [09:18:32] fsfe.org/tags/tagged-ie.de.html [09:18:32] fsfe.org/tags/tagged-ilovefs-report.de.html [09:18:32] fsfe.org/tags/tagged-ilovefs.de.html [09:18:32] fsfe.org/tags/tagged-infobooth.de.html [09:18:32] fsfe.org/tags/tagged-internal.de.html [09:18:32] fsfe.org/tags/tagged-internship.de.html [09:18:32] fsfe.org/tags/tagged-interview.de.html [09:18:32] fsfe.org/tags/tagged-it.de.html [09:18:32] fsfe.org/tags/tagged-jp.de.html [09:18:32] fsfe.org/tags/tagged-juridisch.de.html [09:18:32] fsfe.org/tags/tagged-koalition-freies-wissen.de.html [09:18:32] fsfe.org/tags/tagged-legal.de.html [09:18:32] fsfe.org/tags/tagged-licensing.de.html [09:18:32] fsfe.org/tags/tagged-limux.de.html [09:18:32] fsfe.org/tags/tagged-llw.de.html [09:18:32] fsfe.org/tags/tagged-localgroup.de.html [09:18:32] fsfe.org/tags/tagged-lt.de.html [09:18:32] fsfe.org/tags/tagged-lu.de.html [09:18:32] fsfe.org/tags/tagged-lv.de.html [09:18:32] fsfe.org/tags/tagged-manchester.de.html [09:18:32] fsfe.org/tags/tagged-meeting.de.html [09:18:32] fsfe.org/tags/tagged-merchandise.de.html [09:18:32] fsfe.org/tags/tagged-microsoft.de.html [09:18:32] fsfe.org/tags/tagged-news.de.html [09:18:32] fsfe.org/tags/tagged-newsletter.de.html [09:18:32] fsfe.org/tags/tagged-ngi.de.html [09:18:32] fsfe.org/tags/tagged-nl.de.html [09:18:32] fsfe.org/tags/tagged-no.de.html [09:18:32] fsfe.org/tags/tagged-office-suites.de.html [09:18:32] fsfe.org/tags/tagged-open-justitia.de.html [09:18:32] fsfe.org/tags/tagged-open-letter.de.html [09:18:32] fsfe.org/tags/tagged-open-science.de.html [09:18:32] fsfe.org/tags/tagged-openstandards.de.html [09:18:32] fsfe.org/tags/tagged-panel.de.html [09:18:32] fsfe.org/tags/tagged-pdfreaders.de.html [09:18:32] fsfe.org/tags/tagged-pl.de.html [09:18:32] fsfe.org/tags/tagged-pmpc.de.html [09:18:32] fsfe.org/tags/tagged-podcast.de.html [09:18:32] fsfe.org/tags/tagged-policy.de.html [09:18:32] fsfe.org/tags/tagged-press.de.html [09:18:32] fsfe.org/tags/tagged-privacy.de.html [09:18:32] fsfe.org/tags/tagged-procurement.de.html [09:18:32] fsfe.org/tags/tagged-pt.de.html [09:18:32] fsfe.org/tags/tagged-public-administration.de.html [09:18:32] fsfe.org/tags/tagged-radiodirective.de.html [09:18:32] fsfe.org/tags/tagged-reuse.de.html [09:18:32] fsfe.org/tags/tagged-rmll.de.html [09:18:32] fsfe.org/tags/tagged-ro.de.html [09:18:32] fsfe.org/tags/tagged-router-freedom.de.html [09:18:32] fsfe.org/tags/tagged-routers.de.html [09:18:32] fsfe.org/tags/tagged-rs.de.html [09:18:32] fsfe.org/tags/tagged-samba.de.html [09:18:32] fsfe.org/tags/tagged-savecodeshare.de.html [09:18:32] fsfe.org/tags/tagged-se.de.html [09:18:32] fsfe.org/tags/tagged-security.de.html [09:18:32] fsfe.org/tags/tagged-sfd.de.html [09:18:32] fsfe.org/tags/tagged-sfscon.de.html [09:18:32] fsfe.org/tags/tagged-sha.de.html [09:18:32] fsfe.org/tags/tagged-sk.de.html [09:18:32] fsfe.org/tags/tagged-software-freedom.de.html [09:18:32] fsfe.org/tags/tagged-sq.de.html [09:18:32] fsfe.org/tags/tagged-sustainability.de.html [09:18:32] fsfe.org/tags/tagged-swpat.de.html [09:18:32] fsfe.org/tags/tagged-talk.de.html [09:18:32] fsfe.org/tags/tagged-tech-teams.de.html [09:18:32] fsfe.org/tags/tagged-tedective.de.html [09:18:32] fsfe.org/tags/tagged-tools.de.html [09:18:32] fsfe.org/tags/tagged-tr.de.html [09:18:32] fsfe.org/tags/tagged-translations.de.html [09:18:32] fsfe.org/tags/tagged-tw.de.html [09:18:32] fsfe.org/tags/tagged-ua.de.html [09:18:32] fsfe.org/tags/tagged-uk.de.html [09:18:32] fsfe.org/tags/tagged-united-nations.de.html [09:18:32] fsfe.org/tags/tagged-upcyclingandroid.de.html [09:18:32] fsfe.org/tags/tagged-us.de.html [09:18:32] fsfe.org/tags/tagged-w3c.de.html [09:18:32] fsfe.org/tags/tagged-windows-tax.de.html [09:18:32] fsfe.org/tags/tagged-women-group.de.html [09:18:32] fsfe.org/tags/tagged-women.de.html [09:18:32] fsfe.org/tags/tagged-workshop.de.html [09:18:32] fsfe.org/tags/tagged-yh4f-project.de.html [09:18:32] fsfe.org/tags/tagged-yh4f.de.html [09:18:32] fsfe.org/tags/tagged-zooom.de.html [09:18:32] fsfe.org/tags/tagged.de.html [09:18:32] fsfe.org/tags/tags.de.html [09:18:32] fsfe.org/templates/concardis_relay.de.html [09:18:32] fsfe.org/templates/registerevent/error.de.html [09:18:32] fsfe.org/templates/registerevent/success.de.html [09:18:32] pdfreaders.org/about.de.html [09:18:32] pdfreaders.org/graphics.de.html [09:18:32] pdfreaders.org/index.de.html [09:18:32] pdfreaders.org/os.de.html [09:18:32] status.fsfe.org/index.de.html [09:18:32] status.fsfe.org/fsfe.org/template.de.html [09:18:32] status.fsfe.org/test.fsfe.org/template.de.html [09:18:32] status.fsfe.org/translations/index.de.html [09:18:32] [09:18:32] sent 9,630,349 bytes received 351,378 bytes 6,654,484.67 bytes/sec [09:18:32] total size is 1,539,752,252 speedup is 154.26 [09:18:32] Syncing files to gahn.fsfeurope.org [09:18:33] sending incremental file list [09:18:33] drm.info/act-now.de.html [09:18:33] drm.info/citizen-rights.de.html [09:18:33] drm.info/creativity.de.html [09:18:33] drm.info/index.de.html [09:18:33] drm.info/losing-heritage.de.html [09:18:33] drm.info/privacy.de.html [09:18:33] drm.info/what-is-drm.de.html [09:18:33] fsfe.org/boilerplate.de.html [09:18:33] fsfe.org/index.de.html [09:18:33] fsfe.org/about/about.de.html [09:18:33] fsfe.org/about/codeofconduct.de.html [09:18:33] fsfe.org/about/contact.de.html [09:18:33] fsfe.org/about/fsfnetwork.de.html [09:18:33] fsfe.org/about/groups.de.html [09:18:33] fsfe.org/about/js-licences.de.html [09:18:33] fsfe.org/about/mission.de.html [09:18:33] fsfe.org/about/ourwork.de.html [09:18:33] fsfe.org/about/overview2010.de.html [09:18:33] fsfe.org/about/principles.de.html [09:18:33] fsfe.org/about/statement-20201220.de.html [09:18:33] fsfe.org/about/timeline.de.html [09:18:33] fsfe.org/about/transparency-commitment.de.html [09:18:33] fsfe.org/about/associates/associates.de.html [09:18:33] fsfe.org/about/funds/2001.de.html [09:18:33] fsfe.org/about/funds/2002.de.html [09:18:33] fsfe.org/about/funds/2003.de.html [09:18:33] fsfe.org/about/funds/2004.de.html [09:18:33] fsfe.org/about/funds/2005.de.html [09:18:33] fsfe.org/about/funds/2006.de.html [09:18:33] fsfe.org/about/funds/2007.de.html [09:18:33] fsfe.org/about/funds/2008.de.html [09:18:33] fsfe.org/about/funds/2009.de.html [09:18:33] fsfe.org/about/funds/2010.de.html [09:18:33] fsfe.org/about/funds/2011.de.html [09:18:33] fsfe.org/about/funds/2012.de.html [09:18:33] fsfe.org/about/funds/2013.de.html [09:18:33] fsfe.org/about/funds/2014.de.html [09:18:33] fsfe.org/about/funds/2015.de.html [09:18:33] fsfe.org/about/funds/2016.de.html [09:18:33] fsfe.org/about/funds/2017.de.html [09:18:33] fsfe.org/about/funds/2018.de.html [09:18:33] fsfe.org/about/funds/2019.de.html [09:18:33] fsfe.org/about/funds/2020.de.html [09:18:33] fsfe.org/about/funds/2021.de.html [09:18:33] fsfe.org/about/funds/2022.de.html [09:18:33] fsfe.org/about/funds/funds.de.html [09:18:33] fsfe.org/about/graphics/graphics.de.html [09:18:33] fsfe.org/about/graphics/sponsoring/sponsoring.de.html [09:18:33] fsfe.org/about/history/doi.de.html [09:18:33] fsfe.org/about/history/preamble.de.html [09:18:33] fsfe.org/about/jobs/index.de.html [09:18:33] fsfe.org/about/jobs/internship.de.html [09:18:33] fsfe.org/about/legal/imprint.de.html [09:18:33] fsfe.org/about/legal/legal.de.html [09:18:33] fsfe.org/about/people/index.de.html [09:18:33] fsfe.org/about/people/testimonials.de.html [09:18:33] fsfe.org/about/people/albers/albers.de.html [09:18:33] fsfe.org/about/people/bakker/bakker.de.html [09:18:33] fsfe.org/about/people/ceballos/ceballos.de.html [09:18:33] fsfe.org/about/people/gerloff/gerloff.de.html [09:18:33] fsfe.org/about/people/greve/cv.de.html [09:18:33] fsfe.org/about/people/greve/greve.de.html [09:18:33] fsfe.org/about/people/interviews/cryptie.de.html [09:18:33] fsfe.org/about/people/interviews/gkotsopoulou.de.html [09:18:33] fsfe.org/about/people/interviews/grun.de.html [09:18:33] fsfe.org/about/people/interviews/lequertier.de.html [09:18:33] fsfe.org/about/people/interviews/mueller.de.html [09:18:33] fsfe.org/about/people/interviews/ockers.de.html [09:18:33] fsfe.org/about/people/interviews/snow.de.html [09:18:33] fsfe.org/about/people/interviews/weitzhofer.de.html [09:18:33] fsfe.org/about/people/interviews/zerolo.de.html [09:18:33] fsfe.org/about/people/kirschner/kirschner.de.html [09:18:33] fsfe.org/about/people/ku/ku.de.html [09:18:33] fsfe.org/about/people/lasota/lasota.de.html [09:18:33] fsfe.org/about/people/mehl/mehl.de.html [09:18:33] fsfe.org/about/people/partsafyllidou/partsafyllidou.de.html [09:18:33] fsfe.org/about/people/repentinus/repentinus.de.html [09:18:33] fsfe.org/about/people/rikken/rikken.de.html [09:18:33] fsfe.org/about/people/roussos/roussos.de.html [09:18:33] fsfe.org/about/people/roy/roy.de.html [09:18:33] fsfe.org/about/people/sander/sander.de.html [09:18:33] fsfe.org/about/people/tobiasd/tobiasd.de.html [09:18:33] fsfe.org/about/softwarefreedom/testimonials.de.html [09:18:33] fsfe.org/activities/activities.de.html [09:18:33] fsfe.org/activities/awareness.de.html [09:18:33] fsfe.org/activities/legal.de.html [09:18:33] fsfe.org/activities/policy.de.html [09:18:33] fsfe.org/activities/15years/15years.de.html [09:18:33] fsfe.org/activities/20years/20years.de.html [09:18:33] fsfe.org/activities/ada-zangemann/book-reviews.de.html [09:18:33] fsfe.org/activities/ada-zangemann/index.de.html [09:18:33] fsfe.org/activities/ada-zangemann/letters.de.html [09:18:33] fsfe.org/activities/ada-zangemann/movie.de.html [09:18:33] fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.de.html [09:18:33] fsfe.org/activities/agnula/agnula.de.html [09:18:33] fsfe.org/activities/agnula/deliverable-1.3.1.de.html [09:18:33] fsfe.org/activities/agnula/java.de.html [09:18:33] fsfe.org/activities/agnula/license-faq.de.html [09:18:33] fsfe.org/activities/agnula/license.de.html [09:18:33] fsfe.org/activities/android/android.de.html [09:18:33] fsfe.org/activities/android/artwork.de.html [09:18:33] fsfe.org/activities/android/flashingdevices.de.html [09:18:33] fsfe.org/activities/android/help.de.html [09:18:33] fsfe.org/activities/android/is-flashing-legal.de.html [09:18:33] fsfe.org/activities/android/liberate.de.html [09:18:33] fsfe.org/activities/android/sustainability.de.html [09:18:33] fsfe.org/activities/android/workshops.de.html [09:18:33] fsfe.org/activities/android/artwork/DIN_A1.de.html [09:18:33] fsfe.org/activities/android/artwork/DIN_A7.de.html [09:18:33] fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.de.html [09:18:33] fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.de.html [09:18:33] fsfe.org/activities/apple-litigation/apple-litigation.de.html [09:18:33] fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.html [09:18:33] fsfe.org/activities/bgw/bgw.de.html [09:18:33] fsfe.org/activities/conf-events/conf-events.de.html [09:18:33] fsfe.org/activities/conf-events/report-cccamp23.de.html [09:18:33] fsfe.org/activities/deviceneutrality/index.de.html [09:18:33] fsfe.org/activities/dma/dma.de.html [09:18:33] fsfe.org/activities/drm/drm.de.html [09:18:33] fsfe.org/activities/drm/open-letter-ec-drm-html.de.html [09:18:33] fsfe.org/activities/drm/sony-rootkit-fiasco.de.html [09:18:33] fsfe.org/activities/elections/digitalomat.de.html [09:18:33] fsfe.org/activities/elections/freedomvote.de.html [09:18:33] fsfe.org/activities/elections/index.de.html [09:18:33] fsfe.org/activities/elections/letspromise.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/askyourcandidates.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/example-questions.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.de.html [09:18:33] fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.de.html [09:18:33] fsfe.org/activities/eucd/eucd-fs.de.html [09:18:33] fsfe.org/activities/eucd/eucd.de.html [09:18:33] fsfe.org/activities/eura-slovakia/eura-slovakia.de.html [09:18:33] fsfe.org/activities/fla/fiduciary.de.html [09:18:33] fsfe.org/activities/fla/fla.de.html [09:18:33] fsfe.org/activities/foss4smes/foss4smes.de.html [09:18:33] fsfe.org/activities/fp6/focal.de.html [09:18:33] fsfe.org/activities/fp6/fp6.de.html [09:18:33] fsfe.org/activities/fp6/lafis.de.html [09:18:33] fsfe.org/activities/fp6/more-support.de.html [09:18:33] fsfe.org/activities/fp6/reasoning.de.html [09:18:33] fsfe.org/activities/fp6/recommendation.de.html [09:18:33] fsfe.org/activities/fp6/supporting-parties.de.html [09:18:33] fsfe.org/activities/fp7/fp7.de.html [09:18:33] fsfe.org/activities/gbn/gbn.de.html [09:18:33] fsfe.org/activities/gplv3/bangalore-rms-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/barcelona-moglen-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/barcelona-rms-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/barcelona-summaries.de.html [09:18:33] fsfe.org/activities/gplv3/brussels-rms-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/diff-draft1-draft2.de.html [09:18:33] fsfe.org/activities/gplv3/diff-draft2-draft3.de.html [09:18:33] fsfe.org/activities/gplv3/diff-gplv2-draft2.de.html [09:18:33] fsfe.org/activities/gplv3/drm-and-gplv3.de.html [09:18:33] fsfe.org/activities/gplv3/europe-gplv3-conference.de.html [09:18:33] fsfe.org/activities/gplv3/events.de.html [09:18:33] fsfe.org/activities/gplv3/fisl-rms-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/gplv3-torino.de.html [09:18:33] fsfe.org/activities/gplv3/gplv3.de.html [09:18:33] fsfe.org/activities/gplv3/links.de.html [09:18:33] fsfe.org/activities/gplv3/patents-and-gplv3.de.html [09:18:33] fsfe.org/activities/gplv3/timeline.de.html [09:18:33] fsfe.org/activities/gplv3/tokyo-ciaran-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/tokyo-rms-transcript.de.html [09:18:33] fsfe.org/activities/gplv3/topics.de.html [09:18:33] fsfe.org/activities/gplv3/torino-rms-transcript.de.html [09:18:33] fsfe.org/activities/igf/a2k.de.html [09:18:33] fsfe.org/activities/igf/dcos.de.html [09:18:33] fsfe.org/activities/igf/igf.de.html [09:18:33] fsfe.org/activities/igf/sovsoft.de.html [09:18:33] fsfe.org/activities/igf/wgig.de.html [09:18:33] fsfe.org/activities/ilovefs/index.de.html [09:18:33] fsfe.org/activities/ilovefs/artwork/artwork.de.html [09:18:33] fsfe.org/activities/ilovefs/report/report_2023.de.html [09:18:33] fsfe.org/activities/ilovefs/report/report_2024.de.html [09:18:33] fsfe.org/activities/ilovefs/whylovefs/gallery.de.html [09:18:33] fsfe.org/activities/ilovefs/whylovefs/whylovefs.de.html [09:18:33] fsfe.org/activities/ipred2/ipred2.de.html [09:18:33] fsfe.org/activities/ipred2/letter-april-2007.de.html [09:18:33] fsfe.org/activities/licence-questions/licence-questions.de.html [09:18:33] fsfe.org/activities/ln/application-confirm.de.html [09:18:33] fsfe.org/activities/ln/application-success.de.html [09:18:33] fsfe.org/activities/ln/application.de.html [09:18:33] fsfe.org/activities/ln/council.de.html [09:18:33] fsfe.org/activities/ln/llw-conf.de.html [09:18:33] fsfe.org/activities/ln/llw-past.de.html [09:18:33] fsfe.org/activities/ln/llw.de.html [09:18:33] fsfe.org/activities/ln/ln-procedures.de.html [09:18:33] fsfe.org/activities/ln/ln.de.html [09:18:33] fsfe.org/activities/ln/memberlist-confirm.de.html [09:18:33] fsfe.org/activities/ln/memberlist-success.de.html [09:18:33] fsfe.org/activities/ln/memberlist.de.html [09:18:33] fsfe.org/activities/ln/modpolicy.de.html [09:18:33] fsfe.org/activities/ln/rules.de.html [09:18:33] fsfe.org/activities/mankind/contact.de.html [09:18:33] fsfe.org/activities/mankind/done.de.html [09:18:33] fsfe.org/activities/mankind/help.de.html [09:18:33] fsfe.org/activities/mankind/links.de.html [09:18:33] fsfe.org/activities/mankind/mankind.de.html [09:18:33] fsfe.org/activities/mankind/press.de.html [09:18:33] fsfe.org/activities/mankind/support.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/index.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/press-release.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/conclusion.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/contact.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/ethical.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/facts.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/independence.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/origin.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/plan.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/social.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/support.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/technical.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/threats.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/unesco.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/why1.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/why2.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/workdone.de.html [09:18:33] fsfe.org/activities/mankind/lsm2002/slides/workinprogress.de.html [09:18:33] fsfe.org/activities/ms-vs-eu/article-20060421.de.html [09:18:33] fsfe.org/activities/ms-vs-eu/background.de.html [09:18:33] fsfe.org/activities/ms-vs-eu/intervention-20040930.de.html [09:18:33] fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.html [09:18:33] fsfe.org/activities/ms-vs-eu/timeline.de.html [09:18:33] fsfe.org/activities/msooxml/msooxml-converter-hoax.de.html [09:18:33] fsfe.org/activities/msooxml/msooxml-idiosyncrasies.de.html [09:18:33] fsfe.org/activities/msooxml/msooxml-interoperability.de.html [09:18:34] fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.html [09:18:34] fsfe.org/activities/msooxml/msooxml-questions.de.html [09:18:34] fsfe.org/activities/msooxml/msooxml.de.html [09:18:34] fsfe.org/activities/ngi/ngi-past.de.html [09:18:34] fsfe.org/activities/ngi/ngi.de.html [09:18:34] fsfe.org/activities/nledu/nledu.de.html [09:18:34] fsfe.org/activities/pdfreaders/bug-report-uk.de.html [09:18:34] fsfe.org/activities/pdfreaders/bug-report.de.html [09:18:34] fsfe.org/activities/pdfreaders/buglist.de.html [09:18:34] fsfe.org/activities/pdfreaders/follow-up.de.html [09:18:34] fsfe.org/activities/pdfreaders/guideline.de.html [09:18:34] fsfe.org/activities/pdfreaders/letter.de.html [09:18:34] fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.html [09:18:34] fsfe.org/activities/pdfreaders/pdfreaders.de.html [09:18:34] fsfe.org/activities/pdfreaders/pdfsprint.de.html [09:18:34] fsfe.org/activities/pdfreaders/petition-error.de.html [09:18:34] fsfe.org/activities/pdfreaders/petition-success.de.html [09:18:34] fsfe.org/activities/pdfreaders/petition.de.html [09:18:34] fsfe.org/activities/publiccode/bea.de.html [09:18:34] fsfe.org/activities/publiccode/brochure.de.html [09:18:34] fsfe.org/activities/publiccode/get-active.de.html [09:18:34] fsfe.org/activities/publiccode/publiccode.de.html [09:18:34] fsfe.org/activities/radiodirective/radiodirective.de.html [09:18:34] fsfe.org/activities/radiodirective/statement.de.html [09:18:34] fsfe.org/activities/routers/routers.de.html [09:18:34] fsfe.org/activities/routers/timeline.de.html [09:18:34] fsfe.org/activities/self/self.de.html [09:18:34] fsfe.org/activities/stacs/belgrade-register.de.html [09:18:34] fsfe.org/activities/stacs/belgrade.de.html [09:18:34] fsfe.org/activities/stacs/london-register.de.html [09:18:34] fsfe.org/activities/stacs/london.de.html [09:18:34] fsfe.org/activities/stacs/stacs.de.html [09:18:34] fsfe.org/activities/stacs/tmpl-belgrade.de.html [09:18:34] fsfe.org/activities/stacs/tmpl-london.de.html [09:18:34] fsfe.org/activities/swpat/background.de.html [09:18:34] fsfe.org/activities/swpat/documents.de.html [09:18:34] fsfe.org/activities/swpat/fsfe-patstrat-response.de.html [09:18:34] fsfe.org/activities/swpat/how-the-eu-patent-system-works.de.html [09:18:34] fsfe.org/activities/swpat/letter-20040510.de.html [09:18:34] fsfe.org/activities/swpat/letter-20040531.de.html [09:18:34] fsfe.org/activities/swpat/letter-20040706.de.html [09:18:34] fsfe.org/activities/swpat/letter-20040802.de.html [09:18:34] fsfe.org/activities/swpat/letter-20040906.de.html [09:18:34] fsfe.org/activities/swpat/letter-20041004.de.html [09:18:34] fsfe.org/activities/swpat/letter-20041101.de.html [09:18:34] fsfe.org/activities/swpat/letter-20041206.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050103.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050207.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050307.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050405.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050502.de.html [09:18:34] fsfe.org/activities/swpat/letter-20050606.de.html [09:18:34] fsfe.org/activities/swpat/letter-20101222.de.html [09:18:34] fsfe.org/activities/swpat/letter-20110406.de.html [09:18:34] fsfe.org/activities/swpat/memorandum.de.html [09:18:34] fsfe.org/activities/swpat/nortel.de.html [09:18:34] fsfe.org/activities/swpat/novell-cptn.de.html [09:18:34] fsfe.org/activities/swpat/second-reading-bullets.de.html [09:18:34] fsfe.org/activities/swpat/status.de.html [09:18:34] fsfe.org/activities/swpat/swpat.de.html [09:18:34] fsfe.org/activities/swpat/current/model-letter-companies.de.html [09:18:34] fsfe.org/activities/swpat/current/unitary-patent.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool1.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool2.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool3.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool4.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool5.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool6.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool7.de.html [09:18:34] fsfe.org/activities/tgs/tagatschool8.de.html [09:18:34] fsfe.org/activities/tgs/tgs.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/application-confirm.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/application-success.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/howtoupcycle.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/individual-signatures.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/informationmaterial.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/is-flashing-legal.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/openletter.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.html [09:18:34] fsfe.org/activities/upcyclingandroid/workshops.de.html [09:18:34] fsfe.org/activities/whyfs/whyfs.de.html [09:18:34] fsfe.org/activities/wipo/fser.de.html [09:18:34] fsfe.org/activities/wipo/iprip.de.html [09:18:34] fsfe.org/activities/wipo/statement-20050413.de.html [09:18:34] fsfe.org/activities/wipo/statement-20050415.de.html [09:18:34] fsfe.org/activities/wipo/statement-20050620.de.html [09:18:34] fsfe.org/activities/wipo/statement-20050721.de.html [09:18:34] fsfe.org/activities/wipo/statement-20050930.de.html [09:18:34] fsfe.org/activities/wipo/statement-20060223.de.html [09:18:34] fsfe.org/activities/wipo/statement-20060628.de.html [09:18:34] fsfe.org/activities/wipo/statement-20070928.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090324.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090325.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090327.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090420-01.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090420-02.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090430-01.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090430-02.de.html [09:18:34] fsfe.org/activities/wipo/statement-20090501.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100125-01.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100125-02.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100125-03.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100125.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100127-01.de.html [09:18:34] fsfe.org/activities/wipo/statement-20100127-02.de.html [09:18:34] fsfe.org/activities/wipo/statement-20101013.de.html [09:18:34] fsfe.org/activities/wipo/statement-20101124-01.de.html [09:18:34] fsfe.org/activities/wipo/statement-20101124-02.de.html [09:18:34] fsfe.org/activities/wipo/wipo.de.html [09:18:34] fsfe.org/activities/wipo/wiwo.de.html [09:18:34] fsfe.org/activities/wsis/cs-benchmarks-03-11-14.de.html [09:18:34] fsfe.org/activities/wsis/debriefing-geneva.de.html [09:18:34] fsfe.org/activities/wsis/debriefing-paris.de.html [09:18:34] fsfe.org/activities/wsis/event-03-12-10.de.html [09:18:34] fsfe.org/activities/wsis/fs.de.html [09:18:34] fsfe.org/activities/wsis/issues.de.html [09:18:34] fsfe.org/activities/wsis/ps-20030923.de.html [09:18:34] fsfe.org/activities/wsis/wsis-and-software.de.html [09:18:34] fsfe.org/activities/wsis/wsis.de.html [09:18:34] fsfe.org/activities/yh4f/faq.de.html [09:18:34] fsfe.org/activities/yh4f/index.de.html [09:18:34] fsfe.org/activities/yh4f/jury.de.html [09:18:34] fsfe.org/activities/yh4f/media.de.html [09:18:34] fsfe.org/activities/yh4f/register-confirm.de.html [09:18:34] fsfe.org/activities/yh4f/register-success.de.html [09:18:34] fsfe.org/activities/zooom/zooom.de.html [09:18:34] fsfe.org/contact/email-updates.de.html [09:18:34] fsfe.org/contact/projects-call/projects-call.de.html [09:18:34] fsfe.org/contact/projects-call/submission-confirm.de.html [09:18:34] fsfe.org/contact/projects-call/submission-success.de.html [09:18:34] fsfe.org/contribute/contribute.de.html [09:18:34] fsfe.org/contribute/getyourgraphic.de.html [09:18:34] fsfe.org/contribute/promotion-materials-archive.de.html [09:18:34] fsfe.org/contribute/spreadtheword-freebie.de.html [09:18:34] fsfe.org/contribute/spreadtheword-ordererror.de.html [09:18:34] fsfe.org/contribute/spreadtheword-orderthanks.de.html [09:18:34] fsfe.org/contribute/spreadtheword.de.html [09:18:34] fsfe.org/contribute/advocacy/cwfs.de.html [09:18:34] fsfe.org/contribute/designers/designers.de.html [09:18:34] fsfe.org/contribute/designers/styleguide.de.html [09:18:34] fsfe.org/contribute/editors/editorial-guidelines.de.html [09:18:34] fsfe.org/contribute/editors/editors.de.html [09:18:34] fsfe.org/contribute/translators/translators.de.html [09:18:34] fsfe.org/contribute/translators/wordlist.de.html [09:18:34] fsfe.org/contribute/web/features.de.html [09:18:34] fsfe.org/contribute/web/web.de.html [09:18:34] fsfe.org/donate/donate.de.html [09:18:34] fsfe.org/donate/germany.de.html [09:18:34] fsfe.org/donate/hardware.de.html [09:18:34] fsfe.org/donate/letter-20041209.de.html [09:18:34] fsfe.org/donate/letter-2009.de.html [09:18:34] fsfe.org/donate/letter-2011.de.html [09:18:34] fsfe.org/donate/luxembourg.de.html [09:18:34] fsfe.org/donate/netherlands.de.html [09:18:34] fsfe.org/donate/payment.de.html [09:18:34] fsfe.org/donate/switzerland.de.html [09:18:34] fsfe.org/donate/thankgnus-2001.de.html [09:18:34] fsfe.org/donate/thankgnus-2002.de.html [09:18:34] fsfe.org/donate/thankgnus-2003.de.html [09:18:34] fsfe.org/donate/thankgnus-2004.de.html [09:18:34] fsfe.org/donate/thankgnus-2005.de.html [09:18:34] fsfe.org/donate/thankgnus-2006.de.html [09:18:34] fsfe.org/donate/thankgnus-2007.de.html [09:18:34] fsfe.org/donate/thankgnus-2008.de.html [09:18:34] fsfe.org/donate/thankgnus-2009.de.html [09:18:34] fsfe.org/donate/thankgnus-2010.de.html [09:18:34] fsfe.org/donate/thankgnus-2011.de.html [09:18:34] fsfe.org/donate/thankgnus-2012.de.html [09:18:34] fsfe.org/donate/thankgnus-2013.de.html [09:18:34] fsfe.org/donate/thankgnus-2014.de.html [09:18:34] fsfe.org/donate/thankgnus-2015.de.html [09:18:34] fsfe.org/donate/thankgnus-2016.de.html [09:18:34] fsfe.org/donate/thankgnus-2017.de.html [09:18:34] fsfe.org/donate/thankgnus-2018.de.html [09:18:34] fsfe.org/donate/thankgnus-2019.de.html [09:18:34] fsfe.org/donate/thankgnus-2020.de.html [09:18:34] fsfe.org/donate/thankgnus-2021.de.html [09:18:34] fsfe.org/donate/thankgnus-2022.de.html [09:18:34] fsfe.org/donate/thankgnus-2023.de.html [09:18:34] fsfe.org/donate/thankgnus-2024.de.html [09:18:34] fsfe.org/donate/thankgnus.de.html [09:18:34] fsfe.org/donate/thankyou.de.html [09:18:34] fsfe.org/error/400.de.html [09:18:34] fsfe.org/error/401.de.html [09:18:34] fsfe.org/error/403.de.html [09:18:34] fsfe.org/error/404.de.html [09:18:34] fsfe.org/error/405.de.html [09:18:34] fsfe.org/error/408.de.html [09:18:34] fsfe.org/error/410.de.html [09:18:34] fsfe.org/error/411.de.html [09:18:34] fsfe.org/error/412.de.html [09:18:34] fsfe.org/error/413.de.html [09:18:34] fsfe.org/error/414.de.html [09:18:34] fsfe.org/error/415.de.html [09:18:34] fsfe.org/error/500.de.html [09:18:34] fsfe.org/error/501.de.html [09:18:34] fsfe.org/error/502.de.html [09:18:34] fsfe.org/error/503.de.html [09:18:34] fsfe.org/events/SFD-2010.de.html [09:18:34] fsfe.org/events/archive-template.de.html [09:18:34] fsfe.org/events/events.de.html [09:18:34] fsfe.org/events/fscons-2010.de.html [09:18:34] fsfe.org/events/2004/index.de.html [09:18:34] fsfe.org/events/2004/picnic.de.html [09:18:34] fsfe.org/events/2004/FISL/fisl.de.html [09:18:34] fsfe.org/events/2005/index.de.html [09:18:34] fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.de.html [09:18:34] fsfe.org/events/2005/wsf-brazil/wsf-brazil.de.html [09:18:34] fsfe.org/events/2006/index.de.html [09:18:34] fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.de.html [09:18:34] fsfe.org/events/2007/index.de.html [09:18:34] fsfe.org/events/2008/index.de.html [09:18:34] fsfe.org/events/2009/index.de.html [09:18:34] fsfe.org/events/2010/index.de.html [09:18:34] fsfe.org/events/2011/index.de.html [09:18:34] fsfe.org/events/2011/lnm-award-debian.de.html [09:18:34] fsfe.org/events/2012/fscons-2012.de.html [09:18:34] fsfe.org/events/2012/index.de.html [09:18:34] fsfe.org/events/2013/index.de.html [09:18:34] fsfe.org/events/2013/linuxtag-2013.de.html [09:18:34] fsfe.org/events/2013/panel-btw2013.de.html [09:18:34] fsfe.org/events/2013/rmll-2-2013.de.html [09:18:34] fsfe.org/events/2013/rmll-2013.de.html [09:18:34] fsfe.org/events/2014/index.de.html [09:18:34] fsfe.org/events/2015/index.de.html [09:18:34] fsfe.org/events/2016/index.de.html [09:18:34] fsfe.org/events/2016/summit/event-20160616-01.de.html [09:18:34] fsfe.org/events/2016/summit/event-20161106-01.de.html [09:18:34] fsfe.org/events/2016/summit/event-20161106-02.de.html [09:18:34] fsfe.org/events/2017/index.de.html [09:18:34] fsfe.org/events/2018/index.de.html [09:18:34] fsfe.org/events/2019/index.de.html [09:18:34] fsfe.org/events/2020/index.de.html [09:18:34] fsfe.org/events/2021/index.de.html [09:18:34] fsfe.org/events/2022/index.de.html [09:18:34] fsfe.org/events/clt/clt-bus.de.html [09:18:34] fsfe.org/events/clt/clt-hotel.de.html [09:18:34] fsfe.org/events/tools/eventregistration.de.html [09:18:34] fsfe.org/freesoftware/artificial-intelligence.de.html [09:18:34] fsfe.org/freesoftware/comparison.de.html [09:18:34] fsfe.org/freesoftware/democracy.de.html [09:18:34] fsfe.org/freesoftware/freesoftware.de.html [09:18:34] fsfe.org/freesoftware/gnuproject.de.html [09:18:34] fsfe.org/freesoftware/secure-boot.de.html [09:18:34] fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.html [09:18:34] fsfe.org/freesoftware/education/argumentation.de.html [09:18:34] fsfe.org/freesoftware/education/edu-related-content.de.html [09:18:34] fsfe.org/freesoftware/education/education.de.html [09:18:34] fsfe.org/freesoftware/education/eduteam.de.html [09:18:34] fsfe.org/freesoftware/legal/faq.de.html [09:18:34] fsfe.org/freesoftware/legal/led.de.html [09:18:34] fsfe.org/freesoftware/legal/legal.de.html [09:18:34] fsfe.org/freesoftware/procurement/mEUcrosoft.de.html [09:18:34] fsfe.org/freesoftware/procurement/procurement.de.html [09:18:34] fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.de.html [09:18:34] fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.de.html [09:18:34] fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.de.html [09:18:34] fsfe.org/freesoftware/standards/bsa-letter-analysis.de.html [09:18:34] fsfe.org/freesoftware/standards/bt-open-letter.de.html [09:18:34] fsfe.org/freesoftware/standards/def.de.html [09:18:34] fsfe.org/freesoftware/standards/dfd.de.html [09:18:34] fsfe.org/freesoftware/standards/eif-v3.de.html [09:18:34] fsfe.org/freesoftware/standards/eifv2-01.de.html [09:18:34] fsfe.org/freesoftware/standards/eifv2.de.html [09:18:34] fsfe.org/freesoftware/standards/guardian-open-letter.de.html [09:18:34] fsfe.org/freesoftware/standards/minimalisticstandards.de.html [09:18:34] fsfe.org/freesoftware/standards/ps.de.html [09:18:34] fsfe.org/freesoftware/standards/standards.de.html [09:18:34] fsfe.org/freesoftware/standards/transparency-letter.de.html [09:18:34] fsfe.org/freesoftware/standards/uk-standards-consultation.de.html [09:18:34] fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.de.html [09:18:35] fsfe.org/freesoftware/sustainability/sustainability.de.html [09:18:35] fsfe.org/internal/bc.de.html [09:18:35] fsfe.org/internal/er.de.html [09:18:35] fsfe.org/internal/nt.de.html [09:18:35] fsfe.org/internal/pd-result.de.html [09:18:35] fsfe.org/internal/pd.de.html [09:18:35] fsfe.org/internal/pt.de.html [09:18:35] fsfe.org/internal/rc-result.de.html [09:18:35] fsfe.org/internal/rc.de.html [09:18:35] fsfe.org/news/archive-template.de.html [09:18:35] fsfe.org/news/news.de.html [09:18:35] fsfe.org/news/newsletter.de.html [09:18:35] fsfe.org/news/podcast-opus.de.html [09:18:35] fsfe.org/news/podcast.de.html [09:18:35] fsfe.org/news/2001/article-13.12.2001.de.html [09:18:35] fsfe.org/news/2001/article-24.9.2001.de.html [09:18:35] fsfe.org/news/2001/article2001-10-20-01.de.html [09:18:35] fsfe.org/news/2001/article2001-12-17-01.de.html [09:18:35] fsfe.org/news/2001/index.de.html [09:18:35] fsfe.org/news/2002/article-25.04.2002.de.html [09:18:35] fsfe.org/news/2002/article-30.9.2002.de.html [09:18:35] fsfe.org/news/2002/article2002-01-18-01.de.html [09:18:35] fsfe.org/news/2002/index.de.html [09:18:35] fsfe.org/news/2003/commissione-meo-presentazione.de.html [09:18:35] fsfe.org/news/2003/commissione-meo-risposte.de.html [09:18:35] fsfe.org/news/2003/index.de.html [09:18:35] fsfe.org/news/2003/lettera_MIUR-2003-07-16.de.html [09:18:35] fsfe.org/news/2003/news-20030211-01.de.html [09:18:35] fsfe.org/news/2003/news-20030602-01.de.html [09:18:35] fsfe.org/news/2003/vsi-studie.de.html [09:18:35] fsfe.org/news/2004/cie.de.html [09:18:35] fsfe.org/news/2004/cw-interview.de.html [09:18:35] fsfe.org/news/2004/index.de.html [09:18:35] fsfe.org/news/2004/navigator-20040521.de.html [09:18:35] fsfe.org/news/2004/navigator-20040624.de.html [09:18:35] fsfe.org/news/2004/navigator-20040917.de.html [09:18:35] fsfe.org/news/2004/navigator-20040930.de.html [09:18:35] fsfe.org/news/2004/navigator-20041129.de.html [09:18:35] fsfe.org/news/2004/news-20040510-01.de.html [09:18:35] fsfe.org/news/2004/news-20040621-01.de.html [09:18:35] fsfe.org/news/2004/news-20040701-01.de.html [09:18:35] fsfe.org/news/2004/news-20040727-01.de.html [09:18:35] fsfe.org/news/2005/index.de.html [09:18:35] fsfe.org/news/2005/letter-20050511-it-mep.de.html [09:18:35] fsfe.org/news/2005/news-20050507-01.de.html [09:18:35] fsfe.org/news/2006/index.de.html [09:18:35] fsfe.org/news/2007/index.de.html [09:18:35] fsfe.org/news/2007/news-20070630-01.de.html [09:18:35] fsfe.org/news/2007/news-20071220-01.de.html [09:18:35] fsfe.org/news/2007/news-20071221-01.de.html [09:18:35] fsfe.org/news/2008/freedom-not-fear.de.html [09:18:35] fsfe.org/news/2008/gnu-25-years.de.html [09:18:35] fsfe.org/news/2008/index.de.html [09:18:35] fsfe.org/news/2008/news-20080118-01.de.html [09:18:35] fsfe.org/news/2008/news-20080214-01.de.html [09:18:35] fsfe.org/news/2008/news-20080220-01.de.html [09:18:35] fsfe.org/news/2008/news-20080222-01.de.html [09:18:35] fsfe.org/news/2008/news-20080228-01.de.html [09:18:35] fsfe.org/news/2008/news-20080301-01.de.html [09:18:35] fsfe.org/news/2008/news-20080305-01.de.html [09:18:35] fsfe.org/news/2008/news-20081202-02.de.html [09:18:35] fsfe.org/news/2008/news-20081208-01.de.html [09:18:35] fsfe.org/news/2008/news-20081210-01.de.html [09:18:35] fsfe.org/news/2008/news-20081215-01.de.html [09:18:35] fsfe.org/news/2009/index.de.html [09:18:35] fsfe.org/news/2009/news-20090120-02.de.html [09:18:35] fsfe.org/news/2009/news-20090123-01.de.html [09:18:35] fsfe.org/news/2009/news-20090202-01.de.html [09:18:35] fsfe.org/news/2009/news-20090227-01.de.html [09:18:35] fsfe.org/news/2009/news-20090301-01.de.html [09:18:35] fsfe.org/news/2009/news-20090311-01.de.html [09:18:35] fsfe.org/news/2009/news-20090323-01.de.html [09:18:35] fsfe.org/news/2009/news-20090325-01.de.html [09:18:35] fsfe.org/news/2009/news-20090411-01.de.html [09:18:35] fsfe.org/news/2009/news-20090414-01.de.html [09:18:35] fsfe.org/news/2009/news-20090418-01.de.html [09:18:35] fsfe.org/news/2009/news-20090430-01.de.html [09:18:35] fsfe.org/news/2009/news-20090515-01.de.html [09:18:35] fsfe.org/news/2009/news-20090601-01.de.html [09:18:35] fsfe.org/news/2009/news-20090604-01.de.html [09:18:35] fsfe.org/news/2009/news-20090610-01.de.html [09:18:35] fsfe.org/news/2009/news-20090620-01.de.html [09:18:35] fsfe.org/news/2009/news-20090624-01.de.html [09:18:35] fsfe.org/news/2009/news-20090728-01.de.html [09:18:35] fsfe.org/news/2009/news-20090831-01.de.html [09:18:35] fsfe.org/news/2009/news-20090908-01.de.html [09:18:35] fsfe.org/news/2009/news-20090921-01.de.html [09:18:35] fsfe.org/news/2009/news-20091005-01.de.html [09:18:35] fsfe.org/news/2009/news-20091006-01.de.html [09:18:35] fsfe.org/news/2009/news-20091008-01.de.html [09:18:35] fsfe.org/news/2009/news-20091019-01.de.html [09:18:35] fsfe.org/news/2009/news-20091023-02.de.html [09:18:35] fsfe.org/news/2009/news-20091109-01.de.html [09:18:35] fsfe.org/news/2009/news-20091109-02.de.html [09:18:35] fsfe.org/news/2009/news-20091118-01.de.html [09:18:35] fsfe.org/news/2009/news-20091127-01.de.html [09:18:35] fsfe.org/news/2009/news-20091216-01.de.html [09:18:35] fsfe.org/news/2009/nyr.de.html [09:18:35] fsfe.org/news/2010/index.de.html [09:18:35] fsfe.org/news/2010/news-20100126-01.de.html [09:18:35] fsfe.org/news/2010/news-20100129-01.de.html [09:18:35] fsfe.org/news/2010/news-20100212-01.de.html [09:18:35] fsfe.org/news/2010/news-20100222-01.de.html [09:18:35] fsfe.org/news/2010/news-20100302-01.de.html [09:18:35] fsfe.org/news/2010/news-20100305-01.de.html [09:18:35] fsfe.org/news/2010/news-20100324-01.de.html [09:18:35] fsfe.org/news/2010/news-20100330-01.de.html [09:18:35] fsfe.org/news/2010/news-20100331-01.de.html [09:18:35] fsfe.org/news/2010/news-20100428-01.de.html [09:18:35] fsfe.org/news/2010/news-20100508-01.de.html [09:18:35] fsfe.org/news/2010/news-20100510-01.de.html [09:18:35] fsfe.org/news/2010/news-20100519-01.de.html [09:18:35] fsfe.org/news/2010/news-20100702-01.de.html [09:18:35] fsfe.org/news/2010/news-20100705-01.de.html [09:18:35] fsfe.org/news/2010/news-20100802-01.de.html [09:18:35] fsfe.org/news/2010/news-20100803-01.de.html [09:18:35] fsfe.org/news/2010/news-20100907-01.de.html [09:18:35] fsfe.org/news/2010/news-20100913-01.de.html [09:18:35] fsfe.org/news/2010/news-20101016-01.de.html [09:18:35] fsfe.org/news/2010/news-20101018-01.de.html [09:18:35] fsfe.org/news/2010/news-20101102-01.de.html [09:18:35] fsfe.org/news/2010/news-20101108-01.de.html [09:18:35] fsfe.org/news/2010/news-20101207-01.de.html [09:18:35] fsfe.org/news/2010/news-20101216-01.de.html [09:18:35] fsfe.org/news/2010/news-20101217-01.de.html [09:18:35] fsfe.org/news/2010/th-eulogy-20100508.de.html [09:18:35] fsfe.org/news/2011/index.de.html [09:18:35] fsfe.org/news/2011/mapping-uk.de.html [09:18:35] fsfe.org/news/2011/news-20110113-01.de.html [09:18:35] fsfe.org/news/2011/news-20110113-02.de.html [09:18:35] fsfe.org/news/2011/news-20110201-01.de.html [09:18:35] fsfe.org/news/2011/news-20110202-01.de.html [09:18:35] fsfe.org/news/2011/news-20110202-02.de.html [09:18:35] fsfe.org/news/2011/news-20110209-01.de.html [09:18:35] fsfe.org/news/2011/news-20110214-01.de.html [09:18:35] fsfe.org/news/2011/news-20110215-01.de.html [09:18:35] fsfe.org/news/2011/news-20110225-01.de.html [09:18:35] fsfe.org/news/2011/news-20110301-01.de.html [09:18:35] fsfe.org/news/2011/news-20110310-01.de.html [09:18:35] fsfe.org/news/2011/news-20110318-01.de.html [09:18:35] fsfe.org/news/2011/news-20110321-01.de.html [09:18:35] fsfe.org/news/2011/news-20110325-01.de.html [09:18:35] fsfe.org/news/2011/news-20110330-01.de.html [09:18:35] fsfe.org/news/2011/news-20110330-02.de.html [09:18:35] fsfe.org/news/2011/news-20110330-03.de.html [09:18:35] fsfe.org/news/2011/news-20110330-04.de.html [09:18:35] fsfe.org/news/2011/news-20110401-01.de.html [09:18:35] fsfe.org/news/2011/news-20110412-01.de.html [09:18:35] fsfe.org/news/2011/news-20110415-01.de.html [09:18:35] fsfe.org/news/2011/news-20110418-01.de.html [09:18:35] fsfe.org/news/2011/news-20110420-01.de.html [09:18:35] fsfe.org/news/2011/news-20110421-01.de.html [09:18:35] fsfe.org/news/2011/news-20110502-01.de.html [09:18:35] fsfe.org/news/2011/news-20110511-01.de.html [09:18:35] fsfe.org/news/2011/news-20110520-01.de.html [09:18:35] fsfe.org/news/2011/news-20110523-01.de.html [09:18:35] fsfe.org/news/2011/news-20110525-01.de.html [09:18:35] fsfe.org/news/2011/news-20110608-01.de.html [09:18:35] fsfe.org/news/2011/news-20110620-01.de.html [09:18:35] fsfe.org/news/2011/news-20110622-01.de.html [09:18:35] fsfe.org/news/2011/news-20110718-01.de.html [09:18:35] fsfe.org/news/2011/news-20110809-01.de.html [09:18:35] fsfe.org/news/2011/news-20110913-01.de.html [09:18:35] fsfe.org/news/2011/news-20110919-01.de.html [09:18:35] fsfe.org/news/2011/news-20111025-01.de.html [09:18:35] fsfe.org/news/2011/news-20111107-01.de.html [09:18:35] fsfe.org/news/2011/news-20111110-01.de.html [09:18:35] fsfe.org/news/2011/news-20111114-01.de.html [09:18:35] fsfe.org/news/2011/news-20111117-01.de.html [09:18:35] fsfe.org/news/2011/news-20111122-01.de.html [09:18:35] fsfe.org/news/2011/news-20111128-01.de.html [09:18:35] fsfe.org/news/2011/news-20111128-02.de.html [09:18:35] fsfe.org/news/2011/news-20111201-01.de.html [09:18:35] fsfe.org/news/2011/news-20111201-02.de.html [09:18:35] fsfe.org/news/2011/news-20111206-01.de.html [09:18:35] fsfe.org/news/2011/news-20111208-01.de.html [09:18:35] fsfe.org/news/2011/news-20111208-02.de.html [09:18:35] fsfe.org/news/2011/news-20111213-01.de.html [09:18:35] fsfe.org/news/2011/news-20111213-02.de.html [09:18:35] fsfe.org/news/2011/news-20111220-01.de.html [09:18:35] fsfe.org/news/2012/index.de.html [09:18:35] fsfe.org/news/2012/news-20120109-02.de.html [09:18:35] fsfe.org/news/2012/news-20120110-01.de.html [09:18:35] fsfe.org/news/2012/news-20120110-02.de.html [09:18:35] fsfe.org/news/2012/news-20120120-01.de.html [09:18:35] fsfe.org/news/2012/news-20120126-01.de.html [09:18:35] fsfe.org/news/2012/news-20120130-01.de.html [09:18:35] fsfe.org/news/2012/news-20120131-01.de.html [09:18:35] fsfe.org/news/2012/news-20120202-01.de.html [09:18:35] fsfe.org/news/2012/news-20120202-02.de.html [09:18:35] fsfe.org/news/2012/news-20120204-01.de.html [09:18:35] fsfe.org/news/2012/news-20120209-01.de.html [09:18:35] fsfe.org/news/2012/news-20120210-01.de.html [09:18:35] fsfe.org/news/2012/news-20120214-01.de.html [09:18:35] fsfe.org/news/2012/news-20120223-01.de.html [09:18:35] fsfe.org/news/2012/news-20120228-01.de.html [09:18:35] fsfe.org/news/2012/news-20120303-01.de.html [09:18:35] fsfe.org/news/2012/news-20120321-01.de.html [09:18:35] fsfe.org/news/2012/news-20120322-01.de.html [09:18:35] fsfe.org/news/2012/news-20120323-02.de.html [09:18:35] fsfe.org/news/2012/news-20120323-03.de.html [09:18:35] fsfe.org/news/2012/news-20120328-01.de.html [09:18:35] fsfe.org/news/2012/news-20120328-02.de.html [09:18:35] fsfe.org/news/2012/news-20120330-01.de.html [09:18:35] fsfe.org/news/2012/news-20120402-01.de.html [09:18:35] fsfe.org/news/2012/news-20120405-01.de.html [09:18:35] fsfe.org/news/2012/news-20120412-01.de.html [09:18:35] fsfe.org/news/2012/news-20120412-02.de.html [09:18:35] fsfe.org/news/2012/news-20120425-01.de.html [09:18:35] fsfe.org/news/2012/news-20120425-02.de.html [09:18:35] fsfe.org/news/2012/news-20120426-01.de.html [09:18:35] fsfe.org/news/2012/news-20120501-02.de.html [09:18:35] fsfe.org/news/2012/news-20120502-01.de.html [09:18:35] fsfe.org/news/2012/news-20120508-01.de.html [09:18:35] fsfe.org/news/2012/news-20120509-01.de.html [09:18:35] fsfe.org/news/2012/news-20120509-02.de.html [09:18:35] fsfe.org/news/2012/news-20120525-01.de.html [09:18:35] fsfe.org/news/2012/news-20120528-01.de.html [09:18:35] fsfe.org/news/2012/news-20120601-02.de.html [09:18:35] fsfe.org/news/2012/news-20120607-01.de.html [09:18:35] fsfe.org/news/2012/news-20120616-01.de.html [09:18:35] fsfe.org/news/2012/news-20120619-01.de.html [09:18:35] fsfe.org/news/2012/news-20120627-01.de.html [09:18:35] fsfe.org/news/2012/news-20120711-01.de.html [09:18:35] fsfe.org/news/2012/news-20120730-01.de.html [09:18:35] fsfe.org/news/2012/news-20120730-02.de.html [09:18:35] fsfe.org/news/2012/news-20120831-01.de.html [09:18:35] fsfe.org/news/2012/news-20120907-01.de.html [09:18:35] fsfe.org/news/2012/news-20120918-01.de.html [09:18:35] fsfe.org/news/2012/news-20120920-01.de.html [09:18:35] fsfe.org/news/2012/news-20120921-01.de.html [09:18:35] fsfe.org/news/2012/news-20120925-01.de.html [09:18:35] fsfe.org/news/2012/news-20121018-01.de.html [09:18:35] fsfe.org/news/2012/news-20121022-01.de.html [09:18:35] fsfe.org/news/2012/news-20121101-02.de.html [09:18:35] fsfe.org/news/2012/news-20121102-01.de.html [09:18:35] fsfe.org/news/2012/news-20121106-01.de.html [09:18:35] fsfe.org/news/2012/news-20121112-01.de.html [09:18:35] fsfe.org/news/2012/news-20121116-01.de.html [09:18:35] fsfe.org/news/2012/news-20121120-01.de.html [09:18:35] fsfe.org/news/2012/news-20121122-01.de.html [09:18:35] fsfe.org/news/2012/news-20121129-01.de.html [09:18:35] fsfe.org/news/2012/news-20121208-01.de.html [09:18:35] fsfe.org/news/2012/news-20121211-01.de.html [09:18:35] fsfe.org/news/2012/news-20121214-01.de.html [09:18:35] fsfe.org/news/2012/news-20121217-01.de.html [09:18:35] fsfe.org/news/2012/news-20130329-01.de.html [09:18:35] fsfe.org/news/2012/report-2012.de.html [09:18:35] fsfe.org/news/2013/index.de.html [09:18:35] fsfe.org/news/2013/news-20130212-01.de.html [09:18:35] fsfe.org/news/2013/news-20130218-01.de.html [09:18:35] fsfe.org/news/2013/news-20130221-01.de.html [09:18:35] fsfe.org/news/2013/news-20130226-01.de.html [09:18:35] fsfe.org/news/2013/news-20130312-01.de.html [09:18:35] fsfe.org/news/2013/news-20130319-01.de.html [09:18:35] fsfe.org/news/2013/news-20130327-01.de.html [09:18:35] fsfe.org/news/2013/news-20130327-02.de.html [09:18:35] fsfe.org/news/2013/news-20130402-01.de.html [09:18:35] fsfe.org/news/2013/news-20130422-01.de.html [09:18:35] fsfe.org/news/2013/news-20130423-02.de.html [09:18:35] fsfe.org/news/2013/news-20130424-01.de.html [09:18:35] fsfe.org/news/2013/news-20130429-01.de.html [09:18:35] fsfe.org/news/2013/news-20130503-01.de.html [09:18:35] fsfe.org/news/2013/news-20130611-01.de.html [09:18:35] fsfe.org/news/2013/news-20130612-01.de.html [09:18:35] fsfe.org/news/2013/news-20130620-01.de.html [09:18:35] fsfe.org/news/2013/news-20130620-02.de.html [09:18:35] fsfe.org/news/2013/news-20130625-02.de.html [09:18:35] fsfe.org/news/2013/news-20130626-01.de.html [09:18:35] fsfe.org/news/2013/news-20130703-01.de.html [09:18:35] fsfe.org/news/2013/news-20130712-01.de.html [09:18:35] fsfe.org/news/2013/news-20130716-01.de.html [09:18:35] fsfe.org/news/2013/news-20130729-01.de.html [09:18:35] fsfe.org/news/2013/news-20130729-02.de.html [09:18:35] fsfe.org/news/2013/news-20130730-01.de.html [09:18:35] fsfe.org/news/2013/news-20130918-01.de.html [09:18:35] fsfe.org/news/2013/news-20130920-01.de.html [09:18:35] fsfe.org/news/2013/news-20130923-01.de.html [09:18:35] fsfe.org/news/2013/news-20130926-01.de.html [09:18:35] fsfe.org/news/2013/news-20130927-01.de.html [09:18:35] fsfe.org/news/2013/news-20131104-02.de.html [09:18:35] fsfe.org/news/2013/news-20131105-01.de.html [09:18:35] fsfe.org/news/2013/news-20131107-01.de.html [09:18:35] fsfe.org/news/2013/news-20131211-01.de.html [09:18:35] fsfe.org/news/2013/news-20131213-01.de.html [09:18:36] fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.de.html [09:18:36] fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.de.html [09:18:36] fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.de.html [09:18:36] fsfe.org/news/2014/index.de.html [09:18:36] fsfe.org/news/2014/news-20140116-01.de.html [09:18:36] fsfe.org/news/2014/news-20140210-01.de.html [09:18:36] fsfe.org/news/2014/news-20140211-01.de.html [09:18:36] fsfe.org/news/2014/news-20140221-01.de.html [09:18:36] fsfe.org/news/2014/news-20140226-01.de.html [09:18:36] fsfe.org/news/2014/news-20140303-01.de.html [09:18:36] fsfe.org/news/2014/news-20140304-01.de.html [09:18:36] fsfe.org/news/2014/news-20140310-01.de.html [09:18:36] fsfe.org/news/2014/news-20140314-01.de.html [09:18:36] fsfe.org/news/2014/news-20140324-01.de.html [09:18:36] fsfe.org/news/2014/news-20140326-01.de.html [09:18:36] fsfe.org/news/2014/news-20140326-02.de.html [09:18:36] fsfe.org/news/2014/news-20140328-01.de.html [09:18:36] fsfe.org/news/2014/news-20140424-01.de.html [09:18:36] fsfe.org/news/2014/news-20140506-01.de.html [09:18:36] fsfe.org/news/2014/news-20140527-01.de.html [09:18:36] fsfe.org/news/2014/news-20140528-01.de.html [09:18:36] fsfe.org/news/2014/news-20140708-01.de.html [09:18:36] fsfe.org/news/2014/news-20140801-01.de.html [09:18:36] fsfe.org/news/2014/news-20140912-01.de.html [09:18:36] fsfe.org/news/2014/news-20140929-01.de.html [09:18:36] fsfe.org/news/2014/news-20141016-01.de.html [09:18:36] fsfe.org/news/2014/news-20141017-01.de.html [09:18:36] fsfe.org/news/2014/news-20141017-02.de.html [09:18:36] fsfe.org/news/2014/news-20141120-02.de.html [09:18:36] fsfe.org/news/2014/news-20141203-01.de.html [09:18:36] fsfe.org/news/2014/news-20141212-01.de.html [09:18:36] fsfe.org/news/2014/news-20141217-01.de.html [09:18:36] fsfe.org/news/2014/news-20141218-01.de.html [09:18:36] fsfe.org/news/2014/news-20141218-02.de.html [09:18:36] fsfe.org/news/2014/news-20141219-01.de.html [09:18:36] fsfe.org/news/2015/index.de.html [09:18:36] fsfe.org/news/2015/news-20150209-01.de.html [09:18:36] fsfe.org/news/2015/news-20150210-01.de.html [09:18:36] fsfe.org/news/2015/news-20150218-01.de.html [09:18:36] fsfe.org/news/2015/news-20150224-01.de.html [09:18:36] fsfe.org/news/2015/news-20150301-01.de.html [09:18:36] fsfe.org/news/2015/news-20150302-02.de.html [09:18:36] fsfe.org/news/2015/news-20150303-01.de.html [09:18:36] fsfe.org/news/2015/news-20150306-01.de.html [09:18:36] fsfe.org/news/2015/news-20150316-01.de.html [09:18:36] fsfe.org/news/2015/news-20150324-01.de.html [09:18:36] fsfe.org/news/2015/news-20150325-01.de.html [09:18:36] fsfe.org/news/2015/news-20150331-01.de.html [09:18:36] fsfe.org/news/2015/news-20150401-01.de.html [09:18:36] fsfe.org/news/2015/news-20150401-02.de.html [09:18:36] fsfe.org/news/2015/news-20150414-01.de.html [09:18:36] fsfe.org/news/2015/news-20150506-01.de.html [09:18:36] fsfe.org/news/2015/news-20150527-01.de.html [09:18:36] fsfe.org/news/2015/news-20150605-01.de.html [09:18:36] fsfe.org/news/2015/news-20150605-02.de.html [09:18:36] fsfe.org/news/2015/news-20150616-01.de.html [09:18:36] fsfe.org/news/2015/news-20150817-01.de.html [09:18:36] fsfe.org/news/2015/news-20150829-01.de.html [09:18:36] fsfe.org/news/2015/news-20150902-01.de.html [09:18:36] fsfe.org/news/2015/news-20150916-01.de.html [09:18:36] fsfe.org/news/2015/news-20150918-01.de.html [09:18:36] fsfe.org/news/2015/news-20150918-02.de.html [09:18:36] fsfe.org/news/2015/news-20150922-01.de.html [09:18:36] fsfe.org/news/2015/news-20151013-01.de.html [09:18:36] fsfe.org/news/2015/news-20151020-01.de.html [09:18:36] fsfe.org/news/2015/news-20151028-01.de.html [09:18:36] fsfe.org/news/2015/news-20151104-01.de.html [09:18:36] fsfe.org/news/2015/news-20151105-01.de.html [09:18:36] fsfe.org/news/2015/news-20151110-01.de.html [09:18:36] fsfe.org/news/2015/news-20151203-01.de.html [09:18:36] fsfe.org/news/2015/news-20151216-01.de.html [09:18:36] fsfe.org/news/2016/index.de.html [09:18:36] fsfe.org/news/2016/news-20160118-01.de.html [09:18:36] fsfe.org/news/2016/news-20160122-01.de.html [09:18:36] fsfe.org/news/2016/news-20160126-01.de.html [09:18:36] fsfe.org/news/2016/news-20160128-01.de.html [09:18:36] fsfe.org/news/2016/news-20160205-01.de.html [09:18:36] fsfe.org/news/2016/news-20160208-01.de.html [09:18:36] fsfe.org/news/2016/news-20160222-01.de.html [09:18:36] fsfe.org/news/2016/news-20160224-01.de.html [09:18:36] fsfe.org/news/2016/news-20160406-01.de.html [09:18:36] fsfe.org/news/2016/news-20160411-01.de.html [09:18:36] fsfe.org/news/2016/news-20160428-01.de.html [09:18:36] fsfe.org/news/2016/news-20160428-02.de.html [09:18:36] fsfe.org/news/2016/news-20160502-01.de.html [09:18:36] fsfe.org/news/2016/news-20160624-01.de.html [09:18:36] fsfe.org/news/2016/news-20160630-01.de.html [09:18:36] fsfe.org/news/2016/news-20160725-01.de.html [09:18:36] fsfe.org/news/2016/news-20160804-01.de.html [09:18:36] fsfe.org/news/2016/news-20160809-01.de.html [09:18:36] fsfe.org/news/2016/news-20160817-01.de.html [09:18:36] fsfe.org/news/2016/news-20160823-01.de.html [09:18:36] fsfe.org/news/2016/news-20160831-01.de.html [09:18:36] fsfe.org/news/2016/news-20160907-01.de.html [09:18:36] fsfe.org/news/2016/news-20160928-01.de.html [09:18:36] fsfe.org/news/2016/news-20160930-01.de.html [09:18:36] fsfe.org/news/2016/news-20161027-01.de.html [09:18:36] fsfe.org/news/2016/news-20161031-01.de.html [09:18:36] fsfe.org/news/2016/news-20161110-01.de.html [09:18:36] fsfe.org/news/2016/news-20161202-01.de.html [09:18:36] fsfe.org/news/2017/index.de.html [09:18:36] fsfe.org/news/2017/news-20170105-01.de.html [09:18:36] fsfe.org/news/2017/news-20170109-01.de.html [09:18:36] fsfe.org/news/2017/news-20170110-01.de.html [09:18:36] fsfe.org/news/2017/news-20170116-01.de.html [09:18:36] fsfe.org/news/2017/news-20170209-01.de.html [09:18:36] fsfe.org/news/2017/news-20170214-01.de.html [09:18:36] fsfe.org/news/2017/news-20170214-02.de.html [09:18:36] fsfe.org/news/2017/news-20170217-01.de.html [09:18:36] fsfe.org/news/2017/news-20170301-01.de.html [09:18:36] fsfe.org/news/2017/news-20170302-01.de.html [09:18:36] fsfe.org/news/2017/news-20170315-01.de.html [09:18:36] fsfe.org/news/2017/news-20170321-01.de.html [09:18:36] fsfe.org/news/2017/news-20170328-01.de.html [09:18:36] fsfe.org/news/2017/news-20170419-01.de.html [09:18:36] fsfe.org/news/2017/news-20170425-01.de.html [09:18:36] fsfe.org/news/2017/news-20170613-01.de.html [09:18:36] fsfe.org/news/2017/news-20170616-01.de.html [09:18:36] fsfe.org/news/2017/news-20170619-01.de.html [09:18:36] fsfe.org/news/2017/news-20170710-01.de.html [09:18:36] fsfe.org/news/2017/news-20170726-01.de.html [09:18:36] fsfe.org/news/2017/news-20170811-01.de.html [09:18:36] fsfe.org/news/2017/news-20170829-01.de.html [09:18:36] fsfe.org/news/2017/news-20170905-01.de.html [09:18:36] fsfe.org/news/2017/news-20170906-01.de.html [09:18:36] fsfe.org/news/2017/news-20170908-01.de.html [09:18:36] fsfe.org/news/2017/news-20170911-01.de.html [09:18:36] fsfe.org/news/2017/news-20170913-01.de.html [09:18:36] fsfe.org/news/2017/news-20171005-01.de.html [09:18:36] fsfe.org/news/2017/news-20171013-01.de.html [09:18:36] fsfe.org/news/2017/news-20171024-01.de.html [09:18:36] fsfe.org/news/2017/news-20171107-01.de.html [09:18:36] fsfe.org/news/2017/news-20171108-01.de.html [09:18:36] fsfe.org/news/2017/news-20171109-01.de.html [09:18:36] fsfe.org/news/2017/news-20171114-01.de.html [09:18:36] fsfe.org/news/2017/news-20171116-01.de.html [09:18:36] fsfe.org/news/2017/news-20171130-01.de.html [09:18:36] fsfe.org/news/2017/news-20171206-01.de.html [09:18:36] fsfe.org/news/2017/news-20171207-01.de.html [09:18:36] fsfe.org/news/2017/news-20171207-02.de.html [09:18:36] fsfe.org/news/2017/news-20171211-01.de.html [09:18:36] fsfe.org/news/2017/news-20171212-01.de.html [09:18:36] fsfe.org/news/2017/news-20171219-01.de.html [09:18:36] fsfe.org/news/2018/index.de.html [09:18:36] fsfe.org/news/2018/news-20180111-01.de.html [09:18:36] fsfe.org/news/2018/news-20180119-01.de.html [09:18:36] fsfe.org/news/2018/news-20180212-01.de.html [09:18:36] fsfe.org/news/2018/news-20180215-01.de.html [09:18:36] fsfe.org/news/2018/news-20180219-01.de.html [09:18:36] fsfe.org/news/2018/news-20180302-01.de.html [09:18:36] fsfe.org/news/2018/news-20180308-01.de.html [09:18:36] fsfe.org/news/2018/news-20180322-01.de.html [09:18:36] fsfe.org/news/2018/news-20180414-01.de.html [09:18:36] fsfe.org/news/2018/news-20180526-01.de.html [09:18:36] fsfe.org/news/2018/news-20180529-01.de.html [09:18:36] fsfe.org/news/2018/news-20180530-02.de.html [09:18:36] fsfe.org/news/2018/news-20180601-01.de.html [09:18:36] fsfe.org/news/2018/news-20180613-01.de.html [09:18:36] fsfe.org/news/2018/news-20180705-01.de.html [09:18:36] fsfe.org/news/2018/news-20180716-01.de.html [09:18:36] fsfe.org/news/2018/news-20180723-01.de.html [09:18:36] fsfe.org/news/2018/news-20180725-01.de.html [09:18:36] fsfe.org/news/2018/news-20180905-02.de.html [09:18:36] fsfe.org/news/2018/news-20180907-01.de.html [09:18:36] fsfe.org/news/2018/news-20180913-01.de.html [09:18:36] fsfe.org/news/2018/news-20180917-01.de.html [09:18:36] fsfe.org/news/2018/news-20181010-01.de.html [09:18:36] fsfe.org/news/2018/news-20181023-02.de.html [09:18:36] fsfe.org/news/2018/news-20181024-01.de.html [09:18:36] fsfe.org/news/2018/news-20181105-01.de.html [09:18:36] fsfe.org/news/2018/news-20181205-01.de.html [09:18:36] fsfe.org/news/2019/index.de.html [09:18:36] fsfe.org/news/2019/news-20190108-01.de.html [09:18:36] fsfe.org/news/2019/news-20190124-01.de.html [09:18:36] fsfe.org/news/2019/news-20190205-01.de.html [09:18:36] fsfe.org/news/2019/news-20190214-01.de.html [09:18:36] fsfe.org/news/2019/news-20190308-01.de.html [09:18:36] fsfe.org/news/2019/news-20190326-01.de.html [09:18:36] fsfe.org/news/2019/news-20190329-01.de.html [09:18:36] fsfe.org/news/2019/news-20190514-01.de.html [09:18:36] fsfe.org/news/2019/news-20190515-01.de.html [09:18:36] fsfe.org/news/2019/news-20190515-02.de.html [09:18:36] fsfe.org/news/2019/news-20190520-01.de.html [09:18:36] fsfe.org/news/2019/news-20190701-01.de.html [09:18:36] fsfe.org/news/2019/news-20190806-01.de.html [09:18:36] fsfe.org/news/2019/news-20190807-01.de.html [09:18:36] fsfe.org/news/2019/news-20190827-01.de.html [09:18:36] fsfe.org/news/2019/news-20190917-01.de.html [09:18:36] fsfe.org/news/2019/news-20190927-01.de.html [09:18:36] fsfe.org/news/2019/news-20191002-01.de.html [09:18:36] fsfe.org/news/2019/news-20191007-01.de.html [09:18:36] fsfe.org/news/2019/news-20191012-01.de.html [09:18:36] fsfe.org/news/2019/news-20191014-01.de.html [09:18:36] fsfe.org/news/2019/news-20191022-01.de.html [09:18:36] fsfe.org/news/2019/news-20191028-01.de.html [09:18:36] fsfe.org/news/2019/news-20191102-01.de.html [09:18:36] fsfe.org/news/2019/news-20191112-01.de.html [09:18:36] fsfe.org/news/2019/news-20191113-01.de.html [09:18:36] fsfe.org/news/2019/news-20191120-01.de.html [09:18:36] fsfe.org/news/2019/news-20191125-01.de.html [09:18:36] fsfe.org/news/2019/news-20191128-01.de.html [09:18:36] fsfe.org/news/2019/news-20191205-01.de.html [09:18:36] fsfe.org/news/2020/index.de.html [09:18:36] fsfe.org/news/2020/news-20200121-01.de.html [09:18:36] fsfe.org/news/2020/news-20200129-01.de.html [09:18:36] fsfe.org/news/2020/news-20200212-01.de.html [09:18:36] fsfe.org/news/2020/news-20200228-01.de.html [09:18:36] fsfe.org/news/2020/news-20200302-01.de.html [09:18:36] fsfe.org/news/2020/news-20200310-01.de.html [09:18:36] fsfe.org/news/2020/news-20200311-01.de.html [09:18:36] fsfe.org/news/2020/news-20200327-01.de.html [09:18:36] fsfe.org/news/2020/news-20200330-01.de.html [09:18:36] fsfe.org/news/2020/news-20200402-02.de.html [09:18:36] fsfe.org/news/2020/news-20200403-01.de.html [09:18:36] fsfe.org/news/2020/news-20200408-01.de.html [09:18:36] fsfe.org/news/2020/news-20200411-01.de.html [09:18:36] fsfe.org/news/2020/news-20200415-01.de.html [09:18:36] fsfe.org/news/2020/news-20200424-01.de.html [09:18:36] fsfe.org/news/2020/news-20200427-01.de.html [09:18:36] fsfe.org/news/2020/news-20200506-01.de.html [09:18:36] fsfe.org/news/2020/news-20200514-01.de.html [09:18:36] fsfe.org/news/2020/news-20200519-01.de.html [09:18:36] fsfe.org/news/2020/news-20200601-01.de.html [09:18:36] fsfe.org/news/2020/news-20200609-01.de.html [09:18:36] fsfe.org/news/2020/news-20200610-01.de.html [09:18:36] fsfe.org/news/2020/news-20200629-01.de.html [09:18:36] fsfe.org/news/2020/news-20200630-01.de.html [09:18:36] fsfe.org/news/2020/news-20200720-01.de.html [09:18:36] fsfe.org/news/2020/news-20200810-01.de.html [09:18:36] fsfe.org/news/2020/news-20200820-01.de.html [09:18:36] fsfe.org/news/2020/news-20200904-01.de.html [09:18:36] fsfe.org/news/2020/news-20200907-01.de.html [09:18:36] fsfe.org/news/2020/news-20200910-01.de.html [09:18:36] fsfe.org/news/2020/news-20201005-01.de.html [09:18:36] fsfe.org/news/2020/news-20201009-01.de.html [09:18:36] fsfe.org/news/2020/news-20201019-01.de.html [09:18:36] fsfe.org/news/2020/news-20201023-01.de.html [09:18:36] fsfe.org/news/2020/news-20201110-01.de.html [09:18:36] fsfe.org/news/2020/news-20201112-01.de.html [09:18:36] fsfe.org/news/2020/news-20201120-01.de.html [09:18:36] fsfe.org/news/2020/news-20201208-01.de.html [09:18:36] fsfe.org/news/2020/news-20201210-01.de.html [09:18:36] fsfe.org/news/2020/news-20201211-01.de.html [09:18:36] fsfe.org/news/2020/news-20201215-01.de.html [09:18:36] fsfe.org/news/2021/index.de.html [09:18:36] fsfe.org/news/2021/news-20210119-01.de.html [09:18:36] fsfe.org/news/2021/news-20210127-01.de.html [09:18:36] fsfe.org/news/2021/news-20210203-01.de.html [09:18:36] fsfe.org/news/2021/news-20210204-01.de.html [09:18:36] fsfe.org/news/2021/news-20210204-02.de.html [09:18:36] fsfe.org/news/2021/news-20210209-01.de.html [09:18:36] fsfe.org/news/2021/news-20210214-01.de.html [09:18:36] fsfe.org/news/2021/news-20210219-01.de.html [09:18:36] fsfe.org/news/2021/news-20210302-01.de.html [09:18:36] fsfe.org/news/2021/news-20210305-01.de.html [09:18:36] fsfe.org/news/2021/news-20210311-01.de.html [09:18:36] fsfe.org/news/2021/news-20210317-01.de.html [09:18:36] fsfe.org/news/2021/news-20210318-01.de.html [09:18:36] fsfe.org/news/2021/news-20210324-01.de.html [09:18:36] fsfe.org/news/2021/news-20210330-01.de.html [09:18:36] fsfe.org/news/2021/news-20210331-01.de.html [09:18:36] fsfe.org/news/2021/news-20210406-01.de.html [09:18:36] fsfe.org/news/2021/news-20210420-01.de.html [09:18:36] fsfe.org/news/2021/news-20210427-01.de.html [09:18:36] fsfe.org/news/2021/news-20210504-01.de.html [09:18:36] fsfe.org/news/2021/news-20210505-01.de.html [09:18:36] fsfe.org/news/2021/news-20210506-01.de.html [09:18:36] fsfe.org/news/2021/news-20210521-01.de.html [09:18:36] fsfe.org/news/2021/news-20210525-01.de.html [09:18:36] fsfe.org/news/2021/news-20210526-01.de.html [09:18:36] fsfe.org/news/2021/news-20210529-01.de.html [09:18:36] fsfe.org/news/2021/news-20210609-01.de.html [09:18:36] fsfe.org/news/2021/news-20210611-01.de.html [09:18:36] fsfe.org/news/2021/news-20210625-01.de.html [09:18:36] fsfe.org/news/2021/news-20210629-01.de.html [09:18:36] fsfe.org/news/2021/news-20210721-01.de.html [09:18:36] fsfe.org/news/2021/news-20210805-01.de.html [09:18:36] fsfe.org/news/2021/news-20210830-01.de.html [09:18:36] fsfe.org/news/2021/news-20210920-01.de.html [09:18:36] fsfe.org/news/2021/news-20210928-01.de.html [09:18:36] fsfe.org/news/2021/news-20211008-01.de.html [09:18:36] fsfe.org/news/2021/news-20211011-01.de.html [09:18:36] fsfe.org/news/2021/news-20211015-01.de.html [09:18:36] fsfe.org/news/2021/news-20211027-01.de.html [09:18:36] fsfe.org/news/2021/news-20211102-01.de.html [09:18:36] fsfe.org/news/2021/news-20211110-01.de.html [09:18:36] fsfe.org/news/2021/news-20211118-01.de.html [09:18:36] fsfe.org/news/2021/news-20211122-01.de.html [09:18:36] fsfe.org/news/2021/news-20211123-01.de.html [09:18:36] fsfe.org/news/2021/news-20211124-01.de.html [09:18:36] fsfe.org/news/2021/news-20211125-01.de.html [09:18:36] fsfe.org/news/2021/news-20211129-01.de.html [09:18:36] fsfe.org/news/2021/news-20211203-01.de.html [09:18:36] fsfe.org/news/2021/news-20211206-01.de.html [09:18:36] fsfe.org/news/2021/news-20211209-01.de.html [09:18:36] fsfe.org/news/2021/news-20211210-01.de.html [09:18:36] fsfe.org/news/2021/news-20211213-01.de.html [09:18:36] fsfe.org/news/2021/news-20211215-01.de.html [09:18:36] fsfe.org/news/2021/news-20211216-01.de.html [09:18:36] fsfe.org/news/2022/index.de.html [09:18:36] fsfe.org/news/2022/news-20220112-01.de.html [09:18:36] fsfe.org/news/2022/news-20220121-01.de.html [09:18:36] fsfe.org/news/2022/news-20220127-01.de.html [09:18:36] fsfe.org/news/2022/news-20220201-01.de.html [09:18:36] fsfe.org/news/2022/news-20220202-01.de.html [09:18:36] fsfe.org/news/2022/news-20220224-01.de.html [09:18:36] fsfe.org/news/2022/news-20220225-01.de.html [09:18:36] fsfe.org/news/2022/news-20220310-01.de.html [09:18:36] fsfe.org/news/2022/news-20220315-01.de.html [09:18:36] fsfe.org/news/2022/news-20220316-01.de.html [09:18:36] fsfe.org/news/2022/news-20220323-01.de.html [09:18:36] fsfe.org/news/2022/news-20220328-01.de.html [09:18:36] fsfe.org/news/2022/news-20220330-01.de.html [09:18:36] fsfe.org/news/2022/news-20220414-01.de.html [09:18:36] fsfe.org/news/2022/news-20220420-01.de.html [09:18:36] fsfe.org/news/2022/news-20220425-01.de.html [09:18:36] fsfe.org/news/2022/news-20220427-01.de.html [09:18:36] fsfe.org/news/2022/news-20220503-01.de.html [09:18:36] fsfe.org/news/2022/news-20220504-01.de.html [09:18:36] fsfe.org/news/2022/news-20220510-01.de.html [09:18:36] fsfe.org/news/2022/news-20220516-01.de.html [09:18:36] fsfe.org/news/2022/news-20220520-01.de.html [09:18:36] fsfe.org/news/2022/news-20220531-01.de.html [09:18:36] fsfe.org/news/2022/news-20220602-01.de.html [09:18:36] fsfe.org/news/2022/news-20220615-01.de.html [09:18:36] fsfe.org/news/2022/news-20220628-01.de.html [09:18:36] fsfe.org/news/2022/news-20220712-01.de.html [09:18:36] fsfe.org/news/2022/news-20220714-01.de.html [09:18:36] fsfe.org/news/2022/news-20220823-01.de.html [09:18:36] fsfe.org/news/2022/news-20220905-01.de.html [09:18:36] fsfe.org/news/2022/news-20220915-01.de.html [09:18:36] fsfe.org/news/2022/news-20220928-01.de.html [09:18:36] fsfe.org/news/2022/news-20221004-01.de.html [09:18:36] fsfe.org/news/2022/news-20221026-01.de.html [09:18:36] fsfe.org/news/2022/news-20221026-02.de.html [09:18:36] fsfe.org/news/2022/news-20221104-01.de.html [09:18:36] fsfe.org/news/2022/news-20221104-02.de.html [09:18:36] fsfe.org/news/2022/news-20221118-01.de.html [09:18:36] fsfe.org/news/2022/news-20221121-01.de.html [09:18:36] fsfe.org/news/2022/news-20221205-01.de.html [09:18:36] fsfe.org/news/2022/news-20221206-01.de.html [09:18:36] fsfe.org/news/2022/news-20221209-01.de.html [09:18:36] fsfe.org/news/2022/news-20221212-01.de.html [09:18:36] fsfe.org/news/2022/news-20221214-01.de.html [09:18:36] fsfe.org/news/2022/news-20221215-01.de.html [09:18:36] fsfe.org/news/2022/news-20221215-02.de.html [09:18:36] fsfe.org/news/2022/news-20221219-01.de.html [09:18:36] fsfe.org/news/2022/news-20221220-01.de.html [09:18:36] fsfe.org/news/2022/news-20221221-01.de.html [09:18:36] fsfe.org/news/2023/news-20230104-01.de.html [09:18:36] fsfe.org/news/2023/news-20230109-01.de.html [09:18:36] fsfe.org/news/2023/news-20230113-01.de.html [09:18:36] fsfe.org/news/2023/news-20230119-01.de.html [09:18:36] fsfe.org/news/2023/news-20230123-01.de.html [09:18:36] fsfe.org/news/2023/news-20230126-01.de.html [09:18:36] fsfe.org/news/2023/news-20230215-01.de.html [09:18:36] fsfe.org/news/2023/news-20230220-01.de.html [09:18:36] fsfe.org/news/2023/news-20230222-01.de.html [09:18:36] fsfe.org/news/2023/news-20230227-01.de.html [09:18:36] fsfe.org/news/2023/news-20230301-01.de.html [09:18:36] fsfe.org/news/2023/news-20230308-01.de.html [09:18:36] fsfe.org/news/2023/news-20230313-01.de.html [09:18:36] fsfe.org/news/2023/news-20230321-01.de.html [09:18:36] fsfe.org/news/2023/news-20230323-01.de.html [09:18:36] fsfe.org/news/2023/news-20230323-02.de.html [09:18:36] fsfe.org/news/2023/news-20230412-01.de.html [09:18:36] fsfe.org/news/2023/news-20230413-01.de.html [09:18:36] fsfe.org/news/2023/news-20230418-01.de.html [09:18:36] fsfe.org/news/2023/news-20230425-01.de.html [09:18:36] fsfe.org/news/2023/news-20230428-01.de.html [09:18:36] fsfe.org/news/2023/news-20230508-01.de.html [09:18:36] fsfe.org/news/2023/news-20230509-01.de.html [09:18:36] fsfe.org/news/2023/news-20230511-01.de.html [09:18:36] fsfe.org/news/2023/news-20230511-02.de.html [09:18:36] fsfe.org/news/2023/news-20230515-01.de.html [09:18:36] fsfe.org/news/2023/news-20230515-02.de.html [09:18:36] fsfe.org/news/2023/news-20230524-01.de.html [09:18:36] fsfe.org/news/2023/news-20230606-01.de.html [09:18:36] fsfe.org/news/2023/news-20230614-01.de.html [09:18:36] fsfe.org/news/2023/news-20230623-01.de.html [09:18:36] fsfe.org/news/2023/news-20230629-01.de.html [09:18:36] fsfe.org/news/2023/news-20230629-02.de.html [09:18:36] fsfe.org/news/2023/news-20230712-01.de.html [09:18:36] fsfe.org/news/2023/news-20230719-01.de.html [09:18:36] fsfe.org/news/2023/news-20230719-02.de.html [09:18:36] fsfe.org/news/2023/news-20230724-01.de.html [09:18:36] fsfe.org/news/2023/news-20230807-01.de.html [09:18:36] fsfe.org/news/2023/news-20230815-01.de.html [09:18:36] fsfe.org/news/2023/news-20230824-01.de.html [09:18:36] fsfe.org/news/2023/news-20230825-01.de.html [09:18:36] fsfe.org/news/2023/news-20230829-01.de.html [09:18:36] fsfe.org/news/2023/news-20230831-01.de.html [09:18:36] fsfe.org/news/2023/news-20230906-01.de.html [09:18:36] fsfe.org/news/2023/news-20230907-01.de.html [09:18:36] fsfe.org/news/2023/news-20230915-01.de.html [09:18:36] fsfe.org/news/2023/news-20230920-01.de.html [09:18:36] fsfe.org/news/2023/news-20230920-02.de.html [09:18:36] fsfe.org/news/2023/news-20230926-01.de.html [09:18:36] fsfe.org/news/2023/news-20231011-01.de.html [09:18:36] fsfe.org/news/2023/news-20231017-01.de.html [09:18:36] fsfe.org/news/2023/news-20231020-01.de.html [09:18:36] fsfe.org/news/2023/news-20231025-01.de.html [09:18:36] fsfe.org/news/2023/news-20231102-01.de.html [09:18:36] fsfe.org/news/2023/news-20231106-01.de.html [09:18:36] fsfe.org/news/2023/news-20231108-01.de.html [09:18:36] fsfe.org/news/2023/news-20231110-01.de.html [09:18:36] fsfe.org/news/2023/news-20231113-01.de.html [09:18:36] fsfe.org/news/2023/news-20231113-02.de.html [09:18:36] fsfe.org/news/2023/news-20231115-01.de.html [09:18:36] fsfe.org/news/2023/news-20231116-01.de.html [09:18:36] fsfe.org/news/2023/news-20231201-01.de.html [09:18:36] fsfe.org/news/2023/news-20231207-01.de.html [09:18:36] fsfe.org/news/2023/news-20231211-01.de.html [09:18:36] fsfe.org/news/2023/news-20231214-01.de.html [09:18:36] fsfe.org/news/2023/news-20231220-01.de.html [09:18:36] fsfe.org/news/2024/news-20240109-01.de.html [09:18:36] fsfe.org/news/2024/news-20240111-01.de.html [09:18:36] fsfe.org/news/2024/news-20240117-01.de.html [09:18:36] fsfe.org/news/2024/news-20240122-01.de.html [09:18:36] fsfe.org/news/2024/news-20240126-01.de.html [09:18:36] fsfe.org/news/2024/news-20240130-01.de.html [09:18:36] fsfe.org/news/2024/news-20240206-01.de.html [09:18:36] fsfe.org/news/2024/news-20240208-01.de.html [09:18:36] fsfe.org/news/2024/news-20240226-01.de.html [09:18:36] fsfe.org/news/2024/news-20240301-01.de.html [09:18:36] fsfe.org/news/2024/news-20240307-01.de.html [09:18:36] fsfe.org/news/2024/news-20240312-01.de.html [09:18:36] fsfe.org/news/2024/news-20240318-01.de.html [09:18:36] fsfe.org/news/2024/news-20240318-02.de.html [09:18:36] fsfe.org/news/2024/news-20240321-01.de.html [09:18:36] fsfe.org/news/2024/news-20240417-01.de.html [09:18:36] fsfe.org/news/2024/news-20240430-01.de.html [09:18:36] fsfe.org/news/2024/news-20240506-01.de.html [09:18:36] fsfe.org/news/2024/news-20240515-01.de.html [09:18:36] fsfe.org/news/2024/news-20240530-01.de.html [09:18:36] fsfe.org/news/2024/news-20240610-01.de.html [09:18:36] fsfe.org/news/2024/news-20240620-01.de.html [09:18:36] fsfe.org/news/2024/news-20240627-01.de.html [09:18:36] fsfe.org/news/2024/news-20240628-01.de.html [09:18:36] fsfe.org/news/2024/news-20240701-01.de.html [09:18:36] fsfe.org/news/2024/news-20240709-01.de.html [09:18:36] fsfe.org/news/2024/news-20240715-01.de.html [09:18:36] fsfe.org/news/2024/news-20240719-01.de.html [09:18:36] fsfe.org/news/2024/news-20240726-01.de.html [09:18:36] fsfe.org/news/2024/news-20240808-01.de.html [09:18:36] fsfe.org/news/2024/news-20240809-01.de.html [09:18:36] fsfe.org/news/2024/news-20240812-01.de.html [09:18:36] fsfe.org/news/2024/news-20240813-01.de.html [09:18:36] fsfe.org/news/2024/news-20240828-01.de.html [09:18:36] fsfe.org/news/2024/news-20240911-01.de.html [09:18:36] fsfe.org/news/2024/news-20240911-02.de.html [09:18:36] fsfe.org/news/2024/news-20240920-01.de.html [09:18:36] fsfe.org/news/2024/news-20241002-01.de.html [09:18:36] fsfe.org/news/2024/news-20241016-01.de.html [09:18:36] fsfe.org/news/2024/news-20241027-01.de.html [09:18:36] fsfe.org/news/2024/news-20241101-01.de.html [09:18:36] fsfe.org/news/2024/news-20241108-01.de.html [09:18:36] fsfe.org/news/2024/news-20241113-01.de.html [09:18:36] fsfe.org/news/2024/news-20241114-01.de.html [09:18:36] fsfe.org/news/2024/news-20241121-01.de.html [09:18:36] fsfe.org/news/news/podcast/transcript/episode-1.de.html [09:18:36] fsfe.org/news/news/podcast/transcript/episode-10.de.html [09:18:36] fsfe.org/news/news/podcast/transcript/episode-11.de.html [09:18:36] fsfe.org/news/news/podcast/transcript/episode-12.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-13.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-14.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-15.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-16.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-17.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-18.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-19.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-2.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-20.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-21.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-22.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-23.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-24.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-25.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-3.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-4.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-5.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-6.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-7.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-8.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-9.de.html [09:18:37] fsfe.org/news/news/podcast/transcript/episode-special-1.de.html [09:18:37] fsfe.org/news/nl/nl-200904.de.html [09:18:37] fsfe.org/news/nl/nl-200905.de.html [09:18:37] fsfe.org/news/nl/nl-200906.de.html [09:18:37] fsfe.org/news/nl/nl-200907.de.html [09:18:37] fsfe.org/news/nl/nl-200908.de.html [09:18:37] fsfe.org/news/nl/nl-200909.de.html [09:18:37] fsfe.org/news/nl/nl-200910.de.html [09:18:37] fsfe.org/news/nl/nl-200911.de.html [09:18:37] fsfe.org/news/nl/nl-200912.de.html [09:18:37] fsfe.org/news/nl/nl-201001.de.html [09:18:37] fsfe.org/news/nl/nl-201006.de.html [09:18:37] fsfe.org/news/nl/nl-201007.de.html [09:18:37] fsfe.org/news/nl/nl-201008.de.html [09:18:37] fsfe.org/news/nl/nl-201009.de.html [09:18:37] fsfe.org/news/nl/nl-201010.de.html [09:18:37] fsfe.org/news/nl/nl-201011.de.html [09:18:37] fsfe.org/news/nl/nl-201012.de.html [09:18:37] fsfe.org/news/nl/nl-201101.de.html [09:18:37] fsfe.org/news/nl/nl-201102.de.html [09:18:37] fsfe.org/news/nl/nl-201103.de.html [09:18:37] fsfe.org/news/nl/nl-201104.de.html [09:18:37] fsfe.org/news/nl/nl-201105.de.html [09:18:37] fsfe.org/news/nl/nl-201106.de.html [09:18:37] fsfe.org/news/nl/nl-201107.de.html [09:18:37] fsfe.org/news/nl/nl-201108.de.html [09:18:37] fsfe.org/news/nl/nl-201109.de.html [09:18:37] fsfe.org/news/nl/nl-201110.de.html [09:18:37] fsfe.org/news/nl/nl-201111.de.html [09:18:37] fsfe.org/news/nl/nl-201112.de.html [09:18:37] fsfe.org/news/nl/nl-201201.de.html [09:18:37] fsfe.org/news/nl/nl-201202.de.html [09:18:37] fsfe.org/news/nl/nl-201203.de.html [09:18:37] fsfe.org/news/nl/nl-201204.de.html [09:18:37] fsfe.org/news/nl/nl-201205.de.html [09:18:37] fsfe.org/news/nl/nl-201206.de.html [09:18:37] fsfe.org/news/nl/nl-201207.de.html [09:18:37] fsfe.org/news/nl/nl-201208.de.html [09:18:37] fsfe.org/news/nl/nl-201209.de.html [09:18:37] fsfe.org/news/nl/nl-201210.de.html [09:18:37] fsfe.org/news/nl/nl-201211.de.html [09:18:37] fsfe.org/news/nl/nl-201212.de.html [09:18:37] fsfe.org/news/nl/nl-201302.de.html [09:18:37] fsfe.org/news/nl/nl-201303.de.html [09:18:37] fsfe.org/news/nl/nl-201305.de.html [09:18:37] fsfe.org/news/nl/nl-201306.de.html [09:18:37] fsfe.org/news/nl/nl-201307.de.html [09:18:37] fsfe.org/news/nl/nl-201308.de.html [09:18:37] fsfe.org/news/nl/nl-201309.de.html [09:18:37] fsfe.org/news/nl/nl-201310.de.html [09:18:37] fsfe.org/news/nl/nl-201311.de.html [09:18:37] fsfe.org/news/nl/nl-201312.de.html [09:18:37] fsfe.org/news/nl/nl-201401.de.html [09:18:37] fsfe.org/news/nl/nl-201402.de.html [09:18:37] fsfe.org/news/nl/nl-201403.de.html [09:18:37] fsfe.org/news/nl/nl-201404.de.html [09:18:37] fsfe.org/news/nl/nl-201405.de.html [09:18:37] fsfe.org/news/nl/nl-201406.de.html [09:18:37] fsfe.org/news/nl/nl-201407.de.html [09:18:37] fsfe.org/news/nl/nl-201408.de.html [09:18:37] fsfe.org/news/nl/nl-201409.de.html [09:18:37] fsfe.org/news/nl/nl-201410.de.html [09:18:37] fsfe.org/news/nl/nl-201411.de.html [09:18:37] fsfe.org/news/nl/nl-201412.de.html [09:18:37] fsfe.org/news/nl/nl-201501.de.html [09:18:37] fsfe.org/news/nl/nl-201502.de.html [09:18:37] fsfe.org/news/nl/nl-201503.de.html [09:18:37] fsfe.org/news/nl/nl-201504.de.html [09:18:37] fsfe.org/news/nl/nl-201505.de.html [09:18:37] fsfe.org/news/nl/nl-201506.de.html [09:18:37] fsfe.org/news/nl/nl-201507.de.html [09:18:37] fsfe.org/news/nl/nl-201508.de.html [09:18:37] fsfe.org/news/nl/nl-201509.de.html [09:18:37] fsfe.org/news/nl/nl-201510.de.html [09:18:37] fsfe.org/news/nl/nl-201511.de.html [09:18:37] fsfe.org/news/nl/nl-201512.de.html [09:18:37] fsfe.org/news/nl/nl-201602.de.html [09:18:37] fsfe.org/news/nl/nl-201603.de.html [09:18:37] fsfe.org/news/nl/nl-201604.de.html [09:18:37] fsfe.org/news/nl/nl-201605.de.html [09:18:37] fsfe.org/news/nl/nl-201606.de.html [09:18:37] fsfe.org/news/nl/nl-201607.de.html [09:18:37] fsfe.org/news/nl/nl-201608.de.html [09:18:37] fsfe.org/news/nl/nl-201609.de.html [09:18:37] fsfe.org/news/nl/nl-201610.de.html [09:18:37] fsfe.org/news/nl/nl-201611.de.html [09:18:37] fsfe.org/news/nl/nl-201612.de.html [09:18:37] fsfe.org/news/nl/nl-201702.de.html [09:18:37] fsfe.org/news/nl/nl-201703.de.html [09:18:37] fsfe.org/news/nl/nl-201704.de.html [09:18:37] fsfe.org/news/nl/nl-201705.de.html [09:18:37] fsfe.org/news/nl/nl-201706.de.html [09:18:37] fsfe.org/news/nl/nl-201707.de.html [09:18:37] fsfe.org/news/nl/nl-201709.de.html [09:18:37] fsfe.org/news/nl/nl-201710.de.html [09:18:37] fsfe.org/news/nl/nl-201711.de.html [09:18:37] fsfe.org/news/nl/nl-201712.de.html [09:18:37] fsfe.org/news/nl/nl-201802.de.html [09:18:37] fsfe.org/news/nl/nl-201803.de.html [09:18:37] fsfe.org/news/nl/nl-201804.de.html [09:18:37] fsfe.org/news/nl/nl-201805.de.html [09:18:37] fsfe.org/news/nl/nl-201806.de.html [09:18:37] fsfe.org/news/nl/nl-201807.de.html [09:18:37] fsfe.org/news/nl/nl-201809.de.html [09:18:37] fsfe.org/news/nl/nl-201810.de.html [09:18:37] fsfe.org/news/nl/nl-201811.de.html [09:18:37] fsfe.org/news/nl/nl-201812.de.html [09:18:37] fsfe.org/news/nl/nl-201902.de.html [09:18:37] fsfe.org/news/nl/nl-201903.de.html [09:18:37] fsfe.org/news/nl/nl-201904.de.html [09:18:37] fsfe.org/news/nl/nl-201905.de.html [09:18:37] fsfe.org/news/nl/nl-201906.de.html [09:18:37] fsfe.org/news/nl/nl-201907.de.html [09:18:37] fsfe.org/news/nl/nl-201909.de.html [09:18:37] fsfe.org/news/nl/nl-201910.de.html [09:18:37] fsfe.org/news/nl/nl-201911.de.html [09:18:37] fsfe.org/news/nl/nl-201912.de.html [09:18:37] fsfe.org/news/nl/nl-202001.de.html [09:18:37] fsfe.org/news/nl/nl-202002.de.html [09:18:37] fsfe.org/news/nl/nl-202004.de.html [09:18:37] fsfe.org/news/nl/nl-202005.de.html [09:18:37] fsfe.org/news/nl/nl-202006.de.html [09:18:37] fsfe.org/news/nl/nl-202007.de.html [09:18:37] fsfe.org/news/nl/nl-202008.de.html [09:18:37] fsfe.org/news/nl/nl-202009.de.html [09:18:37] fsfe.org/news/nl/nl-202010.de.html [09:18:37] fsfe.org/news/nl/nl-202011.de.html [09:18:37] fsfe.org/news/nl/nl-202012.de.html [09:18:37] fsfe.org/news/nl/nl-202101.de.html [09:18:37] fsfe.org/news/nl/nl-202102.de.html [09:18:37] fsfe.org/news/nl/nl-202103.de.html [09:18:37] fsfe.org/news/nl/nl-202104.de.html [09:18:37] fsfe.org/news/nl/nl-202105.de.html [09:18:37] fsfe.org/news/nl/nl-202106.de.html [09:18:37] fsfe.org/news/nl/nl-202107.de.html [09:18:37] fsfe.org/news/nl/nl-202109.de.html [09:18:37] fsfe.org/news/nl/nl-202110.de.html [09:18:37] fsfe.org/news/nl/nl-202111.de.html [09:18:37] fsfe.org/news/nl/nl-202112.de.html [09:18:37] fsfe.org/news/nl/nl-202201.de.html [09:18:37] fsfe.org/news/nl/nl-202202.de.html [09:18:37] fsfe.org/news/nl/nl-202203.de.html [09:18:37] fsfe.org/news/nl/nl-202204.de.html [09:18:37] fsfe.org/news/nl/nl-202205.de.html [09:18:37] fsfe.org/news/nl/nl-202206.de.html [09:18:37] fsfe.org/news/nl/nl-202207.de.html [09:18:37] fsfe.org/news/nl/nl-202209.de.html [09:18:37] fsfe.org/news/nl/nl-202210.de.html [09:18:37] fsfe.org/news/nl/nl-202211.de.html [09:18:37] fsfe.org/news/nl/nl-202212.de.html [09:18:37] fsfe.org/news/nl/nl-202301.de.html [09:18:37] fsfe.org/news/nl/nl-202302.de.html [09:18:37] fsfe.org/news/nl/nl-202303.de.html [09:18:37] fsfe.org/news/nl/nl-202304.de.html [09:18:37] fsfe.org/news/nl/nl-202305.de.html [09:18:37] fsfe.org/news/nl/nl-202306.de.html [09:18:37] fsfe.org/news/nl/nl-202307.de.html [09:18:37] fsfe.org/news/nl/nl-202308.de.html [09:18:37] fsfe.org/news/nl/nl-202309.de.html [09:18:37] fsfe.org/news/nl/nl-202310.de.html [09:18:37] fsfe.org/news/nl/nl-202311.de.html [09:18:37] fsfe.org/news/nl/nl-202312.de.html [09:18:37] fsfe.org/news/nl/nl-202401.de.html [09:18:37] fsfe.org/news/nl/nl-202402.de.html [09:18:37] fsfe.org/news/nl/nl-202403.de.html [09:18:37] fsfe.org/news/nl/nl-202404.de.html [09:18:37] fsfe.org/news/nl/nl-202405.de.html [09:18:37] fsfe.org/news/nl/nl-202406.de.html [09:18:37] fsfe.org/news/nl/nl-202407.de.html [09:18:37] fsfe.org/news/nl/nl-202408.de.html [09:18:37] fsfe.org/news/nl/nl-202409.de.html [09:18:37] fsfe.org/news/nl/nl-202410.de.html [09:18:37] fsfe.org/news/nl/nl-202411.de.html [09:18:37] fsfe.org/news/podcast/episode-1.de.html [09:18:37] fsfe.org/news/podcast/episode-10.de.html [09:18:37] fsfe.org/news/podcast/episode-11.de.html [09:18:37] fsfe.org/news/podcast/episode-12.de.html [09:18:37] fsfe.org/news/podcast/episode-13.de.html [09:18:37] fsfe.org/news/podcast/episode-14.de.html [09:18:37] fsfe.org/news/podcast/episode-15.de.html [09:18:37] fsfe.org/news/podcast/episode-16.de.html [09:18:37] fsfe.org/news/podcast/episode-17.de.html [09:18:37] fsfe.org/news/podcast/episode-18.de.html [09:18:37] fsfe.org/news/podcast/episode-19.de.html [09:18:37] fsfe.org/news/podcast/episode-2.de.html [09:18:37] fsfe.org/news/podcast/episode-20.de.html [09:18:37] fsfe.org/news/podcast/episode-21.de.html [09:18:37] fsfe.org/news/podcast/episode-22.de.html [09:18:37] fsfe.org/news/podcast/episode-23.de.html [09:18:37] fsfe.org/news/podcast/episode-24.de.html [09:18:37] fsfe.org/news/podcast/episode-25.de.html [09:18:37] fsfe.org/news/podcast/episode-26.de.html [09:18:37] fsfe.org/news/podcast/episode-3.de.html [09:18:37] fsfe.org/news/podcast/episode-4.de.html [09:18:37] fsfe.org/news/podcast/episode-5.de.html [09:18:37] fsfe.org/news/podcast/episode-6.de.html [09:18:38] fsfe.org/news/podcast/episode-7.de.html [09:18:38] fsfe.org/news/podcast/episode-8.de.html [09:18:38] fsfe.org/news/podcast/episode-9.de.html [09:18:38] fsfe.org/news/podcast/episode-special-1.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-1.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-10.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-11.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-12.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-13.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-14.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-15.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-16.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-17.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-18.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-19.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-2.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-20.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-21.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-22.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-23.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-24.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-25.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-26.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-3.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-4.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-5.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-6.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-7.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-8.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-9.de.html [09:18:38] fsfe.org/news/podcast/transcript/episode-special-1.de.html [09:18:38] fsfe.org/order/cancel.de.html [09:18:38] fsfe.org/order/order.de.html [09:18:38] fsfe.org/order/size.de.html [09:18:38] fsfe.org/order/thankyou.de.html [09:18:38] fsfe.org/order/tmpl-concardis.de.html [09:18:38] fsfe.org/order/tmpl-thankyou.de.html [09:18:38] fsfe.org/press/press.de.html [09:18:38] fsfe.org/search/ [09:18:38] fsfe.org/search/index.js [09:18:38] fsfe.org/search/search.de.html [09:18:38] fsfe.org/tags/tagged-2FA.de.html [09:18:38] fsfe.org/tags/tagged-AI.de.html [09:18:38] fsfe.org/tags/tagged-Belgium.de.html [09:18:38] fsfe.org/tags/tagged-Bewustmaking.de.html [09:18:38] fsfe.org/tags/tagged-Bewustzijn.de.html [09:18:38] fsfe.org/tags/tagged-DMA.de.html [09:18:38] fsfe.org/tags/tagged-Denmark.de.html [09:18:38] fsfe.org/tags/tagged-Deutschland.de.html [09:18:38] fsfe.org/tags/tagged-Estonia.de.html [09:18:38] fsfe.org/tags/tagged-France.de.html [09:18:38] fsfe.org/tags/tagged-Germany.de.html [09:18:38] fsfe.org/tags/tagged-IEA.de.html [09:18:38] fsfe.org/tags/tagged-Italia.de.html [09:18:38] fsfe.org/tags/tagged-Italy.de.html [09:18:38] fsfe.org/tags/tagged-Luxembourg.de.html [09:18:38] fsfe.org/tags/tagged-Netherlands.de.html [09:18:38] fsfe.org/tags/tagged-PR.de.html [09:18:38] fsfe.org/tags/tagged-Poland.de.html [09:18:38] fsfe.org/tags/tagged-Switzerland.de.html [09:18:38] fsfe.org/tags/tagged-Taiwan.de.html [09:18:38] fsfe.org/tags/tagged-United.de.html [09:18:38] fsfe.org/tags/tagged-ada-zangemann.de.html [09:18:38] fsfe.org/tags/tagged-anniversary.de.html [09:18:38] fsfe.org/tags/tagged-annual-report.de.html [09:18:38] fsfe.org/tags/tagged-antitrust.de.html [09:18:38] fsfe.org/tags/tagged-at.de.html [09:18:38] fsfe.org/tags/tagged-avm.de.html [09:18:38] fsfe.org/tags/tagged-awareness.de.html [09:18:38] fsfe.org/tags/tagged-ayc.de.html [09:18:38] fsfe.org/tags/tagged-barcelona.de.html [09:18:38] fsfe.org/tags/tagged-be.de.html [09:18:38] fsfe.org/tags/tagged-bea.de.html [09:18:38] fsfe.org/tags/tagged-beleid.de.html [09:18:38] fsfe.org/tags/tagged-berlin.de.html [09:18:38] fsfe.org/tags/tagged-bg.de.html [09:18:38] fsfe.org/tags/tagged-by.de.html [09:18:38] fsfe.org/tags/tagged-campaigns.de.html [09:18:38] fsfe.org/tags/tagged-career.de.html [09:18:38] fsfe.org/tags/tagged-ccc.de.html [09:18:38] fsfe.org/tags/tagged-cfp.de.html [09:18:38] fsfe.org/tags/tagged-ch.de.html [09:18:38] fsfe.org/tags/tagged-cloud.de.html [09:18:38] fsfe.org/tags/tagged-coc.de.html [09:18:38] fsfe.org/tags/tagged-community-meeting.de.html [09:18:38] fsfe.org/tags/tagged-community.de.html [09:18:38] fsfe.org/tags/tagged-competition.de.html [09:18:38] fsfe.org/tags/tagged-compliance.de.html [09:18:38] fsfe.org/tags/tagged-copyright.de.html [09:18:38] fsfe.org/tags/tagged-corona.de.html [09:18:38] fsfe.org/tags/tagged-cz.de.html [09:18:38] fsfe.org/tags/tagged-de.de.html [09:18:38] fsfe.org/tags/tagged-device-neutrality.de.html [09:18:38] fsfe.org/tags/tagged-deviceneutrality.de.html [09:18:38] fsfe.org/tags/tagged-dfd.de.html [09:18:38] fsfe.org/tags/tagged-digital-o-mat.de.html [09:18:38] fsfe.org/tags/tagged-digital-single-market.de.html [09:18:38] fsfe.org/tags/tagged-dk.de.html [09:18:38] fsfe.org/tags/tagged-dma.de.html [09:18:38] fsfe.org/tags/tagged-drm.de.html [09:18:38] fsfe.org/tags/tagged-education.de.html [09:18:38] fsfe.org/tags/tagged-ee.de.html [09:18:38] fsfe.org/tags/tagged-eif.de.html [09:18:38] fsfe.org/tags/tagged-elections.de.html [09:18:38] fsfe.org/tags/tagged-electronic-voting.de.html [09:18:38] fsfe.org/tags/tagged-en.de.html [09:18:38] fsfe.org/tags/tagged-encryption.de.html [09:18:38] fsfe.org/tags/tagged-enterprise.de.html [09:18:38] fsfe.org/tags/tagged-es.de.html [09:18:38] fsfe.org/tags/tagged-eura-slovakia.de.html [09:18:38] fsfe.org/tags/tagged-european-commission.de.html [09:18:38] fsfe.org/tags/tagged-european-court-justice.de.html [09:18:38] fsfe.org/tags/tagged-european-parliament.de.html [09:18:38] fsfe.org/tags/tagged-european-union.de.html [09:18:38] fsfe.org/tags/tagged-european=union.de.html [09:18:38] fsfe.org/tags/tagged-event.de.html [09:18:38] fsfe.org/tags/tagged-fediverse.de.html [09:18:38] fsfe.org/tags/tagged-fellowship.de.html [09:18:38] fsfe.org/tags/tagged-fi.de.html [09:18:38] fsfe.org/tags/tagged-fla.de.html [09:18:38] fsfe.org/tags/tagged-fosdem.de.html [09:18:38] fsfe.org/tags/tagged-fr.de.html [09:18:38] fsfe.org/tags/tagged-frand.de.html [09:18:38] fsfe.org/tags/tagged-freedomvote.de.html [09:18:38] fsfe.org/tags/tagged-fsfe-summit.de.html [09:18:38] fsfe.org/tags/tagged-fsfe20.de.html [09:18:38] fsfe.org/tags/tagged-fspact.de.html [09:18:38] fsfe.org/tags/tagged-funding.de.html [09:18:38] fsfe.org/tags/tagged-fya.de.html [09:18:38] fsfe.org/tags/tagged-ga.de.html [09:18:38] fsfe.org/tags/tagged-gaming.de.html [09:18:38] fsfe.org/tags/tagged-gb.de.html [09:18:38] fsfe.org/tags/tagged-general-purpose-computing.de.html [09:18:38] fsfe.org/tags/tagged-gnu.de.html [09:18:38] fsfe.org/tags/tagged-google.de.html [09:18:38] fsfe.org/tags/tagged-gpl.de.html [09:18:38] fsfe.org/tags/tagged-gr.de.html [09:18:38] fsfe.org/tags/tagged-hamburg-group.de.html [09:18:38] fsfe.org/tags/tagged-helsinki.de.html [09:18:38] fsfe.org/tags/tagged-hide.de.html [09:18:38] fsfe.org/tags/tagged-highlights.de.html [09:18:38] fsfe.org/tags/tagged-horizon2020.de.html [09:18:38] fsfe.org/tags/tagged-hr.de.html [09:18:38] fsfe.org/tags/tagged-hu.de.html [09:18:38] fsfe.org/tags/tagged-huawei.de.html [09:18:38] fsfe.org/tags/tagged-ie.de.html [09:18:38] fsfe.org/tags/tagged-ilovefs-report.de.html [09:18:38] fsfe.org/tags/tagged-ilovefs.de.html [09:18:38] fsfe.org/tags/tagged-infobooth.de.html [09:18:38] fsfe.org/tags/tagged-internal.de.html [09:18:38] fsfe.org/tags/tagged-internship.de.html [09:18:38] fsfe.org/tags/tagged-interview.de.html [09:18:38] fsfe.org/tags/tagged-it.de.html [09:18:38] fsfe.org/tags/tagged-jp.de.html [09:18:38] fsfe.org/tags/tagged-juridisch.de.html [09:18:38] fsfe.org/tags/tagged-koalition-freies-wissen.de.html [09:18:38] fsfe.org/tags/tagged-legal.de.html [09:18:38] fsfe.org/tags/tagged-licensing.de.html [09:18:38] fsfe.org/tags/tagged-limux.de.html [09:18:38] fsfe.org/tags/tagged-llw.de.html [09:18:38] fsfe.org/tags/tagged-localgroup.de.html [09:18:38] fsfe.org/tags/tagged-lt.de.html [09:18:38] fsfe.org/tags/tagged-lu.de.html [09:18:38] fsfe.org/tags/tagged-lv.de.html [09:18:38] fsfe.org/tags/tagged-manchester.de.html [09:18:38] fsfe.org/tags/tagged-meeting.de.html [09:18:38] fsfe.org/tags/tagged-merchandise.de.html [09:18:38] fsfe.org/tags/tagged-microsoft.de.html [09:18:38] fsfe.org/tags/tagged-news.de.html [09:18:38] fsfe.org/tags/tagged-newsletter.de.html [09:18:38] fsfe.org/tags/tagged-ngi.de.html [09:18:38] fsfe.org/tags/tagged-nl.de.html [09:18:38] fsfe.org/tags/tagged-no.de.html [09:18:38] fsfe.org/tags/tagged-office-suites.de.html [09:18:38] fsfe.org/tags/tagged-open-justitia.de.html [09:18:38] fsfe.org/tags/tagged-open-letter.de.html [09:18:38] fsfe.org/tags/tagged-open-science.de.html [09:18:38] fsfe.org/tags/tagged-openstandards.de.html [09:18:38] fsfe.org/tags/tagged-panel.de.html [09:18:38] fsfe.org/tags/tagged-pdfreaders.de.html [09:18:38] fsfe.org/tags/tagged-pl.de.html [09:18:38] fsfe.org/tags/tagged-pmpc.de.html [09:18:38] fsfe.org/tags/tagged-podcast.de.html [09:18:38] fsfe.org/tags/tagged-policy.de.html [09:18:38] fsfe.org/tags/tagged-press.de.html [09:18:38] fsfe.org/tags/tagged-privacy.de.html [09:18:38] fsfe.org/tags/tagged-procurement.de.html [09:18:38] fsfe.org/tags/tagged-pt.de.html [09:18:38] fsfe.org/tags/tagged-public-administration.de.html [09:18:38] fsfe.org/tags/tagged-radiodirective.de.html [09:18:38] fsfe.org/tags/tagged-reuse.de.html [09:18:38] fsfe.org/tags/tagged-rmll.de.html [09:18:38] fsfe.org/tags/tagged-ro.de.html [09:18:38] fsfe.org/tags/tagged-router-freedom.de.html [09:18:38] fsfe.org/tags/tagged-routers.de.html [09:18:38] fsfe.org/tags/tagged-rs.de.html [09:18:38] fsfe.org/tags/tagged-samba.de.html [09:18:38] fsfe.org/tags/tagged-savecodeshare.de.html [09:18:38] fsfe.org/tags/tagged-se.de.html [09:18:38] fsfe.org/tags/tagged-security.de.html [09:18:38] fsfe.org/tags/tagged-sfd.de.html [09:18:38] fsfe.org/tags/tagged-sfscon.de.html [09:18:38] fsfe.org/tags/tagged-sha.de.html [09:18:38] fsfe.org/tags/tagged-sk.de.html [09:18:38] fsfe.org/tags/tagged-software-freedom.de.html [09:18:38] fsfe.org/tags/tagged-sq.de.html [09:18:38] fsfe.org/tags/tagged-sustainability.de.html [09:18:38] fsfe.org/tags/tagged-swpat.de.html [09:18:38] fsfe.org/tags/tagged-talk.de.html [09:18:38] fsfe.org/tags/tagged-tech-teams.de.html [09:18:38] fsfe.org/tags/tagged-tedective.de.html [09:18:38] fsfe.org/tags/tagged-tools.de.html [09:18:38] fsfe.org/tags/tagged-tr.de.html [09:18:38] fsfe.org/tags/tagged-translations.de.html [09:18:38] fsfe.org/tags/tagged-tw.de.html [09:18:38] fsfe.org/tags/tagged-ua.de.html [09:18:38] fsfe.org/tags/tagged-uk.de.html [09:18:38] fsfe.org/tags/tagged-united-nations.de.html [09:18:38] fsfe.org/tags/tagged-upcyclingandroid.de.html [09:18:38] fsfe.org/tags/tagged-us.de.html [09:18:38] fsfe.org/tags/tagged-w3c.de.html [09:18:38] fsfe.org/tags/tagged-windows-tax.de.html [09:18:38] fsfe.org/tags/tagged-women-group.de.html [09:18:38] fsfe.org/tags/tagged-women.de.html [09:18:38] fsfe.org/tags/tagged-workshop.de.html [09:18:38] fsfe.org/tags/tagged-yh4f-project.de.html [09:18:38] fsfe.org/tags/tagged-yh4f.de.html [09:18:38] fsfe.org/tags/tagged-zooom.de.html [09:18:38] fsfe.org/tags/tagged.de.html [09:18:38] fsfe.org/tags/tags.de.html [09:18:38] fsfe.org/templates/concardis_relay.de.html [09:18:38] fsfe.org/templates/registerevent/error.de.html [09:18:38] fsfe.org/templates/registerevent/success.de.html [09:18:38] pdfreaders.org/about.de.html [09:18:38] pdfreaders.org/graphics.de.html [09:18:38] pdfreaders.org/index.de.html [09:18:38] pdfreaders.org/os.de.html [09:18:38] status.fsfe.org/index.de.html [09:18:38] status.fsfe.org/fsfe.org/template.de.html [09:18:38] status.fsfe.org/test.fsfe.org/template.de.html [09:18:38] status.fsfe.org/translations/index.de.html [09:18:38] [09:18:38] sent 9,630,365 bytes received 351,390 bytes 1,330,900.67 bytes/sec [09:18:38] total size is 1,539,752,252 speedup is 154.26