<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-15539</id>
	<title>Nabble - TYPO3 Dev</title>
	<updated>2009-12-08T12:14:22Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/TYPO3-Dev-f15539.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TYPO3-Dev-f15539.html" />
	<subtitle type="html">List for Core-/Extension development.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26699973</id>
	<title>BE RTE questions</title>
	<published>2009-12-08T12:14:22Z</published>
	<updated>2009-12-08T12:14:22Z</updated>
	<author>
		<name>StephenBungert</name>
	</author>
	<content type="html">&lt;br&gt;For an extension I am writing I used the hooks in class.tx_rtehtmlarea_pi3 to
&lt;br&gt;add a new tab to the link browser, looking at the mod3 php &amp;nbsp;I can see how
&lt;br&gt;the title box and width and height are made and have added those to my tab,
&lt;br&gt;now I want to show records from my extension.
&lt;br&gt;&lt;br&gt;1&amp;gt; Is there away of making a page tree that allows you to select records? I
&lt;br&gt;see how the page tree is added but looking in the API I can't see how I can
&lt;br&gt;tell it to allow me to select db records.
&lt;br&gt;&lt;br&gt;I started trying to build my own interface, getting the records my self and
&lt;br&gt;creating the fields from scratch. I have a record (a book), and each book
&lt;br&gt;has associated pages (records from a second table). I want to just show
&lt;br&gt;books that the backend user is allowed to see (because he is the author),
&lt;br&gt;the BE user then selects a book and then I want to show pages that are part
&lt;br&gt;of the selected book. Then when you click on the page a link to it is
&lt;br&gt;created.
&lt;br&gt;&lt;br&gt;Is there some kind of function that allows you to control the creation of
&lt;br&gt;the tree or specify that you want to select records with it?
&lt;br&gt;&lt;br&gt;If this is not possible, I shall keep going with my own approach - I have
&lt;br&gt;learnt quite a lot about the rte and how parts of TYPO3 function :-)
&lt;br&gt;&lt;br&gt;What would be good, if I have to build my own record selector, is to know
&lt;br&gt;what page is the site root. I have the content element id and from this I
&lt;br&gt;have found the page that the rte is on, but how can I find the site root
&lt;br&gt;from this page? I need to know it so that I can use the uid in my queries.
&lt;br&gt;&lt;br&gt;2&amp;gt; My classes modifyMenuDefinition method looks like this at the moment:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public function modifyMenuDefinition($menuDefinition) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Menus seem to be the tabs at the tob of the popup. Array keys:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // sActive - 1 marks tab as active, otherwise empty. Still can't get it
&lt;br&gt;to add the correct class to the td
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // label - The tabs title Text
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // url - defaut seems to be #.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // addParams - seems to be an onclick event handler, example: &amp;nbsp;
&lt;br&gt;onclick=&amp;quot;jumpToUrl('?act=page&amp;amp;editorNo=data[tt_content][166][bodytext]&amp;amp;contentTypo3Language=false&amp;amp;contentTypo3Charset=utf-8');return
&lt;br&gt;false;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $active = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Set active status of the tab of it is selected
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ($this-&amp;gt;parentObj-&amp;gt;act == 'gamebook') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $active = 1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $menuDefinition['gamebook'] = array(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'sActive' =&amp;gt; $active,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'label' =&amp;gt; 'Gamebook',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'url' =&amp;gt; '#',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'addParams' =&amp;gt;
&lt;br&gt;'onclick=&amp;quot;jumpToUrl(\'?act=gamebook&amp;amp;editorNo=data[tt_content][166][bodytext]&amp;amp;contentTypo3Language=false&amp;amp;contentTypo3Charset=utf-8\');return
&lt;br&gt;false;&amp;quot;'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $menuDefinition;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;I check to see if it is active and set the sActive ele to 1, like I saw
&lt;br&gt;other tabs in the link browser doing, but my tab, even when selected, is
&lt;br&gt;never has the correct class. Other tabs when selected have the class
&lt;br&gt;'tabSelected' (if I remember correctly) and mine always has just 'tab', so
&lt;br&gt;it never looks selected, even though it is. What do I have to do in addition
&lt;br&gt;to what I have already done to get the class changing when my tab is
&lt;br&gt;selected?
&lt;br&gt;&lt;br&gt;-----
&lt;br&gt;-- 
&lt;br&gt;Stephen Bungert
&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://old.nabble.com/BE-RTE-questions-tp26699970p26699970.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/BE-RTE-questions-tp26699970p26699970.html&lt;/a&gt;&lt;br&gt;Sent from the TYPO3 Dev mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26699973&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;signature&quot;&gt;-- 
&lt;br&gt;Stephen Bungert&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BE-RTE-questions-tp26699973p26699973.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26699970</id>
	<title>BE RTE questions</title>
	<published>2009-12-08T12:14:21Z</published>
	<updated>2009-12-08T12:14:21Z</updated>
	<author>
		<name>StephenBungert</name>
	</author>
	<content type="html">For an extension I am writing I used the hooks in class.tx_rtehtmlarea_pi3 to add a new tab to the link browser, looking at the mod3 php &amp;nbsp;I can see how the title box and width and height are made and have added those to my tab, now I want to show records from my extension.
&lt;br&gt;&lt;br&gt;1&amp;gt; Is there away of making a page tree that allows you to select records? I see how the page tree is added but looking in the API I can't see how I can tell it to allow me to select db records.
&lt;br&gt;&lt;br&gt;I started trying to build my own interface, getting the records my self and creating the fields from scratch. I have a record (a book), and each book has associated pages (records from a second table). I want to just show books that the backend user is allowed to see (because he is the author), the BE user then selects a book and then I want to show pages that are part of the selected book. Then when you click on the page a link to it is created.
&lt;br&gt;&lt;br&gt;Is there some kind of function that allows you to control the creation of the tree or specify that you want to select records with it?
&lt;br&gt;&lt;br&gt;If this is not possible, I shall keep going with my own approach - I have learnt quite a lot about the rte and how parts of TYPO3 function :-)
&lt;br&gt;&lt;br&gt;What would be good, if I have to build my own record selector, is to know what page is the site root. I have the content element id and from this I have found the page that the rte is on, but how can I find the site root from this page? I need to know it so that I can use the uid in my queries.
&lt;br&gt;&lt;br&gt;2&amp;gt; My classes modifyMenuDefinition method looks like this at the moment:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public function modifyMenuDefinition($menuDefinition) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Menus seem to be the tabs at the tob of the popup. Array keys:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // sActive - 1 marks tab as active, otherwise empty. Still can't get it to add the correct class to the td
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // label - The tabs title Text
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // url - defaut seems to be #.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // addParams - seems to be an onclick event handler, example: &amp;nbsp;	onclick=&amp;quot;jumpToUrl('?act=page&amp;amp;editorNo=data[tt_content][166][bodytext]&amp;amp;contentTypo3Language=false&amp;amp;contentTypo3Charset=utf-8');return false;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $active = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Set active status of the tab of it is selected
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ($this-&amp;gt;parentObj-&amp;gt;act == 'gamebook') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $active = 1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $menuDefinition['gamebook'] = array(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'sActive' =&amp;gt; $active,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'label' =&amp;gt; 'Gamebook',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'url' =&amp;gt; '#',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'addParams' =&amp;gt; 'onclick=&amp;quot;jumpToUrl(\'?act=gamebook&amp;amp;editorNo=data[tt_content][166][bodytext]&amp;amp;contentTypo3Language=false&amp;amp;contentTypo3Charset=utf-8\');return false;&amp;quot;'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $menuDefinition;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;I check to see if it is active and set the sActive ele to 1, like I saw other tabs in the link browser doing, but my tab, even when selected, is never has the correct class. Other tabs when selected have the class 'tabSelected' (if I remember correctly) and mine always has just 'tab', so it never looks selected, even though it is. What do I have to do in addition to what I have already done to get the class changing when my tab is selected?&lt;div class=&quot;signature&quot;&gt;-- 
&lt;br&gt;Stephen Bungert&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BE-RTE-questions-tp26699970p26699970.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26265423</id>
	<title>Bugfix 12428 is buggy for me: 'No TypoScript template found!'</title>
	<published>2009-11-09T04:12:35Z</published>
	<updated>2009-11-09T04:12:35Z</updated>
	<author>
		<name>Stefan Geith-4</name>
	</author>
	<content type="html">After svn update to R6389, I get
&lt;br&gt;&amp;nbsp; &amp;nbsp; 'No TypoScript template found!'
&lt;br&gt;in FE.
&lt;br&gt;&lt;br&gt;When I clear the cache (the red one: clear ALL caches),
&lt;br&gt;1) I get the correct paged rendered in the frontend
&lt;br&gt;&amp;nbsp; &amp;nbsp; at the 'first' time
&lt;br&gt;2) After every reload I get
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'No TypoScript template found!'
&lt;br&gt;&amp;nbsp; &amp;nbsp; in the FE until I clear all caches again; then
&lt;br&gt;&amp;nbsp; &amp;nbsp; the page will be rendered _once_ correctly.
&lt;br&gt;&lt;br&gt;Even with
&lt;br&gt;&amp;nbsp; &amp;nbsp; page.config.no_cache = 1
&lt;br&gt;set, the FE only shows content on _first_ call after clear cache ...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Notes:
&lt;br&gt;Latest working Revison was 6364;
&lt;br&gt;Error occurs in Revisions 6365+;
&lt;br&gt;Latest trunk (6389) with t3lib_tstemplate from R6364 works as expected.
&lt;br&gt;&lt;br&gt;So it seems, Bugfix 12428 has introduced this new bug ... but why ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;/Stefan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26265423&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bugfix-12428-is-buggy-for-me%3A-%27No-TypoScript-template-found%21%27-tp26265423p26265423.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26264866</id>
	<title>Installtool / defaultTypoScript_constants</title>
	<published>2009-11-09T03:32:48Z</published>
	<updated>2009-11-09T03:32:48Z</updated>
	<author>
		<name>Stefan Geith-4</name>
	</author>
	<content type="html">Hi Devs,
&lt;br&gt;&lt;br&gt;maybe this is a problem with 'Install Tool' / 'All Configuration'
&lt;br&gt;in beta3:
&lt;br&gt;&lt;br&gt;&lt;br&gt;- I have pdf_generator2 installed, that does
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;t3lib_extMgm::addTypoScriptConstants('extension.pdf_gene...
&lt;br&gt;&amp;nbsp; &amp;nbsp;in ext_localconf.php
&lt;br&gt;&lt;br&gt;- When I save 'Install Tool' / 'All Configuration', I get
&lt;br&gt;&amp;nbsp; &amp;nbsp;(while not having changed anything !):
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $TYPO3_CONF_VARS['FE']['defaultTypoScript_constants'] = 
&lt;br&gt;'[GLOBAL]'.chr(10).'extension.pdf_generator2.typeNum = 
&lt;br&gt;123'.chr(10).'[GLOBAL]'.chr(10).'extension.pdf_generator2.typeNum = 1234'
&lt;br&gt;&lt;br&gt;- When I repeat this, the string in 'defaultTypoScript_constants'
&lt;br&gt;&amp;nbsp; &amp;nbsp;gets duplicated with every save ...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Can anybody confirm this ?
&lt;br&gt;Could not find a bugtracker-entry yet ...
&lt;br&gt;&lt;br&gt;/Stefan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26264866&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Installtool---defaultTypoScript_constants-tp26264866p26264866.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26262511</id>
	<title>Deprecation Log problems</title>
	<published>2009-11-09T00:05:34Z</published>
	<updated>2009-11-09T00:05:34Z</updated>
	<author>
		<name>Sebastian Böttger</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;at high traffic sites, the deprecation log quickly increases and reaches 
&lt;br&gt;file sizes of multiple Gigabytes.
&lt;br&gt;Wouldn't it be better, to just log a one time instead of all time it has 
&lt;br&gt;been called?
&lt;br&gt;&lt;br&gt;Best wishes
&lt;br&gt;Sebastian
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26262511&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deprecation-Log-problems-tp26262511p26262511.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26224565</id>
	<title>Over 2Million images rendering using GIFBUILDER (but not all at once...)</title>
	<published>2009-11-05T15:57:10Z</published>
	<updated>2009-11-05T15:57:10Z</updated>
	<author>
		<name>ries van Twisk-2</name>
	</author>
	<content type="html">Hey All,
&lt;br&gt;&lt;br&gt;I have an interesting problem at hand..
&lt;br&gt;I have a database with over 2 million images and these images will
&lt;br&gt;get rendered using GIFBUILDER.
&lt;br&gt;&lt;br&gt;Using some quick debugging I did see that all images will get &amp;nbsp;
&lt;br&gt;generated under typo3temp/GB/
&lt;br&gt;&lt;br&gt;Is it possible to let TYPO3 generate sub-directories for the images?
&lt;br&gt;Something in line like
&lt;br&gt;&lt;br&gt;typo3temp/GB/a/b/9/hgj543jhg5.jpg
&lt;br&gt;&lt;br&gt;the only solution I currently see is XCLASS tslib_gifbuilder,
&lt;br&gt;am I over looking something? maby?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, Ries van Twisk
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------------------------------
&lt;br&gt;tags: Freelance TYPO3 Glassfish JasperReports JasperETL Flex Blaze-DS &amp;nbsp;
&lt;br&gt;WebORB PostgreSQL DB-Architect
&lt;br&gt;email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26224565&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ries@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;web: &amp;nbsp; &lt;a href=&quot;http://www.rvantwisk.nl/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rvantwisk.nl/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;skype: callto://r.vantwisk
&lt;br&gt;Phone: +1-810-476-4196 &amp;nbsp; &amp;nbsp;Cell: +593 9901 7694 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SIP: &amp;nbsp;
&lt;br&gt;+1-747-690-5133
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26224565&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Over-2Million-images-rendering-using-GIFBUILDER-%28but-not-all-at-once...%29-tp26224565p26224565.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25929388</id>
	<title>Mailinglist server scheduled maintenance</title>
	<published>2009-10-16T10:33:39Z</published>
	<updated>2009-10-16T10:33:39Z</updated>
	<author>
		<name>Ingmar Schlecht</name>
	</author>
	<content type="html">Dear mailinglist and newsgroup users,
&lt;br&gt;&lt;br&gt;as announced earlier at [1], the mailinglist and newsgroup server at
&lt;br&gt;lists.netfielders.de will be unavailable from Friday, 16th October,
&lt;br&gt;20:00 CEST until Sunday, 18th October, 20:00 CEST due to moving the
&lt;br&gt;server to a new hosting provider.
&lt;br&gt;&lt;br&gt;We apologize for any inconvenience and hope for your patience. If
&lt;br&gt;necessary, we will provide status updates on &lt;a href=&quot;http://twitter.com/typo3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/typo3&lt;/a&gt;&lt;br&gt;and will issue an announcement once the server is running again at
&lt;br&gt;&lt;a href=&quot;http://news.typo3.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://news.typo3.org&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;- The server admin team (Sebastian, Michael and Ingmar)
&lt;br&gt;&lt;br&gt;[1]
&lt;br&gt;&lt;a href=&quot;http://news.typo3.org/news/article/mailinglist-server-scheduled-maintenance/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://news.typo3.org/news/article/mailinglist-server-scheduled-maintenance/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25929388&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mailinglist-server-scheduled-maintenance-tp25929388p25929388.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25928675</id>
	<title>Re: KickStarter RTE field(backEnd) to HTML code (FrontEnd)</title>
	<published>2009-10-16T09:51:38Z</published>
	<updated>2009-10-16T09:51:38Z</updated>
	<author>
		<name>Stefan Beylen-2</name>
	</author>
	<content type="html">Sebastiaan van Parijs schrieb:
&lt;br&gt;&amp;gt; Anybody know the function?
&lt;br&gt;&lt;br&gt;$this-&amp;gt;pi_RTEcssText($text)
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25928675&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/KickStarter-RTE-field%28backEnd%29-to-HTML-code-%28FrontEnd%29-tp25803127p25928675.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25925068</id>
	<title>Re: T3X snaphots available</title>
	<published>2009-10-16T05:57:39Z</published>
	<updated>2009-10-16T05:57:39Z</updated>
	<author>
		<name>Steffen Kamper-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Bernhard Kraft schrieb:
&lt;br&gt;&amp;gt; This feature should probably get announced at some more prominent place,
&lt;br&gt;&amp;gt; than just in this mailinglist!!!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;absolutely - should be on forge startpage!
&lt;br&gt;&lt;br&gt;vg Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25925068&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/T3X-snaphots-available-tp25124011p25925068.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25924866</id>
	<title>Re: T3X snaphots available</title>
	<published>2009-10-16T05:42:29Z</published>
	<updated>2009-10-16T05:42:29Z</updated>
	<author>
		<name>Bernhard Kraft-2</name>
	</author>
	<content type="html">Andreas schrieb:
&lt;br&gt;&lt;br&gt;&amp;gt; for TYPO3 extensions developed on forge.typo3.org development snaphots
&lt;br&gt;&amp;gt; are available as T3X packages now.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The packages are created for each project's trunk and branches.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The packages will be created once a week during the weekend.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The packages are available on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://sourceforge.net/projects/typo3xdev/files/T3X/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/projects/typo3xdev/files/T3X/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Hi Andreas!
&lt;br&gt;&lt;br&gt;Also thanks for this service. I had such a service up and running back
&lt;br&gt;some years ago, when extension development was still done on sourceforge
&lt;br&gt;/ typo3xdev.
&lt;br&gt;&lt;br&gt;But at some time I had to close it down, cause sourceforge blocked my IP
&lt;br&gt;for the CVS services ;) Hope this wont happen for forge.
&lt;br&gt;&lt;br&gt;How do you create the T3X files out of the svn checkout? I created php
&lt;br&gt;script called &amp;quot;extension-packager&amp;quot; at those times which did the job.
&lt;br&gt;&lt;br&gt;&lt;br&gt;This feature should probably get announced at some more prominent place,
&lt;br&gt;than just in this mailinglist!!!
&lt;br&gt;&lt;br&gt;&lt;br&gt;greets,
&lt;br&gt;Bernhard
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25924866&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/T3X-snaphots-available-tp25124011p25924866.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25924224</id>
	<title>Re: Clearing the cache of a single instance of a page (single view) instead of the whole page</title>
	<published>2009-10-16T04:58:21Z</published>
	<updated>2009-10-16T04:58:21Z</updated>
	<author>
		<name>Steffen Müller-4</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;On 15.10.2009 11:42 Ernesto Baschny [cron IT] wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; in the new caching framework (starting with 4.3), tt_news could &amp;quot;tag&amp;quot;
&lt;br&gt;&amp;gt; his single views with certain key e.g. (tt_news:&amp;lt;uid&amp;gt;) and then hook
&lt;br&gt;&amp;gt; into the processdatamap of TCEmain to delete these cache entries when a
&lt;br&gt;&amp;gt; tt_news record is modified.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;I just read through the classes t3lib_TCEmain and tslib_fe and the
&lt;br&gt;caching framework interface. This is the result of my exploration:
&lt;br&gt;&lt;br&gt;1) When using the caching framework, tslib_fe also supports reg1. The
&lt;br&gt;reg1 value (integer) is used as a tag of the cache entry.
&lt;br&gt;&lt;br&gt;For example this can be used by
&lt;br&gt;$GLOBALS['TSFE']-&amp;gt;page_cache_reg1 = $this-&amp;gt;piVars['tt_news']; // Example
&lt;br&gt;GETvar: &amp;tx_ttnews[tt_news]=123
&lt;br&gt;&lt;br&gt;Without caching framework:
&lt;br&gt;field reg1=123 in table cache_pages
&lt;br&gt;&lt;br&gt;With caching framework:
&lt;br&gt;cache entry has tag: reg1_123
&lt;br&gt;&lt;br&gt;This preserves backward compatibility.
&lt;br&gt;&lt;br&gt;&lt;br&gt;2) When using the caching framework, tslib_fe allows to add tags to
&lt;br&gt;$this-&amp;gt;pageCacheTags by using $this-&amp;gt;addCacheTags(array $tags)
&lt;br&gt;&lt;br&gt;That means one can use
&lt;br&gt;$GLOBALS['TSFE']-&amp;gt;addCacheTags(array('tx_ttnews_' .
&lt;br&gt;$this-&amp;gt;piVars['tt_news']); // Example GETvar: &amp;tx_ttnews[tt_news]=123
&lt;br&gt;&lt;br&gt;The result is an additional tag in the cache entry: tx_ttnews_123
&lt;br&gt;&lt;br&gt;&lt;br&gt;3) The t3lib_TCEmain API does not (yet) support clearing cache entries
&lt;br&gt;by tag. But it could be enhanced with a function clear_cache_by_tags()
&lt;br&gt;&lt;br&gt;public function clear_cache_by_tags(array $tags=array()) {
&lt;br&gt;&amp;nbsp; if (TYPO3_UseCachingFramework) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; $pageCache = $GLOBALS['typo3CacheManager']-&amp;gt;getCache(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 'cache_pages'
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; $pageSectionCache = $GLOBALS['typo3CacheManager']-&amp;gt;getCache(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 'cache_pagesection'
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; $pageCache-&amp;gt;flushByTags($tags);
&lt;br&gt;&amp;nbsp; &amp;nbsp; $pageSectionCache-&amp;gt;flushByTags($tags);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;4) Hooking into processdatamap could then call clear_cache_by_tags() to
&lt;br&gt;flush the appropriate cache entries.
&lt;br&gt;&lt;br&gt;What do you think?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;cheers,
&lt;br&gt;Steffen
&lt;br&gt;&lt;br&gt;TYPO3 Blog: &lt;a href=&quot;http://www.t3node.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.t3node.com/&lt;/a&gt;&lt;br&gt;Blubber on Twitter: &lt;a href=&quot;http://twitter.com/t3node&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/t3node&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25924224&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-the-cache-of-a-single-instance-of-a-page-%28single-view%29-instead-of-the-whole-page-tp25901175p25924224.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25923077</id>
	<title>Re: Clearing the cache of a single instance of a page (single view) instead of the whole page</title>
	<published>2009-10-16T03:18:21Z</published>
	<updated>2009-10-16T03:18:21Z</updated>
	<author>
		<name>Steffen Müller-4</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;On 15.10.2009 17:24 Steffen Gebert wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This would be really interesting. I found out, how to get out sth. by a
&lt;br&gt;&amp;gt; tag, but not how to store it using a tag.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;For general use have a look at the cache frontend interface:
&lt;br&gt;&lt;a href=&quot;http://flow3.typo3.org/fileadmin/API/FLOW3/F3/FLOW3/Cache/Frontend/interface-FrontendInterface.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://flow3.typo3.org/fileadmin/API/FLOW3/F3/FLOW3/Cache/Frontend/interface-FrontendInterface.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;set(string $entryIdentifier, mixed $data, array $tags=array(), integer
&lt;br&gt;$lifetime=NULL)
&lt;br&gt;&lt;br&gt;$tags array is used to add tags to the cache entry.
&lt;br&gt;&lt;br&gt;You can find an example in t3lib_TStemplate-&amp;gt;start() where set() is
&lt;br&gt;using two tags:
&lt;br&gt;array(
&lt;br&gt;&amp;nbsp; 'pageId_' . intval($GLOBALS['TSFE']-&amp;gt;id),
&lt;br&gt;&amp;nbsp; 'mpvarHash_' . $mpvarHash
&lt;br&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;cheers,
&lt;br&gt;Steffen
&lt;br&gt;&lt;br&gt;TYPO3 Blog: &lt;a href=&quot;http://www.t3node.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.t3node.com/&lt;/a&gt;&lt;br&gt;Blubber on Twitter: &lt;a href=&quot;http://twitter.com/t3node&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/t3node&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25923077&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-the-cache-of-a-single-instance-of-a-page-%28single-view%29-instead-of-the-whole-page-tp25901175p25923077.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25922885</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T03:00:48Z</published>
	<updated>2009-10-16T03:00:48Z</updated>
	<author>
		<name>Martin Kutschker-7</name>
	</author>
	<content type="html">Oliver Klee schrieb:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Steffen Kamper schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You echo stuff out on live client projects?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; That's so Rambo... respect :)
&lt;br&gt;&amp;gt;&amp;gt; be aware of the austrian rambo :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks, guys, you've just put a big grin on my face. :-))
&lt;br&gt;&lt;br&gt;And I'll wipe it off your face ;)
&lt;br&gt;&lt;br&gt;Masi
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25922885&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25922885.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25922814</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T02:55:50Z</published>
	<updated>2009-10-16T02:55:50Z</updated>
	<author>
		<name>Oliver Klee-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Steffen Kamper schrieb:
&lt;br&gt;&amp;gt; Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;br&gt;&amp;gt;&amp;gt; You echo stuff out on live client projects?
&lt;br&gt;&amp;gt;&amp;gt; That's so Rambo... respect :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; be aware of the austrian rambo :)
&lt;br&gt;&lt;br&gt;Thanks, guys, you've just put a big grin on my face. :-))
&lt;br&gt;&lt;br&gt;&lt;br&gt;Oli
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25922814&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25922814.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25922813</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T02:55:31Z</published>
	<updated>2009-10-16T02:55:31Z</updated>
	<author>
		<name>Martin Kutschker-7</name>
	</author>
	<content type="html">Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;br&gt;&amp;gt; Martin Kutschker schrieb:
&lt;br&gt;&amp;gt;&amp;gt; * Actually I never use it. I usually make manually calls to
&lt;br&gt;&amp;gt;&amp;gt; t3lib_div::print_array as I am too lazy
&lt;br&gt;&amp;gt;&amp;gt; to setup the devIP :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You echo stuff out on live client projects?
&lt;br&gt;&amp;gt; That's so Rambo... respect :)
&lt;br&gt;&lt;br&gt;No, not live sites. Though on a live sites you can embed th output of print_r() within an HTML comment.
&lt;br&gt;&lt;br&gt;Masi
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25922813&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25922813.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25922365</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T02:21:09Z</published>
	<updated>2009-10-16T02:21:09Z</updated>
	<author>
		<name>Steffen Kamper-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;br&gt;&amp;gt; You echo stuff out on live client projects?
&lt;br&gt;&amp;gt; That's so Rambo... respect :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;be aware of the austrian rambo :)
&lt;br&gt;&lt;br&gt;vg Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25922365&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25922365.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25922019</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T01:53:46Z</published>
	<updated>2009-10-16T01:53:46Z</updated>
	<author>
		<name>Georg Ringer-2</name>
	</author>
	<content type="html">Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;br&gt;&amp;gt; Martin Kutschker schrieb:
&lt;br&gt;&amp;gt;&amp;gt; * Actually I never use it. I usually make manually calls to 
&lt;br&gt;&amp;gt;&amp;gt; t3lib_div::print_array as I am too lazy
&lt;br&gt;&amp;gt;&amp;gt; to setup the devIP :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You echo stuff out on live client projects?
&lt;br&gt;&amp;gt; That's so Rambo... respect :)
&lt;br&gt;&lt;br&gt;maybe all his live client projects are bugfree? ;)
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25922019&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25922019.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25921963</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-16T01:48:23Z</published>
	<updated>2009-10-16T01:48:23Z</updated>
	<author>
		<name>Mathias Schreiber [wmdb &gt;]</name>
	</author>
	<content type="html">Martin Kutschker schrieb:
&lt;br&gt;&amp;gt; * Actually I never use it. I usually make manually calls to t3lib_div::print_array as I am too lazy
&lt;br&gt;&amp;gt; to setup the devIP :)
&lt;br&gt;&lt;br&gt;You echo stuff out on live client projects?
&lt;br&gt;That's so Rambo... respect :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;TYPO3 certified interogator
&lt;br&gt;T3DD09 Entertainer
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25921963&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25921963.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25915727</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-15T13:44:32Z</published>
	<updated>2009-10-15T13:44:32Z</updated>
	<author>
		<name>Martin Kutschker-7</name>
	</author>
	<content type="html">Steffen Kamper schrieb:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; debug has to be initialized that early to allow debug extensions to hook
&lt;br&gt;&amp;gt; in, so config_default is a good place for.
&lt;br&gt;&lt;br&gt;I see no good reason to have a function in config_default.php. There are other ways to have it
&lt;br&gt;available early. And the fact that it isn't scoped in a class or at least prefix (eg t3_debug)
&lt;br&gt;doesn't make it more attractive to me. *
&lt;br&gt;&lt;br&gt;But the whole config_default.php stinks and should be refactored. There's too much code in ot that's
&lt;br&gt;not configuration, let alone a default configuration.
&lt;br&gt;&lt;br&gt;Masi
&lt;br&gt;&lt;br&gt;* Actually I never use it. I usually make manually calls to t3lib_div::print_array as I am too lazy
&lt;br&gt;to setup the devIP :)
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915727&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25915727.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25915588</id>
	<title>Re: How to handle debug()</title>
	<published>2009-10-15T13:34:22Z</published>
	<updated>2009-10-15T13:34:22Z</updated>
	<author>
		<name>Steffen Kamper-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Felix Oertel schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi everyone,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; as I can see, the debug() function in config_default is the one to be 
&lt;br&gt;&amp;gt; used by now. It checks for global errorhandling 
&lt;br&gt;&amp;gt; ($GLOABALS['error']-&amp;gt;debug()) and provides a fallback to 
&lt;br&gt;&amp;gt; t3lib_div::debug().
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I think it would be a good idea to move debug() into a namespace 
&lt;br&gt;&amp;gt; (providing a dummy-function for compatibility reasons) and remove all 
&lt;br&gt;&amp;gt; direct usage of t3lib_div::debug() from the code.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would do that, just wondred what you guys are thinking.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards, Felix
&lt;/div&gt;&lt;br&gt;i don't see a need for. And where is t3lib_div::debug() used in core?
&lt;br&gt;&lt;br&gt;debug has to be initialized that early to allow debug extensions to hook 
&lt;br&gt;in, so config_default is a good place for.
&lt;br&gt;&lt;br&gt;vg Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915588&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25915588.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25915212</id>
	<title>How to handle debug()</title>
	<published>2009-10-15T13:05:31Z</published>
	<updated>2009-10-15T13:05:31Z</updated>
	<author>
		<name>Felix Oertel-3</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;&lt;br&gt;as I can see, the debug() function in config_default is the one to be 
&lt;br&gt;used by now. It checks for global errorhandling 
&lt;br&gt;($GLOABALS['error']-&amp;gt;debug()) and provides a fallback to t3lib_div::debug().
&lt;br&gt;&lt;br&gt;I think it would be a good idea to move debug() into a namespace 
&lt;br&gt;(providing a dummy-function for compatibility reasons) and remove all 
&lt;br&gt;direct usage of t3lib_div::debug() from the code.
&lt;br&gt;&lt;br&gt;I would do that, just wondred what you guys are thinking.
&lt;br&gt;&lt;br&gt;Regards, Felix
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-handle-debug%28%29-tp25915212p25915212.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25915143</id>
	<title>Re: can't select time in datepicker on pages?</title>
	<published>2009-10-15T13:00:49Z</published>
	<updated>2009-10-15T13:00:49Z</updated>
	<author>
		<name>Steffen Gebert</name>
	</author>
	<content type="html">Am 15.10.2009, 21:55 Uhr, schrieb Georg Ringer &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915143&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mail-spam@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Wiel, J.A.M. van de schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Just my 2 cts: I have quite a few pages with a very short cache &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; lifetime of just a few minutes. A date-time field could be beneficial &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; in this situation, I've even patched my core for this purpose &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; sometimes. Making this field more precise would get a big +1 from me. &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; If it would be at all possible to fire a clearCacheCmd when the time &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; comes it would be really great (I vaguely remember reading something &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; about events being a feature in 4.3).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ext nf_date2datetime
&lt;/div&gt;&lt;br&gt;Anybody willing to provide a patch?
&lt;br&gt;IMHO this is a missing mini-mini-feature we could get into 4.3?
&lt;br&gt;&lt;br&gt;Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915143&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/can%27t-select-time-in-datepicker-on-pages--tp25821220p25915143.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25915073</id>
	<title>Re: can't select time in datepicker on pages?</title>
	<published>2009-10-15T12:55:50Z</published>
	<updated>2009-10-15T12:55:50Z</updated>
	<author>
		<name>Georg Ringer</name>
	</author>
	<content type="html">Wiel, J.A.M. van de schrieb:
&lt;br&gt;&amp;gt; Just my 2 cts: I have quite a few pages with a very short cache lifetime of just a few minutes. A date-time field could be beneficial in this situation, I've even patched my core for this purpose sometimes. Making this field more precise would get a big +1 from me. If it would be at all possible to fire a clearCacheCmd when the time comes it would be really great (I vaguely remember reading something about events being a feature in 4.3).
&lt;br&gt;&lt;br&gt;ext nf_date2datetime
&lt;br&gt;&lt;br&gt;georg
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25915073&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/can%27t-select-time-in-datepicker-on-pages--tp25821220p25915073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25914892</id>
	<title>Re: can't select time in datepicker on pages?</title>
	<published>2009-10-15T12:48:05Z</published>
	<updated>2009-10-15T12:48:05Z</updated>
	<author>
		<name>Wiel, J.A.M. van de</name>
	</author>
	<content type="html">Just my 2 cts: I have quite a few pages with a very short cache lifetime of just a few minutes. A date-time field could be beneficial in this situation, I've even patched my core for this purpose sometimes. Making this field more precise would get a big +1 from me. If it would be at all possible to fire a clearCacheCmd when the time comes it would be really great (I vaguely remember reading something about events being a feature in 4.3).
&lt;br&gt;&lt;br&gt;Bas
&lt;br&gt;________________________________________
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3-dev-bounces@...&lt;/a&gt; [&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3-dev-bounces@...&lt;/a&gt;] On Behalf Of Steffen Gebert [&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steffen@...&lt;/a&gt;]
&lt;br&gt;Sent: Thursday, October 15, 2009 9:38 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3-dev@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [TYPO3-dev] can't select time in datepicker on pages?
&lt;br&gt;&lt;br&gt;Am 15.10.2009, 21:24 Uhr, schrieb Martin Holtz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; in 4.3-trunk i am not able to select a time in starttime/stoptime of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pages.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is that intentional?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Yes, because it's a date field (and not a date-time filed).
&lt;br&gt;&amp;gt; ah. i thought it is an date-time field by default in pages and wondered
&lt;br&gt;&amp;gt; why
&lt;br&gt;&amp;gt; it has been changed to an date field in 4.3...
&lt;br&gt;&lt;br&gt;What question remains is: Why is it only a date field?
&lt;br&gt;&lt;br&gt;I know that (thanks to caching) TYPO3 wouldn't exactly adopt the access
&lt;br&gt;limitations at the set minute - but there's also no guarantee that it atm
&lt;br&gt;does it at exactly 0:00 h.
&lt;br&gt;&lt;br&gt;So why not change it to date-time?
&lt;br&gt;&lt;br&gt;Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914892&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/can%27t-select-time-in-datepicker-on-pages--tp25821220p25914892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25914758</id>
	<title>Re: can't select time in datepicker on pages?</title>
	<published>2009-10-15T12:38:21Z</published>
	<updated>2009-10-15T12:38:21Z</updated>
	<author>
		<name>Steffen Gebert</name>
	</author>
	<content type="html">Am 15.10.2009, 21:24 Uhr, schrieb Martin Holtz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914758&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; in 4.3-trunk i am not able to select a time in starttime/stoptime of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pages.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is that intentional?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Yes, because it's a date field (and not a date-time filed).
&lt;br&gt;&amp;gt; ah. i thought it is an date-time field by default in pages and wondered &amp;nbsp;
&lt;br&gt;&amp;gt; why
&lt;br&gt;&amp;gt; it has been changed to an date field in 4.3...
&lt;br&gt;&lt;br&gt;What question remains is: Why is it only a date field?
&lt;br&gt;&lt;br&gt;I know that (thanks to caching) TYPO3 wouldn't exactly adopt the access &amp;nbsp;
&lt;br&gt;limitations at the set minute - but there's also no guarantee that it atm &amp;nbsp;
&lt;br&gt;does it at exactly 0:00 h.
&lt;br&gt;&lt;br&gt;So why not change it to date-time?
&lt;br&gt;&lt;br&gt;Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914758&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/can%27t-select-time-in-datepicker-on-pages--tp25821220p25914758.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25914538</id>
	<title>Re: can't select time in datepicker on pages?</title>
	<published>2009-10-15T12:24:08Z</published>
	<updated>2009-10-15T12:24:08Z</updated>
	<author>
		<name>Martin Holtz</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; in 4.3-trunk i am not able to select a time in starttime/stoptime of
&lt;br&gt;&amp;gt;&amp;gt; pages.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is that intentional?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes, because it's a date field (and not a date-time filed).
&lt;br&gt;ah. i thought it is an date-time field by default in pages and wondered why 
&lt;br&gt;it has been changed to an date field in 4.3...
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;martin
&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://wiki.typo3.org/Ts45min&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.typo3.org/Ts45min&lt;/a&gt;&amp;nbsp;- TypoScript in &amp;quot;45&amp;quot; Minutes
&lt;br&gt;&lt;a href=&quot;http://wiki.typo3.org/De:ts45min&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.typo3.org/De:ts45min&lt;/a&gt;&amp;nbsp;- (auch in Deutsch)
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914538&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/can%27t-select-time-in-datepicker-on-pages--tp25821220p25914538.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25912004</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T09:35:20Z</published>
	<updated>2009-10-15T09:35:20Z</updated>
	<author>
		<name>Francois Suter-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;gt; there is no subproject th_mailformplus. The bugs regarding 
&lt;br&gt;&amp;gt; th_mailformplus are filed under &amp;quot;other extensions&amp;quot;, so I would have to 
&lt;br&gt;&amp;gt; subscribe to the RSS feed of the whole subproject and receive approx. 
&lt;br&gt;&amp;gt; 98.5% irrelevant infos :-)
&lt;br&gt;&lt;br&gt;Sorry, I misunderstood what you meant. I had forgotten about that &amp;quot;catch 
&lt;br&gt;all&amp;quot; project. I agree that it should actually be closed now that we have 
&lt;br&gt;Forge, but the cleanup might not be so easy.
&lt;br&gt;&lt;br&gt;One thing to write down in the TODO list for after the 4.3 release ;-)
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Francois Suter
&lt;br&gt;Cobweb Development Sarl - &lt;a href=&quot;http://www.cobweb.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cobweb.ch&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25912004&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25912004.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25911371</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T09:02:40Z</published>
	<updated>2009-10-15T09:02:40Z</updated>
	<author>
		<name>Reinhard Führicht-2</name>
	</author>
	<content type="html">Francois Suter schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Reinhard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; In my opinion, bugs.typo3.org should be ONLY for core related bugs 
&lt;br&gt;&amp;gt;&amp;gt; like the core itself and sysexts.
&lt;br&gt;&amp;gt;&amp;gt; Any community extension should use Forge for this because this is what 
&lt;br&gt;&amp;gt;&amp;gt; Forge is for.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; bugs.typo3.org existed way before Forge. At the time it was convenient - 
&lt;br&gt;&amp;gt; for ext developers who wanted it - to share the TYPO3 bugtracker for 
&lt;br&gt;&amp;gt; their own extensions. It is entirely possible to close down the 
&lt;br&gt;&amp;gt; th_mailformplus subproject on bugs.typo3.org, but you would first have 
&lt;br&gt;&amp;gt; to make sure that all bugs on bugs.typo3.org related to th_mailformplus 
&lt;br&gt;&amp;gt; either exist on Forge too or can be closed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; We can't force extension developers to move to Forge and - for some 
&lt;br&gt;&amp;gt; extensions - it is really difficult because there's such a history on 
&lt;br&gt;&amp;gt; bugs.typo3.org.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And about being warned about new bugs, I miss that too, but found that 
&lt;br&gt;&amp;gt; there's a RSS feed for each project/subproject. You can subscribe to 
&lt;br&gt;&amp;gt; that, it's better than nothing.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; HTH
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Hi Francois,
&lt;br&gt;&lt;br&gt;there is no subproject th_mailformplus. The bugs regarding 
&lt;br&gt;th_mailformplus are filed under &amp;quot;other extensions&amp;quot;, so I would have to 
&lt;br&gt;subscribe to the RSS feed of the whole subproject and receive approx. 
&lt;br&gt;98.5% irrelevant infos :-)
&lt;br&gt;&lt;br&gt;Of course bugs.typo3.org existed way before Forge, I know. But it would 
&lt;br&gt;be nice to some kind of cleanup and move projects from bugs.typo3.org to 
&lt;br&gt;Forge. And I am aware of the fact, that this is no easy task, but the 
&lt;br&gt;authors of the extension could be contacted and asked (not forced) to do 
&lt;br&gt;that.
&lt;br&gt;I am sure there are many subprojects on bugs.typo3.org which have a 
&lt;br&gt;bugtracker on Forge too, so it should be possible to manually move bugs 
&lt;br&gt;to Forge.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;mit freundlichen Grüßen,
&lt;br&gt;&lt;br&gt;Reinhard Führicht MSc
&lt;br&gt;Entwickler
&lt;br&gt;&lt;br&gt;---------------------------------------------------
&lt;br&gt;&lt;br&gt;TYPOHEADS
&lt;br&gt;WEB ENGINEERING
&lt;br&gt;www.typoheads.at
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911371&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25911371.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25911262</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T08:55:07Z</published>
	<updated>2009-10-15T08:55:07Z</updated>
	<author>
		<name>Francois Suter-3</name>
	</author>
	<content type="html">Hi Reinhard,
&lt;br&gt;&lt;br&gt;&amp;gt; In my opinion, bugs.typo3.org should be ONLY for core related bugs like 
&lt;br&gt;&amp;gt; the core itself and sysexts.
&lt;br&gt;&amp;gt; Any community extension should use Forge for this because this is what 
&lt;br&gt;&amp;gt; Forge is for.
&lt;br&gt;&lt;br&gt;bugs.typo3.org existed way before Forge. At the time it was convenient - 
&lt;br&gt;for ext developers who wanted it - to share the TYPO3 bugtracker for 
&lt;br&gt;their own extensions. It is entirely possible to close down the 
&lt;br&gt;th_mailformplus subproject on bugs.typo3.org, but you would first have 
&lt;br&gt;to make sure that all bugs on bugs.typo3.org related to th_mailformplus 
&lt;br&gt;either exist on Forge too or can be closed.
&lt;br&gt;&lt;br&gt;We can't force extension developers to move to Forge and - for some 
&lt;br&gt;extensions - it is really difficult because there's such a history on 
&lt;br&gt;bugs.typo3.org.
&lt;br&gt;&lt;br&gt;And about being warned about new bugs, I miss that too, but found that 
&lt;br&gt;there's a RSS feed for each project/subproject. You can subscribe to 
&lt;br&gt;that, it's better than nothing.
&lt;br&gt;&lt;br&gt;HTH
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Francois Suter
&lt;br&gt;Cobweb Development Sarl - &lt;a href=&quot;http://www.cobweb.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cobweb.ch&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911262&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25911262.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25911093</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T08:49:06Z</published>
	<updated>2009-10-15T08:49:06Z</updated>
	<author>
		<name>Reinhard Führicht-2</name>
	</author>
	<content type="html">Mathias Schreiber [wmdb &amp;gt;] schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Staffan Ericsson schrieb:
&lt;br&gt;&amp;gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I suggest that bugs.typo3.org is closed down as soon as possible. As I
&lt;br&gt;&amp;gt;&amp;gt; watch the summary page I notice 3648 open bugs! In the core there is
&lt;br&gt;&amp;gt;&amp;gt; 1971 open bugs alone and 1202 resolved but unclosed bugs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is because we set bugs to &amp;quot;resolved&amp;quot; first and then close them down 
&lt;br&gt;&amp;gt; lateron (which is only a usability thing).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Next up I walked through the bugtracker and would close down at least 
&lt;br&gt;&amp;gt; 50% of all reported bugs with the remark &amp;quot;user generated error&amp;quot;.
&lt;br&gt;&amp;gt; Guess what: They are open less than 24 hrs later :)
&lt;br&gt;&amp;gt; Reason: folks unlikely see that things are their mistake.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; As it is apparent that bugs.typo3 is not used and bugs reported thru
&lt;br&gt;&amp;gt;&amp;gt; that medium is not handled by the typo3 community. As bugs.typo3.org is
&lt;br&gt;&amp;gt;&amp;gt; a blackhole when it comes to bugs it's better to simply close it down
&lt;br&gt;&amp;gt;&amp;gt; that give false hope to all bug reporters.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; To the outside this might be true.
&lt;br&gt;&amp;gt; It is very difficult to communicate how bugs are handled within the 
&lt;br&gt;&amp;gt; TYPO3 project.
&lt;br&gt;&amp;gt; Bugs are reported.
&lt;br&gt;&amp;gt; Bugs are then either taken up by some of the cool folks at the bug days 
&lt;br&gt;&amp;gt; (thank you guys btw.) and provided with patches or the one who found the 
&lt;br&gt;&amp;gt; bug supplies a patch.
&lt;br&gt;&amp;gt; These bugs are then transmitted to the Core Mailing List where they need 
&lt;br&gt;&amp;gt; positive reviews so we can circumvent that patch A brings up bugs B, C 
&lt;br&gt;&amp;gt; and D.
&lt;br&gt;&amp;gt; This works in 95% of all cases (which is pretty good, compared to other 
&lt;br&gt;&amp;gt; systems).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; There is an unhealthy rush in the TYPO3 development team towards new
&lt;br&gt;&amp;gt;&amp;gt; functionality and gold plating. The community needs to change focus
&lt;br&gt;&amp;gt;&amp;gt; towards usablitity and bug fixing. Stop all new development until the
&lt;br&gt;&amp;gt;&amp;gt; number of open bugs is below 100!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I think you might not have attended the TYPO3 Developer Days or whatched 
&lt;br&gt;&amp;gt; the videos so I won't blame you for not knowing:
&lt;br&gt;&amp;gt; The next TYPO3 releases will:
&lt;br&gt;&amp;gt; a) have a far quicker release cycle (6 months)
&lt;br&gt;&amp;gt; b) focus on 90% bugfixing and &amp;quot;convinience things&amp;quot; and 10% new features
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; These are of course estimates and only a future plan but all in all it 
&lt;br&gt;&amp;gt; should satisfy your demand.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If you have any ideas how to improve outside communication or make the 
&lt;br&gt;&amp;gt; current ways to handle things more transparent you can either get in 
&lt;br&gt;&amp;gt; touch with Peter Pröll (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911093&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;) or me (who will then forward a 
&lt;br&gt;&amp;gt; digest of your ideas to Peter).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Just a sidenote:
&lt;br&gt;&amp;gt; TYPO3 people are very much like surfers - if you rant in their place you 
&lt;br&gt;&amp;gt; might get a bloody nose, even if the rant was not your intention.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Constructive criticism is always (!) welcome.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt; Mathias
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;What &amp;quot;bugs&amp;quot; me about the current appearance of the bugtracker is, that 
&lt;br&gt;it seems fairly unorganized.
&lt;br&gt;&lt;br&gt;Example:
&lt;br&gt;&lt;br&gt;There is a project &amp;quot;other extensions&amp;quot; where people report bugs about 
&lt;br&gt;specific extensions, in my case th_mailformplus. The problem is that the 
&lt;br&gt;extension author isn't informed about this bug in any way. I, for my 
&lt;br&gt;part, do not want people to file bugs about my extensions on 
&lt;br&gt;bugs.typo3.org because I have bugtrackers for my extensions on Forge.
&lt;br&gt;&lt;br&gt;In my opinion, bugs.typo3.org should be ONLY for core related bugs like 
&lt;br&gt;the core itself and sysexts.
&lt;br&gt;Any community extension should use Forge for this because this is what 
&lt;br&gt;Forge is for.
&lt;br&gt;&lt;br&gt;In my view, making bugs.typo3.org only for core related bugs will result 
&lt;br&gt;in less bugs and a better overview.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Just my 2 cents
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;mit freundlichen Grüßen,
&lt;br&gt;&lt;br&gt;Reinhard Führicht MSc
&lt;br&gt;Entwickler
&lt;br&gt;&lt;br&gt;---------------------------------------------------
&lt;br&gt;&lt;br&gt;TYPOHEADS
&lt;br&gt;WEB ENGINEERING
&lt;br&gt;www.typoheads.at
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911093&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25911093.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25910596</id>
	<title>Re: Clearing the cache of a single instance of a page (single view) instead of the whole page</title>
	<published>2009-10-15T08:24:17Z</published>
	<updated>2009-10-15T08:24:17Z</updated>
	<author>
		<name>Steffen Gebert</name>
	</author>
	<content type="html">Am 15.10.2009, 17:20 Uhr, schrieb Steffen Müller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910596&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;typo3@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you all for your input.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 15.10.2009 11:42 Ernesto Baschny [cron IT] wrote:
&lt;br&gt;&amp;gt;&amp;gt; in the new caching framework (starting with 4.3), tt_news could &amp;quot;tag&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; his single views with certain key e.g. (tt_news:&amp;lt;uid&amp;gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do you have an example how tagging is done in the CF?
&lt;br&gt;&amp;gt; Are there some docs on the CF API? (beside phpdoc comments)
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;This would be really interesting. I found out, how to get out sth. by a &amp;nbsp;
&lt;br&gt;tag, but not how to store it using a tag.
&lt;br&gt;&lt;br&gt;Steffen
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910596&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-the-cache-of-a-single-instance-of-a-page-%28single-view%29-instead-of-the-whole-page-tp25901175p25910596.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25910594</id>
	<title>Re: Clearing the cache of a single instance of a page (single view) instead of the whole page</title>
	<published>2009-10-15T08:20:17Z</published>
	<updated>2009-10-15T08:20:17Z</updated>
	<author>
		<name>Steffen Müller-4</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;Thank you all for your input.
&lt;br&gt;&lt;br&gt;On 15.10.2009 11:42 Ernesto Baschny [cron IT] wrote:
&lt;br&gt;&amp;gt; in the new caching framework (starting with 4.3), tt_news could &amp;quot;tag&amp;quot;
&lt;br&gt;&amp;gt; his single views with certain key e.g. (tt_news:&amp;lt;uid&amp;gt;) 
&lt;br&gt;&lt;br&gt;Do you have an example how tagging is done in the CF?
&lt;br&gt;Are there some docs on the CF API? (beside phpdoc comments)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;cheers,
&lt;br&gt;Steffen
&lt;br&gt;&lt;br&gt;TYPO3 Blog: &lt;a href=&quot;http://www.t3node.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.t3node.com/&lt;/a&gt;&lt;br&gt;Blubber on Twitter: &lt;a href=&quot;http://twitter.com/t3node&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/t3node&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910594&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-the-cache-of-a-single-instance-of-a-page-%28single-view%29-instead-of-the-whole-page-tp25901175p25910594.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25909586</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T07:20:37Z</published>
	<updated>2009-10-15T07:20:37Z</updated>
	<author>
		<name>Francois Suter-3</name>
	</author>
	<content type="html">Nice answer, Mattes, thanks.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Francois Suter
&lt;br&gt;Cobweb Development Sarl - &lt;a href=&quot;http://www.cobweb.ch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cobweb.ch&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25909586&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25909586.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25909176</id>
	<title>Re: [TYPO3-english] Closedown bugs.typo3.org</title>
	<published>2009-10-15T06:55:57Z</published>
	<updated>2009-10-15T06:55:57Z</updated>
	<author>
		<name>Mathias Schreiber [wmdb &gt;]</name>
	</author>
	<content type="html">Staffan Ericsson schrieb:
&lt;br&gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I suggest that bugs.typo3.org is closed down as soon as possible. As I
&lt;br&gt;&amp;gt; watch the summary page I notice 3648 open bugs! In the core there is
&lt;br&gt;&amp;gt; 1971 open bugs alone and 1202 resolved but unclosed bugs.
&lt;br&gt;&lt;br&gt;This is because we set bugs to &amp;quot;resolved&amp;quot; first and then close them down 
&lt;br&gt;lateron (which is only a usability thing).
&lt;br&gt;&lt;br&gt;Next up I walked through the bugtracker and would close down at least 
&lt;br&gt;50% of all reported bugs with the remark &amp;quot;user generated error&amp;quot;.
&lt;br&gt;Guess what: They are open less than 24 hrs later :)
&lt;br&gt;Reason: folks unlikely see that things are their mistake.
&lt;br&gt;&lt;br&gt;&amp;gt; As it is apparent that bugs.typo3 is not used and bugs reported thru
&lt;br&gt;&amp;gt; that medium is not handled by the typo3 community. As bugs.typo3.org is
&lt;br&gt;&amp;gt; a blackhole when it comes to bugs it's better to simply close it down
&lt;br&gt;&amp;gt; that give false hope to all bug reporters.
&lt;br&gt;&lt;br&gt;To the outside this might be true.
&lt;br&gt;It is very difficult to communicate how bugs are handled within the 
&lt;br&gt;TYPO3 project.
&lt;br&gt;Bugs are reported.
&lt;br&gt;Bugs are then either taken up by some of the cool folks at the bug days 
&lt;br&gt;(thank you guys btw.) and provided with patches or the one who found the 
&lt;br&gt;bug supplies a patch.
&lt;br&gt;These bugs are then transmitted to the Core Mailing List where they need 
&lt;br&gt;positive reviews so we can circumvent that patch A brings up bugs B, C 
&lt;br&gt;and D.
&lt;br&gt;This works in 95% of all cases (which is pretty good, compared to other 
&lt;br&gt;systems).
&lt;br&gt;&lt;br&gt;&amp;gt; There is an unhealthy rush in the TYPO3 development team towards new
&lt;br&gt;&amp;gt; functionality and gold plating. The community needs to change focus
&lt;br&gt;&amp;gt; towards usablitity and bug fixing. Stop all new development until the
&lt;br&gt;&amp;gt; number of open bugs is below 100!
&lt;br&gt;&lt;br&gt;I think you might not have attended the TYPO3 Developer Days or whatched 
&lt;br&gt;the videos so I won't blame you for not knowing:
&lt;br&gt;The next TYPO3 releases will:
&lt;br&gt;a) have a far quicker release cycle (6 months)
&lt;br&gt;b) focus on 90% bugfixing and &amp;quot;convinience things&amp;quot; and 10% new features
&lt;br&gt;&lt;br&gt;These are of course estimates and only a future plan but all in all it 
&lt;br&gt;should satisfy your demand.
&lt;br&gt;&lt;br&gt;If you have any ideas how to improve outside communication or make the 
&lt;br&gt;current ways to handle things more transparent you can either get in 
&lt;br&gt;touch with Peter Pröll (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25909176&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter@...&lt;/a&gt;) or me (who will then forward a 
&lt;br&gt;digest of your ideas to Peter).
&lt;br&gt;&lt;br&gt;Just a sidenote:
&lt;br&gt;TYPO3 people are very much like surfers - if you rant in their place you 
&lt;br&gt;might get a bloody nose, even if the rant was not your intention.
&lt;br&gt;&lt;br&gt;Constructive criticism is always (!) welcome.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;Mathias
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;TYPO3 certified interogator
&lt;br&gt;T3DD09 Entertainer
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25909176&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--TYPO3-english--Closedown-bugs.typo3.org-tp25907448p25909176.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25908871</id>
	<title>Re: sorting tt_content</title>
	<published>2009-10-15T06:43:02Z</published>
	<updated>2009-10-15T06:43:02Z</updated>
	<author>
		<name>Jigal van Hemert-3</name>
	</author>
	<content type="html">Christian Kartnig wrote:
&lt;br&gt;&amp;gt; I want to move lots of content of a site from the right column 
&lt;br&gt;&amp;gt; (colPos=2) to the bottom of the normal column (colPos=0) via a database 
&lt;br&gt;&amp;gt; query or a script.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Now I'm not sure how the sorting is done in the sorting column of 
&lt;br&gt;&amp;gt; tt_content. I want the new content to be always at the bottom.
&lt;br&gt;&lt;br&gt;A deleted item gets sorting value 1000000000
&lt;br&gt;If a record is added to the bottom of a list it will get the highest 
&lt;br&gt;sorting value (of a not deleted record) + 256.
&lt;br&gt;If a record is added to the top of a list it will get the lowest sorting 
&lt;br&gt;value devided by 2.
&lt;br&gt;If...
&lt;br&gt;&lt;br&gt;If the algorithm runs into problems it calls a resorting function.
&lt;br&gt;&lt;br&gt;You can find the algorithm and functions in 
&lt;br&gt;t3lib/class.t3lib_tcemain.php, t3lib_TCEmain::getSortNumber() and 
&lt;br&gt;t3lib_TCEmain::resorting().
&lt;br&gt;&lt;br&gt;Regards, Jigal.
&lt;br&gt;_______________________________________________
&lt;br&gt;TYPO3-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25908871&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;TYPO3-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/sorting-tt_content-tp25908370p25908871.html" />
</entry>

</feed>
