* Release 1.3.3 mit aktuellen Programmversionen und kleinen
Fehlerkorrekturen
1
v1.3.3/CHANGES
Normal file
|
@ -0,0 +1 @@
|
||||||
|
siehe cd-template/news.txt
|
154
v1.3.3/Makefile
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
########## Variablendefinitionen ###########
|
||||||
|
|
||||||
|
# Revisions-Variablen
|
||||||
|
REVISIONS_NR := $(shell if test -d .svn; then svn -R info | grep ^Revision | cut -f2 -d " " | sort | tail -1; else date +%Y%m%d; fi)
|
||||||
|
REVISIONS_SUFFIX = _r$(REVISIONS_NR)
|
||||||
|
|
||||||
|
# Verzeichnisse
|
||||||
|
ROOT_DIR := $(shell pwd)
|
||||||
|
|
||||||
|
# Ablage der erstellten zip/iso-Dateien
|
||||||
|
EXPORT_DIR = $(ROOT_DIR)/export
|
||||||
|
# so beginnt das export-Verzeichnis
|
||||||
|
EXPORT_PREFIX := cryptocd
|
||||||
|
# wird an das export-Verzeichnis und die Archiv/iso-Dateien angehaengt
|
||||||
|
EXPORT_FILE_SUFFIX :=
|
||||||
|
EXPORT_FILE = $(EXPORT_DIR)/$(EXPORT_PREFIX)$(REVISIONS_SUFFIX)$(EXPORT_FILE_SUFFIX)
|
||||||
|
|
||||||
|
# Zwischenlagerung
|
||||||
|
TMP_ROOT = $(ROOT_DIR)/tmp
|
||||||
|
CCD_BUILD_DIR = $(TMP_ROOT)/$(EXPORT_PREFIX)$(REVISIONS_SUFFIX)$(EXPORT_FILE_SUFFIX)
|
||||||
|
PROGRAMM_DIR = $(CCD_BUILD_DIR)/programme
|
||||||
|
|
||||||
|
# Verzeichnisse, die notfalls erstellt werden muessen
|
||||||
|
CREATE_DIRS = $(TMP_ROOT) $(EXPORT_DIR)
|
||||||
|
|
||||||
|
# Aktionen
|
||||||
|
ERZEUGE_TAR = tar cjhf $(EXPORT_FILE).tar.bz2 -C $(dir $(CCD_BUILD_DIR)) $(notdir $(CCD_BUILD_DIR))
|
||||||
|
ERZEUGE_ZIP = (cd $(dir $(CCD_BUILD_DIR)); zip -9rq - $(notdir $(CCD_BUILD_DIR))) >$(EXPORT_FILE).zip
|
||||||
|
ERZEUGE_ISO = mkisofs -quiet $(ISO_OPTS) -o $(EXPORT_FILE).iso $(CCD_BUILD_DIR) 2>&1 | $(EINRUECKEN)
|
||||||
|
|
||||||
|
# Sonstiges
|
||||||
|
# Optionen fuer mkisofs
|
||||||
|
ISO_OPTS = -iso-level 3 -J -joliet-long -relaxed-filenames -f -r -V $(EXPORT_PREFIX)$(REVISIONS_SUFFIX)
|
||||||
|
# Ausgabe-Filter zum Einruecken
|
||||||
|
EINRUECKEN = sed 's/^/\t/'
|
||||||
|
|
||||||
|
######### Variablen vererben ###########
|
||||||
|
export CCD_BUILD_DIR
|
||||||
|
|
||||||
|
########### Allgemeine targets ###########
|
||||||
|
|
||||||
|
.PHONY : clean clean-dist all documents linkcheck help website release source all cd-template kopiere_programme
|
||||||
|
|
||||||
|
help:
|
||||||
|
@echo "allgemeine Targets:"
|
||||||
|
@echo " help - diese Uebersicht"
|
||||||
|
@echo " doku - das Doku-Verzeichnis erneuern"
|
||||||
|
@echo " clean - unnoetige Dateien loeschen (ohne downloads)"
|
||||||
|
@echo " dist-clean - unnoetige Dateien loeschen (inklusive downloads)"
|
||||||
|
@echo " linkcheck - Pruefung der Links"
|
||||||
|
@echo " validate - Pruefung des html-Codes"
|
||||||
|
@echo
|
||||||
|
@echo "Export-Targets:"
|
||||||
|
@echo " source - die lyx-Quellen und Bilder"
|
||||||
|
@echo " website - fuer die Webseite: mit Programmen"
|
||||||
|
@echo " release - erstellt das iso-Image und das zip-Archiv"
|
||||||
|
@echo " all - erstellt alle Export-Formen"
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-make -C documents clean
|
||||||
|
-rm -rf $(TMP_ROOT)/* 2>/dev/null
|
||||||
|
|
||||||
|
|
||||||
|
dist-clean: clean
|
||||||
|
@# runtergeladene Dateien loeschen
|
||||||
|
@downloads/get_files.sh programme clean
|
||||||
|
|
||||||
|
|
||||||
|
linkcheck: doku kopiere_programme
|
||||||
|
linkchecker -r 4 --ignore-url=^mailto: $(wildcard $(CCD_BUILD_DIR)/*.html)
|
||||||
|
|
||||||
|
|
||||||
|
validate:
|
||||||
|
make -C documents validate
|
||||||
|
|
||||||
|
|
||||||
|
# pruefe, ob alle notwendigen/empfohlenen Verzeichnisse existieren
|
||||||
|
verzeichnisstruktur: $(CREATE_DIRS)
|
||||||
|
$(CREATE_DIRS):
|
||||||
|
@if [ ! -e "$@" ] ;\
|
||||||
|
then echo -e "directory ($@) does not exist - I will create it" ;\
|
||||||
|
mkdir -p "$@" ;\
|
||||||
|
fi
|
||||||
|
|
||||||
|
######## die Werkzeuge #########
|
||||||
|
|
||||||
|
cd-template: verzeichnisstruktur
|
||||||
|
@rm -rf $(CCD_BUILD_DIR)
|
||||||
|
@# export local svn directory OR just copy the directories (for non-svn users)
|
||||||
|
@if test -d .svn ;\
|
||||||
|
then svn export cd-template "$(CCD_BUILD_DIR)" ;\
|
||||||
|
else mkdir -p $(dir $(CCD_BUILD_DIR)) ;\
|
||||||
|
cp -r cd-template $(CCD_BUILD_DIR) ;\
|
||||||
|
fi
|
||||||
|
find $(CCD_BUILD_DIR) -type f -name \*.html -exec unix2dos '{}' \;
|
||||||
|
find $(CCD_BUILD_DIR) -type f -name \*.txt -exec unix2dos '{}' \;
|
||||||
|
find $(CCD_BUILD_DIR) -type f -name \*.css -exec unix2dos '{}' \;
|
||||||
|
|
||||||
|
|
||||||
|
doku: cd-template
|
||||||
|
@echo "Aktualisiere das Doku-Verzeichnis ..."
|
||||||
|
@make -C documents
|
||||||
|
@#Kopieren der Dateien ins das Abbild-Verzeichnis
|
||||||
|
@make -C documents install
|
||||||
|
|
||||||
|
|
||||||
|
kopiere_programme: cd-template
|
||||||
|
@echo "Kopiere die Programme ..."
|
||||||
|
@downloads/get_files.sh programme download
|
||||||
|
@downloads/get_files.sh programme verify
|
||||||
|
@downloads/get_files.sh programme install "$(PROGRAMM_DIR)"
|
||||||
|
|
||||||
|
|
||||||
|
####### die Ausgabe-Formate ###########
|
||||||
|
website: EXPORT_FILE_SUFFIX := _website
|
||||||
|
website: doku kopiere_programme
|
||||||
|
@echo "Erzeuge Archiv der online-Dateien ..."
|
||||||
|
@# Gruppen-Schreibrecht setzen (fuer eduforge)
|
||||||
|
@chmod -R g+rw $(TMP_ROOT)
|
||||||
|
@$(ERZEUGE_TAR)
|
||||||
|
|
||||||
|
|
||||||
|
source: EXPORT_FILE_SUFFIX := _src
|
||||||
|
source:
|
||||||
|
rm -rf "$(CCD_BUILD_DIR)"
|
||||||
|
if test -d .svn ;\
|
||||||
|
then mkdir -p "$(dir $(CCD_BUILD_DIR))" ;\
|
||||||
|
echo "Exportiere die gewaehlte svn-Revision ($(REVISIONS_NR)) ..." ;\
|
||||||
|
svn export . "$(CCD_BUILD_DIR)" | $(EINRUECKEN) ;\
|
||||||
|
else mkdir -p "$(CCD_BUILD_DIR)" ;\
|
||||||
|
make -C documents clean ;\
|
||||||
|
cp -r $(shell ls | grep -v "$(notdir $(TMP_ROOT))" | grep -v "$(notdir $(EXPORT_DIR))") "$(CCD_BUILD_DIR)" ;\
|
||||||
|
fi
|
||||||
|
@echo "Erzeuge source-Archiv ..."
|
||||||
|
@$(ERZEUGE_TAR)
|
||||||
|
|
||||||
|
|
||||||
|
release: EXPORT_FILE_SUFFIX := _release
|
||||||
|
release: doku kopiere_programme
|
||||||
|
find -type f -name \*.html -exec unix2dos '{}' \;
|
||||||
|
find -type f -name \*.txt -exec unix2dos '{}' \;
|
||||||
|
find -type f -name \*.css -exec unix2dos '{}' \;
|
||||||
|
@echo "Erzeuge iso-Image ..."
|
||||||
|
@$(ERZEUGE_ISO)
|
||||||
|
@echo "Erzeuge zip-Archiv ..."
|
||||||
|
@$(ERZEUGE_ZIP)
|
||||||
|
|
||||||
|
|
||||||
|
all:
|
||||||
|
@make website
|
||||||
|
@make release
|
||||||
|
@make source
|
||||||
|
|
36
v1.3.3/README
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
===== Die CryptoCD =====
|
||||||
|
|
||||||
|
Dies ist ein Entwickler-Archiv der CryptoCD, einer einstiegsfreundlichen
|
||||||
|
Zusammenstellung von Anleitungen und Programmen zur Ver-
|
||||||
|
schluesselung von E-Mails und Chat-Nachrichten unter Linux, Windows
|
||||||
|
2000/XP und Mac OS X.
|
||||||
|
|
||||||
|
Informationen zum Erstellen einer eigenen CryptoCD findest du in der Datei
|
||||||
|
ccd-infos/export_info.txt.
|
||||||
|
|
||||||
|
Falls du die CryptoCD nur verwenden (also nicht weiterentwickeln) möchtest,
|
||||||
|
dann solltest du anstelle dieses Entwickler-Archivs ein zip-Archiv oder ein
|
||||||
|
CD-Image herunterladen.
|
||||||
|
|
||||||
|
Webseite: http://cryptocd.org
|
||||||
|
Subversion-Repository: (mit anonymem Lese-Zugriff)
|
||||||
|
- zum Browsen: https://systemausfall.org/trac/cryptocd/browser/
|
||||||
|
- fuer ein checkout: https://svn.systemausfall.org/svn/cryptocd/trunk
|
||||||
|
|
||||||
|
Kontakt: info@cryptocd.org
|
||||||
|
|
||||||
|
===== Die Verzeichnisstruktur =====
|
||||||
|
|
||||||
|
ccd-infos: Hinweise zur eigenen Erstellung und Modifikation von Inhalten
|
||||||
|
documents: Die Quelltexte und -bilder
|
||||||
|
export: Hier landen die zu veröffentlichen Endresultate eines make-
|
||||||
|
Aufrufes
|
||||||
|
cd-template: Die fixen Daten der CD (CSS-File usw.)
|
||||||
|
downloads: Nach dem entsprechenden make-Aufruf befinden sich hier die
|
||||||
|
heruntergeladenen Programme
|
||||||
|
tmp: das temporäre Verzeichnis, das beim build-Prozess genutzt wird
|
||||||
|
|
||||||
|
===== Lizenz =====
|
||||||
|
|
||||||
|
Alle Inhalte der CD stehen unter einer Creative-Commons-Lizenz.
|
||||||
|
(siehe Verzeichnis cd-template/auslese/cc)
|
2
v1.3.3/TODO
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
siehe: https://systemausfall.org/trac/cryptocd/report/3
|
||||||
|
|
30
v1.3.3/ccd-infos/export_info.txt
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
===== Informationen zur eigenen Erstellung von Releases der CryptoCD =====
|
||||||
|
|
||||||
|
notwendige Programme:
|
||||||
|
- make
|
||||||
|
- lyx
|
||||||
|
- latex2html
|
||||||
|
- python
|
||||||
|
- mkisofs
|
||||||
|
- zip/tar/bzip2
|
||||||
|
- subversion (nur fuer das Erstellen eines "source"-Pakets notwendig)
|
||||||
|
- link-checker
|
||||||
|
- wdg-html-validator
|
||||||
|
- unix2dos (Debian: im Paket 'tofrodos' enthalten)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
===== Export eines Releases =====
|
||||||
|
|
||||||
|
Im Hauptverzeichnis (höchstwahrscheinlich trunk/) "make help" eingeben,
|
||||||
|
dies listet die aktuellen Optionen auf.
|
||||||
|
|
||||||
|
Achtung: falls du keine lokale Arbeitskopie des subversion-Repositories
|
||||||
|
verwendest, musst du die Release-Nummer im Makefile per Hand setzen
|
||||||
|
(in den ersten Zeilen).
|
||||||
|
|
||||||
|
|
||||||
|
===== Hinzufuegen eigener Anleitungen =====
|
||||||
|
|
||||||
|
Dies ist detailliert und inklusive Formatierungs-Policy in
|
||||||
|
ccd-infos/policy_formatierung.lyx erläutert.
|
794
v1.3.3/ccd-infos/policy_formatierung.lyx
Normal file
|
@ -0,0 +1,794 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language swedish
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Hinweise zur Erstellung von Lyx-Dokumenten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
für Lyx 1.4.x
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset LatexCommand \tableofcontents{}
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Dokumenteigenschaften
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Einstellungen für latex2html
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Damit der latex2html-Konverter ein tex-Dokument korrekt umwandelt (inklusive
|
||||||
|
deutscher Übersetzung der Begriffe), muss zuerst in Lyx-Menü
|
||||||
|
\emph on
|
||||||
|
Dokument --> Einstellung --> LaTeX-Vorspann
|
||||||
|
\emph default
|
||||||
|
folgendes eingetragen werden:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{hyperref}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{german}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Sonstiges
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Sprache des Dokumentes auf Deutsch stellen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Dokument
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Einstellungen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Sprache
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Dokumentformatierung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nachfolgend ist beschreiben, wie ein Lyx-Dokument aufgebaut ist.
|
||||||
|
Bitte beachte, dass du die Reihenfolge der Formatierungen beibehälst.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: Die Titelleiste
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein Lyx-Dokument beginnt mit dem Einfügen der Datei
|
||||||
|
\emph on
|
||||||
|
titlebar.inc.
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
Das geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Datei
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist
|
||||||
|
\emph on
|
||||||
|
titlebar.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld darf nur der Dateiname auftauchen - keine Pfadangaben!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: Das Menü
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die eingefügte Datei
|
||||||
|
\emph on
|
||||||
|
menue.inc
|
||||||
|
\emph default
|
||||||
|
ist dafür verantwortlich, dass das Menü dargestellt wird.
|
||||||
|
Änderungen am Menü musst du also in dieser Datei vornehmen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Einfügen geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü: Einfügen -> Datei -> Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist
|
||||||
|
\emph on
|
||||||
|
menue.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld darf nur der Dateiname auftauchen - keine Pfadangaben!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: css-Tag
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Unterhalb des Menüs kommt ein Abschnitt mit sogenannten
|
||||||
|
\emph on
|
||||||
|
Evil Red Text (ERT)
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Klicke im Lyx-Menü auf den Button mit den roten Buchstaben
|
||||||
|
\emph on
|
||||||
|
TEX
|
||||||
|
\emph default
|
||||||
|
und füge den folgenden Code ein:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quotation
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Titel
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der Hauptteil beginnt immer mit einem Titel.
|
||||||
|
Denke dir was schönes aus.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Autor (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Die optionale Formatierung
|
||||||
|
\emph on
|
||||||
|
Autor
|
||||||
|
\emph default
|
||||||
|
kannst du für eine weitere Beschreibung des Dokumentes benutzen.
|
||||||
|
Üblich ist es dort den Namen des Hauptdokumentes anzugeben.
|
||||||
|
Ein Beispiel:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Title: Thunderbird installieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Autor: Verschlüsselt Mailen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Inhaltsverzeichnis (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bei umfangreichen Dokumenten kannst du nun ein Inhaltsverzeichnis einfügen.
|
||||||
|
Das geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Liste / Inhaltsverzeichnis
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Inhaltsverzeichnis
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Überschriften werden nicht in das Inhaltsverzeichnis aufgenommen, wenn sie
|
||||||
|
mit der Sternchen-Variante (bspw:
|
||||||
|
\emph on
|
||||||
|
Unterabschnitt*
|
||||||
|
\emph default
|
||||||
|
) gekennzeichnet wurden.
|
||||||
|
In den html-Dokumenten tauchen die Nummern vor den Überschriften nicht
|
||||||
|
auf.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: sonstiges
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Alle weiteren Überschriften werden als 'Subsection' formatiert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Zitate werden als 'Quote' formatiert.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Im html wird daraus <blockquote>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Hervorhebungen werden mit '!' markiert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\emph on
|
||||||
|
Eigennamen usw.
|
||||||
|
am besten mit '!' formatieren.
|
||||||
|
Im html wird daraus <class=
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
textit
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Bilder zentriert mit Beschreibung darstellen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bilder werden normalerweise im html-Dokument linksbündig dargestellt.
|
||||||
|
Um dieses Verhalten zu ändern oder um dem Bild eine Beschreibung hinzuzufügen,
|
||||||
|
muss es innerhalb eines
|
||||||
|
\emph on
|
||||||
|
Gleitobjekts
|
||||||
|
\emph default
|
||||||
|
liegen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename /home/phil/daten/sao/svn/cryptocd/trunk/documents/winpt/winpt_systray.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
dies ist eine Beschreibung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Folgende Schritte sind notwendig:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Gleitobjekt
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Abbildung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Hinter
|
||||||
|
\emph on
|
||||||
|
Abbildung #
|
||||||
|
\emph default
|
||||||
|
: die Beschreibung einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Den Cursor an den Satzanfang der Beschreibung bringen dann 'Enter' - nun
|
||||||
|
ist über der Beschreibung Platz für das Bild
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Grafik...
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Bild wird im html innerhalb einer Tabelle dargestellt - diese ist genauso
|
||||||
|
breit wie das Bild selber.
|
||||||
|
Lange Beschreibungen werden also umgebrochen, was mitunter unschön aussieht.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Screenshots - Nachbearbeitung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
maximale Pixelbreite: 600
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
mit Gimp um den Wert 30 schärfen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Hervorhebungen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
neue Ebene anlegen,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Stelle mit dem Auswahlwerkzeug markieren,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Auswahl mitFüllwerzeug und Farbe rot füllen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Tranzparenz der Ebene auf Wert 30 setzen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
das GTK-Theme für die Linux-Screenshots ist Clearlooks (der Standard ab
|
||||||
|
Gnome 2.12)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Böser roter Tex
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bestimmte Formatierungen werden nur umgewandelt, wenn sie dem Konverter
|
||||||
|
direkt übergeben werden.
|
||||||
|
Das erfordert die Eingabe von sogenannten
|
||||||
|
\emph on
|
||||||
|
Evil Red Text (ERT)
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Dieses Erfolgt über das Menü und den Button
|
||||||
|
\emph on
|
||||||
|
TEX
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Eine Dokumentation zu den latex2html-Befehlen findest du unter
|
||||||
|
\emph on
|
||||||
|
http://www-texdev.mpce.mq.edu.au/l2h/docs/manual/
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Links einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Links werden mit einer
|
||||||
|
\emph on
|
||||||
|
ERT
|
||||||
|
\emph default
|
||||||
|
-Formatierung eingefügt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Beschreibung}{Adresse}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Falls du auf eine Seite auf der CryptoCD verweist, gilt folgendes Schema
|
||||||
|
zur Angabe der Adresse:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
../$VERZEICHNIS/DOKUMENT.LYX
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Jedes Dokument liegt in einem gesonderten Verzeichnis, das genauso bezeichnet
|
||||||
|
ist, wie das Dokument selbst.#
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
E-Mail-Adressen verlinken:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Adresse}{mailto: Adresse}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Standard
|
||||||
|
Enthält ein Link ein Prozentzeichen, muss dieses maskiert werden:
|
||||||
|
\backslash
|
||||||
|
% statt %.
|
||||||
|
Angezeigt wird dann ein normales %-Zeichen.
|
||||||
|
Anderfalls wird der Link von latex als Kommentar interpretiert.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Eine horizontale Linie einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Dokumentation enthält zusätzliche Optionen zur Formatierung einer Linie.
|
||||||
|
Ohne Optionen wird sie wie folgt dargestellt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmlrule
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Verweise auf Menüpunkte der Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Falls du im Text auf einen Menüpunkt eines Programmes (z.B.
|
||||||
|
Thunderbird) verweist, wir die entsprechende Stelle wie folgt formatiert:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<span class="kbd">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
$MENÜPUNKT
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</span>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Fussnoten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Problem: Eine Fussnote fehlt in der Auflistung am Ende der html-Seite -
|
||||||
|
nur das Verweis-Wort aus dem Text ist aufgeführt! Eventuell beinhaltet
|
||||||
|
die Fussnote einen Link mit "%"-Zeichen.
|
||||||
|
Die Lösung findest du im Abschnitt
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Links einfügen
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Ende: Der Fortschritssbalken (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Am Ende der meisten Dokumente erscheint ein Fortschrittsbalken.
|
||||||
|
Er zeigt auf, welche Seite in der Dokumentation bereits bearbeitet wurden
|
||||||
|
und welche noch folgen.
|
||||||
|
Beim Erstellen eines neuen Fortschrittsbalken ist wichtig, dass du ihm
|
||||||
|
die Bezeichnung des Dokumentes übergibst, in das er eingefügt werden soll,
|
||||||
|
bpsw: progress_policy_formatierung.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Einfügen geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü: Einfügen -> Datei -> Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist: progress_$LYXDOKUMENT.inc, der Speicherort ist: progress/
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld muss es dann so lauten: progress/progress_$LYXDOKUMENT.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{progress/progress_policy_formatierung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Das Dokument speichern
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Zum Speichern stehen dir vier Verzeichnisse unterhalb von trunk/documents
|
||||||
|
zur Verfügung:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
common/ -- Hier kommen für alle Betriebssysteme gültige Dokumente rein
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
windows/, linux/, macos/ -- Hier werden jeweils die spezifischen Dokumente
|
||||||
|
gespeichert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Beim Speichern gilt folgendes (dies ist wichtig für die Verlinkung innerhalb
|
||||||
|
der Lyx-Dokumente):
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Lege innerhalb eines der o.g.
|
||||||
|
Verzeichnisse ein neues Verzeichniss an,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
benenne dieses Verzeichnis genauso, wie du das Lyx-Dokument benennest,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
speichere das Lyx-Dokument ab.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
11
v1.3.3/cd-template/CryptoCD_Start.html
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0; URL=doku/windows/index/index.html">
|
||||||
|
<title>Die CryptoCD</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
Automatische Weiterleitung zur <a href="doku/windows/index/index.html" title="Dokumentation">Dokumentation</a> ...
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
2
v1.3.3/cd-template/autorun.inf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[autorun]
|
||||||
|
open=programme\shellopn.exe CryptoCD_Start.html
|
51
v1.3.3/cd-template/copyleft.txt
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
Copyleft:
|
||||||
|
|
||||||
|
Die CryptoCD unterliegt der Creative-Commons-Lizenz:
|
||||||
|
Namensnennung - NichtKommerziell - Weitergabe unter gleichen
|
||||||
|
Bedingungen 2.0 Deutschland.
|
||||||
|
http://creativecommons.org/licenses/by-nc-sa/2.0/deed.de
|
||||||
|
|
||||||
|
|
||||||
|
Abweichend davon gelten die folgenden Lizenzen:
|
||||||
|
|
||||||
|
Betriebssystem-Logos
|
||||||
|
Fuer die auf den Bildern pc_linux.png, pc_windows.png, pc_mac.png
|
||||||
|
zu sehenden Logos, gelten folgende Bedingungen:
|
||||||
|
Penguin
|
||||||
|
The copyright holder of this file allows anyone to use it for any
|
||||||
|
purpose, provided that the copyright holders Larry Ewing, Simon
|
||||||
|
Budig and Anja Gerwinski are mentioned.
|
||||||
|
Windows/Mac OS
|
||||||
|
Beide Logos koennen frei verwendet werden, sind aber
|
||||||
|
wahrscheinlich durch das deutsche Markengesetz oder vergleichbare
|
||||||
|
Gesetze geschuetzt.
|
||||||
|
|
||||||
|
Enigmail (Thunderbird-Erweiterung)
|
||||||
|
http://enigmail.mozdev.org/
|
||||||
|
Mozilla Public License Version 1.1
|
||||||
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
||||||
|
|
||||||
|
GnuPG (Verschluesselungs-Programm)
|
||||||
|
http://www.gnupg.org/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
|
||||||
|
Gaim (Chat-Programm)
|
||||||
|
http://gaim.sourceforge.net/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
|
||||||
|
Gaim-Encryption (Gaim-Plugin)
|
||||||
|
http://gaim-encryption.sourceforge.net/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
|
||||||
|
Tango Desktop Project (Icons)
|
||||||
|
http://tango.freedesktop.org/Tango_Desktop_Project
|
||||||
|
Creativ Commons Attribution-ShareAlike 2.5
|
||||||
|
http://creativecommons.org/licenses/by-sa/2.5/
|
||||||
|
|
||||||
|
Thunderbird (E-Mail-Programm)
|
||||||
|
http://www.mozilla.com/thunderbird/
|
||||||
|
Mozilla Public License Version 1.1
|
||||||
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
BIN
v1.3.3/cd-template/cover/cover.jpg
Executable file
After Width: | Height: | Size: 339 KiB |
BIN
v1.3.3/cd-template/cover/cover.odt
Normal file
BIN
v1.3.3/cd-template/cover/cover.pdf
Normal file
BIN
v1.3.3/cd-template/cover/cover_eduforge.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
v1.3.3/cd-template/cover/deed.gif
Normal file
After Width: | Height: | Size: 811 B |
BIN
v1.3.3/cd-template/cover/deed2.gif
Normal file
After Width: | Height: | Size: 813 B |
BIN
v1.3.3/cd-template/cover/deed3.gif
Normal file
After Width: | Height: | Size: 830 B |
BIN
v1.3.3/cd-template/cover/logox.png
Normal file
After Width: | Height: | Size: 256 KiB |
BIN
v1.3.3/cd-template/cover/logox_grau_hintergrund.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
v1.3.3/cd-template/doku/chat.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
374
v1.3.3/cd-template/doku/cryptocd.css
Normal file
|
@ -0,0 +1,374 @@
|
||||||
|
/*
|
||||||
|
HINWEISE
|
||||||
|
padding,margin Angaben: oben rechts unten links
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
font-size: 11pt;
|
||||||
|
font-family: verdana, lucida, arial, helvetica, sans-serif;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
html>body {
|
||||||
|
font-family: verdana, lucida, arial, helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
h1, h2, h3, h4 {
|
||||||
|
font-family: georgia, times new roman, times, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
background: none;
|
||||||
|
padding: 1.75em 0 0;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 220%;
|
||||||
|
text-align: center;
|
||||||
|
color: #555753;
|
||||||
|
padding: 0 0 0.5em;
|
||||||
|
margin: 0.75em 0 1.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 150%;
|
||||||
|
color: #555753;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 120%;
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Seiten-Untertitel */
|
||||||
|
.author_info {
|
||||||
|
text-align: center;
|
||||||
|
color: #B7B7B7;
|
||||||
|
margin-top: -3.5em;
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #f57900;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #ce5c00;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: 1px;
|
||||||
|
border: 1px solid silver;
|
||||||
|
border-bottom: none;
|
||||||
|
border-right: none;
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
tt {
|
||||||
|
font-size: 90%;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container hr {
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container .externalLink {
|
||||||
|
background: url(externallink.png) center right no-repeat;
|
||||||
|
padding-right: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
left: 20px;
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 5;
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li {
|
||||||
|
color: #43598e;
|
||||||
|
float: left;
|
||||||
|
list-style-type: disc;
|
||||||
|
margin-left: 15pt;
|
||||||
|
padding: 5pt 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a {
|
||||||
|
color: #f57900;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar {
|
||||||
|
background-color: #33436a;
|
||||||
|
text-shadow: 2px 2px 3px gray;
|
||||||
|
height: 54px;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 16px;
|
||||||
|
border-bottom: 6px solid #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar .left {
|
||||||
|
text-align: left;
|
||||||
|
color: #f57900;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar .right {
|
||||||
|
text-align: right;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* #### Menue #### */
|
||||||
|
#nav {
|
||||||
|
float: left;
|
||||||
|
background-color: transparent;
|
||||||
|
text-align: left;
|
||||||
|
width: 180px;
|
||||||
|
margin: 0 0 0.5em 2em;
|
||||||
|
padding: 0.75em;
|
||||||
|
font-size: 90%;
|
||||||
|
border:1px solid #ccc;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav li {
|
||||||
|
margin: 0 0 0 -2em;
|
||||||
|
list-style-type: square;
|
||||||
|
color: #888a85;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#navtitle {
|
||||||
|
color: #888;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toclevel-2 {
|
||||||
|
color: #babdb6;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* #### Hauptteil #### */
|
||||||
|
|
||||||
|
#main {
|
||||||
|
margin-left: 25%;
|
||||||
|
padding: 0 1em;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main li {
|
||||||
|
margin: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main ul li {
|
||||||
|
margin: 0.5em;
|
||||||
|
list-style-type: square;
|
||||||
|
list-style-position: inside;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Abstand von Bildern + Bildunterschrift zum folgenden Absatz */
|
||||||
|
#main table caption {
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main img {
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toc {
|
||||||
|
font-size: 90%;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toctitle {
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #os_selection: Tabelle mit Computern auf index.html */
|
||||||
|
#os_selection {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#os_selection td {
|
||||||
|
padding: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ie_center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #selection: Tabelle mit Buttons auf index2.html*/
|
||||||
|
#selection a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#selection td {
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 0.6em 0.6em 0.9em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#selection img {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Zitate */
|
||||||
|
blockquote {
|
||||||
|
font-style:italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bildbeschreibungen*/
|
||||||
|
caption {
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hervorhebungen */
|
||||||
|
.textit {
|
||||||
|
color: #294210;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.kbd {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 90%;
|
||||||
|
background-color: #eeeeec;
|
||||||
|
margin: 0.1em 0.3em 0.1em 0.1em;
|
||||||
|
padding: 0 0 0 0.7em;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: #babdb6 #888a85 #888a85 #babdb6;;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hint {
|
||||||
|
background-color: #eeeeec;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress {
|
||||||
|
background-color: transparent;
|
||||||
|
text-align: left;
|
||||||
|
width: 400px;
|
||||||
|
margin: 3em 0 0.5em 2em;
|
||||||
|
padding: 0.75em;
|
||||||
|
border:1px solid #ccc;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progresstitle{
|
||||||
|
color: #888a85;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress ul li {
|
||||||
|
margin-left: -2.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.done, .done a, .done a:visited {
|
||||||
|
color: #888a85;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.done2, .done2 a, .done2 a:visited {
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a {
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #f57900;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:visited {
|
||||||
|
color: #ce5c00;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size:110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:active {
|
||||||
|
color: #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footnotes {
|
||||||
|
font-size: 80%;
|
||||||
|
margin-top: 3em;
|
||||||
|
padding-left: 1em;
|
||||||
|
color: #2e3436;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fntitle {
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #### Footer #### */
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
clear: left;
|
||||||
|
border-top: 3px solid #B7B7B7;
|
||||||
|
background-color: #33436a;
|
||||||
|
margin-top: 30px;
|
||||||
|
padding: 15px 15px 0 15px;
|
||||||
|
color: white;
|
||||||
|
font-size: 90%;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer .left {
|
||||||
|
text-align: left;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer .right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
BIN
v1.3.3/cd-template/doku/einfuehrung.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
v1.3.3/cd-template/doku/email.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
v1.3.3/cd-template/doku/externallink.png
Normal file
After Width: | Height: | Size: 307 B |
BIN
v1.3.3/cd-template/doku/pc_linux.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
v1.3.3/cd-template/doku/pc_mac.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
v1.3.3/cd-template/doku/pc_windows.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
v1.3.3/cd-template/doku/somerights20.png
Normal file
After Width: | Height: | Size: 917 B |
BIN
v1.3.3/cd-template/favicon.ico
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
v1.3.3/cd-template/lizenz/cc/deed-eu.gif
Normal file
After Width: | Height: | Size: 1,017 B |
80
v1.3.3/cd-template/lizenz/cc/deed.de.html
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head>
|
||||||
|
|
||||||
|
<title>Creative Commons Deed</title><link rel="stylesheet" type="text/css" href="deeds.css">
|
||||||
|
<link rel="alternate" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc-sa/2.0/de/rdf"></head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<rdf:RDF xmlns="http://web.resource.org/cc/"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/de/">
|
||||||
|
<permits rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||||
|
<permits rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||||
|
<requires rdf:resource="http://web.resource.org/cc/Notice" />
|
||||||
|
<requires rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||||
|
<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
|
||||||
|
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||||
|
<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||||
|
</License>
|
||||||
|
</rdf:RDF>
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<p align="center"><a href="http://creativecommons.org/">Creative Commons</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="deed">
|
||||||
|
<div align="center">
|
||||||
|
<img src="logo_deed.gif" alt="Creative Commons Deed" border="0" height="79" vspace="14" width="280">
|
||||||
|
|
||||||
|
<p><b>Namensnennung-NichtKommerziell-Weitergabe unter gleichen Bedingungen 2.0 Deutschland</b></p>
|
||||||
|
|
||||||
|
<div class="text">
|
||||||
|
|
||||||
|
<p><strong>Sie dürfen:</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>den Inhalt vervielfältigen, verbreiten und öffentlich aufführen</li>
|
||||||
|
<li>Bearbeitungen anfertigen</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p><strong>Zu den folgenden Bedingungen:</strong></p>
|
||||||
|
<div align="center"><table class="draft" border="0" cellpadding="4" cellspacing="0" width="500">
|
||||||
|
<tbody>
|
||||||
|
<tr><td><img src="deed.gif" alt="by" align="left" border="0" hspace="4"></td><td align="left"><div class="tiny"><strong>Namensnennung</strong>. Sie müssen den Namen des Autors/Rechtsinhabers nennen.</div></td></tr>
|
||||||
|
|
||||||
|
<tr><td><img src="deed-eu.gif" alt="nc" align="left" border="0" hspace="4"></td><td align="left"><div class="tiny"><strong>Keine kommerzielle Nutzung</strong>. Dieser Inhalt darf nicht für kommerzielle Zwecke verwendet werden.</div></td></tr>
|
||||||
|
|
||||||
|
<tr><td><img src="deed_002.gif" alt="sa" align="left" border="0" hspace="4"></td><td align="left"><div class="tiny"><strong>Weitergabe unter gleichen Bedingungen</strong>.
|
||||||
|
Wenn Sie diesen Inhalt bearbeiten oder in anderer Weise umgestalten,
|
||||||
|
verändern oder als Grundlage für einen anderen Inhalt verwenden, dann
|
||||||
|
dürfen Sie den neu entstandenen Inhalt nur unter Verwendung identischer
|
||||||
|
Lizenzbedingungen weitergeben.</div></td></tr>
|
||||||
|
</tbody></table></div>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Im Falle einer Verbreitung müssen Sie anderen die Lizenzbedingungen, unter die dieser Inhalt fällt, mitteilen.</li>
|
||||||
|
<li>Jede dieser Bedingungen kann nach schriftlicher Einwilligung des Rechtsinhabers aufgehoben werden.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p style="margin-top: 40px;" align="center"><strong>Die gesetzlichen Schranken des Urheberrechts bleiben hiervon unberührt.</strong></p>
|
||||||
|
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
Hier ist eine Zusammenfassung des <a href="legalcode.html" class="fulltext">Lizenzvertrags</a> in allgemeinverständlicher Sprache.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<div align="center"><a href="http://creativecommons.org/licenses/disclaimer-popup?lang=de" onclick="window.open('/licenses/disclaimer-popup?lang=de', 'characteristic_help', 'width=375,height=300,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=yes,menubar=no,status=yes');return false;">Haftungsausschluss</a> <a href="http://creativecommons.org/licenses/disclaimer-popup?lang=de" onclick="window.open('/licenses/disclaimer-popup?lang=de', 'characteristic_help', 'width=375,height=300,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=yes,menubar=no,status=yes');return false;"><img src="popup.gif" alt="disclaimer" border="0" height="13" width="15"></a></div>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="http://creativecommons.org/learn/licenses">Hier können Sie erfahren, wie Sie Ihren Inhalt unter Verwendung dieses Lizenzvertrags verbreiten können</a>
|
||||||
|
</p>
|
||||||
|
</body></html>
|
BIN
v1.3.3/cd-template/lizenz/cc/deed.gif
Normal file
After Width: | Height: | Size: 811 B |
BIN
v1.3.3/cd-template/lizenz/cc/deed_002.gif
Normal file
After Width: | Height: | Size: 830 B |
54
v1.3.3/cd-template/lizenz/cc/deeds.css
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
body {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
font-family: verdana, arial, helvetica, sans-serif;
|
||||||
|
color: black;
|
||||||
|
background-color: white;
|
||||||
|
text-align: center;
|
||||||
|
font-size:11px;
|
||||||
|
/* part 1 of 2 centering hack */
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed {
|
||||||
|
width: 620px;
|
||||||
|
padding: 15px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
|
/* opera does not like 'margin:20px auto' */
|
||||||
|
background: #ffc;
|
||||||
|
border: 3px groove #333;
|
||||||
|
text-align:left;
|
||||||
|
/* part 2 of 2 centering hack */
|
||||||
|
width: 620px; /* ie5win fudge begins */
|
||||||
|
voice-family: "\"}\"";
|
||||||
|
voice-family:inherit;
|
||||||
|
width: 584px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html>body #content {
|
||||||
|
width: 584px; /* ie5win fudge ends */
|
||||||
|
}
|
||||||
|
|
||||||
|
.fineprint {
|
||||||
|
border:1px solid black;
|
||||||
|
padding:8px;
|
||||||
|
background:#ffffff;
|
||||||
|
text-align:justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text, li {
|
||||||
|
font-family:verdana, sans-serif;
|
||||||
|
font-size:11px;
|
||||||
|
margin-left:20px;
|
||||||
|
margin-right:20px;
|
||||||
|
line-height:140%;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tiny {
|
||||||
|
font-family:verdana, sans-serif;
|
||||||
|
font-size:11px;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
295
v1.3.3/cd-template/lizenz/cc/legalcode.html
Normal file
|
@ -0,0 +1,295 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<html><head>
|
||||||
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
||||||
|
|
||||||
|
<title>Creative Commons Legal Code</title><link href="deeds.css" rel="stylesheet" type="text/css" media="all">
|
||||||
|
<style type="text/css">
|
||||||
|
li {
|
||||||
|
margin-bottom:12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style></head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<p align="center"><a href="http://creativecommons.org/">Creative Commons</a></p>
|
||||||
|
<div id="deed">
|
||||||
|
<div align="center">
|
||||||
|
<img src="logo_code.gif" alt="Creative Commons Legal Code" border="0" height="79" vspace="14" width="280"></div>
|
||||||
|
<p align="center"><strong>Namensnennung — Nicht-kommerziell — Weitergabe unter gleichen Bedingungen 2.0</strong></p>
|
||||||
|
<div class="text">
|
||||||
|
<div class="fineprint" style="background: transparent none repeat scroll 0%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;">
|
||||||
|
<p>CREATIVE
|
||||||
|
COMMONS IST KEINE RECHTSANWALTSGESELLSCHAFT UND LEISTET KEINE
|
||||||
|
RECHTSBERATUNG. DIE WEITERGABE DIESES LIZENZENTWURFES FÜHRT ZU KEINEM
|
||||||
|
MANDATSVERHÄLTNIS. CREATIVE COMMONS ERBRINGT DIESE INFORMATIONEN OHNE
|
||||||
|
GEWÄHR. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE
|
||||||
|
GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE
|
||||||
|
SICH AUS IHREM GEBRAUCH ERGEBEN.</p>
|
||||||
|
</div>
|
||||||
|
<p><em>Lizenzvertrag</em></p>
|
||||||
|
<p>DAS
|
||||||
|
URHEBERRECHTLICH GESCHÜTZTE WERK ODER DER SONSTIGE SCHUTZGEGENSTAND
|
||||||
|
(WIE UNTEN BESCHRIEBEN) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE
|
||||||
|
COMMONS PUBLIC LICENSE („CCPL“ ODER „LIZENZVERTRAG“) ZUR VERFÜGUNG
|
||||||
|
GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER
|
||||||
|
EINSCHLÄGIGE GESETZE GESCHÜTZT.</p>
|
||||||
|
<p> DURCH DIE AUSÜBUNG EINES
|
||||||
|
DURCH DIESEN LIZENZVERTRAG GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND
|
||||||
|
ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH
|
||||||
|
EINVERSTANDEN. DER LIZENZGEBER RÄUMT IHNEN DIE HIER BESCHRIEBENEN
|
||||||
|
RECHTE UNTER DER VORAUSSETZUNGEIN, DASS SIE SICH MIT DIESEN
|
||||||
|
VERTRAGSBEDINGUNGEN EINVERSTANDEN ERKLÄREN.</p>
|
||||||
|
<p><strong>1. Definitionen</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Unter einer <strong>„Bearbeitung“ </strong>wird
|
||||||
|
eine Übersetzung oder andere Bearbeitung des Werkes verstanden, die
|
||||||
|
Ihre persönliche geistige Schöpfung ist. Eine freie Benutzung des
|
||||||
|
Werkes wird nicht als Bearbeitung angesehen.</li>
|
||||||
|
<li>Unter den <strong>„Lizenzelementen“ </strong>werden
|
||||||
|
die folgenden Lizenzcharakteristika verstanden, die vom Lizenzgeber
|
||||||
|
ausgewählt und in der Bezeichnung der Lizenz genannt werden:
|
||||||
|
„Namensnennung“, „Nicht-kommerziell“, „Weitergabe unter gleichen
|
||||||
|
Bedingungen“.</li>
|
||||||
|
<li>Unter dem <strong>„Lizenzgeber“ </strong>wird die natürliche oder juristische Person verstanden, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet.</li>
|
||||||
|
<li>Unter einem<strong> „Sammelwerk“ </strong>wird
|
||||||
|
eine Sammlung von Werken, Daten oder anderen unabhängigen Elementen
|
||||||
|
verstanden, die aufgrund der Auswahl oder Anordnung der Elemente eine
|
||||||
|
persönliche geistige Schöpfung ist. Darunter fallen auch solche
|
||||||
|
Sammelwerke, deren Elemente systematisch oder methodisch angeordnet und
|
||||||
|
einzeln mit Hilfe elektronischer Mittel oder auf andere Weise
|
||||||
|
zugänglich sind (Datenbankwerke). Ein Sammelwerk wird im Zusammenhang
|
||||||
|
mit dieser Lizenz nicht als Bearbeitung (wie oben beschrieben)
|
||||||
|
angesehen.</li>
|
||||||
|
<li>Mit <strong>„SIE“ </strong>und <strong>„Ihnen“ </strong>ist
|
||||||
|
die natürliche oder juristische Person gemeint, die die durch diese
|
||||||
|
Lizenz gewährten Nutzungsrechte ausübt und die zuvor die Bedingungen
|
||||||
|
dieser Lizenz im Hinblick auf das Werk nicht verletzt hat, oder die die
|
||||||
|
ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese
|
||||||
|
Lizenz gewährten Nutzungsrechte trotz einer vorherigen Verletzung
|
||||||
|
auszuüben.</li>
|
||||||
|
<li>Unter dem <strong>„Schutzgegenstand“</strong>wird
|
||||||
|
das Werk oder Sammelwerk oder das Schutzobjekt eines verwandten
|
||||||
|
Schutzrechts, das Ihnen unter den Bedingungen dieser Lizenz angeboten
|
||||||
|
wird, verstanden</li>
|
||||||
|
<li>Unter dem <strong>„Urheber“</strong> wird die natürliche Person verstanden, die das Werk geschaffen hat.</li>
|
||||||
|
<li>Unter einem <strong>„</strong><strong>verwandten Schutzrecht</strong><strong>“</strong><strong> </strong>wird
|
||||||
|
das Recht an einem anderen urheberrechtlichen Schutzgegenstand als
|
||||||
|
einem Werk verstanden, zum Beispiel einer wissenschaftlichen Ausgabe,
|
||||||
|
einem nachgelassenen Werk, einem Lichtbild, einer Datenbank, einem
|
||||||
|
Tonträger, einer Funksendung, einem Laufbild oder einer Darbietung
|
||||||
|
eines ausübenden Künstlers.</li>
|
||||||
|
<li>Unter dem <strong>„Werk“ </strong>wird eine persönliche geistige Schöpfung verstanden, die Ihnen unter den Bedingungen dieser Lizenz angeboten wird.</li></ol>
|
||||||
|
<p><strong>2. Schranken des Urheberrechts. </strong>Diese
|
||||||
|
Lizenz lässt sämtliche Befugnisse unberührt, die sich aus den Schranken
|
||||||
|
des Urheberrechts,aus dem Erschöpfungsgrundsatz oder anderen
|
||||||
|
Beschränkungen der Ausschließlichkeitsrechte des Rechtsinhabers ergeben.</p>
|
||||||
|
<p><strong>3. Lizenzierung. </strong>Unter
|
||||||
|
den Bedingungen dieses Lizenzvertrages räumt Ihnen der Lizenzgeber ein
|
||||||
|
lizenzgebührenfreies, räumlich und zeitlich (für die Dauer des
|
||||||
|
Urheberrechts oder verwandten Schutzrechts) unbeschränktes einfaches
|
||||||
|
Nutzungsrecht ein, den Schutzgegenstand in der folgenden Art und Weise
|
||||||
|
zu nutzen:</p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>den Schutzgegenstand in körperlicher Form zu verwerten, insbesondere zu vervielfältigen, zu verbreiten und auszustellen;</li>
|
||||||
|
<li>den
|
||||||
|
Schutzgegenstand in unkörperlicher Form öffentlich wiederzugeben,
|
||||||
|
insbesondere vorzutragen, aufzuführen und vorzuführen, öffentlich
|
||||||
|
zugänglich zu machen, zu senden, durch Bild- und Tonträger
|
||||||
|
wiederzugeben sowie Funksendungen und öffentliche Zugänglichmachungen
|
||||||
|
wiederzugeben;</li>
|
||||||
|
<li>den Schutzgegenstand auf Bild- oder Tonträger
|
||||||
|
aufzunehmen, Lichtbilder davon herzustellen, weiterzusenden und in dem
|
||||||
|
in a. und b. genannten Umfang zu verwerten;</li>
|
||||||
|
<li>den
|
||||||
|
Schutzgegenstand zu bearbeiten oder in anderer Weise umzugestalten und
|
||||||
|
die Bearbeitungen zu veröffentlichen und in dem in a. bis c. genannten
|
||||||
|
Umfang zu verwerten;</li></ol>
|
||||||
|
<p>Die genannten Nutzungsrechte können
|
||||||
|
für alle bekannten Nutzungsarten ausgeübt werden. Die genannten
|
||||||
|
Nutzungsrechte beinhalten das Recht, solche Veränderungen an dem Werk
|
||||||
|
vorzunehmen, die technisch erforderlich sind, um die Nutzungsrechte für
|
||||||
|
alle Nutzungsarten wahrzunehmen. Insbesondere sind davon die Anpassung
|
||||||
|
an andere Medien und auf andere Dateiformate umfasst.</p>
|
||||||
|
<p><strong>4. Beschränkungen. </strong>Die Einräumung der Nutzungsrechte gemäß Ziffer 3 erfolgt ausdrücklich nur unter den folgenden Bedingungen:</p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Sie
|
||||||
|
dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser
|
||||||
|
Lizenz vervielfältigen, verbreiten oder öffentlich wiedergeben, und Sie
|
||||||
|
müssen stets eine Kopie oder die vollständige Internetadresse in Form
|
||||||
|
des Uniform-Resource-Identifier (URI) dieser Lizenz beifügen, wenn Sie
|
||||||
|
den Schutzgegenstandvervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben. Sie dürfen keine Vertragsbedingungen anbieten oder
|
||||||
|
fordern, die die Bedingungen dieser Lizenz oder die durch sie gewährten
|
||||||
|
Rechte ändern oder beschränken. Sie dürfen den Schutzgegenstand nicht
|
||||||
|
unterlizenzieren. Sie müssen alle Hinweise unverändert lassen, die auf
|
||||||
|
diese Lizenz und den Haftungsausschluss hinweisen. Sie dürfen den
|
||||||
|
Schutzgegenstand mit keinen technischen Schutzmaßnahmen versehen, die
|
||||||
|
den Zugang oder den Gebrauch des Schutzgegenstandes in einer Weise
|
||||||
|
kontrollieren, die mit den Bedingungen dieser Lizenz im Widerspruch
|
||||||
|
stehen. Die genannten Beschränkungen gelten auch für den Fall, dass der
|
||||||
|
Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet; sie
|
||||||
|
verlangen aber nicht, dass das Sammelwerk insgesamt zum Gegenstand
|
||||||
|
dieser Lizenz gemacht wird. Wenn Sie ein Sammelwerk erstellen, müssen
|
||||||
|
Sie - soweit dies praktikabel ist - auf die Mitteilung eines
|
||||||
|
Lizenzgebers oder Urhebers hin aus dem Sammelwerk jeglichen Hinweis auf
|
||||||
|
diesen Lizenzgeber oder diesen Urheber entfernen. Wenn Sie den
|
||||||
|
Schutzgegenstand bearbeiten, müssen Sie - soweit dies praktikabel ist-
|
||||||
|
auf die Aufforderung eines Rechtsinhabers hin von der Bearbeitung
|
||||||
|
jeglichen Hinweis auf diesen Rechtsinhaber entfernen.</li>
|
||||||
|
<li>Sie
|
||||||
|
dürfen eine Bearbeitung ausschließlich unter den Bedingungen dieser
|
||||||
|
Lizenz, einer späteren Version dieser Lizenz mit denselben
|
||||||
|
Lizenzelementen wie diese Lizenz oder einer Creative Commons iCommons
|
||||||
|
Lizenz, die dieselben Lizenzelemente wie diese Lizenz enthält (z.B.
|
||||||
|
Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen
|
||||||
|
Bedingungen 2.0 Japan), vervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben. Sie müssen stets eine Kopie oder die Internetadresse in
|
||||||
|
Form des Uniform-Resource-Identifier (URI) dieser Lizenz oder einer
|
||||||
|
anderen Lizenz der im vorhergehenden Satz beschriebenen Art beifügen,
|
||||||
|
wenn Sie die Bearbeitung vervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben. Sie dürfen keine Vertragsbedingungen anbieten oder
|
||||||
|
fordern, die die Bedingungen dieser Lizenz oder die durch sie gewährten
|
||||||
|
Rechte ändern oder beschränken, und Sie müssen alle Hinweise
|
||||||
|
unverändert lassen, die auf diese Lizenz und den Haftungsausschluss
|
||||||
|
hinweisen. Sie dürfen eine Bearbeitung nicht mit technischen
|
||||||
|
Schutzmaßnahmen versehen, die den Zugang oder den Gebrauch der
|
||||||
|
Bearbeitung in einer Weise kontrollieren, die mit den Bedingungen
|
||||||
|
dieser Lizenz im Widerspruch stehen. Die genannten Beschränkungen
|
||||||
|
gelten auch für eine Bearbeitung als Bestandteil eines Sammelwerkes;
|
||||||
|
sie erfordern aber nicht, dass das Sammelwerk insgesamt zum Gegenstand
|
||||||
|
dieser Lizenz gemacht wird.</li>
|
||||||
|
<li>Sie dürfen die in Ziffer 3
|
||||||
|
gewährten Nutzungsrechte in keiner Weise verwenden, die hauptsächlich
|
||||||
|
auf einen geschäftlichen Vorteil oder eine vertraglich geschuldete
|
||||||
|
geldwerte Vergütung abzielt oder darauf gerichtet ist. Erhalten Sie im
|
||||||
|
Zusammenhang mit der Einräumung der Nutzungsrechte ebenfalls einen
|
||||||
|
Schutzgegenstand, ohne dass eine vertragliche Verpflichtung hierzu
|
||||||
|
besteht, so wird dies nicht als geschäftlicher Vorteil oder vertraglich
|
||||||
|
geschuldete geldwerte Vergütung angesehen, wenn keine Zahlung oder
|
||||||
|
geldwerte Vergütung in Verbindung mit dem Austausch der
|
||||||
|
Schutzgegenstände geleistet wird (z.B. File-Sharing).</li>
|
||||||
|
<li>Wenn
|
||||||
|
Sie den Schutzgegenstand oder eine Bearbeitung oder ein Sammelwerk
|
||||||
|
vervielfältigen, verbreiten oder öffentlich wiedergeben, müssen Sie
|
||||||
|
alle Urhebervermerke für den Schutzgegenstand unverändert lassen und
|
||||||
|
die Urheberschaft oder Rechtsinhaberschaft in einer der von Ihnen
|
||||||
|
vorgenommenen Nutzung angemessenen Form anerkennen, indem Sie den Namen
|
||||||
|
(oder das Pseudonym, falls ein solches verwendet wird) des Urhebers
|
||||||
|
oder Rechteinhabers nennen, wenn dieser angegeben ist. Dies gilt auch
|
||||||
|
für den Titel des Schutzgegenstandes, wenn dieser angeben ist, sowie -
|
||||||
|
in einem vernünftigerweise durchführbaren Umfang - für die mit dem
|
||||||
|
Schutzgegenstand zu verbindende Internetadresse in Form des
|
||||||
|
Uniform-Resource-Identifier (URI), wie sie der Lizenzgeber angegeben
|
||||||
|
hat, sofern dies geschehen ist, es sei denn, diese Internetadresse
|
||||||
|
verweist nicht auf den Urhebervermerk oder die Lizenzinformationen zu
|
||||||
|
dem Schutzgegenstand. Bei einer Bearbeitung ist ein Hinweis darauf
|
||||||
|
aufzuführen, in welcher Form der Schutzgegenstand in die Bearbeitung
|
||||||
|
eingegangen ist (z.B. „Französische Übersetzung des ... (Werk) durch
|
||||||
|
... (Urheber)“ oder „Das Drehbuch beruht auf dem Werk des ...
|
||||||
|
(Urheber)“). Ein solcher Hinweis kann in jeder angemessenen Weise
|
||||||
|
erfolgen, wobei jedoch bei einer Bearbeitung, einer Datenbank oder
|
||||||
|
einem Sammelwerk der Hinweis zumindest an gleicher Stelle und in ebenso
|
||||||
|
auffälliger Weise zu erfolgen hat wie vergleichbare Hinweise auf andere
|
||||||
|
Rechtsinhaber.</li>
|
||||||
|
<li>Obwohl die gemäss Ziffer 3 gewährten Nutzungsrechte in umfassender Weise<br>
|
||||||
|
ausgeübt werden dürfen, findet diese Erlaubnis ihre gesetzliche Grenze in<br>
|
||||||
|
den Persönlichkeitsrechten der Urheber und ausübenden Künstler, deren
|
||||||
|
berechtigte geistige und persönliche Interessen bzw. deren Ansehen oder
|
||||||
|
Ruf nicht dadurch gefährdet werden dürfen, dass ein Schutzgegenstand
|
||||||
|
über das gesetzlich zulässige Maß hinaus beeinträchtigt wird. </li></ol>
|
||||||
|
<p><strong>5. Gewährleistung.</strong>
|
||||||
|
Sofern dies von den Vertragsparteien nicht anderweitig schriftlich
|
||||||
|
vereinbart,, bietet der Lizenzgeber keine Gewährleistung für die
|
||||||
|
erteilten Rechte, außer für den Fall, dass Mängel arglistig
|
||||||
|
verschwiegen wurden. Für Mängel anderer Art, insbesondere bei der
|
||||||
|
mangelhaften Lieferung von Verkörperungen des Schutzgegenstandes,
|
||||||
|
richtet sich die Gewährleistung nach der Regelung, die die Person, die
|
||||||
|
Ihnen den Schutzgegenstand zur Verfügung stellt, mit Ihnen außerhalb
|
||||||
|
dieser Lizenz vereinbart, oder - wenn eine solche Regelung nicht
|
||||||
|
getroffen wurde - nach den gesetzlichen Vorschriften.</p>
|
||||||
|
<p><strong>6. Haftung. </strong>Über die in Ziffer 5 genannte Gewährleistung hinaus haftet Ihnen der Lizenzgeber nur für Vorsatz und grobe Fahrlässigkeit.</p>
|
||||||
|
<p><strong>7. Vertragsende</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Dieser
|
||||||
|
Lizenzvertrag und die durch ihn eingeräumten Nutzungsrechte enden
|
||||||
|
automatisch bei jeder Verletzung der Vertragsbedingungen durch Sie. Für
|
||||||
|
natürliche und juristische Personen, die von Ihnen eine Bearbeitung,
|
||||||
|
eine Datenbank oder ein Sammelwerk unter diesen Lizenzbedingungen
|
||||||
|
erhalten haben, gilt die Lizenz jedoch weiter, vorausgesetzt, diese
|
||||||
|
natürlichen oder juristischen Personen erfüllen sämtliche
|
||||||
|
Vertragsbedingungen. Die Ziffern 1, 2, 5, 6, 7 und 8 gelten bei einer
|
||||||
|
Vertragsbeendigung fort.</li>
|
||||||
|
<li>Unter den oben genannten
|
||||||
|
Bedingungen erfolgt die Lizenz auf unbegrenzte Zeit (für die Dauer des
|
||||||
|
Schutzrechts). Dennoch behält sich der Lizenzgeber das Recht vor, den
|
||||||
|
Schutzgegenstand unter anderen Lizenzbedingungen zu nutzen oder die
|
||||||
|
eigene Weitergabe des Schutzgegenstandes jederzeit zu beenden,
|
||||||
|
vorausgesetzt, dass solche Handlungen nicht dem Widerruf dieser Lizenz
|
||||||
|
dienen (oder jeder anderen Lizenzierung, die auf Grundlage dieser
|
||||||
|
Lizenz erfolgt ist oder erfolgen muss) und diese Lizenz wirksam bleibt,
|
||||||
|
bis Sie unter den oben genannten Voraussetzungen endet.</li></ol>
|
||||||
|
<p><strong>8. Schlussbestimmungen</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Jedes
|
||||||
|
Mal, wenn Sie den Schutzgegenstand vervielfältigen, verbreiten oder
|
||||||
|
öffentlich wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz
|
||||||
|
für den Schutzgegenstand unter denselben Vertragsbedingungen an, unter
|
||||||
|
denen er Ihnen die Lizenz eingeräumt hat.</li>
|
||||||
|
<li>Jedes Mal, wenn
|
||||||
|
Sie eine Bearbeitung vervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz für den
|
||||||
|
ursprünglichen Schutzgegenstand unter denselben Vertragsbedingungen an,
|
||||||
|
unter denen er Ihnen die Lizenz eingeräumt hat.</li>
|
||||||
|
<li>Sollte eine
|
||||||
|
Bestimmung dieses Lizenzvertrages unwirksam sein, so wird die
|
||||||
|
Wirksamkeit der übrigen Lizenzbestimmungen dadurch nicht berührt, und
|
||||||
|
an die Stelle der unwirksamen Bestimmung tritt eine Ersatzregelung, die
|
||||||
|
dem mit der unwirksamen Bestimmung angestrebten Zweck am nächsten kommt.</li>
|
||||||
|
<li>Nichts
|
||||||
|
soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses
|
||||||
|
Lizenzvertrages verzichtet oder einer Vertragsverletzung zugestimmt
|
||||||
|
wird, so lange ein solcher Verzicht oder eine solche Zustimmung nicht
|
||||||
|
schriftlich vorliegen und von der verzichtenden oder zustimmenden
|
||||||
|
Vertragspartei unterschrieben sind</li>
|
||||||
|
<li>Dieser Lizenzvertrag
|
||||||
|
stellt die vollständige Vereinbarung zwischen den Vertragsparteien
|
||||||
|
hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren
|
||||||
|
ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den
|
||||||
|
Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden
|
||||||
|
gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten.
|
||||||
|
Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche
|
||||||
|
Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden.</li>
|
||||||
|
<li>Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Deutschland Anwendung.</li></ol>
|
||||||
|
<!-- BREAKOUT FOR CC NOTICE. NOT A PART OF THE LICENSE -->
|
||||||
|
<div class="fineprint">
|
||||||
|
<p>CREATIVE
|
||||||
|
COMMONS IST KEINE VERTRAGSPARTEI DIESES LIZENZVERTRAGES UND ÜBERNIMMT
|
||||||
|
KEINERLEI GEWÄHRLEISTUNG FÜR DAS WERK. CREATIVE COMMONS IST IHNEN ODER
|
||||||
|
DRITTEN GEGENÜBER NICHT HAFTBAR FÜR SCHÄDEN JEDWEDER ART. UNGEACHTET
|
||||||
|
DER VORSTEHENDEN ZWEI (2) SÄTZE HAT CREATIVE COMMONS ALL RECHTE UND
|
||||||
|
PFLICHTEN EINES LIZENSGEBERS, WENN SICH CREATIVE COMMONS AUSDRÜCKLICH
|
||||||
|
ALS LIZENZGEBER BEZEICHNET.</p>
|
||||||
|
|
||||||
|
<p>AUSSER FÜR DEN
|
||||||
|
BESCHRÄNKTEN ZWECK EINES HINWEISES AN DIE ÖFFENTLICHKEIT, DASS DAS WERK
|
||||||
|
UNTER DER CCPL LIZENSIERT WIRD, DARF KENIE VERTRAGSPARTEI DIE MARKE
|
||||||
|
“CREATIVE COMMONS” ODER EINE ÄHNLICHE MARKE ODER DAS LOGO VON CREATIVE
|
||||||
|
COMMONS OHNE VORHERIGE GENEHMIGUNG VON CREATIVE COMMONS NUTZEN. JEDE
|
||||||
|
GESTATTETE NUTZUNG HAT IN ÜBREEINSTIMMUNG MIT DEN JEWEILS GÜLTIGEN
|
||||||
|
NUTZUNGSBEDINGUNGEN FÜR MARKEN VON CREATIVE COMMONS ZU ERFOLGEN, WIE
|
||||||
|
SIE AUF DER WEBSITE ODER IN ANDERER WEISE AUF ANFRAGE VON ZEIT ZU ZEIT
|
||||||
|
ZUGÄNGLICH GEMACHT WERDEN.</p>
|
||||||
|
<p>
|
||||||
|
CREATIVE COMMONS KANN UNTER <a href="http://creativecommons.org/">http://creativecommons.org</a> KONTAKTIERT WERDEN.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- END CC NOTICE -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-bottom: 10px;" align="right"><a href="deed.de.html" class="fulltext">« Zurück zu Commons Deed</a></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body></html>
|
BIN
v1.3.3/cd-template/lizenz/cc/logo_code.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
v1.3.3/cd-template/lizenz/cc/logo_deed.gif
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
v1.3.3/cd-template/lizenz/cc/popup.gif
Normal file
After Width: | Height: | Size: 74 B |
75
v1.3.3/cd-template/news.txt
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
CryptoCD 1.3.3 "n.n."
|
||||||
|
* Aktuelle Versionen von Thunderbird und GnuPG
|
||||||
|
* Defekte Links korrigiert
|
||||||
|
* Kleinere Fehler behoben
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mo, 09 Jan 02007 09:45
|
||||||
|
|
||||||
|
CryptoCD 1.3.2 "Von Zauberhand"
|
||||||
|
* Fehler im Menue korrigiert
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mo, 18 Sep 02006 20:18
|
||||||
|
|
||||||
|
CryptoCD 1.3.1 "Stimme erheben statt Stimme abgeben"
|
||||||
|
* Neue Programm-Versionen
|
||||||
|
- Thunderbird 1.5.0.7
|
||||||
|
- Enigmail 0.94.1
|
||||||
|
- GnuPG 1.4.5 (fuer MacOS >= 10.4)
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Su, 17 Sep 02006 10:25
|
||||||
|
|
||||||
|
CryptoCD 1.3 "Tanze Tango mit mir"
|
||||||
|
* Komplett ueberarbeitetes Design
|
||||||
|
* Steigerung der BenutzerInnenfreunlichkeit
|
||||||
|
* Aktuelle Programm-Versionen
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Su, 13 Aug 02006 10:00:00
|
||||||
|
|
||||||
|
CryptoCD 1.2.2 "Auf in die Verlaengerung"
|
||||||
|
|
||||||
|
* Bugfix - basierend auf svn-Version r434
|
||||||
|
- Gaim + Plugin sind nun benutzbar
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Sa, 10 Jun 02006 13:24:52
|
||||||
|
|
||||||
|
CryptoCD 1.2.1 "rund und trotzdem kein Fussball"
|
||||||
|
|
||||||
|
* Neue Version - basierend auf r428
|
||||||
|
* Erste oeffentliche Version seit v1.1
|
||||||
|
* Anleitungen und Programme fuer Linux und Mac OS X hinzugefuegt
|
||||||
|
* Schluesselverwaltung WinPT wurde durch Enigmail ersetzt
|
||||||
|
* Chaosradios entfernt - Iso ist nun > 50 MB
|
||||||
|
* Verschluesselung mit Gaim hinzugefuegt
|
||||||
|
- Vielen Dank an philonous
|
||||||
|
* das Aussehen der Seiten etwas verbessert
|
||||||
|
- besonders im IE
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Fr, 9 Jun 02006 17:56:27
|
||||||
|
|
||||||
|
CryptoCD 1.2.0 "fuehlbar rund"
|
||||||
|
|
||||||
|
* basierend auf r394
|
||||||
|
- unveroeffentlichte Testversion
|
||||||
|
|
||||||
|
-- Henning Rieger <bagel@systemausfall.org> Fr, 19 Mai 2006 23:59:59
|
||||||
|
|
||||||
|
CryptoCD 1.1.1 "hoerbar neu"
|
||||||
|
|
||||||
|
* basierend auf r151
|
||||||
|
* Chaosradio 99 hinzugefuegt
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Do, 21 Apr 2005 13:51:13
|
||||||
|
|
||||||
|
CryptoCD 1.1 "weg_mit_den_frames" *
|
||||||
|
|
||||||
|
* Neues Release - basierend auf r141
|
||||||
|
* Frames entfernt, das Layout basiert jetzt auf css
|
||||||
|
* WinPT Anleitung ueberarbeitet, Installation basiert jetzt auf GnuPT
|
||||||
|
* die CD startet nun automatisch, nachdem sie ins Laufwerk eingelegt
|
||||||
|
wurde
|
||||||
|
* About Seite eingefuegt, Infos zu den Autoren
|
||||||
|
* Copyleft Seite eingefuegt, Infos zur Lizenz
|
||||||
|
* Rechtschreibung und Formatierungen in den Dokumenten korrigiert
|
||||||
|
* favicon hizugefuegt
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mi, 20 Apr 2005 22:20:20
|
104
v1.3.3/documents/Makefile
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
# validation program
|
||||||
|
VALIDATE_BIN := validate
|
||||||
|
# our self written documents
|
||||||
|
LYX_FILES := $(shell find -name *.lyx -type f)
|
||||||
|
# the tex output of lyx
|
||||||
|
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
|
||||||
|
# output files of lyx that are already processed by mod_html_files.py
|
||||||
|
EXPORT_DIRS := $(shell for a in $(LYX_FILES); do echo -n "$$a" | sed "s%/\([^/]*\).lyx%/export-%"; echo "$$(basename $${a%.lyx})" ; done)
|
||||||
|
# png files (get converted to eps)
|
||||||
|
PNG_FILES := $(shell find -name *.png -type f)
|
||||||
|
# converted eps files
|
||||||
|
EPS_FILES := $(patsubst %.png,%.eps,$(PNG_FILES))
|
||||||
|
# menue and footer files
|
||||||
|
INC_FILES := $(wildcard *.inc) $(wildcard progress/*.inc)
|
||||||
|
# the tex output of include files
|
||||||
|
INC_TEX_FILES := $(patsubst %.inc,%.tex,$(INC_FILES))
|
||||||
|
# look for lyx executable
|
||||||
|
LYX_BIN = $(shell which lyx lyx-qt lyx-xform | head -1)
|
||||||
|
|
||||||
|
|
||||||
|
# output parameters for latex2html
|
||||||
|
LATEX2HTML_OPTS := -no_auto_link -split 0 -no_navigation -no_subdir -info 0 -style ../../cryptocd.css -local_icons -address 0
|
||||||
|
|
||||||
|
|
||||||
|
# virtual targets that have different names than the produced files - they will alway be executed,
|
||||||
|
# if another target depends on them (they do not look for timestamps)
|
||||||
|
.PHONY : clean clean-targets install all
|
||||||
|
|
||||||
|
|
||||||
|
# default target
|
||||||
|
all: $(EXPORT_DIRS)
|
||||||
|
|
||||||
|
|
||||||
|
# validate the html files
|
||||||
|
validate: $(EXPORT_DIRS)
|
||||||
|
@$(VALIDATE_BIN) $(shell find . -name *.html -type f)
|
||||||
|
|
||||||
|
|
||||||
|
# copy the created files to the destination directory (usually outside of this directory tree)
|
||||||
|
install: $(EXPORT_DIRS)
|
||||||
|
echo $(EXPORT_DIRS)
|
||||||
|
@if [ -z "$(CCD_BUILD_DIR)" ] ;\
|
||||||
|
then echo "CCD_BUILD_DIR must be defined! (this should be done by the parent Makefile)" >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
@if [ ! -e "$(CCD_BUILD_DIR)" ] ;\
|
||||||
|
then echo "CCD_BUILD_DIR ($(CCD_BUILD_DIR)) does not exist!" ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/macos"
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/linux"
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/windows"
|
||||||
|
@# copy os-independent stuff
|
||||||
|
for a in $(EXPORT_DIRS) ;\
|
||||||
|
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||||
|
then DIRNAME_MAC="$(CCD_BUILD_DIR)/doku/macos/$$(basename $$(dirname $$a))" ;\
|
||||||
|
DIRNAME_LIN="$(CCD_BUILD_DIR)/doku/linux/$$(basename $$(dirname $$a))" ;\
|
||||||
|
DIRNAME_WIN="$(CCD_BUILD_DIR)/doku/windows/$$(basename $$(dirname $$a))" ;\
|
||||||
|
mkdir -p "$$DIRNAME_MAC" "$$DIRNAME_LIN" "$$DIRNAME_WIN" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_MAC" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_LIN" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_WIN" ;\
|
||||||
|
fi ;\
|
||||||
|
done
|
||||||
|
@# copy os-specific stuff
|
||||||
|
for a in $(EXPORT_DIRS) ;\
|
||||||
|
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||||
|
then true ;\
|
||||||
|
else mkdir -p "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||||
|
cp -r "$$a/"* "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||||
|
fi ;\
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
clean-targets:
|
||||||
|
-rm -r $(EXPORT_DIRS) 2>/dev/null
|
||||||
|
|
||||||
|
|
||||||
|
# create tex files from lyx
|
||||||
|
$(TEX_FILES): $(LYX_FILES)
|
||||||
|
$(LYX_BIN) -e latex $*.lyx
|
||||||
|
|
||||||
|
|
||||||
|
# original html-files, as they are created by lyx
|
||||||
|
$(EXPORT_DIRS): $(TEX_FILES) $(INC_FILES) footer.asc
|
||||||
|
-test -d "$@" && rm -rf "$@"
|
||||||
|
mkdir -p "$@"
|
||||||
|
latex2html $(LATEX2HTML_OPTS) -dir "$@" $(dir $@)/$(patsubst export-%,%.tex,$(notdir $@))
|
||||||
|
@# die html-Datei wurde jetzt erstellt (inklusive Bilder)
|
||||||
|
-#rm $(dir $@)WARNINGS $(dir $@)labels.pl $(dir $@)internals.pl $*.log 2>/dev/null
|
||||||
|
-rm $@/$(patsubst export-%,%.css,$(notdir $@)) 2>/dev/null
|
||||||
|
-rm $@/images.aux $@/images.log $@/images.out $@/images.pl $@/images.tex $@/missfont.log $@/WARNINGS $@/labels.pl 2>/dev/null
|
||||||
|
python mod_html_files.py $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
@# add footer
|
||||||
|
cat footer.asc >>$@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
@# replace unix-like linebreaks with their DOS counterparts
|
||||||
|
unix2dos $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
|
||||||
|
|
||||||
|
clean: clean-targets
|
||||||
|
-rm $(TEX_FILES) 2>/dev/null
|
||||||
|
-rm $(INC_TEX_FILES) 2>/dev/null
|
||||||
|
-rm $(EPS_FILES) 2>/dev/null
|
||||||
|
|
20
v1.3.3/documents/README.make
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
Hier findest du Hinweise, zur Generierung der html-Dateien aus den Text-Quellen (geschrieben in LyX).
|
||||||
|
Dies ist nur notwendig, falls du die CD mit veraenderten Texten weitergeben willst.
|
||||||
|
|
||||||
|
Benoetigte Programme:
|
||||||
|
- lyx
|
||||||
|
- make
|
||||||
|
- latex
|
||||||
|
- latex2html
|
||||||
|
- zip
|
||||||
|
(da fehlen bestimmt noch ein paar tex-Pakete ...)
|
||||||
|
|
||||||
|
----
|
||||||
|
Q: Wie generiere ich die Seiten, wenn alles nach meinen Wuenschen veraendert wurde?
|
||||||
|
A: cd doku && make
|
||||||
|
|
||||||
|
----
|
||||||
|
Q: Wie raeum ich die ganzen Files auf, damit das Repository nicht so zugemuellt wird?
|
||||||
|
A: cd doku && make clean
|
||||||
|
|
||||||
|
----
|
356
v1.3.3/documents/common/about/about.lyx
Normal file
|
@ -0,0 +1,356 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Über die CryptoCD
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Die CryptoCD ist ein Projekt mit einem klaren Ziel: Verschlüsselung für
|
||||||
|
die Massen.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wir wollen mit dieser CD möglichst vielen Menschen ermöglichen, mit einem
|
||||||
|
Maximum an Privatsphäre öffentliche Netze (wie das Internet) benutzen zu
|
||||||
|
können.
|
||||||
|
Der Einstieg in das Thema Verschlüsselung und die folgenden Anleitungen
|
||||||
|
sind bewusst einsteigerfreundlich gehalten.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Großen Wert legen wir darauf, Menschen mit verschiedensten Betriebssystemen
|
||||||
|
zu erreichen.
|
||||||
|
So wirken wir einer marktdominierten Ausgrenzung entgegen.
|
||||||
|
Momentan beziehen sich die Anleitungen auf Linux, Mac OS X und Windows.
|
||||||
|
Nebenbei bemerkt verwenden wir nur
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Freie Software}{http://www.fsf-europe.org/documents/freesoftware.
|
||||||
|
de.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, anders wäre eine solche CD wohl auch nicht realisierbar.
|
||||||
|
Deswegen an dieser Stelle einen großen Dank an alle EntwicklerInnen der
|
||||||
|
verwendeten Programme und Anleitungen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Weiterentwicklung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wir sind ständig bemüht die CryptoCD weiterzuentwickeln.
|
||||||
|
Neben der Aktualisierung der verwendeten Software wollen wir vor allem
|
||||||
|
die Benutzbarkeit verbessern.
|
||||||
|
Das geht natürlich nicht ohne die Rückmeldungen unserer NutzerInnen.
|
||||||
|
Deshalb freuen wir uns über dein Feedback.
|
||||||
|
Schicke eine E-Mail an info@cryptocd.org
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
oder schau auf die
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{CryptoCD Projektseite}{http://cryptocd.org/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Dort kannst du deine Kritik und Fragen loswerden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Die AutorInnen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die CryptoCD wurde initiiert von
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Sense.Lab e.V.}{http://senselab.org}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Darüber hinaus haben sich andere Menschen an der Entwicklung beteiligt
|
||||||
|
und so einen wesentlichen Teil zur jetzigen Form beigetragen.
|
||||||
|
In ungeordneter Reihenfolge waren und sind beteiligt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Stefan Deser
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Ralf Kreutzmann
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Micha Reiser
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Während der Arbeit an einer neuen Version fallen ganz vielfältige Aufgaben
|
||||||
|
an, bspw.
|
||||||
|
das Verfassen neuer Anleitungen, die Integration neuer Programm-Versionen
|
||||||
|
und natürlich auch das Korrekturlesen bestehender Inhalte.
|
||||||
|
Falls du Lust verspürst, dich an einer Stelle zu beteiligen, schicke uns
|
||||||
|
eine E-Mail: info@cryptocd.org.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="lizenz"></div>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Lizenz
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Inhalte der CryptoCD unterliegen der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Creative-Commons-Lizenz}{../../../lizenz/cc/deed.de.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
:
|
||||||
|
\emph on
|
||||||
|
Namensnennung - NichtKommerziell - Weitergabe unter gleichen Bedingungen
|
||||||
|
2.0 Deutschland
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Durch diese Lizenz kannst du die CryptoCD:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
frei verwenden,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
beliebig verändern,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
und verändert weiterzugeben.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Als einzige Einschränkung gilt, dass die Nutzung ausschließlich nicht-kommerziel
|
||||||
|
l erfolgen darf.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Alle Programme unterliegen entweder der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{GNU Public License}{http://www.gnu.de/gpl-ger.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
oder der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Mozilla Public License}{http://www.mozilla.org/MPL/MPL-1.1.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
, die dir ähnlich umfassende Freiheiten sichern.
|
||||||
|
Die verwendeten Icons und Symbole sind originale oder modifizierte Versionen
|
||||||
|
des
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Tango Desktop Project}{http://tango.freedesktop.org/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
620
v1.3.3/documents/common/asymmetrie/asymmetrie.lyx
Normal file
|
@ -0,0 +1,620 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme times
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize a4paper
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Asymmetrische Verschlüsselung am Beispiel erklärt
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Einführung ins Thema
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Prinzip der asymmetrischen Verschlüsselung beruht im Wesentlichen darauf,
|
||||||
|
dass sich jedeR KommunikationspartnerIn jeweils ein Schlüsselpaar erzeugt.
|
||||||
|
Einer der Schlüssel wird geheim gehalten, der so genannte
|
||||||
|
\emph on
|
||||||
|
private Schlüssel
|
||||||
|
\emph default
|
||||||
|
und der andere, der so genannte
|
||||||
|
\emph on
|
||||||
|
öffentliche Schlüssel
|
||||||
|
\emph default
|
||||||
|
wird jedem kommunikationswilligen Wesen zugänglich gemacht.
|
||||||
|
Der große Vorteil dieses Verfahrens im Vergleich zur symmetrischen Verschlüssel
|
||||||
|
ung
|
||||||
|
\begin_inset Foot
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Symmetrische Verschl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sselung ist die gebr
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
uchlichste Methode zur Geheimhaltung vor Dritten: Alle Teilnehmenden kennen
|
||||||
|
den geheimen Code, mit dem sowohl ver- als auch entschl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sselt wird.
|
||||||
|
Jeder Mensch, der den gemeinsamen Code kennt, kann die verschlüsselten
|
||||||
|
Daten lesen und verstehen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ist in der einfachen Verteilung des öffentlichen Schlüssels begründet.
|
||||||
|
Dieser kann wirklich für jeden Menschen frei zugänglich sein, ohne dass
|
||||||
|
dadurch das Verfahren unsicher wird.
|
||||||
|
Aber dazu später mehr.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Im Folgenden wird zur einfacheren Darstellung der
|
||||||
|
\emph on
|
||||||
|
öffentliche Schlüssel
|
||||||
|
\emph default
|
||||||
|
als Schloss betrachtet und der
|
||||||
|
\emph on
|
||||||
|
private Schlüssel
|
||||||
|
\emph default
|
||||||
|
als passender Schlüssel für dieses Schloss.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename oeffentlicher_und_privater_schluessel.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nehmen wir nun an, Bob möchte eine Nachricht an Alice schicken.
|
||||||
|
Alice möchte aber nicht, dass ihr Vater lesen kann, was Bob für Schweinereien
|
||||||
|
schreibt.
|
||||||
|
Dazu wird sie also als Erstes einige Schlösser anfertigen, die nur von
|
||||||
|
|
||||||
|
\emph on
|
||||||
|
einem
|
||||||
|
\emph default
|
||||||
|
(ihrem) Schlüssel geöffnet werden können.
|
||||||
|
Dann wird sie ihre (offenen!) Schlösser an ihre Freunde verteilen, also
|
||||||
|
auch an Bob.
|
||||||
|
Bob hat nun ein offenes Schloss von Alice
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Besonders wichtig ist die korrekte
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"U
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
bergabe des Schlosses! Bob muss sich sicher sein k
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
nnen, ein Schloss von Alice zu benutzen.
|
||||||
|
Bestenfalls telefoniert er mit Alice und l
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sst sich das Schloss genauestens beschreiben.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, welches er zwar schließen kann, aber ohne passenden Schlüssel nicht wieder
|
||||||
|
zu öffnen vermag (Alice wird ihren Schlüssel natürlich um keinen Preis
|
||||||
|
der Welt rausrücken).
|
||||||
|
Also fängt Bob an, seinen Brief zu schreiben, steckt ihn in eine Kiste
|
||||||
|
und verschließt diese mit dem Schloss von Alice.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename verschluesselung.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Abgesehen von Alice ist nun niemand mehr in der Lage, die Kiste zu öffnen
|
||||||
|
und den Brief zu lesen.
|
||||||
|
Die Kiste macht sich nun auf die Reise und erreicht irgendwann Alice, welche
|
||||||
|
mit ihrem Schlüssel das Schloss öffnet, den Brief der Kiste entnimmt, liest
|
||||||
|
und froh ist, dass ihr Vater Bobs Brief nicht lesen konnte.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename entschluesselung.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Alice kann sich absolut sicher sein, dass niemand nach Verschließen der
|
||||||
|
Kiste den Brief lesen konnte.
|
||||||
|
Selbst Bob hatte nicht mehr die Möglichkeit, den Brief zu lesen, geschweige
|
||||||
|
denn zu ändern, da nur Alice den passenden Schlüssel zum Schloss besitzt.
|
||||||
|
Der angesprochene Vorteil der öffentlichen Schlüsselübertragung besteht
|
||||||
|
also darin, dass prinzipiell jedeR ein Schloss von Alice benutzen kann
|
||||||
|
um Kisten zu verschließen, aber nur sie in der Lage ist, diese wieder zu
|
||||||
|
öffnen.
|
||||||
|
Alice braucht sich zum Gedankenaustausch also nicht unter vier Augen mit
|
||||||
|
Bob zu treffen, was ihr Vater nie zulassen würde.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein Nachteil besteht allerdings darin, dass Alice sich nicht sicher sein
|
||||||
|
kann ob die Nachricht wirklich von Bob stammt oder ob irgendjemand
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Alice' Vater könnte sein Schloss Bob unterjubeln (als angebliches Schloss
|
||||||
|
von Alice).
|
||||||
|
Bob w
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
rde also die Kiste nicht mit dem Schloss von Alice verschlie
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"ss
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
en, sondern mit dem ihres Vaters.
|
||||||
|
Dieser k
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
nnte die Kiste dann bequem mit seinem zugeh
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
rigen Schlüssel
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ffnen, den Brief lesen/manipulieren/zensieren und die Kiste mit Alice' Schloss
|
||||||
|
(welches er ja auch hat, weil es per Definition
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ffentlich ist) an Alice weiterleiten.
|
||||||
|
Davon w
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
rde Alice nichts mitbekommen, da sie wie immer eine Kiste mit einem Brief
|
||||||
|
erh
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
lt, verschlossen mit ihrem Schloss.
|
||||||
|
Dieses Vorgehen wird
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
brigens Man-in-the-Middle-Attacke genannt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
einfach eines ihrer Schlösser genommen und damit irgendeine Kiste verschlossen
|
||||||
|
hat.
|
||||||
|
Dazu muss sich Bob noch was einfallen lassen (Unterschrift, Blutspritzer,
|
||||||
|
\SpecialChar \ldots{}
|
||||||
|
)
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Problem der f
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
lschungssicheren Unterschrift ist jedoch auch mit den Werkzeugen der asymmetrisc
|
||||||
|
hen Verschl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sselung l
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sbar.
|
||||||
|
Dazu erstellt Alice mit ihrem privaten Schl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ssel eine Signatur, anhand derer Bob mit Alice'
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ffentlichem Schl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ssel die Herkunft der Nachricht
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
berpr
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
fen kann.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_asymmetrie.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
BIN
v1.3.3/documents/common/asymmetrie/entschluesselung.png
Normal file
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 18 KiB |
BIN
v1.3.3/documents/common/asymmetrie/verschluesselung.png
Normal file
After Width: | Height: | Size: 33 KiB |
241
v1.3.3/documents/common/chat/chat.lyx
Normal file
|
@ -0,0 +1,241 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Chatten mit Gaim
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
In diesem Kapitel erfährst du, wie du mit dem Programm Gaim verschlüsselt
|
||||||
|
chatten kannst.
|
||||||
|
Der Einfachheit halber wird dazu der Dienst ICQ benutzt - die Verschlüsselung
|
||||||
|
klappt natürlich auch mit anderen von Gaim unterstützten Diensten (hier
|
||||||
|
sei speziell der auf
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Freier Software}{http://www.germany.fsfeurope.org/documents/frees
|
||||||
|
oftware.de.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
basierende Dienst
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Jabber}{http://www.jabber.org}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
erwähnt).
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ähnlich
|
||||||
|
\begin_inset Note Note
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ich (l) denke, dass dies irrefuehrend sein koennte: die gaim-Verschluesselung
|
||||||
|
ist gaim-spezifisch - Mailverschluesselung ist jedoch standardisiert und
|
||||||
|
implementationsunabhaengig.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
wie bei der
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{E-Mail-Verschlüsselung}{../email/email.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
funktioniert die Verschlüsselung nur, wenn dein Chat-Partner/deine Chat-Partner
|
||||||
|
in ebenfalls Gaim benutzt
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der allgemeinere Ansatz, Chat-Nachrichten per GnuPG zu verschlüsseln, würde
|
||||||
|
diese Anleitung sprengen.
|
||||||
|
Dazu brauchst du in jedem Fall Jabber und ein passendes Programm, wie z.B.
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Gajim}{http://gajim.org}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
oder
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{PSI}{http://psi.affinix.com/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
und für Verschlüsselung eingerichtet hat.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Voraussetzungen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
einen ICQ-Account mit den dazugehörigen Zugangsdaten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
knapp 20 MB Festplattenspeicher
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
etwas Zeit
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||||
|
kannst und zum Schluss ein komplett eingerichtetes Gaim inklusive der Möglichke
|
||||||
|
it zur Verschlüsselung vorfindest.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_chat.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
BIN
v1.3.3/documents/common/chat_anwendung/bilder/gaim_plugin_03.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
v1.3.3/documents/common/chat_anwendung/bilder/gaim_plugin_04.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
v1.3.3/documents/common/chat_anwendung/bilder/gaim_plugin_05.png
Normal file
After Width: | Height: | Size: 10 KiB |
272
v1.3.3/documents/common/chat_anwendung/chat_anwendung.lyx
Normal file
|
@ -0,0 +1,272 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Chatten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
mit Gaim
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der letzte Schritt zeigt dir, wie du tatsächlich Nachrichten verschlüsseln
|
||||||
|
kannst.
|
||||||
|
Dazu wählst du aus der Liste einen Kontakt aus, der oder die ebenfalls
|
||||||
|
Gaim-Encryption installiert hat.
|
||||||
|
Klicke nun mit der rechten Maustaste auf diesen Kontakt und aktiviere im
|
||||||
|
daraufhin erscheinenden Menü den Punkt
|
||||||
|
\emph on
|
||||||
|
Automatisches verschlüsseln aktivieren
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Ab jetzt kann niemand außer dir und deinem Gegenüber eure Unterhaltung
|
||||||
|
mitlesen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_plugin_03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Automatisches Verschlüsseln aktivieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Im Nachrichtenfenster kann man die Verschlüsselung auch jederzeit ein- und
|
||||||
|
ausschalten:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_plugin_04.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hinweise
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Eine Nachricht zu versenden, wenn der Gegenüber offline ist führt zu Problemen:
|
||||||
|
Die Nachricht kann gar nicht übertragen werden.
|
||||||
|
Soll also eine Offline-Nachricht verschickt werden, muss das Plugin kurzzeitig
|
||||||
|
deaktiviert werden (das geht aber ganz einfach per Klick auf den Button
|
||||||
|
|
||||||
|
\emph on
|
||||||
|
Tx: klartext
|
||||||
|
\emph default
|
||||||
|
im Chat-Fenster).
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Wichtig ist, die Schlüsselfingerabdrücke auf sicherem Übertragungsweg zu
|
||||||
|
vergleichen (werden über das Kontaktlisten-Menü
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<span class="kbd">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Werkzeuge -> Einstellungen -> Plugins -> Gaim-Encryption
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</span>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
angezeigt).
|
||||||
|
Das brauchst du mit jedem deiner Kontakte nur einmal tun.
|
||||||
|
Ändert sich der Fingerabdruck später, frage auf gesichertem Weg nach, ob
|
||||||
|
dein Gegenüber wirklich einen neuen Schlüssel benutzt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_chat_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
154
v1.3.3/documents/common/chat_programme/chat_programme.lyx
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Benötigte Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Verschlüsselt Chatten mit Gaim
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Voraussetzung für das verschlüsselte Chatten ist die korrekte Installation
|
||||||
|
und Einrichtung der benötigten Programme.
|
||||||
|
Als Chat-Programm wird dabei
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Gaim}{http://gaim.sf.net}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
benutzt.
|
||||||
|
Gaim bietet den Vorteil, dass es nahezu alle verfügbaren Dienste (Jabber,
|
||||||
|
ICQ, MSN, Yahoo, usw.) unterstützt und einfach bedienbar ist.
|
||||||
|
Damit du mit Gaim verschlüsselt chatten kannst, muss ebenfalls das Plugin
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Gaim-Encryption}{http://gaim-encryption.sourceforge.net/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
installiert werden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_chat_programme.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
146
v1.3.3/documents/common/einfuehrung/einfuehrung.lyx
Normal file
|
@ -0,0 +1,146 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language swedish
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Einführung ins Thema
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
In diesem Kapitel lernst du Gründe kennen, weshalb Verschlüsselung wichtig
|
||||||
|
ist und wie sie funktioniert.
|
||||||
|
Das hier erlangte Wissen erleichtert dir das Verständnis der Kapitel
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{E-Mails verschlüsseln}{../email/email.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
und
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Chats verschlüsseln}{../chat/chat.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_einfuehrung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
120
v1.3.3/documents/common/email/email.lyx
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme times
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize a4paper
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
In diesem Kapitel wird dir erklärt, wie du E-Mails verschlüsseln und entschlüsse
|
||||||
|
ln kannst.
|
||||||
|
Neben den erforderlichen Programmen benötigst du dazu vor allem ein Schlüsselbu
|
||||||
|
nd.
|
||||||
|
Es umfasst, wie ein reales Schlüsselbund, alle Schlüssel, um E-Mails auf-
|
||||||
|
und zu zuschliessen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||||
|
kannst und zum Schluß ein komplett eingerichtetes E-Mail-Programm inklusive
|
||||||
|
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
125
v1.3.3/documents/common/email_anwendung/email_anwendung.lyx
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Mailen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nachdem du erfahren hast, wie Schlüssel ausgetauscht werden, beschreibt
|
||||||
|
das kommende Kapitel die konkrete Anwendung von Signatur und Ver- und Entschlüs
|
||||||
|
selung bei E-Mails.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,149 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Eine E-Mail entschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wenn du eine verschlüsselte E-Mail empfangen hast, erkennt Thunderbird dies
|
||||||
|
automatisch und öffnet ein kleines Fenster, in das du deine Passphrase
|
||||||
|
eintragen musst.
|
||||||
|
Anschließend wird die E-Mail automatisch entschlüsselt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Eingabe der Passphrase
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email_entschluesseln.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
236
v1.3.3/documents/common/email_programme/email_programme.lyx
Normal file
|
@ -0,0 +1,236 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Benötigte Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Programme, die du auf der CryptoCD findest, zeichnen sich durch ihre
|
||||||
|
leichte Bedienbarkeit und die Unterstützung aller gängigen Betriebssysteme
|
||||||
|
aus.
|
||||||
|
Im Einzelnen handelt es sich um die folgenden Komponenten:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das E-Mail-Programm: Thunderbird
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein E-Mail-Programm unterscheidet sich nicht wesentlich von einer
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Webmail-Oberfläche}{http://de.wikipedia.org/wiki/Webmail}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, wie du sie sonst vielleicht benutzt, um deine E-Mails zu verwalten.
|
||||||
|
Allerdings sind Webmail-Oberflächen im Allgemeinen nicht zur verschlüsselten
|
||||||
|
Kommunikation geeignet.
|
||||||
|
Der CryptoCD liegt das E-Mail-Programm
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Thunderbird}{http://www.thunderbird-mail.de/thunderbird/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
bei, an dem die Anleitungen ausgerichtet sind.
|
||||||
|
Natürlich ist Verschlüsselung auch mit anderen E-Mail-Programmen möglich
|
||||||
|
- auch in diesem Fall hilft dir die CryptoCD weiter: denn hast du erst
|
||||||
|
verstanden wie E-Mail-Verschlüsselung funktioniert, ist es egal welches
|
||||||
|
Programm du anschliessend benutzt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das Verschlüsselungsprogamm: GnuPG
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die eigentliche Verschlüsselung übernimmt das Programm
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{GnuPG}{http://www.gnupg.org/(de)/index.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Es wird normalerweise durch die Eingabe von Befehlen auf der Kommandozeile
|
||||||
|
gesteuert.
|
||||||
|
Für viele ist das nicht sehr komfortabel - hier kommt Enigmail ins Spiel.
|
||||||
|
Im Vergleich zur kommerziellen Verschlüsselungssoftware
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{PGP}{http://www.pgp.com/de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
räumt dir GnuPG bei gleichem Funktionsumfang mehr Rechte ein.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Die Schnittstelle: Enigmail
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Enigmail}{http://www.thunderbird-mail.de/erweitern/erweiterungen
|
||||||
|
/enigmail/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ist die Schnittstelle zwischen Thunderbird und GnuPG.
|
||||||
|
Es stellt die notwendigen Funktionen bereit, um bequem per Mausklick von
|
||||||
|
Thunderbird aus deine E-Mails zu verschlüsseln.
|
||||||
|
\newline
|
||||||
|
|
||||||
|
\newline
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Sofern du bereits eines oder mehrere der Programme installiert und eingerichtet
|
||||||
|
hast, kannst du den jeweiligen Abschnitt auch überspringen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email_programme.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,196 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Signaturen überprüfen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Überprüfung einer Signatur erfolgt durch Thunderbird automatisch, wenn
|
||||||
|
du den öffentlichen Schlüssel des anderen Menschen
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{importiert}{../schluessel_import/schluessel_import.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
hast.
|
||||||
|
Die Informationen zur Signatur zeigt Thunderbird im Kopfbereich einer signierte
|
||||||
|
n E-Mail an.
|
||||||
|
Wie in der folgenden Abbildung zu sehen, ist dieser Bereich farbig (hier
|
||||||
|
hellblau) hinterlegt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/thunderbird_signatur_pruefen01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Der hellblau hinterlegte Bereich zeigt die Informationen zur Signatur an
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Durch einen Klick auf das Plus vor
|
||||||
|
\emph on
|
||||||
|
OpenPGP
|
||||||
|
\emph default
|
||||||
|
werden weitere Informationen angezeigt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/thunderbird_signatur_pruefen02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Signierte E-Mail
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{/home/phil/daten/sao/svn/cryptocd/trunk/documents/progress/progress_email_signatur_ueberpruefen.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |
221
v1.3.3/documents/common/email_signieren/email_signieren.lyx
Normal file
|
@ -0,0 +1,221 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Eine E-Mail signieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Mit Signatur wird eine digitale Unterschrift bezeichnet.
|
||||||
|
Damit kann sichergestellt werden, dass mit deiner Signatur versehene E-Mails
|
||||||
|
auch wirklich von dir stammen und auf dem Weg zum Empfänger/zur Empfängerin
|
||||||
|
nicht verändert wurden.
|
||||||
|
Und das ist nicht nur für geschäftliche Kommunikation wichtig.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Signieren funktioniert so: Verfasse wie gewohnt eine neue E-Mail.
|
||||||
|
Klicke anschließend im Nachrichtenfenster auf die Schaltfläche
|
||||||
|
\emph on
|
||||||
|
OpenPGP
|
||||||
|
\emph default
|
||||||
|
und wähle nun die Option
|
||||||
|
\emph on
|
||||||
|
Nachricht unterschreiben
|
||||||
|
\emph default
|
||||||
|
aus:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Auswahl von Signatur und Verschlüsselung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der grüne Stift am unteren Rand des Nachrichtenfensters symbolisiert, dass
|
||||||
|
diese E-Mail signiert verschickt wird:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Signatur und Verschlüsselung sind aktiv
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Beim anschließenden Versand der Nachricht, wirst du nach deiner Passphrase
|
||||||
|
gefragt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Eingabe der Passphrase
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email_signieren.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,232 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Eine E-Mail verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Um eine E-Mail an jemanden zu verschlüsseln, musst du zuerst den öffentlichen
|
||||||
|
Schlüssel des anderen Menschen importieren.
|
||||||
|
Die Vorgehensweise dazu hast du
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{bereits kennengelernt}{../schluessel_import/schluessel_import.htm
|
||||||
|
l}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Ist das geschehen, kannst du die E-Mail wie üblich verfassen.
|
||||||
|
Falls es dir wichtig ist, solltest du darauf achten, dass die Betreffzeile
|
||||||
|
deiner E-Mail nichts über den Inhalt aussagt - denn sie wird nicht mit
|
||||||
|
verschlüsselt.
|
||||||
|
Sobald du fertig bist, kannst du durch Klicken auf die
|
||||||
|
\emph on
|
||||||
|
OpenPGP
|
||||||
|
\emph default
|
||||||
|
-Schaltfläche und Auswählen von
|
||||||
|
\emph on
|
||||||
|
Nachricht verschlüsseln
|
||||||
|
\emph default
|
||||||
|
deine E-Mail verschlüsseln:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Auswahl von Signatur und Verschlüsselung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der grüne Schlüssel am unteren Rand des Nachrichtenfensters symbolisiert,
|
||||||
|
dass diese E-Mail verschlüsselt verschickt wird:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Signatur und Verschlüsselung sind aktiv
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Vor dem Versand der Nachricht, wirst du noch nach deiner Passphrase gefragt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Eingabe der Passphrase
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_email_verschluesseln.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 46 KiB |
|
@ -0,0 +1,254 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Ein Konto einrichten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Verschlüsselt Chatten mit Gaim
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nach dem Start von Gaim öffnen sich drei Fenster.
|
||||||
|
Um ein ICQ-Konto einzurichten, klicke auf das Fenster mit dem Titel
|
||||||
|
\emph on
|
||||||
|
Konto hinzufügen
|
||||||
|
\emph default
|
||||||
|
:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Konto hinzufügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Als Protokoll ist bereits AIM/ICQ voreingestellt.
|
||||||
|
In das Feld
|
||||||
|
\emph on
|
||||||
|
Benutzername
|
||||||
|
\emph default
|
||||||
|
trägst du deine ICQ-Nummer ein.
|
||||||
|
Im darunter liegenden Feld kommt das Passwort und in das letzte Textfeld
|
||||||
|
mit der Bezeichnung
|
||||||
|
\emph on
|
||||||
|
Alias
|
||||||
|
\emph default
|
||||||
|
ein beliebiger Nickname.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Damit Gaim sich dein Passwort merkt, kannst du bei der Option
|
||||||
|
\emph on
|
||||||
|
Passwort speichern
|
||||||
|
\emph default
|
||||||
|
ein Häkchen setzen.
|
||||||
|
Mit
|
||||||
|
\emph on
|
||||||
|
Auto-Login
|
||||||
|
\emph default
|
||||||
|
verbindet sich Gaim bei jedem Start automatisch mit dem ICQ-Netzwerk.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Sind die Eingaben getätigt, werden sie mit einem Klick auf den entsprechenden
|
||||||
|
Button gespeichert.
|
||||||
|
Das neu angelegte Konto wird nun im Fenster
|
||||||
|
\emph on
|
||||||
|
Konten
|
||||||
|
\emph default
|
||||||
|
aufgelistet:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_04.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Konten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Dieses Fenster kann nun auch geschlossen werden, so dass nur noch das Fester
|
||||||
|
mit dem Titel
|
||||||
|
\emph on
|
||||||
|
Anmelden
|
||||||
|
\emph default
|
||||||
|
geöffnet ist:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Das Gaim-Anmeldefenster
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Mit einen Klick auf die Schaltfläche
|
||||||
|
\emph on
|
||||||
|
Anmeldung
|
||||||
|
\emph default
|
||||||
|
verbindest du dich mit dem ICQ-Netzwerk.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_gaim_einrichtung_konto.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
|
@ -0,0 +1,272 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Gaim-Encryption einrichten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Verschlüsselt Chatten mit Gaim
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Schritt für Schritt näherst du dich deinem Ziel: dem verschlüsselten Chatten.
|
||||||
|
Dazu fehlt nur noch die Aktivierung des Plugins - aber die ist auch nicht
|
||||||
|
schwieriger als alle bisherigen Schritte.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Die Aktivierung des Plugins
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Um das Plugin zu aktivieren, starte Gaim und öffne die Kontaktliste und
|
||||||
|
wähle aus dem Menü:
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<span class="kbd">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Werkzeuge ->
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
Einstellungen
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</span>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename gaim_plugin_01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Einstellungen auswählen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Es öffnet sich das Einstellungsfenster.
|
||||||
|
Dort findest du unter dem Punkt
|
||||||
|
\emph on
|
||||||
|
Plugins
|
||||||
|
\emph default
|
||||||
|
auch den Eintrag
|
||||||
|
\emph on
|
||||||
|
Gaim-Encryption
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Durch Setzen des Häkchens wird es aktiviert und es beginnt automatisch
|
||||||
|
die Erzeugung eines Schlüsselpaars.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename gaim_plugin_02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Aktivierung des Plugins
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Damit ist die Einrichtung abgeschlossen.
|
||||||
|
Im letzten Schritt wird dir erklärt, wie du eine verschlüsselte Nachricht
|
||||||
|
verschicken kannst.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_gaim_encryption_einrichtung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 104 KiB |
200
v1.3.3/documents/common/hilfe/hilfe.lyx
Normal file
|
@ -0,0 +1,200 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Hilfe
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Benutzung der CD
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die einzelnen Anleitungen sind so aufgebaut, dass du sie der Reihe nach
|
||||||
|
durchgehen kannst.
|
||||||
|
Am Ende einer jeden Seite findest du ein Menü, das dich zur darauf folgenden
|
||||||
|
Seite weiterleitet.
|
||||||
|
Solltest du eines der benötigten Programme bereits installiert und eingerichtet
|
||||||
|
haben, kannst du die entsprechende Seite überspringen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
An einigen Stellen findest du Verweise auf Inhalte aus dem Internet.
|
||||||
|
Solche Links werden durch ein angehängtes Symbol gekennzeichnet:
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Ein Beispiel-Link}{http://cryptocd.org}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Fragen und Antworten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Warum werden Windows 95/98/ME nicht unterstützt?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Microsoft hat den Support für diese Versionen im Juli 2006 eingestellt.
|
||||||
|
Zwischenzeitlich entdeckte Sicherheitslücken werden also nicht mehr geschlossen.
|
||||||
|
Aus diesem Grund raten wir von der Benutzung dieser Versionen ab.
|
||||||
|
Eine gute Alternative, um Windows 95/98/ME zu ersetzen, ist
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Ubuntu}{http://www.ubuntuusers.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Weshalb sind keine Linux-Versionen der Programme auf der CD enthalten?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Linux-Distributionen (wie Ubuntu, Debian oder SuSE) werden meistens auf
|
||||||
|
CDs oder DVDs ausgeliefert.
|
||||||
|
Alle benötigten Programme können von diesen Datenträgern installiert werden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kritik loswerden / weitere Hilfe
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wir sind bemüht die CryptoCD so sorgfältig wie möglich zu gestalten.
|
||||||
|
Dennoch passiert es, dass sich Fehler in den Anleitungen einschleichen.
|
||||||
|
Falls du einen solchen Fehler gefunden hast, lass es uns wissen.
|
||||||
|
Dazu kannst du eine E-Mail an info@cryptocd.org schicken oder einen Eintrag
|
||||||
|
in unserer
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Projektverwaltung}{https://systemausfall.org/trac/cryptocd}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
vornehmen.
|
||||||
|
Dort kannst du auch Vorschläge zu neuen Funktionen und Programmen unterbreiten.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
182
v1.3.3/documents/common/index/index.lyx
Normal file
|
@ -0,0 +1,182 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar_os_auswahl.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue_os_auswahl.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Willkommen zur CryptoCD
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Anleitungen der CryptoCD sind auf die jeweiligen Betriebssysteme abgestimmt.
|
||||||
|
Bevor du also loslegst, wähle dein Betriebssystem durch einen Klick auf
|
||||||
|
einen der Computer.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div class="ie_center">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<table id="os_selection">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../../windows/index2/index2.html"><img src="../../pc_windows.png"
|
||||||
|
alt="Windows" /></a></td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../../linux/index2/index2.html"><img src="../../pc_linux.png" alt="Linu
|
||||||
|
x" /></a></td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../../macos/index2/index2.html"><img src="../../pc_mac.png" alt="Mac
|
||||||
|
OS" /></a></td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</table>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</div>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
250
v1.3.3/documents/common/index2/index2.lyx
Normal file
|
@ -0,0 +1,250 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Abhörsicher Kommunizieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<table id="selection">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../einfuehrung/einfuehrung.html"><img src="../../einfuehrung.png"
|
||||||
|
alt="Einführung" /></a></td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../einfuehrung/einfuehrung.html">Einführung</a><br/>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
Die Einführung erläutert, warum Verschlüsselung
|
||||||
|
wichtig ist und wie sie funktioniert.</td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../email/email.html"><img src="../../email.png" alt="E-Mail" /></a></td
|
||||||
|
>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../email/email.html">E-Mail</a><br/>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
E-Mails verschlüsselt verschicken und empfangen.</td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../chat/chat.html"><img src="../../chat.png" alt="Chat" /></a></td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<td><a href="../chat/chat.html">Chat</a><br/>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
Chat-Nachrichten verschlüsseln.</td>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</table>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Diese CD soll dir ermöglichen, mit einem Maximum an Privatsphäre öffentliche
|
||||||
|
Netze (wie das Internet) zu nutzen.
|
||||||
|
Der Einstieg in das Thema Verschlüsselung und die folgenden Anleitungen
|
||||||
|
sind dabei bewusst einsteigerfreundlich gehalten.
|
||||||
|
Um zu Starten, klicke einfach eines der Themen oben oder im Menü an.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wenn du mit der CryptoCD fertig bist, kannst du sie an deine Kommunikationspartn
|
||||||
|
erInnen weitergeben - die
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Lizenz}{../about/about.html#lizenz}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
erlaubt es dir.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Viel Spaß!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
282
v1.3.3/documents/common/links/links.lyx
Normal file
|
@ -0,0 +1,282 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{a4}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme times
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize 12
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Weiterführende Lektüre
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Note Comment
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Für Links folgenden Code nutzen:
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Beschreibung}{Adresse}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Hier haben wir ein paar thematisch interessante Seiten verlinkt, die den
|
||||||
|
Rahmen der CryptoCD sprengen würden.
|
||||||
|
Viel Spaß damit.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Chaosradio}{http://chaosradio.ccc.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Beim Chaosradio handelt es sich um Radiosendungen des
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Chaos Computer Club}{http://www.ccc.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, die einmal im Monat bei
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Radio Fritz}{http://www.fritz.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
veröffentlicht werden.
|
||||||
|
Inhaltlich werden dabei verschiedene Themen angesprochen, die die Schnittstelle
|
||||||
|
n von Technik und Gesellschaft betreffen.
|
||||||
|
Wir haben dir im Folgenden einige Sendungen heraus gepickt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{CR111}{http://chaosradio.de/cr111.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Diese Sendung gibt Tipps, wie deine Daten vor neugierigen Blicken geschützt
|
||||||
|
werden können - unter anderem auch durch E-Mail-Verschlüsselung.
|
||||||
|
Eine Sendung zu den aktuellen Einschränkungen des Fernmeldegeheimnisses
|
||||||
|
durch Gesetzesänderungen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{CR88}{http://chaosradio.de/cr88.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Warum gibt es in der Gesellschaft kaum Widerstand gegen Überwachungstendenzen
|
||||||
|
und wie ist der aktuelle Stand der Technik und der Gesetzgebung?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{CR72}{http://chaosradio.de/cr72.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Eine Sendung über die Nebeneffekte der Punktesammelbonuskarten wie Payback.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
Eine umfangreiche deutschsprachige Hilfe zu GnuPG findet sich auf der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Raven Homepage}{http://hp.kairaven.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Dazu noch jede Menge Anleitungen für sichere Onlinekommunikation.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Die
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Telekommunikations-Überwachungsverordnung}{http://de.wikipedia.o
|
||||||
|
rg/wiki/Telekommunikations-
|
||||||
|
\backslash
|
||||||
|
%C3
|
||||||
|
\backslash
|
||||||
|
%9Cberwachungsverordnung}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
schreibt unter anderem vor, dass E-Mail-Provider ihre Kunden überwachen
|
||||||
|
müssen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
|
@ -0,0 +1,253 @@
|
||||||
|
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Mailservice-Anbieter
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Zur
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Einrichtung eines Kontos}{../thunderbird_einrichtung_konto/thund
|
||||||
|
erbird_einrichtung_konto.html#mailserviceanbieter}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
in Thunderbird benötigst du einige Daten deines E-Mail-Providers.
|
||||||
|
Nachfolgend findest du die wichtigsten Daten der meistbenutzten E-Mail-Provider.
|
||||||
|
Sollte der von dir benutzte nicht dabei sein, findest du eine umfangreichere
|
||||||
|
Liste auf
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{dieser Seite}{http://www.thunderbird-mail.de/hilfe/dokumentation
|
||||||
|
1.5/konto_server.php}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
GMX
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Web-Interface: www.gmx.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SSL\InsetSpace ~
|
||||||
|
möglich: nur für POP3
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
POP-Server: pop.gmx.net
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
IMAP-Server: nein
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SMTP-Server: mail.gmx.net
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
web.de/freemail
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Web-Interface: www.freemail.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SSL\InsetSpace ~
|
||||||
|
möglich: ja
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
POP-Server: pop3.web.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
IMAP-Server: imap.web.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SMTP-Server: smtp.web.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
yahoo
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Web-Interface: www.yahoo.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SSL\InsetSpace ~
|
||||||
|
möglich: ja
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
POP-Server: pop.mail.yahoo.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
IMAP-Server: pop.mail.yahoo.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SMTP-Server: smtp.mail.yahoo.de
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
systemausfall.org
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Web-Interface: webmail.systemausfall.org
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SSL\InsetSpace ~
|
||||||
|
möglich: ja, zwingend
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
POP-Server: mail.systemausfall.org
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
IMAP-Server: mail.systemausfall.org
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
SMTP-Server: mail.systemausfall.org
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/progress_mailserviceanbieter.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 135 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 110 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 47 KiB |