<?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>ki GmbH :: tec blog &#187; typoscript</title>
	<atom:link href="http://www.kigmbh.com/wordpress/tag/typoscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kigmbh.com/wordpress</link>
	<description>essenzen aus der tekki welt</description>
	<lastBuildDate>Mon, 26 Jul 2010 07:24:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Typo3- Eigene Rahmen für Inhaltselemente</title>
		<link>http://www.kigmbh.com/wordpress/2010/06/typo3-eigene-rahmen-fur-inhaltselemente/</link>
		<comments>http://www.kigmbh.com/wordpress/2010/06/typo3-eigene-rahmen-fur-inhaltselemente/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 16:15:48 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Rahmen]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=601</guid>
		<description><![CDATA[Wer kennt das nicht. Man nöchte ein Inhaltselement anders formatieren als die umliegenden Elemente. Eine Möglichkeit ist einen Rahmen zu nutzen, der per CSS extra formatiert wird. Wie erklärt man aber einen Redakteur, dass ein Inhaltselement den Rahmen &#8220;Rahmen 1&#8243; haben muss, wenn es Beispielsweise eine grüne Schrift haben soll? Sollte da nicht der Rahmen [...]]]></description>
			<content:encoded><![CDATA[<p>Wer kennt das nicht. Man nöchte ein Inhaltselement anders formatieren als die umliegenden Elemente.</p>
<p>Eine Möglichkeit ist einen Rahmen zu nutzen, der per CSS extra formatiert wird.</p>
<p><a href="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-2.png"><img class="aligncenter size-full wp-image-605" title="Bild 2" src="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-2.png" alt="" width="705" height="281" /></a></p>
<p>Wie erklärt man aber einen Redakteur, dass ein Inhaltselement den Rahmen &#8220;Rahmen 1&#8243; haben muss, wenn es Beispielsweise eine grüne Schrift haben soll? Sollte da nicht der Rahmen &#8220;grüne Schrift&#8221; heisen, damit es eindeutig ist was der Rahmen macht?</p>
<p>Die standard Rahmen sind eben meist für eigene Webprojekte nicht zu gebrauchen, da die Benamung höchstwarscheinlich nichts mit den formatierten Eigenschaften zu tun hat und somit eher für Verwirrung sorgt.</p>
<p>Toll wäre es also, wenn man diese Rahmenauswahl im Backand frei definieren könnte oder gar noch die erzeugten CSS-Klassen im div-Container umschreiben könnte.</p>
<p><span id="more-601"></span></p>
<p>Zuerst geht man auf die gewünschte Seite oder gar auf die Seite auf der das Template definiert ist, um eben die Rahmenauswahl Global verfügbar zu machen.</p>
<p>Folgender Code gibt man in der TypoConf der Seite ein,</p>
<p style="text-align: center;"><a href="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-4.png"><img class="size-full wp-image-602 aligncenter" title="Bild 4" src="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-4.png" alt="" width="553" height="229" /></a></p>
<p>&#8220;removeItems&#8221; löscht in diesem Falle alle vordefinerten Rahmen. Wieso diese standard Rahmen keine fortlaufende Numerierung haben ist mir allerdings ein Rätsel.</p>
<p>Mit AddItems, kann man neue Items erstellen. Man definiert zuerst ein Item mit der Zahl und legt gleichzeitig den Namen fest, welcher im Auswahlmenü auftaucht</p>
<p><a href="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-3.png"><img class="aligncenter size-full wp-image-603" title="Bild 3" src="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-3.png" alt="" width="734" height="218" /></a>Ok &#8211; wir haben nun unsere eigenen Rahmen definiert, aber woher weis unser Typo3 welche CSS-Klasse nun im Frontend verwendet wird?</p>
<p>Dazu gehen wir ins Template und definieren für unsere gerade erzeugten Rahmen-Elemente, den WRAP-Container.</p>
<p><a href="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-7.png"><img class="aligncenter size-full wp-image-604" title="Bild 7" src="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-7.png" alt="" width="655" height="95" /></a></p>
<p>Beispielsweise erzeugt nun die Auswahl des Rahmens &#8220;RSS-Box-Formatierung&#8221; einen div-Container mit der CSS-Classe &#8220;rss-box&#8221;.</p>
<p><a href="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-1.png"><img class="aligncenter size-full wp-image-607" title="Bild 1" src="http://www.kigmbh.com/wordpress/wp-content/uploads/2010/06/Bild-1.png" alt="" width="297" height="222" /></a></p>
<p>Nachzulesen ist das Ganze hier: http://www.typo3.net/forum/list/list_post//97989/?pid=356606</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2010/06/typo3-eigene-rahmen-fur-inhaltselemente/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Typo3 4.3: Conditions im TSConfig</title>
		<link>http://www.kigmbh.com/wordpress/2010/06/typo3-4-3-conditions-im-tsconfig/</link>
		<comments>http://www.kigmbh.com/wordpress/2010/06/typo3-4-3-conditions-im-tsconfig/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 20:56:15 +0000</pubDate>
		<dc:creator>dirk</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[programmierung]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=598</guid>
		<description><![CDATA[Im BE (Backend) sollen einzelne Eingabefelder oder Optionen ausgeblendet werden. Beispielsweise sollen bei einer Extension bestimmte BE-User bestimmte Felder nicht bearbeiten können. Conditions waren bislang nicht auf TSConfig-Ebene möglich, doch nun ist das obige Problem leicht zu lösen: Eine &#8216;usergroup&#8217; wird über ihre &#8216;uid&#8217; angegeben und die Condition selbst muss mit &#8216;global&#8217; wieder geschlossen werden. [...]]]></description>
			<content:encoded><![CDATA[<p>Im BE (Backend) sollen einzelne Eingabefelder oder Optionen ausgeblendet werden. Beispielsweise sollen bei einer Extension bestimmte BE-User bestimmte Felder nicht bearbeiten können.<br />
Conditions waren bislang nicht auf TSConfig-Ebene möglich, doch nun ist das obige Problem leicht zu lösen:<br />
Eine &#8216;usergroup&#8217; wird über ihre &#8216;uid&#8217; angegeben und die Condition selbst muss mit &#8216;global&#8217; wieder geschlossen werden.<br />
Innerhalb dieser Condition können nun der entsprechenden &#8216;usergroup&#8217; die Rechte an bestimmten Feldern einer beliebigen Tabelle entzogen werden.<br />
&#8216;TCEFORM.&#8217; gefolgt von dem Tabellennamen &#8216;tabellen_name.&#8217; (tabellen_name bitte mit eigener Tabelle ersetzen), dann Feldnamen &#8216;feld_name.&#8217; angeben (feld_name bitte mit eigenem Feld ersetzen), dann &#8216;.disabled = 1&#8242;, fertig.</p>
<p>[usergroup = 1]<br />
TCEFORM.tabellen_name.feld_name.disabled = 1<br />
[global]</p>
<p>Zur Erinnerung, dieses Stück &#8216;TSConfig&#8217; gehört in die Seiteneigenschaften. Zu finden unter Seite / Seiteneigenschaften bearbeiten / Optionen / TSConfig und speichern nicht vergessen <img src='http://www.kigmbh.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2010/06/typo3-4-3-conditions-im-tsconfig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typo3 Google Sitemap Extension</title>
		<link>http://www.kigmbh.com/wordpress/2010/04/typo3-google-sitemap-extension/</link>
		<comments>http://www.kigmbh.com/wordpress/2010/04/typo3-google-sitemap-extension/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 14:55:01 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[realurl]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=510</guid>
		<description><![CDATA[Um für Google eine passende sitemap.xml zu erstellen, gibt es hier eine Extension für typo3. Sie erzeugt anhand des typo3 Seitenbaums dynamisch eine sitemap.xml für die großen Suchmaschinen wie z.b. Google. Die Extension &#8220;weeaar_googlesitemap&#8221; unterstützt sowohl News (tt_news) als auch RealURL. http://www.weeaar.com/projekte/typo3-extensions/google-sitemap.html Typoscript Beispielcode ### GoogleSitemap #################################### sitemap = PAGE sitemap &#123; typeNum = 200 [...]]]></description>
			<content:encoded><![CDATA[<p>Um für Google eine passende sitemap.xml zu erstellen, gibt es hier eine Extension für typo3. Sie erzeugt anhand des typo3 Seitenbaums dynamisch eine sitemap.xml für die großen Suchmaschinen wie z.b. Google. Die Extension &#8220;<strong>weeaar_googlesitemap</strong>&#8221; unterstützt sowohl News (<strong>tt_news</strong>) als auch <strong>RealURL</strong>.</p>
<p><a href="http://www.weeaar.com/projekte/typo3-extensions/google-sitemap.html">http://www.weeaar.com/projekte/typo3-extensions/google-sitemap.html</a></p>
<p><span id="more-510"></span></p>
<h2>Typoscript Beispielcode</h2>
<h2>

<div class="wp_syntax"><div class="code"><pre class="typoscript" style="font-family:monospace;">### GoogleSitemap
<span style="color: #aaa; font-style: italic;">####################################</span>
<span style="color: #000066; font-weight: bold;">sitemap</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #990000; font-weight: bold;">PAGE</span>
<span style="color: #000066; font-weight: bold;">sitemap</span> <span style="color: #009900;">&#123;</span>
 typeNum <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">200</span>
 <span style="color: #cc0000;">10</span> &amp;gt;
 <span style="color: #cc0000;">10</span> &amp;lt; <span style="color: #000066; font-weight: bold;">plugin</span><span style="color: #339933; font-weight: bold;">.</span><span style="color: #000066; font-weight: bold;">tx_weeaargooglesitemap_pi1</span>
 10<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
 10<span style="color: #339933; font-weight: bold;">.</span>recursive <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">0</span>
 10<span style="color: #339933; font-weight: bold;">.</span>allowedDoktypes <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">2</span>,<span style="color: #cc0000;">1</span>,<span style="color: #cc0000;">4</span>,<span style="color: #cc0000;">5</span>,<span style="color: #cc0000;">254</span>
 10<span style="color: #339933; font-weight: bold;">.</span>domain <span style="color: #339933; font-weight: bold;">=</span> http<span style="color: #339933; font-weight: bold;">:</span><span style="color: #aaa; font-style: italic;">//www.domain.tld/</span>
 10<span style="color: #339933; font-weight: bold;">.</span>languageVar <span style="color: #339933; font-weight: bold;">=</span> L
 10<span style="color: #339933; font-weight: bold;">.</span>showLanguages <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">0</span>,<span style="color: #cc0000;">1</span>,<span style="color: #cc0000;">2</span>,<span style="color: #cc0000;">3</span>,<span style="color: #cc0000;">4</span>,<span style="color: #cc0000;">5</span>,<span style="color: #cc0000;">6</span>
 10<span style="color: #339933; font-weight: bold;">.</span>tt_news<span style="color: #339933; font-weight: bold;">.</span>single_page <span style="color: #009900;">&#123;</span>
  <span style="color: #cc0000;">1</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  1<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">200</span>
  <span style="color: #cc0000;">2</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  2<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">260</span>
  <span style="color: #cc0000;">3</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  3<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">281</span>
  <span style="color: #cc0000;">4</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  4<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">296</span>
  <span style="color: #cc0000;">5</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  5<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">261</span>
  <span style="color: #cc0000;">6</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  6<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">253</span>
  <span style="color: #cc0000;">7</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  7<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">289</span>
  <span style="color: #cc0000;">8</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  8<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">244</span>
  <span style="color: #cc0000;">9</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">203</span>
  9<span style="color: #339933; font-weight: bold;">.</span>pid_list <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">236</span>
 <span style="color: #009900;">&#125;</span>
 10<span style="color: #339933; font-weight: bold;">.</span>tt_news <span style="color: #009900;">&#123;</span>
  disabledParameter <span style="color: #339933; font-weight: bold;">=</span> day,<span style="color: #ed7d14;">month</span>,year
 <span style="color: #009900;">&#125;</span>
 <span style="color: #000066; font-weight: bold;">config</span> <span style="color: #009900;">&#123;</span>
  disableAllHeaderCode <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
  additionalHeaders <span style="color: #339933; font-weight: bold;">=</span> Content-type<span style="color: #339933; font-weight: bold;">:</span>text<span style="color: #339933; font-weight: bold;">/</span>xml
  no_cache <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
  xhtml_cleaning <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">0</span>
 <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

</h2>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2010/04/typo3-google-sitemap-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Konvertieren von traditionellen typo3 Containern in Templavoila</title>
		<link>http://www.kigmbh.com/wordpress/2009/12/konvertieren-von-traditionellen-typo3-containern-in-templavoila/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/12/konvertieren-von-traditionellen-typo3-containern-in-templavoila/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 06:51:51 +0000</pubDate>
		<dc:creator>sascha</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[templavoila]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=437</guid>
		<description><![CDATA[Die Konvertierung erfolgt in zwei Schritten. 1. Mit dieser Extension kann man die Inhalte aus traditionellen Containern (left, normal, right, border) in Templavoila Container vornehmen. http://typo3.org/extensions/repository/view/eu_tradvoila/current/ 2. Für die aktuellen typo3 bzw. Templavoila Versionen (aktuell 4.2.10) ist eine weitere Anpassung erforderlich in der Datenbank erforderlich. Dazu kann man nachfolgende SQL-Statements verwenden. UPDATE `pages` SET `tx_templavoila_flex` [...]]]></description>
			<content:encoded><![CDATA[<p>Die Konvertierung erfolgt in zwei Schritten.</p>
<p>1. Mit dieser Extension kann man die Inhalte aus traditionellen Containern (left, normal, right, border) in Templavoila Container vornehmen.<br />
<a href="http://typo3.org/extensions/repository/view/eu_tradvoila/current/">http://typo3.org/extensions/repository/view/eu_tradvoila/current/</a></p>
<p>2. Für die aktuellen typo3 bzw. Templavoila Versionen (aktuell 4.2.10) ist eine weitere Anpassung erforderlich in der Datenbank erforderlich. Dazu kann man nachfolgende SQL-Statements verwenden.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`pages`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`tx_templavoila_flex`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`tx_templavoila_flex`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'fieldname index=&quot;content_col2&quot; type=&quot;array&quot;'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'field index=&quot;field_content_col2&quot;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`pages`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`tx_templavoila_flex`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`tx_templavoila_flex`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&lt;vdef&gt;'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&lt;value index=&quot;vDEF&quot;&gt;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`pages`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`tx_templavoila_flex`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`tx_templavoila_flex`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&lt;/value&gt;&lt;/vdef&gt;'</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">''</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`pages`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`tx_templavoila_flex`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`tx_templavoila_flex`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">''</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">''</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/12/konvertieren-von-traditionellen-typo3-containern-in-templavoila/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typo3 einsprachige Website von englisch auf deutsch umstellen</title>
		<link>http://www.kigmbh.com/wordpress/2009/09/typo3-einsprachige-website-von-englisch-auf-deutsch-umstellen/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/09/typo3-einsprachige-website-von-englisch-auf-deutsch-umstellen/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 04:32:33 +0000</pubDate>
		<dc:creator>dirk</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[programmierung]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=412</guid>
		<description><![CDATA[Wer eine einsprachige Website von englisch auf deutsch umstellen möchte, gibt im Setup folgendes ein: config.language = de config.locale_all = de_DE]]></description>
			<content:encoded><![CDATA[<p>Wer eine einsprachige Website von englisch auf deutsch umstellen möchte, gibt im Setup folgendes ein:<br />
config.language = de<br />
config.locale_all = de_DE </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/09/typo3-einsprachige-website-von-englisch-auf-deutsch-umstellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zweite Menüebene im ypslideoutmenu</title>
		<link>http://www.kigmbh.com/wordpress/2009/07/2-menuebene-im-ypslideoutmenu/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/07/2-menuebene-im-ypslideoutmenu/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 07:48:18 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[ypslideout]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=378</guid>
		<description><![CDATA[Manchmal benötigt man in Menüs bei den ersten und letzen Menülinks eine extra Klasse, um diese spezielle formatieren zu können. in normalen Menüs wird das mit &#8220;NO.linkWrap = &#60;div&#62;&#124;&#60;/div&#62;&#124;*&#124;&#60;div&#62;&#124;&#60;/div&#62;&#124;*&#124;&#60;div&#62;&#124;&#60;/div&#62;&#8221; gelöst. Im ypslideoutmenu zieht dies aber nicht ohne Weiteres. Hier ein Beispiel für die zweite Ebene: 2 = tx_menu_ypslideoutmenu 2 { moveTo = down height = [...]]]></description>
			<content:encoded><![CDATA[<p>Manchmal benötigt man in Menüs bei den ersten und letzen Menülinks eine extra Klasse, um diese spezielle formatieren zu können.</p>
<p>in normalen Menüs wird das mit &#8220;NO.linkWrap = &lt;div&gt;|&lt;/div&gt;|*|&lt;div&gt;|&lt;/div&gt;|*|&lt;div&gt;|&lt;/div&gt;&#8221; gelöst. Im ypslideoutmenu zieht dies aber nicht ohne Weiteres.</p>
<p>Hier ein Beispiel für die zweite Ebene:</p>
<blockquote><p>2 = tx_menu_ypslideoutmenu<br />
2 {<br />
moveTo = down<br />
height = 22<br />
width = 221<br />
expAll=1<br />
IProcFunc = user_menu-&gt;secondLevel<br />
NO.linkWrap = &lt;div&gt;|&lt;/div&gt;|*|&lt;div&gt;|&lt;/div&gt;|*|&lt;div&gt;|&lt;/div&gt;</p>
<p>}</p></blockquote>
<p>Wichtig ist hier die Zeile &#8220;IProcFunc = user_menu-&gt;secondLevel&#8221; die den &#8220;linkWrap&#8221; überhaupt ermöglicht.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/07/2-menuebene-im-ypslideoutmenu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typo3 TemplaVoila installieren (Installation Teil 1)</title>
		<link>http://www.kigmbh.com/wordpress/2009/06/typo3-templavoila-installieren-installation-teil-1/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/06/typo3-templavoila-installieren-installation-teil-1/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 13:32:15 +0000</pubDate>
		<dc:creator>dirk</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[templavoila]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=359</guid>
		<description><![CDATA[Vorabarbeiten: Eine Seitenstruktur muss vorhanden sein, also einfach ein paar Seiten anlegen. css_styled_content und static_info_tables includieren bzw. installieren Ist static_info_tables noch nicht installiert, bekommt man bei der Installation von TemplVoila die Aufforderung dies zu tun. Als inkompatibel gelten: kb_tv_clipboard templavoila_cw eu_tradvoila Um alle vorhandenen Versionen sehen zu können, sollte unter Settings (Ext Manager) noch Enable [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Vorabarbeiten:</strong><em><br />
</em>Eine Seitenstruktur muss vorhanden sein, also einfach ein paar Seiten anlegen.<br />
<em>css_styled_content</em> und <em>static_info_tables</em> includieren bzw. installieren<br />
Ist static_info_tables noch nicht installiert, bekommt man bei der Installation von TemplVoila die Aufforderung dies zu tun.</p>
<p>Als inkompatibel gelten:</p>
<p>kb_tv_clipboard<br />
templavoila_cw<br />
eu_tradvoila</p>
<p>Um alle vorhandenen Versionen sehen zu können, sollte unter <em>Settings</em> (Ext Manager) noch <em>Enable extensions without review</em> gesetzt werden.</p>
<p><strong>Installation:</strong><br />
Und nun einfach <em>templavoila </em>im Backend installieren.</p>
<p>Als nächstes einen <em>SysFolder</em> anlegen. Dieser muss nun verbunden werden.<br />
Web-&gt;Seite-&gt;rootpage-&gt;Eigenschaften-&gt;Options-&gt;General Record Storage page<br />
Hier den gerade erstellten SysFolder auswählen.</p>
<p>Sollte unter Web-&gt;Template-&gt;Setup noch</p>
<p>page = PAGE<br />
page.10 = HTML<br />
page.10.value = &lt;div&gt;www.multimediateam.com&lt;/div&gt;</p>
<p>stehen, dieses in:</p>
<p>page = PAGE<br />
page.typeNum = 0<br />
page.10 = USER<br />
page.10.userFunc = tx_templavoila_pi1-&gt;main_page</p>
<p>Damit bekommt TemplaVoila die Anweisung die Ausgabe zu übernehmen.<br />
Bei dieser Gelegenheit nocheinmal kontrollieren, ob wirklich auch <em>css_styled_content</em> eingebunden ist (Click her to edit whole Template unter Setup zu finden)</p>
<p>Um das Mapping geht es in einem neuen Artikel, alle CSS- und HTML-Dateien (und was sonst noch so gebraucht wird) in einem Verzeichnis unterhalb von <em>fileadmin</em> ablegen. Als Tipp noch an dieser Stelle: ich habe mir den Unterverzeichnis <em>templates</em> hierfür reserviert, da ich mit anderen Namen vor einiger Zeit Probleme hatte. Seither habe ich es mit anderen Verzeichnisnamen nicht nocheinmal versucht. <img src='http://www.kigmbh.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><span><strong> </strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/06/typo3-templavoila-installieren-installation-teil-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Typo3 indexedsearch Mehrsprachigkeit</title>
		<link>http://www.kigmbh.com/wordpress/2009/05/typo3-indexedsearch-mehrsprachigkeit/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/05/typo3-indexedsearch-mehrsprachigkeit/#comments</comments>
		<pubDate>Mon, 04 May 2009 14:30:05 +0000</pubDate>
		<dc:creator>dirk</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[programmierung]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[suche]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=314</guid>
		<description><![CDATA[Wenn das Suchresultat Mehrsprachig ist, man das Ergebnis aber nur in der aktuellen Sprache haben möchte, könne diese Zeilen helfen. TS-Setup: #default language plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 0 [globalVar = GP:L=1] #secund language plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 1 [global] [globalVar = GP:L=2] #third language (and so on;-) plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 2 [global]]]></description>
			<content:encoded><![CDATA[<p>Wenn das Suchresultat Mehrsprachig ist, man das Ergebnis aber nur in der aktuellen Sprache haben möchte, könne diese Zeilen helfen.<br />
TS-Setup:</p>

<div class="wp_syntax"><div class="code"><pre class="typo3" style="font-family:monospace;">#default language
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 0
[globalVar = GP:L=1]
   #secund language
   plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 1
[global]
[globalVar = GP:L=2]
   #third language (and so on;-)
   plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 2
[global]</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/05/typo3-indexedsearch-mehrsprachigkeit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Klassen für einzelnen Felder der Suche</title>
		<link>http://www.kigmbh.com/wordpress/2009/04/klassen-fur-einzelnen-felder-der-suche/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/04/klassen-fur-einzelnen-felder-der-suche/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 07:59:56 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[suchfelder]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=302</guid>
		<description><![CDATA[<pre class="ts-hl"></pre>]]></description>
			<content:encoded><![CDATA[<p>hier werden die Klassen für die einzelnen Elemente definiert -&gt; direkt unter lib.search einzubinden</p>
<pre class="ts-hl"># Suchenfeld
# params = class="textbox"

# Submitbutton
# params.submit = class="submit"

# Textarea
# params.text = class="textarea"</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/04/klassen-fur-einzelnen-felder-der-suche/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typo3 usergroupe cache löschen zulassen</title>
		<link>http://www.kigmbh.com/wordpress/2009/04/typo3-usergroupe-cache-loschen-zulassen/</link>
		<comments>http://www.kigmbh.com/wordpress/2009/04/typo3-usergroupe-cache-loschen-zulassen/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 11:20:19 +0000</pubDate>
		<dc:creator>dirk</dc:creator>
				<category><![CDATA[typo3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[programmierung]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.kigmbh.com/wordpress/?p=283</guid>
		<description><![CDATA[Will man einer Usergroupe/BE-Benutzergruppe die Möglichkeit geben, den Cache zu löschen, geht dies recht leicht: options.clearCache.pages = 1 options.clearCache.all = 1 Dieses Stück Typoscript kann sowohl unter Usergroupe, also auch für einzelne User/Benutzer in den Optionen eingegeben werden.]]></description>
			<content:encoded><![CDATA[<p>Will man einer Usergroupe/BE-Benutzergruppe die Möglichkeit geben, den Cache zu löschen, geht dies recht leicht:</p>
<pre class="ts-hl"><span style="color: #0000cc;">options.clearCache.pages</span><span> </span><span style="color: black; font-weight: bold;">=</span><span> </span><span style="color: #cc0000;">1</span>
<span style="color: #0000cc;">options.clearCache.all</span><span> </span><span style="color: black; font-weight: bold;">=</span><span> </span><span style="color: #cc0000;">1</span>

Dieses Stück Typoscript kann sowohl unter Usergroupe, also auch für einzelne User/Benutzer in den Optionen eingegeben werden.</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kigmbh.com/wordpress/2009/04/typo3-usergroupe-cache-loschen-zulassen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
