<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>typo3.schloebe.de</title>
	<atom:link href="http://typo3.schloebe.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://typo3.schloebe.de</link>
	<description>TYPO3, TypoScript, Erweiterungen, Tipps</description>
	<lastBuildDate>Tue, 27 Apr 2010 14:05:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extension msimageflow &amp; UMTS</title>
		<link>http://typo3.schloebe.de/extension/extension-msimageflow-umts/</link>
		<comments>http://typo3.schloebe.de/extension/extension-msimageflow-umts/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 14:00:36 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Extension]]></category>
		<category><![CDATA[Mobility]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Erweiterung]]></category>
		<category><![CDATA[Mobil]]></category>
		<category><![CDATA[msimageflow]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[UMTS]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=72</guid>
		<description><![CDATA[ 	Die Extension &#8220;ImageFlow implementation for TYPO3&#8243; (msimageflow) zaubert einen sch&#246;nen Bilder-Slider, dessen Bilder man in TYPO3 pflegen kann. 
Leider kommt es bei einem mobilen Internetzugang z.B. via UMTS zu einem Fehler bei der Anzeige, denn bei UMTS (u.a. mobilen Zug&#228;ngen) werden Daten durch einen Proxy geleitet und stark komprimiert, im Falle der Extension msimageflow [...]]]></description>
			<content:encoded><![CDATA[<p> 	Die Extension &#8220;ImageFlow implementation for TYPO3&#8243; (<em>msimageflow</em>) zaubert einen sch&#246;nen Bilder-Slider, dessen Bilder man in TYPO3 pflegen kann. <span id="more-72"></span></p>
<p>Leider kommt es bei einem mobilen Internetzugang z.B. via UMTS zu einem Fehler bei der Anzeige, denn bei UMTS (u.a. mobilen Zug&#228;ngen) werden Daten durch einen Proxy geleitet und stark komprimiert, im Falle der Extension <em>msimageflow</em> wird dadurch leider der Pfad zu den Bildern verf&#228;lscht.</p>
<p>Sieht der Pfad im Original so aus:<br />
<em>typo3conf/ext/msimageflow/res/reflect3.php?img=/srv/www/vhosts/lento-online.de/httpdocs/uploads/tx_msimageflow/besucherstuhl.png&#038;bgc=ffffff</em></p>
<p>so wird er durch UMTS zu:<br />
<em>typo3conf/ext/msimageflow/res/reflect3.php?img=<strong>http://1.x.x.x/bmi/www.domain.de</strong>/srv/www/vhosts/lento-online.de/httpdocs/uploads/tx_msimageflow/besucherstuhl.png&#038;bgc=ffffff</em></p>
<p>http://1.x.x.x/bmi/ (in diesem Falle 1.2.3.11 und 1.2.3.12) stellt den Proxy der Mobilverbindung dar, wodurch die Bild-Pfade nat&#252;rlich nicht mehr stimmen und somit die Bilder nicht geladen werden k&#246;nnen.</p>
<p>Eine kleine Quick&#8217;n'Dirty-L&#246;sung daf&#252;r ist die folgende, einfach in der Datei <em>typo3conf/ext/msimageflow/res/reflect3.php</em> (bzw. reflect2.php oder reflect.php) um die Zeile 70 folgendes erg&#228;nzen. Nach</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$source_image</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'img'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<p>folgendes einf&#252;gen:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mobileisp</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$source_image</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://1.'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$mobileisp</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$domain</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_HOST'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$srcimg</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$domain</span><span style="color: #339933;">,</span> <span style="color: #000088;">$source_image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$source_image</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$srcimg</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Somit wird zwar der Pfad bei Nutzung von UMTS noch angepasst, allerdings mit obigem Snippet wieder herausgefiltert, und der normale Bildpfad verwendet.</p>
<p>Wer eine bessere L&#246;sung kennt, immer her damit. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/extension/extension-msimageflow-umts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Namenspr&#252;fung f&#252;r fe_users deaktivieren</title>
		<link>http://typo3.schloebe.de/allgemein/namenspruefung-fuer-fe_users-deaktivieren/</link>
		<comments>http://typo3.schloebe.de/allgemein/namenspruefung-fuer-fe_users-deaktivieren/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:19:48 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[eval]]></category>
		<category><![CDATA[Evaluation]]></category>
		<category><![CDATA[fe_user]]></category>
		<category><![CDATA[fe_users]]></category>
		<category><![CDATA[TCA]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=66</guid>
		<description><![CDATA[ 	Die automatische Pr&#252;fung bzw. Umwandlung von fe_user Nutzernamen beim Bearbeiten eines Nutzer-Datensatzes ist sinnvoll, kann aber auch st&#246;ren.
So wird aus einem Benutzernamen &#8220;Andreas Test&#8221; nach dem Speichern &#8220;andreastest&#8220;, d.h. der Loginname &#228;ndert sich komplett, da dies so von TYPO3 vorgegeben ist.
Manchmal kann es aber eher hinderlich sein, wenn z.B. kurzfristig ein Loginsystem etabliert werden [...]]]></description>
			<content:encoded><![CDATA[<p> 	Die automatische Pr&#252;fung bzw. Umwandlung von fe_user Nutzernamen beim Bearbeiten eines Nutzer-Datensatzes ist sinnvoll, kann aber auch st&#246;ren.<span id="more-66"></span></p>
<p>So wird aus einem Benutzernamen &#8220;<strong>Andreas Test</strong>&#8221; nach dem Speichern &#8220;<strong>andreastest</strong>&#8220;, d.h. der Loginname &#228;ndert sich komplett, da dies so von TYPO3 vorgegeben ist.</p>
<p>Manchmal kann es aber eher hinderlich sein, wenn z.B. kurzfristig ein Loginsystem etabliert werden muss, bei dem die Daten aus einer Kunden-CSV kommen, und die rund 300 Mitarbeiter so kurzfristig ihre neuen Logindaten nicht zugeschickt bekommen k&#246;nnen bzw. sie so schnell nicht auf die &#196;nderung vorbereitet h&#228;tten werden k&#246;nnen. Es soll also der Anmeldename nach dem Import bei &#8220;Andreas Test&#8221; bleiben, und das soll nach dem Bearbeiten eines fe_users-Datensatzen auch so bleiben.</p>
<p>Mit der folgenden Zeile in der <strong>extTables.php</strong> des /typo3conf-Verzeichnisses l&#228;sst sich diese Namenskonventionspr&#252;fung abschalten bzw. etwas entkr&#228;ften:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$TCA</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fe_users'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'columns'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'username'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'config'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'eval'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'uniqueInPid,required'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Der Wert &#8216;uniqueInPid,required&#8217; ist dabei die entsch&#228;rfte Form. Standardm&#228;&#223;ig werden folgende Regeln evaluiert:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$TCA</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fe_users'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'columns'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'username'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'config'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'eval'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'nospace,lower,uniqueInPid,required'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Also zus&#228;tzlich noch auf <em>Leerzeichen entfernen</em> (nospace) und <em>In Kleinbuchstaben umwandeln</em> (lower).</p>
<p>Ein weiteres Beispiel, wie einfach man wirklich alles in TYPO3 nach eigenen W&#252;nschen anpassen kann. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/allgemein/namenspruefung-fuer-fe_users-deaktivieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RealURL und nav_title</title>
		<link>http://typo3.schloebe.de/typoscript/realurl-und-nav_title/</link>
		<comments>http://typo3.schloebe.de/typoscript/realurl-und-nav_title/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 11:35:07 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Extension]]></category>
		<category><![CDATA[TypoScript]]></category>
		<category><![CDATA[nav_title]]></category>
		<category><![CDATA[RealURL]]></category>
		<category><![CDATA[realurlconf]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=62</guid>
		<description><![CDATA[ 	Wer in den Seiteneigenschaften einer Seite dem &#8220;Navigationstitel&#8221; einen Wert zuweist und RealURL nutzt, k&#246;nnte vor einem Problem stehen. 
Denn sofern dem Feld &#8220;Navigationstitel&#8221; ein Wert zugewiesen wurde, wird dieser Wert standardm&#228;&#223;ig auch als URL-Slug genutzt. So wird bei einem &#8220;Navigationstitel&#8221; wie
B&#252;rostuhl kaufen &#124; B&#252;rostuhl bestellen &#124; B&#252;rostuhl online
z.B. eine URL wie
/buerostuhl-kaufen-buerostuhl-bestellen-buerostuhl-online/
Die Seite selbst [...]]]></description>
			<content:encoded><![CDATA[<p> 	Wer in den Seiteneigenschaften einer Seite dem &#8220;Navigationstitel&#8221; einen Wert zuweist und RealURL nutzt, k&#246;nnte vor einem Problem stehen. <span id="more-62"></span></p>
<p>Denn sofern dem Feld &#8220;Navigationstitel&#8221; ein Wert zugewiesen wurde, wird dieser Wert standardm&#228;&#223;ig auch als <acronym title="Uniform Resource Locator">URL</acronym>-Slug genutzt. So wird bei einem &#8220;Navigationstitel&#8221; wie</p>
<p><em>B&#252;rostuhl kaufen | B&#252;rostuhl bestellen | B&#252;rostuhl online</em></p>
<p>z.B. eine <acronym title="Uniform Resource Locator">URL</acronym> wie</p>
<p><em>/buerostuhl-kaufen-buerostuhl-bestellen-buerostuhl-online/</em></p>
<p>Die Seite selbst hei&#223;t aber nur &#8220;B&#252;rostuhl&#8221;, also sollte auch in der <acronym title="Uniform Resource Locator">URL</acronym> nur <em>/buerostuhl/</em> vorkommen. Bei l&#228;ngeren &#8220;Navigationstitel&#8221;-Werten (wenn man diesen Wert z.B. als title nutzen will) k&#246;nnen mitunter recht lange URLs entstehen.</p>
<p>Um das zu vermeiden, bietet sich die Option <strong>segTitleFieldList</strong> an, die im &#8220;pagePath&#8221;-Konfigurations-Array zu notieren ist:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #ff0000;">'pagePath'</span> =<span style="color: #66cc66;">&gt;</span> <span style="color: #0066CC;">array</span><span style="color: #66cc66;">&#40;</span>
  ...
  <span style="color: #ff0000;">'segTitleFieldList'</span> =<span style="color: #66cc66;">&gt;</span> <span style="color: #ff0000;">'tx_realurl_pathsegment,alias,title,nav_title'</span>,
  ...
<span style="color: #66cc66;">&#41;</span></pre></td></tr></table></div>
]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/typoscript/realurl-und-nav_title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitemap (mit Inhaltsanangabe) anpassen</title>
		<link>http://typo3.schloebe.de/typoscript/sitemap-mit-inhaltsanangabe-csc-menu4-anpassen/</link>
		<comments>http://typo3.schloebe.de/typoscript/sitemap-mit-inhaltsanangabe-csc-menu4-anpassen/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 11:11:03 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[TypoScript]]></category>
		<category><![CDATA[bild]]></category>
		<category><![CDATA[Frame]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[media feld]]></category>
		<category><![CDATA[menü]]></category>
		<category><![CDATA[Sitemap]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=57</guid>
		<description><![CDATA[ 	Die Sitemap &#8220;Men&#252; der Unterseiten (mit Inhaltsanangabe)&#8221; listet standardm&#228;&#223;ig nur die Seiten mitsamt einer kurzen Beschreibung auf. Nicht sonderlich sch&#246;n. 
Sch&#246;n w&#228;ren da Bilder, die die Seiteninhalte optisch widerspiegeln. Denn Bilder sagen bekanntlich mehr als Tausend Worte.   Darum folgend ein Code-Schnipsel, wie man das &#8220;Men&#252; der Unterseiten (mit Inhaltsanangabe)&#8221; (csc-menu4) ein wenig [...]]]></description>
			<content:encoded><![CDATA[<p> 	Die Sitemap &#8220;Men&#252; der Unterseiten (mit Inhaltsanangabe)&#8221; listet standardm&#228;&#223;ig nur die Seiten mitsamt einer kurzen Beschreibung auf. Nicht sonderlich sch&#246;n. <span id="more-57"></span></p>
<p>Sch&#246;n w&#228;ren da Bilder, die die Seiteninhalte optisch widerspiegeln. Denn Bilder sagen bekanntlich mehr als Tausend Worte. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Darum folgend ein Code-Schnipsel, wie man das &#8220;Men&#252; der Unterseiten (mit Inhaltsanangabe)&#8221; (<em>csc-menu4</em>) ein wenig aufh&#252;bscht, und mit Bildern versieht:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">tt_content.<span style="color: #0066CC;">menu</span> = COA
tt_content.<span style="color: #0066CC;">menu</span> <span style="color: #66cc66;">&#123;</span>
  <span style="color: #cc66cc;">10</span> = <span style="color: #66cc66;">&lt;</span> lib.<span style="color: #006600;">stdheader</span>
  <span style="color: #cc66cc;">20</span> = <span style="color: #b1b100;">CASE</span>
  <span style="color: #cc66cc;">20</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #cc66cc;">4</span> <span style="color: #66cc66;">&lt;</span> .<span style="color: #000000; font-weight: bold;">default</span>
    4.<span style="color: #006600;">special</span> = directory
    4.<span style="color: #006600;">includeNotInMenu</span> = <span style="color: #cc66cc;">1</span>
    4.<span style="color: #006600;">wrap</span> = <span style="color: #66cc66;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span>=<span style="color: #ff0000;">&quot;csc-menu csc-menu-4&quot;</span><span style="color: #66cc66;">&gt;|&lt;/</span>div<span style="color: #66cc66;">&gt;</span>
    4.1.<span style="color: #006600;">NO</span> <span style="color: #66cc66;">&#123;</span>
      before.<span style="color: #006600;">cObject</span> = COA
      before.<span style="color: #006600;">cObject</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #cc66cc;">10</span> = IMAGE
        10.<span style="color: #006600;">file</span>.<span style="color: #0066CC;">import</span>.<span style="color: #006600;">field</span> = media
        10.<span style="color: #006600;">file</span>.<span style="color: #0066CC;">import</span> = uploads<span style="color: #66cc66;">/</span>media<span style="color: #66cc66;">/</span>
        10.<span style="color: #006600;">file</span>.<span style="color: #0066CC;">import</span>.<span style="color: #006600;">listNum</span> = <span style="color: #cc66cc;">0</span>
        10.<span style="color: #006600;">file</span>.<span style="color: #006600;">maxW</span> = <span style="color: #cc66cc;">80</span>
        10.<span style="color: #006600;">wrap</span> = <span style="color: #66cc66;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span>=<span style="color: #ff0000;">&quot;csc-menu-imagelink&quot;</span><span style="color: #66cc66;">&gt;|&lt;/</span>div<span style="color: #66cc66;">&gt;</span>
        10.<span style="color: #006600;">imageLinkWrap</span> = <span style="color: #cc66cc;">1</span>
        10.<span style="color: #006600;">imageLinkWrap</span> <span style="color: #66cc66;">&#123;</span>
          enable = <span style="color: #cc66cc;">1</span>
          typolink <span style="color: #66cc66;">&#123;</span>
            ATagParams.<span style="color: #006600;">insertData</span> = <span style="color: #cc66cc;">1</span>
            ATagParams = title=<span style="color: #ff0000;">&quot;{field:title}&quot;</span>
            parameter.<span style="color: #0066CC;">data</span> = field:uid
            <span style="color: #808080; font-style: italic;">#addQueryString = 1</span>
            <span style="color: #808080; font-style: italic;">#addQueryString.method = GET</span>
          <span style="color: #66cc66;">&#125;</span>
        <span style="color: #66cc66;">&#125;</span>
      <span style="color: #66cc66;">&#125;</span>
      allWrap <span style="color: #66cc66;">&gt;</span>
      allWrap = <span style="color: #66cc66;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span>=<span style="color: #ff0000;">&quot;csc-frame csc-frame-frame1&quot;</span><span style="color: #66cc66;">&gt;|&lt;</span>div style=<span style="color: #ff0000;">&quot;clear:both;&quot;</span><span style="color: #66cc66;">&gt;&lt;/</span>div<span style="color: #66cc66;">&gt;&lt;/</span>div<span style="color: #66cc66;">&gt;</span>
      wrapItemAndSub = <span style="color: #66cc66;">|</span>
      after.<span style="color: #006600;">required</span> = <span style="color: #cc66cc;">1</span>
      after.<span style="color: #0066CC;">data</span> = field : abstract <span style="color: #808080; font-style: italic;">// field : description // field : subtitle</span>
      after.<span style="color: #006600;">htmlSpecialChars</span> = <span style="color: #cc66cc;">1</span>
      after.<span style="color: #006600;">wrap</span> = <span style="color: #66cc66;">&lt;</span>p <span style="color: #000000; font-weight: bold;">class</span>=<span style="color: #ff0000;">&quot;csc-abstract&quot;</span><span style="color: #66cc66;">&gt;|&lt;/</span>p<span style="color: #66cc66;">&gt;</span>
    <span style="color: #66cc66;">&#125;</span>
  <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<h1>Erl&#228;uterung</h1>
<p>Die Bilder f&#252;r die einzelnen Seiten werden in den Seiteneigenschaften der jew. Seiten im &#8220;Bilder&#8221;-Block hinterlegt. Die Gr&#246;&#223;e ist dabei egal, denn das Code-Snippet begrenzt die Breite der Bilder auf max. 80 Pixel, sodass diese eine einheitliche Breite haben.</p>
<p>Die H&#246;he wird im Snippet nicht begrenzt, kann aber mittels der umschlie&#223;enden <acronym title="Cascading Style Sheets">CSS</acronym>-Klasse <em>csc-menu-imagelink</em> per <acronym title="Cascading Style Sheets">CSS</acronym> geregelt werden, z.B. mit:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.csc-menu-4</span> <span style="color: #6666ff;">.csc-menu-imagelink</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">60px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>So hat man ein einheitliches Layout, das dennoch die Flexibilit&#228;t der Sitemap genie&#223;t.</p>
<p>Wie das ganze aussehen kann, zeigt folgendes Bild:</p>
<p><img src="http://typo3.schloebe.de/wp-content/uploads/2009/03/csc-sitemap4.jpg" alt="csc-sitemap4" title="csc-sitemap4" width="589" height="186" class="aligncenter size-full wp-image-60" /></p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/typoscript/sitemap-mit-inhaltsanangabe-csc-menu4-anpassen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>typolink und der Linktitel</title>
		<link>http://typo3.schloebe.de/typoscript/typolink-und-der-linktitel/</link>
		<comments>http://typo3.schloebe.de/typoscript/typolink-und-der-linktitel/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 14:46:46 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[TypoScript]]></category>
		<category><![CDATA[cObject]]></category>
		<category><![CDATA[RECORDS]]></category>
		<category><![CDATA[stdWrap]]></category>
		<category><![CDATA[Typolink]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=47</guid>
		<description><![CDATA[ 	Will man einen dynamischen Link via Typolink setzen, so kann man auf den ersten Blick nur einen statischen Linktitel vergeben.
Mitnichten. Dem m&#228;chtigen RECORDS-Objekt sei Dank. Verschiedene Versuche mit

1
2
3
4
5
temp.LINK.typolink &#123;
    ...
    title.field = title
    ...
&#125;

oder dem cObject oder stdWrap f&#252;hren zu keinem Ergebnis.
Folgender Code-Schnipsel f&#252;gt den [...]]]></description>
			<content:encoded><![CDATA[<p> 	Will man einen dynamischen Link via Typolink setzen, so kann man auf den ersten Blick nur einen statischen Linktitel vergeben.<span id="more-47"></span></p>
<p>Mitnichten. Dem m&#228;chtigen RECORDS-Objekt sei Dank. Verschiedene Versuche mit</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">temp.<span style="color: #006600;">LINK</span>.<span style="color: #006600;">typolink</span> <span style="color: #66cc66;">&#123;</span>
    ...
    <span style="color: #006600;">title</span>.<span style="color: #006600;">field</span> = title
    ...
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>oder dem cObject oder stdWrap f&#252;hren zu keinem Ergebnis.</p>
<p>Folgender Code-Schnipsel f&#252;gt den Seitentitel der Seite als Linktitel ein, zu der verlinkt wird bzw. die im parameter-Aufruf als Linkziel angegeben wird.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">temp.<span style="color: #006600;">LINK</span>.<span style="color: #006600;">typolink</span> <span style="color: #66cc66;">&#123;</span>
    parameter = <span style="color: #cc66cc;">5</span> _self link-klasse
    title <span style="color: #66cc66;">&#123;</span>
        cObject = RECORDS
        cObject <span style="color: #66cc66;">&#123;</span>
            tables = pages
            source = <span style="color: #cc66cc;">5</span>
            conf.<span style="color: #006600;">pages</span> = <span style="color: #0066CC;">TEXT</span>
            conf.<span style="color: #006600;">pages</span>.<span style="color: #006600;">field</span> = title
        <span style="color: #66cc66;">&#125;</span>
    <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>ps. Wow, 5 Monate seit dem letzten Artikel. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/typoscript/typolink-und-der-linktitel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aktuelle Seite von &#8220;Men&#252; der Unterseiten&#8221; ausschlie&#223;en</title>
		<link>http://typo3.schloebe.de/typoscript/aktuelle-seite-von-menue-der-unterseiten-ausschliessen/</link>
		<comments>http://typo3.schloebe.de/typoscript/aktuelle-seite-von-menue-der-unterseiten-ausschliessen/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 14:01:40 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[TypoScript]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/?p=40</guid>
		<description><![CDATA[ 	Lange gab es hier keinen Artikel mehr, aber die Br&#246;tchen verdienen sich nun mal nicht selbst, dementsprechend viel war zu tun. 
Doch damit ich keine Putzfrau mieten muss, die hier Staub wischen muss, gibt es jetzt einen kleinen TypoScript-Snippet, der in letzter Zeit doch recht oft von Kunden nachgefragt wurde. Denn standardm&#228;&#223;ig wird im [...]]]></description>
			<content:encoded><![CDATA[<p> 	Lange gab es hier keinen Artikel mehr, aber die Br&#246;tchen verdienen sich nun mal nicht selbst, dementsprechend viel war zu tun. <span id="more-40"></span></p>
<p>Doch damit ich keine Putzfrau mieten muss, die hier Staub wischen muss, gibt es jetzt einen kleinen <acronym title="Scriptsprache, die in Typo3 Anwendung findet.">TypoScript</acronym>-Snippet, der in letzter Zeit doch recht oft von Kunden nachgefragt wurde. Denn standardm&#228;&#223;ig wird im &#8220;Men&#252; der Unterseiten&#8221; auch die aktuell angesehene Seite mit gelistet, was doch recht oft f&#252;r Verrwirrung sorgt, wenn man die Sitemap mit &#8220;Weitere Inhalte dieser Sektion&#8221; einleitet. Deswegen w&#228;re es nicht schlecht, wenn man die aktuelle Seite vom &#8220;Men&#252; der Unterseiten&#8221; ausschlie&#223;en k&#246;nnte.</p>
<p>Wie das geht, zeigt dieser kleine Drei-Zeiler, der ins TS-Setup geh&#246;rt:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">tt_content.<span style="color: #0066CC;">menu</span>.20 <span style="color: #66cc66;">&#123;</span>
  1.<span style="color: #006600;">excludeUidList</span> = current
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>Wer&#8217;s noch platzsparender haben m&#246;chte:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">tt_content.<span style="color: #0066CC;">menu</span>.20.1.<span style="color: #006600;">excludeUidList</span> = current</pre></td></tr></table></div>

<p>War mir vorher noch nicht bekannt, doch ein kleiner Ausflug in den <acronym title="Scriptsprache, die in Typo3 Anwendung findet.">TypoScript</acronym> ObjectBrowser f&#252;hrte mich dann zur L&#246;sung. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/typoscript/aktuelle-seite-von-menue-der-unterseiten-ausschliessen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Textbasiertes Sprachmen&#252;</title>
		<link>http://typo3.schloebe.de/typoscript/textbasiertes-sprachmenue/</link>
		<comments>http://typo3.schloebe.de/typoscript/textbasiertes-sprachmenue/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 12:33:01 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Mehrsprachigkeit]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[TypoScript]]></category>
		<category><![CDATA[sprachmenu]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[typo3]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/typoscript/textbasiertes-sprachmenue/</guid>
		<description><![CDATA[ 	Gerade habe ich beim Entmotten ein textbasiertes Sprachmen&#252; entdeckt, das ich hier einfach mal ver&#246;ffentliche. 
Das Men&#252; kommt ohne Flaggen aus, wird per PHP generiert und l&#228;sst sich per Klick umschalten. Ist eine Seite in einer alternativen Sprache nicht verf&#252;gbar, wird der Men&#252;punkt ausgegraut. Ansonsten verh&#228;lt es sich wie ein normales Sprachmen&#252;, in diesem [...]]]></description>
			<content:encoded><![CDATA[<p> 	Gerade habe ich beim Entmotten ein textbasiertes Sprachmen&#252; entdeckt, das ich hier einfach mal ver&#246;ffentliche. <span id="more-38"></span></p>
<p>Das Men&#252; kommt ohne Flaggen aus, wird per <acronym title="Pre-Hypertext Processing">PHP</acronym> generiert und l&#228;sst sich per Klick umschalten. Ist eine Seite in einer alternativen Sprache nicht verf&#252;gbar, wird der Men&#252;punkt ausgegraut. Ansonsten verh&#228;lt es sich wie ein normales Sprachmen&#252;, in diesem Fall eben nur ohne Flaggen.</p>
<p>In Aktion sieht das Men&#252; so aus (nat&#252;rlich in ein Design eingepasst; in der Rohfassung erzeugt es einfach nur die Links f&#252;r die Sprachen):</p>
<div class="myinlinepicture" style="width:148px">
<div class="myinlineborder"  style="width:148px"><a rel="lightbox" href="http://typo3.schloebe.de/wp-content/gallery/misc/textlangmenu.png"  title=""><img class="myinlinepictureimg" src="http://typo3.schloebe.de/wp-content/gallery/misc/textlangmenu.png" alt="" title="" width="148" height="79"  /></a></div>
</div>
<p><br style="clear:both"/></p>
<p><strong>Die <acronym title="Pre-Hypertext Processing">PHP</acronym>-Datei <em>sprachmenu.inc</em>:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">is_object</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #990000;">die</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Error: No parent object present.'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$res</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TYPO3_DB'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">exec_SELECTquery</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'*'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'pages_language_overlay'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'pid='</span><span style="color: #339933;">.</span><span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TSFE'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TSFE'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sys_page</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">enableFields</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'pages_language_overlay'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sys_language_uid'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$langArr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TYPO3_DB'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sql_fetch_assoc</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'sys_language_uid'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$pointer</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$flags</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SCRIPT_FILENAME'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'index.php'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'index.php?'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000088;">$query</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'QUERY_STRING'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$langstrings</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;L=1&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&amp;L=0&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langstrings</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #000088;">$langtext</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'de'</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$langtext</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'de'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$flags</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TSFE'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sys_language_uid</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">0</span>?<span style="color: #000088;">$pointer</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;L=0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; target=&quot;_top&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$langtext</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;0&quot;</span> OR <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langstrings</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$flags</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TSFE'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sys_language_uid</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">1</span>?<span style="color: #000088;">$pointer</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;L=1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; target=&quot;_top&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>?<span style="color: #0000ff;">''</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'ru'</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>?<span style="color: #0000ff;">''</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$flags</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'TSFE'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sys_language_uid</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">1</span>?<span style="color: #000088;">$pointer</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>?<span style="color: #0000ff;">''</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'ru'</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langArr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>?<span style="color: #0000ff;">''</span><span style="color: #339933;">:</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;0&quot;</span> OR <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$langvar</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'de'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'L'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$langvar</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'ru'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$langvar</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$content</span> <span style="color: #339933;">.=</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span><span style="color: #000088;">$flags</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Per <acronym title="Scriptsprache, die in Typo3 Anwendung findet.">TypoScript</acronym> kann das ganze dann so inkludiert werden:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">page.10.<span style="color: #006600;">marks</span>.<span style="color: #006600;">SPRACHE</span> = PHP_SCRIPT
page.10.<span style="color: #006600;">marks</span>.<span style="color: #006600;">SPRACHE</span>.<span style="color: #006600;">file</span> = fileadmin<span style="color: #66cc66;">/</span>sprachmenu.<span style="color: #006600;">inc</span></pre></td></tr></table></div>

<p>Wirklich flexibel ist es nat&#252;rlich nicht, aber als Ansatz ist es vielleicht hilfreich f&#252;r den einen oder anderen.</p>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/typoscript/textbasiertes-sprachmenue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plugin Release: Schneegest&#246;ber/ Snow Flurry</title>
		<link>http://typo3.schloebe.de/extension/plugin-release-schneegestoeber-snow-flurry/</link>
		<comments>http://typo3.schloebe.de/extension/plugin-release-schneegestoeber-snow-flurry/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 09:55:26 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Extension]]></category>
		<category><![CDATA[Erweiterung]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Schnee]]></category>
		<category><![CDATA[Schneegestöber]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[Snow Flurry]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/extension/plugin-release-schneegestoeber-snow-flurry/</guid>
		<description><![CDATA[ 	Gestern habe ich das TYPO3 Plugin Schneegest&#246;ber/ Snow Flurry ins TER hochgeladen bzw. ver&#246;ffentlicht.  Das Plugin ist w&#228;hrend der diesj&#228;hrigen &#8220;Wintersaison&#8221; entstanden, und wird bis zur n&#228;chsten Saison noch kr&#228;ftig aufpoliert; bis zum Winter 2008 ist ja noch jede Menge Zeit. Dies ist also nur ein erster Release Candidate, der aber nat&#252;rlich schon [...]]]></description>
			<content:encoded><![CDATA[<p> 	Gestern habe ich das TYPO3 Plugin <strong>Schneegest&#246;ber/ Snow Flurry</strong> ins TER hochgeladen bzw. ver&#246;ffentlicht. <span id="more-37"></span> Das Plugin ist w&#228;hrend der diesj&#228;hrigen &#8220;Wintersaison&#8221; entstanden, und wird bis zur n&#228;chsten Saison noch kr&#228;ftig aufpoliert; bis zum Winter 2008 ist ja noch jede Menge Zeit. Dies ist also nur ein erster Release Candidate, der aber nat&#252;rlich schon stabil l&#228;uft.  &#220;ber die (Un)sinnigkeit l&#228;sst sich nat&#252;rlich streiten, aber es gibt Leute, die so etwas haben wollen&#8230; <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Da ich bereits darauf angesprochen wurde, weshalb ich diese Extension ver&#246;ffentlicht habe, wo es doch bereits <em>sk_snow</em> gibt.</strong></p>
<div class="myinlinepictureright" style="width:150px">
<div class="myinlineborder"  style="width:150px"><a rel="lightbox" href="http://typo3.schloebe.de/wp-content/gallery/os_snow/ossnow02.gif"  title="Modulansicht Vorschau des Schneefalls"><img class="myinlinepictureimg" src="http://typo3.schloebe.de/wp-content/gallery/os_snow/ossnow02.gif" alt="Modulansicht Vorschau des Schneefalls" title="Modulansicht Vorschau des Schneefalls" width="150" height="96"  /></a></div>
<div class="myinlinepicdescription"><span>Modulansicht Vorschau des Schneefalls</span></div>
</div>
<p> Bei der genannten Extension <em>sk_snow</em> war die Konfiguration per TS f&#252;r Redakteure, die normalerweise bspw. im kaufm&#228;nnischen Sektor arbeiten, nicht zumutbar, zumal TYPO3 auch als solches einiges an Einarbeitsungszeit erfordert. Aus diesem Grunde ist mein kleines Plugin entstanden mit einem <strong>eigenen Modul im <acronym title="Backend; Administrationsbereich.">BE</acronym></strong>, mit dem der Redakteur (sofern der Admin es ihm erlaubt) <strong>per Mausklick Schnee auf der eigenen Webseite ein- und ausschalten kann</strong>. Das ist bei sk_snow nur f&#252;r Admins (mit Templatezugriff) m&#246;glich, nicht aber f&#252;r die, die die Webseite selbst pflegen, sich aber nicht mit Code herumschlagen k&#246;nnen und wollen, und so etwas mehr Eigenkontrolle erm&#246;glicht wird.</p>
<p><strong>Was tut das Plugin?</strong></p>
<div class="myinlinepictureleft" style="width:150px">
<div class="myinlineborder"  style="width:150px"><a rel="lightbox" href="http://typo3.schloebe.de/wp-content/gallery/os_snow/ossnow01.gif"  title="Modulansicht Aktivierung/ Deaktivierung des Schneefalls"><img class="myinlinepictureimg" src="http://typo3.schloebe.de/wp-content/gallery/os_snow/ossnow01.gif" alt="Modulansicht Aktivierung/ Deaktivierung des Schneefalls" title="Modulansicht Aktivierung/ Deaktivierung des Schneefalls" width="150" height="107"  /></a></div>
<div class="myinlinepicdescription"><span>Modulansicht Aktivierung/ Deaktivierung des Schneefalls</span></div>
</div>
<p> Schnee ist die h&#228;ufigste Form des festen Niederschlags, der aus feinen Eiskristallen besteht. Diese Extension nutzt diese &#8211; virtuelle &#8211; Art des Niederschlags, um auf Ihrer Webseite eine winterliche Atmosph&#228;re zu erzeugen, indem es Schneefall simuliert. die Extension nutzt ein JavaScript, welches in einem <acronym title="Backend; Administrationsbereich.">BE</acronym>-Modul de-/aktiviert werden kann. Auch Redakteure (Non-Administratoren) k&#246;nnen es ein- und ausschalten, sofern der Administrator dem Benutzer/ der Gruppe die Rechte daf&#252;r gibt.</p>
<p>Alle weiteren Infos entweder im offiziellen englischen, der Extension beigelegten Manual [1] oder hier auf Deutsch [2].</p>
<p><strong>[1] <a href="http://typo3.org/documentation/document-library/extension-manuals/os_snow/0.9.1/view/1/1/" target="_blank">Offizielles Manual der Extension auf typo3.org</a><br />
[2] <a href="http://typo3.schloebe.de/extensions/snow-flurry/" target="_blank">Deutsche Dokumentation mit letzten Infos</a></strong></p>
<div class="veraltet">Vielen Dank an Tiina Kellosalo, die liebenswerterweise die Sprachen Finnisch und Schwedisch beigesteuert hat. <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </div>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/extension/plugin-release-schneegestoeber-snow-flurry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshots von der TYPO3 4.2.0 Beta1a</title>
		<link>http://typo3.schloebe.de/allgemein/screenshots-von-der-typo3-420-beta1a/</link>
		<comments>http://typo3.schloebe.de/allgemein/screenshots-von-der-typo3-420-beta1a/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 10:45:45 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[Beta Version]]></category>
		<category><![CDATA[Cleaner Backend]]></category>
		<category><![CDATA[entwicklerversion]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[typo3]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/allgemein/screenshots-von-der-typo3-420-beta1a/</guid>
		<description><![CDATA[ 	F&#252;r alle, die noch kein PHP 5.2 zur Verf&#252;gung oder nicht die Zeit oder Lust haben, die TYPO3 4.2.0 Beta1a zu installieren,  habe ich ein paar Impressionen der neusten 4.2er Version gemacht.
Zu sehen gibt es einige der neuen Funktionen und Umstellungen, die u.a. aus dem &#8220;Cleaner Backend&#8221;-Projekt heraus entstanden sind. Leider wird es [...]]]></description>
			<content:encoded><![CDATA[<p> 	F&#252;r alle, die noch kein <acronym title="Pre-Hypertext Processing">PHP</acronym> 5.2 zur Verf&#252;gung oder nicht die Zeit oder Lust haben, die TYPO3 4.2.0 Beta1a zu installieren, <span id="more-35"></span> habe ich ein paar Impressionen der neusten 4.2er Version gemacht.</p>
<p>Zu sehen gibt es einige der <a href="http://wiki.typo3.org/index.php/4.2_Development" target="_blank">neuen Funktionen und Umstellungen</a>, die u.a. aus dem &#8220;Cleaner Backend&#8221;-Projekt heraus entstanden sind. Leider wird es der neue Installer 2.0 nicht in diese Version schaffen, sodass es dazu auch keine neuen Screenshots an dieser Stelle gibt.</p>
<blockquote><p><strong><a href="http://typo3.schloebe.de/screenshots-bilder/typo3-420beta1a/" target="_blank">&raquo; Zur Screenshot-Galerie</a></strong></p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/allgemein/screenshots-von-der-typo3-420-beta1a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eine RealURL-Konfiguration</title>
		<link>http://typo3.schloebe.de/tweaks/eine-realurl-konfiguration/</link>
		<comments>http://typo3.schloebe.de/tweaks/eine-realurl-konfiguration/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 09:25:50 +0000</pubDate>
		<dc:creator>Oliver Schlöbe</dc:creator>
				<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[localconf]]></category>
		<category><![CDATA[mm forum]]></category>
		<category><![CDATA[RealURL]]></category>
		<category><![CDATA[realurlconf]]></category>
		<category><![CDATA[tt news]]></category>

		<guid isPermaLink="false">http://typo3.schloebe.de/tweaks/eine-realurl-konfiguration/</guid>
		<description><![CDATA[ 	Auch wenn es an vielen Stellen bereits Vorschl&#228;ge zur RealURL-Konfiguration gibt, stelle ich nun meine oft genutzte Konfig aus.    Diese werde ich im Laufe der Zeit erweitern, sobald ich neue RealURL-Konfigurationen f&#252;r weitere Extensions habe.
Sie schreibt tt_news-Links um. Die tt_news-Links sehen dann wie folgt mit Datumsformation so aus:
/archiv/2008/10/artikel/das-ist-ein-news-titel-als-ueberschrift/
Anzupassen gibt es lediglich [...]]]></description>
			<content:encoded><![CDATA[<p> 	Auch wenn es an vielen Stellen bereits Vorschl&#228;ge zur RealURL-Konfiguration gibt, stelle ich nun meine oft genutzte Konfig aus. <span id="more-33"></span> <img src='http://typo3.schloebe.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Diese werde ich im Laufe der Zeit erweitern, sobald ich neue RealURL-Konfigurationen f&#252;r weitere Extensions habe.</p>
<p>Sie schreibt <em>tt_news</em>-Links um. Die <em>tt_news</em>-Links sehen dann wie folgt mit Datumsformation so aus:</p>
<blockquote><p>/archiv/2008/10/artikel/das-ist-ein-news-titel-als-ueberschrift/</p></blockquote>
<p>Anzupassen gibt es lediglich zwei Werte f&#252;r die <em>mm_forum</em>-Umschreibungen, siehe unten.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$TYPO3_CONF_VARS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'EXTCONF'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'realurl'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'_DEFAULT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'init'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'enableCHashCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'appendMissingSlash'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'ifNotFile'</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'enableUrlDecodeCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'enableUrlEncodeCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'redirects'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'preVars'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
				<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'no_cache'</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'valueMap'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'nc'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'noMatch'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'bypass'</span><span style="color: #339933;">,</span>
			<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
			<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
				<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'L'</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'valueMap'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'de'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'0'</span><span style="color: #339933;">,</span>
					<span style="color: #0000ff;">'en'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'1'</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'noMatch'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'bypass'</span><span style="color: #339933;">,</span>
			<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'pagePath'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'user'</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'userFunc'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'EXT:realurl/class.tx_realurl_advanced.php:&amp;tx_realurl_advanced-&gt;main'</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'spaceCharacter'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'languageGetVar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'L'</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'expireDays'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">7</span><span style="color: #339933;">,</span>
			<span style="color: #0000ff;">'rootpage_id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'fixedPostVars'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'postVarSets'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'_DEFAULT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
				<span style="color: #0000ff;">'archiv'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[year]'</span> <span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[month]'</span> <span style="color: #339933;">,</span>
						<span style="color: #0000ff;">'valueMap'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
							<span style="color: #0000ff;">'01'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'01'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'02'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'02'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'03'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'03'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'04'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'04'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'05'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'05'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'06'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'06'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'07'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'07'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'08'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'08'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'09'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'09'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'10'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'10'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'11'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'11'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'12'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'12'</span><span style="color: #339933;">,</span>
							<span style="color: #009900;">&#41;</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'browse'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[pointer]'</span><span style="color: #339933;">,</span>
						<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'kategorie'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[cat]'</span><span style="color: #339933;">,</span>
						<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'artikel'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[tt_news]'</span><span style="color: #339933;">,</span>
						<span style="color: #0000ff;">'lookUpTable'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
							<span style="color: #0000ff;">'table'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tt_news'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'id_field'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'uid'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'alias_field'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'title'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'addWhereClause'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">' AND NOT deleted'</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'useUniqueCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
							<span style="color: #0000ff;">'useUniqueCache_conf'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
								<span style="color: #0000ff;">'strtolower'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>
								<span style="color: #0000ff;">'spaceCharacter'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span>
							<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
						<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[swords]'</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'datum'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[year]'</span> <span style="color: #339933;">,</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> 
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[month]'</span> <span style="color: #339933;">,</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> 
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[day]'</span> <span style="color: #339933;">,</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> 
					<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'GETvar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tx_ttnews[tt_news]'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'lookUpTable'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'table'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'tt_news'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'id_field'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'uid'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'alias_field'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'title'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'addWhereClause'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">' AND NOT deleted'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'useUniqueCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'useUniqueCache_conf'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'strtolower'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'spaceCharacter'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span>  <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
			<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'pagePath'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> 
			<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'user'</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'userFunc'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'EXT:realurl/class.tx_realurl_advanced.php:&amp;tx_realurl_advanced-&gt;main'</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'spaceCharacter'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'segTitleFieldList'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'alias,tx_realurl_pathsegment,nav_title,title'</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'languageGetVar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'L'</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'expireDays'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'disablePathCache'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> 
			<span style="color: #0000ff;">'rootpage_id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> 
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'fileName'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'index'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
				<span style="color: #0000ff;">'rss.xml'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'keyValues'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">100</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'rss091.xml'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'keyValues'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">101</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'rdf.xml'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'keyValues'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">102</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'atom.xml'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
					<span style="color: #0000ff;">'keyValues'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
						<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">103</span><span style="color: #339933;">,</span>
					<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
			<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>
]]></content:encoded>
			<wfw:commentRss>http://typo3.schloebe.de/tweaks/eine-realurl-konfiguration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
