From 0eb25cabc1f44d6088b4f15a2ce7134106c74f67 Mon Sep 17 00:00:00 2001 From: messju Date: Sun, 24 Jun 2007 08:57:40 +0000 Subject: [PATCH] sync with en --- docs/Makefile.in | 7 +++- docs/de/getting-started.xml | 73 ++++++++++++++++++++++++++----------- 2 files changed, 57 insertions(+), 23 deletions(-) diff --git a/docs/Makefile.in b/docs/Makefile.in index 596a19e7..ba5f85c6 100755 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -23,8 +23,10 @@ all: html PHP=@PHP@ LANG=@LANG@ -NSGMLS=@SP_OPTIONS@ @NSGMLS@ -JADE=@SP_OPTIONS@ @JADE@ -D . -wno-idref +# NSGMLS=@SP_OPTIONS@ @NSGMLS@ +NSGMLS=@NSGMLS@ +# JADE=@SP_OPTIONS@ @JADE@ -D . -wno-idref +JADE=@JADE@ -D . -wno-idref XMLLINT=@XMLLINT@ FOP=@FOP@ XMLDCL=./dtds/dbxml-4.1.2/phpdocxml.dcl @@ -32,6 +34,7 @@ CATALOG=@CATALOG@ HTML_STYLESHEET=dsssl/html.dsl PHPWEB_STYLESHEET=dsssl/php.dsl + # }}} #default behaviour diff --git a/docs/de/getting-started.xml b/docs/de/getting-started.xml index 5c9c52b2..b8933024 100644 --- a/docs/de/getting-started.xml +++ b/docs/de/getting-started.xml @@ -1,6 +1,6 @@ - + Erste Schritte @@ -162,11 +162,21 @@ Installieren Sie als erstes die Smarty-Library Dateien (den - /libs/-Ordner der Smarty Distribution). Diese Dateien sollten von - Ihnen NICHT editiert und von allen Applikationen verwendet - werden. Sie werden nur erneuert, wenn Sie eine neue Version von + /libs/-Ordner der Smarty Distribution). + Diese Dateien sollten von Ihnen NICHT editiert und von allen Applikationen + verwendet werden. Sie werden nur erneuert, wenn Sie eine neue Version von Smarty installieren. + In the examples below the Smarty tarball has been unpacked to: + + + /usr/local/lib/Smarty-v.e.r/ + unter *nix-basierten Betriebsystemen + und + c:\webroot\libs\Smarty-v.e.r\ + unter Windows-Umgebungen. + + Technische Bemerkung @@ -247,6 +257,19 @@ $smarty = new Smarty(); + + SMARTY_DIR manuell setzen + + +]]> + + + Absoluter Pfad übergeben @@ -261,27 +284,32 @@ $smarty = new Smarty; Library Verzeichnis dem Include-Pfad hinzufügen - + +; *nix: "/path1:/path2" +include_path = ".:/usr/share/php:/usr/local/lib/Smarty-v.e.r/libs/" + +; Windows: "\path1;\path2" +include_path = ".;c:\php\includes;c:\webroot\libs\Smarty-v.e.r\libs\" ]]> - - - - SMARTY_DIR manuell setzen + + + + + Library Verzeichnis dem Include-Pfad mit + <literal><ulink url="&url.php-manual;ini-set">ini_set()</ulink></literal> hinzufügen ]]> @@ -434,7 +462,7 @@ chmod 770 /web/www.example.com/smarty/guestbook/cache/ {* Smarty *} -Hallo, {$name}! +Hallo {$name}, herzlich Willkommen! ]]> @@ -478,6 +506,9 @@ $smarty->cache_dir = '/web/www.example.com/smarty/guestbook/cache/'; $smarty->assign('name','Ned'); +//** Die folgende Zeile "einkommentieren" um die Debug-Konsole anzuzeigen +//$smarty->debugging = true; + $smarty->display('index.tpl'); ?> ]]> @@ -500,7 +531,7 @@ $smarty->display('index.tpl'); Wenn Sie index.php nun in Ihrem Webbrowser - öffnen, sollte 'Hallo, Ned!' ausgegeben werden. + öffnen, sollte 'Hallo, Ned, herzlich Willkommen!' ausgegeben werden. Die Basis-Installation von Smarty wäre somit beendet.