From messages at janwulff.de Sun Jun 4 02:19:20 2006 From: messages at janwulff.de (Jan Wulff) Date: Sun, 4 Jun 2006 02:19:20 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV Message-ID: Hi, I was searching for an option to not only select tags from the html head in the TV module, but also comments. This is needed to use "conditional comments" (to deliver specific stylesheets for IE), because for this purpose they have to display in the head of the page and after all other stylesheets. I found an entry in the bugtracker, according to that this feature is currently put on hold. I believe that with the upcoming release of IE 7, conditional comments will become far more important than now, because most of the usual IE hacks won't work anymore. I just wanted to make mention of this topic again. Maybe you could take a look at it, while working on the next version of TV. Thanks. Best Regards Jan From typo3 at accio.lv Mon Jun 5 09:53:55 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Mon, 05 Jun 2006 10:53:55 +0300 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Hi! Jan Wulff wrote: > I was searching for an option to not only select tags from the html head in > the TV module, but also comments. This is needed to use "conditional > comments" (to deliver specific stylesheets for IE), because for this > purpose they have to display in the head of the page and after all other > stylesheets. I found an entry in the bugtracker, according to that this > feature is currently put on hold. This was discussed already a number of times. This is not going to be implemented any soon because requires serious changes in typo3 core but not considired top priority. Try to live without hacks/conditional comments. If you create template according to standards, you will not need conditional comments. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From bedlamminusspamhotel at gmail.com Mon Jun 5 18:30:42 2006 From: bedlamminusspamhotel at gmail.com (Christopher) Date: Mon, 05 Jun 2006 09:30:42 -0700 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Dmitry Dulepov wrote: > Hi! > If you create template according to standards, you will not > need conditional comments. This is not really true. You are much more likely to encounter the /really/ weird IE bugs /while/ developing according to standards. Given the number of _fixable_ rendering bugs in various versions of IE Windows, you will eventually need to use conditional comments--they are, for example, the simplest way to deliver a separate box-model stylesheet to IE 5, or to set 'width' for IE while using 'min-width' for other browsers. They're also nice to use because they rely on the targeted browser itself to deliver alternate info--no need for complex browser-sniffing tools or even TS conditions. Not that I think the inability to use them in the Templavoila GUI is a big problem; as everyone always points out, you can just stick them in the TS: page.headerData.5 = HTML page.headerData.5 { value = @import url(IE_5.css); value.wrap = } -Christopher From messages at janwulff.de Mon Jun 5 18:48:46 2006 From: messages at janwulff.de (Jan Wulff) Date: Mon, 5 Jun 2006 18:48:46 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, > This was discussed already a number of times. This is not going to be > implemented any soon because requires serious changes in typo3 core but > not considired top priority. Thanks for the info. What about the option to not display the templavoila output at the last place in the html head? It would be fully sufficient if I could add another head entry after the templavoila output. > Try to live without hacks/conditional comments. If you create template > according to standards, you will not need conditional comments. I for my part sure do and if IE would respect the standards, I wouldn't have written this post! Just one example: The property "min-height" is a part of the CSS2 standard. IE doesn't support it and much worse, it doesn't also gets the "height" value right, because in IE a box is stretched to fit its content, regardless of the "height" value. Till now you could fight this bug with the "overflow" property and use it to substitute the missing "min-height" property. For instance with this hack: #element { min-height: 400px; height: auto; } * html #element { height: 400px; } Only IE understands the second line, so the minimum height of the box is 400px in all browsers and standard conform browser will also stretch the box, because they still get the "auto" value. In IE 7 this approach won't work anymore, because they fixed a lot of these selectors which only work in IE. But there will still be no "min-height" in IE 7! There will for sure be other bugs in the new IE, which will at last give us the option back to set a property only for the IE7. I've heard of something like "*+html" :(. But why should we start with these hacks again, if we can use a safe approach like conditional comments? It's a much cleaner way instead of writing hacks in your stylesheets. Furtermore with conditional comments the standard conform browsern don't have to read the hacks anymore and get slowed down by them. Best Regards Jan From messages at janwulff.de Mon Jun 5 18:55:13 2006 From: messages at janwulff.de (Jan Wulff) Date: Mon, 5 Jun 2006 18:55:13 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, >> If you create template according to standards, you will not >> need conditional comments. > > This is not really true. You are much more likely to encounter the > /really/ weird IE bugs /while/ developing according to standards. Exactly. > Given the number of _fixable_ rendering bugs in various versions of IE > Windows, you will eventually need to use conditional comments--they are, > for example, the simplest way to deliver a separate box-model stylesheet > to IE 5, or to set 'width' for IE while using 'min-width' for other > browsers. > > They're also nice to use because they rely on the targeted browser > itself to deliver alternate info--no need for complex browser-sniffing > tools or even TS conditions. Seeing the chaos IE 7 is about to spread, most of the well-known css sites have recommended their users to use conditional comments in the future. > Not that I think the inability to use them in the Templavoila GUI is a > big problem; as everyone always points out, you can just stick them in > the TS: > > page.headerData.5 = HTML > page.headerData.5 { > value = @import url(IE_5.css); > value.wrap = > } No, that doesn't work with TV because this is displayed before the TV output in the html head. To overwrite all other (preceding) propertys, it has to display after all other stylesheet definitions. Best Regards Jan From typo3 at accio.lv Tue Jun 6 09:42:36 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 06 Jun 2006 10:42:36 +0300 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Hi! Christopher wrote: > This is not really true. You are much more likely to encounter the > /really/ weird IE bugs /while/ developing according to standards. I did many cross-browser layouts and never had to use conditional comments. > Given the number of _fixable_ rendering bugs in various versions of IE > Windows, you will eventually need to use conditional comments--they are, > for example, the simplest way to deliver a separate box-model stylesheet > to IE 5, or to set 'width' for IE while using 'min-width' for other > browsers. IE5 is dead. According to my statistics, less than 2% of people use it. So I ignore MSIE 5. For MSIE6 a combination of "width !important", min-width and width does the trick perfectly. > Not that I think the inability to use them in the Templavoila GUI is a > big problem; as everyone always points out, you can just stick them in > the TS: So, you have to do it with TS. As I said, it is not a tv limitation but limitation of html parser in typo3 core. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From messages at janwulff.de Tue Jun 6 12:05:59 2006 From: messages at janwulff.de (Jan Wulff) Date: Tue, 6 Jun 2006 12:05:59 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi Dmitry, >> This is not really true. You are much more likely to encounter the >> /really/ weird IE bugs /while/ developing according to standards. > I did many cross-browser layouts and never had to use conditional comments. If you're ignoring IE5 and don't use floats (guillotine bug, double float-margin bug, escaping floats bug, ...) it is possible to do modern layouts without hacks, but even then you have to live with line-height and list bugs. Of course you don't have to use conditional comments, but aren't they a lot better than the usual hacks? >> Given the number of _fixable_ rendering bugs in various versions of IE >> Windows, you will eventually need to use conditional comments--they are, >> for example, the simplest way to deliver a separate box-model stylesheet >> to IE 5, or to set 'width' for IE while using 'min-width' for other >> browsers. > IE5 is dead. According to my statistics, less than 2% of people use it. > So I ignore MSIE 5. For MSIE6 a combination of "width !important", > min-width and width does the trick perfectly. I wish it would be dead, but the statistics of most of my sites (and for example of w3schools.com) are listing the IE5 (and 5.5) around 5%. A lot customers are not willing to lose 5% of their users, when even modern layouts can be adapted to the IE5 with some hacks or better, conditional comments. >> Not that I think the inability to use them in the Templavoila GUI is a >> big problem; as everyone always points out, you can just stick them in >> the TS: > So, you have to do it with TS. As I said, it is not a tv limitation but > limitation of html parser in typo3 core. I would be fully satisfied to do it with TS, but as I wrote before, the TV output is always the last one in the html head. If I could set the conditional comments via TS after the TV output, everything would be fine. Is there a way I have overlooked? Thanks. Best Regards Jan From typo3 at accio.lv Tue Jun 6 15:08:18 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 06 Jun 2006 16:08:18 +0300 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Hi! Jan Wulff wrote: > If you're ignoring IE5 and don't use floats (guillotine bug, double > float-margin bug, escaping floats bug, ...) it is possible to do modern > layouts without hacks, but even then you have to live with line-height and > list bugs. Of course you don't have to use conditional comments, but aren't > they a lot better than the usual hacks? I ignore ie5 but use floats all the time. There are several solutions to common problems, they are well known and do not require hacjs or conditional comments. > I wish it would be dead, but the statistics of most of my sites (and for > example of w3schools.com) are listing the IE5 (and 5.5) around 5%. A lot > customers are not willing to lose 5% of their users, when even modern > layouts can be adapted to the IE5 with some hacks or better, conditional > comments. Well, why not to use tables then? Much simpler and easier. It does not look logical for me to use hack only for making CSS-based design. > I would be fully satisfied to do it with TS, but as I wrote before, the TV > output is always the last one in the html head. If I could set the > conditional comments via TS after the TV output, everything would be fine. > Is there a way I have overlooked? Thanks. No... Unfortunately :( Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From messages at janwulff.de Tue Jun 6 17:25:35 2006 From: messages at janwulff.de (Jan Wulff) Date: Tue, 6 Jun 2006 17:25:35 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, >> If you're ignoring IE5 and don't use floats (guillotine bug, double >> float-margin bug, escaping floats bug, ...) it is possible to do modern >> layouts without hacks, but even then you have to live with line-height and >> list bugs. Of course you don't have to use conditional comments, but aren't >> they a lot better than the usual hacks? > I ignore ie5 but use floats all the time. There are several solutions to > common problems, they are well known and do not require hacjs or > conditional comments. I don't want to be impolite, but could you please give me an example for such a solution to the above-mentioned bugs without a hack? For all the three bugs you have to use either css-hacks or use elements in your html code, you wouldn't need in a standard-conform browser. >> I wish it would be dead, but the statistics of most of my sites (and for >> example of w3schools.com) are listing the IE5 (and 5.5) around 5%. A lot >> customers are not willing to lose 5% of their users, when even modern >> layouts can be adapted to the IE5 with some hacks or better, conditional >> comments. > Well, why not to use tables then? Much simpler and easier. It does not > look logical for me to use hack only for making CSS-based design. The era of table-based layouts should be really over and I believe that is one of the most important advancements the web has made in the last years. Tables (when used for layout instead for pure table data) destroy the semantic structure of your html, bloat up the code, hinder accessibility and hamper the maintenance of the page. You talked about standards some posts before, so I believe you know that the W3C itself strongly recommends to not use tables for layout purposes. There must be thousands of websites which describe the whole subject much better, than I can do here. Just read the W3C guidelines or start here: http://www.alistapart.com/ >> I would be fully satisfied to do it with TS, but as I wrote before, the TV >> output is always the last one in the html head. If I could set the >> conditional comments via TS after the TV output, everything would be fine. >> Is there a way I have overlooked? Thanks. > No... Unfortunately :( Ok, thanks, but shouldn't this be relative easy to implement? I mean, is there a reason why the TV output is always the last one in the html head? Best Regards Jan From bedlamminusspamhotel at gmail.com Tue Jun 6 18:12:03 2006 From: bedlamminusspamhotel at gmail.com (Christopher) Date: Tue, 06 Jun 2006 09:12:03 -0700 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Jan Wulff wrote: > Hi, > >>> If you're ignoring IE5 and don't use floats (guillotine bug, double >>> float-margin bug, escaping floats bug, ...) it is possible to do modern >>> layouts without hacks, but even then you have to live with line-height and >>> list bugs. Of course you don't have to use conditional comments, but aren't >>> they a lot better than the usual hacks? >> I ignore ie5 but use floats all the time. There are several solutions to >> common problems, they are well known and do not require hacjs or >> conditional comments. > > I don't want to be impolite, but could you please give me an example for > such a solution to the above-mentioned bugs without a hack? For all the > three bugs you have to use either css-hacks or use elements in your html > code, you wouldn't need in a standard-conform browser. I guess Dimitry is talking about fixing the various 'haslayout' bugs in IE using valid but theoretically irrelevant or incorrect css declarations. For example, to fix IE's famous 'doubled-margin-on-floated-element' bug, you can add 'display:inline;' to the floated element. This fixes the bug completely though it is _technically_ incorrect since any floated element is considered by the spec to have its 'display' property set to 'block' (it's also an entirely harmless solution except for the tiny bit of stylesheet bloat it adds). Similarly, you should be able to fix the 'escaping-floats' bug like this (untested, but ought to work...): height:1% /* for IE only... */ min-height:200px !important; /* For others... */ There are various other fixes like these--including the width/width+!important/min-width fix Dimitry mentioned--for IE bugs and quite a lot of them /can/ be added directly to a stylesheet without hacks and without requiring additional markup in the html document. However, I prefer to use conditional comments because they make stylesheet maintenance far simpler. In any case, the workaround for your problem that works /now/ (and which, I imagine you figured out a long time ago) is just to do all css calls using TS. -Christopher From typo3 at accio.lv Tue Jun 6 20:29:20 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 06 Jun 2006 21:29:20 +0300 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Hi! Jan Wulff wrote: > I don't want to be impolite, but could you please give me an example for > such a solution to the above-mentioned bugs without a hack? For all the > three bugs you have to use either css-hacks or use elements in your html > code, you wouldn't need in a standard-conform browser. Well, my native language is not English, I do not really know what names of these bugs mean. What I usually do is constantly checking with at least three browsers (msie, ff, opera) that output looks the same. This sometimes requires several DIVs, SPANs, cleaner DIV and usage of "!important" property. But it all works. I got a lot of useful knowledge about CSS from books in my language and from learning CSS Zen Garden examples. > Ok, thanks, but shouldn't this be relative easy to implement? I mean, is > there a reason why the TV output is always the last one in the html head? I answered this already two times. I wil answer once more (the last time): this is not tv problem but ptoblem of typo3 html parser, which is not in tv but inside typo3 core, which is much harder to change. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From messages at janwulff.de Tue Jun 6 23:36:24 2006 From: messages at janwulff.de (Jan Wulff) Date: Tue, 6 Jun 2006 23:36:24 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, >> I don't want to be impolite, but could you please give me an example for >> such a solution to the above-mentioned bugs without a hack? For all the >> three bugs you have to use either css-hacks or use elements in your html >> code, you wouldn't need in a standard-conform browser. > Well, my native language is not English, I do not really know what names > of these bugs mean. What I usually do is constantly checking with at > least three browsers (msie, ff, opera) that output looks the same. This > sometimes requires several DIVs, SPANs, cleaner DIV and usage of > "!important" property. But it all works. > > I got a lot of useful knowledge about CSS from books in my language and > from learning CSS Zen Garden examples. Yes, CSS Zen Garden is a really great site. I do the same, first building the site in a standard conform browser like FF, then testing in Opera, IE and other browsers. I'm building complex css-based sites for years now and I have always managed it to make them work in everything from IE 5.x upwards. That requires some hacks and good knowledge of browser bugs, but I prefer this way before interfering with a clean html structure. Using conditional comments can finally bring a solution for all the possible side-effects of css hacks, because all the special properties are only read by the buggy browsers (IE) and one can address each version of them with a single stylesheet. I guess we're just having a different point of view, so it would be senseless to quarrel about it. :) I try to use as least hacks as possible, but I rather use them instead of disrupting a clean html structure. But allow me one question: Do you know that IE7 understands the "!important" attribute? What will you do then, to apply different values for IE? >> Ok, thanks, but shouldn't this be relative easy to implement? I mean, is >> there a reason why the TV output is always the last one in the html head? > I answered this already two times. I wil answer once more (the last > time): this is not tv problem but ptoblem of typo3 html parser, which is > not in tv but inside typo3 core, which is much harder to change. Then I have misunderstood you, sorry. I though it was a problem of the parser, that it is not possible to select comments, but you mean that the order of the TV output in the html head is a problem with the html parser. Thanks. Best Regards Jan From messages at janwulff.de Tue Jun 6 23:41:33 2006 From: messages at janwulff.de (Jan Wulff) Date: Tue, 6 Jun 2006 23:41:33 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, > I guess Dimitry is talking about fixing the various 'haslayout' bugs in > IE using valid but theoretically irrelevant or incorrect css ... > However, I prefer to use conditional comments because they make > stylesheet maintenance far simpler. Thanks for writing this, but I know all of these tricks. I was asking Dmitry for a way to solve this bugs without hacks, because he said he would do it without. All solutions you were listing are hacks (the same hacks I'm using), some of them harmless, but they are hacks. I prefer them before messing up the markup, too. In short it looks like both of us have the same opinion about this subject, because I prefer conditional comments, too. Particularly with the chaos IE7 will spread. > In any case, the workaround for your problem that works /now/ (and > which, I imagine you figured out a long time ago) is just to do all css > calls using TS. Yes, but that prevents the effective use of different TV page templates. Best Regards Jan From bedlamminusspamhotel at gmail.com Wed Jun 7 01:23:43 2006 From: bedlamminusspamhotel at gmail.com (Christopher) Date: Tue, 06 Jun 2006 16:23:43 -0700 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Jan Wulff wrote: > Hi, >> I guess Dimitry is talking about fixing the various 'haslayout' bugs in >> IE using valid but theoretically irrelevant or incorrect css > ... >> However, I prefer to use conditional comments because they make >> stylesheet maintenance far simpler. > Thanks for writing this, but I know all of these tricks. I was asking > Dmitry for a way to solve this bugs without hacks, because he said he would > do it without. All solutions you were listing are hacks (the same hacks I'm > using), some of them harmless, but they are hacks. Well, I wouldn't call valid css a 'hack', even if it's excess. *shrug* >> In any case, the workaround for your problem that works /now/ (and >> which, I imagine you figured out a long time ago) is just to do all css >> calls using TS. > Yes, but that prevents the effective use of different TV page templates. Can you explain how? I've never had the least difficulty in this respect with TV. A class or id attribute on the body element for a given template--easy to do in the TV gui--allows plenty of latitude for variations (and is unaffected by the issue with the T3 html parser and conditional comments). -Christopher From typo3 at accio.lv Wed Jun 7 09:29:22 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 07 Jun 2006 10:29:22 +0300 Subject: [TYPO3-templavoila] Using conditional comments in TV In-Reply-To: References: Message-ID: Hi! Jan Wulff wrote: > But allow me one question: Do you know that IE7 understands the > "!important" attribute? What will you do then, to apply different values > for IE? I will take a look to IE7 when it comes out :) All betas of IE were not the same as final product. So I see no reason to bother right now. > Then I have misunderstood you, sorry. I though it was a problem of the > parser, that it is not possible to select comments, but you mean that the > order of the TV output in the html head is a problem with the html parser. No :) Parser does not understand comments properly + it is located in the core, thus cannot be changed easily. I am waiting for approval of much smaller core code change for two months already :) Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From f.seirer at tirol.gv.at Wed Jun 7 11:01:47 2006 From: f.seirer at tirol.gv.at (Florian Seirer) Date: Wed, 07 Jun 2006 11:01:47 +0200 Subject: [TYPO3-templavoila] Print Version: Message-ID: Hi list! I successfully made a print version like described in the TV manual. Everything's working fine so far, but typo3 uses its own meta tags (well, those from the default template of course). So in my case there's written into the source code of the print page which doesn't really mak sense. I'm looking for a way to add the line to the print version pages so that google and other search engines won't index them. Is there any way to accomplish this? There is no DS for print templates so I have no idea where else to look... BTW: I'm using typo3 v3.8.1 and TV 0.4.0 From messages at janwulff.de Wed Jun 7 12:35:33 2006 From: messages at janwulff.de (Jan Wulff) Date: Wed, 7 Jun 2006 12:35:33 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, >>> I guess Dimitry is talking about fixing the various 'haslayout' bugs in >>> IE using valid but theoretically irrelevant or incorrect css >> ... >>> However, I prefer to use conditional comments because they make >>> stylesheet maintenance far simpler. >> Thanks for writing this, but I know all of these tricks. I was asking >> Dmitry for a way to solve this bugs without hacks, because he said he would >> do it without. All solutions you were listing are hacks (the same hacks I'm >> using), some of them harmless, but they are hacks. > Well, I wouldn't call valid css a 'hack', even if it's excess. *shrug* Ok, it's a different definition. Lets exclude the "!important" feature here, I agree that it isn't a hack and it won't work to seperate IE7 anyway. But e.g. the "display:inline;" trick is not correct css, because a floating element does become a block element. In fact all browsers I know do ignore the "display:inline;" property if a float is set, but it is a contradictory command. >>> In any case, the workaround for your problem that works /now/ (and >>> which, I imagine you figured out a long time ago) is just to do all css >>> calls using TS. >> Yes, but that prevents the effective use of different TV page templates. > Can you explain how? I've never had the least difficulty in this respect > with TV. A class or id attribute on the body element for a given > template--easy to do in the TV gui--allows plenty of latitude for > variations (and is unaffected by the issue with the T3 html parser and > conditional comments). As you can imagine, the important feature is to allow my editors to change their page templates for new and existing pages and their subpages themself. Using a class or id attribute on the body to allow different stylesheets for different TV templates is a good idea, but I sometimes do have more than ten different page templates. That would result in a giant stylesheet, hard to maintain. Moreover the stylesheets transferred to the browser would be many times the size, they have to be and the browsers have to work through all this code. But it's a possible solution, yes. Unless you need to set different properties for the html element itself. ;) Best Regards Jan From messages at janwulff.de Wed Jun 7 12:47:19 2006 From: messages at janwulff.de (Jan Wulff) Date: Wed, 7 Jun 2006 12:47:19 +0200 Subject: [TYPO3-templavoila] Using conditional comments in TV References: Message-ID: Hi, >> Then I have misunderstood you, sorry. I though it was a problem of the >> parser, that it is not possible to select comments, but you mean that the >> order of the TV output in the html head is a problem with the html parser. > No :) Parser does not understand comments properly + it is located in > the core, thus cannot be changed easily. I am waiting for approval of > much smaller core code change for two months already :) Ok, thanks for the info. Best Regards Jan From albert at pod-dubon.com Wed Jun 7 14:42:08 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Wed, 07 Jun 2006 14:42:08 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox Message-ID: I just started TV. Am a beginner so various questions still to come and hope to get some help. Thanks beforehand. Made the TV site in accordance with the manual and the standard files in the TV manual extension. I wanted to change the columnwith of TDcontent in the standard template from 300 to 580px. In Firefox (even after clearing cache) nothing happens. When I opened in IE everything is fine. Albert From typo3 at accio.lv Wed Jun 7 15:02:13 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 07 Jun 2006 16:02:13 +0300 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Hi! Albert Dekker wrote: > I just started TV. Am a beginner so various questions still to come and > hope to get some help. Thanks beforehand. > > Made the TV site in accordance with the manual and the standard files in > the TV manual extension. > I wanted to change the columnwith of TDcontent in the standard template > from 300 to 580px. In Firefox (even after clearing cache) nothing > happens. When I opened in IE everything is fine. Not TV but browser issue. Browsers display content differently depending on css and quirks/standards mode. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From albert at pod-dubon.com Wed Jun 7 15:40:18 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Wed, 07 Jun 2006 15:40:18 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Dmitry Dulepov wrote: > Hi! > > Albert Dekker wrote: >> I just started TV. Am a beginner so various questions still to come >> and hope to get some help. Thanks beforehand. >> >> Made the TV site in accordance with the manual and the standard files >> in the TV manual extension. >> I wanted to change the columnwith of TDcontent in the standard >> template from 300 to 580px. In Firefox (even after clearing cache) >> nothing happens. When I opened in IE everything is fine. > > Not TV but browser issue. Browsers display content differently depending > on css and quirks/standards mode. > > Dmitry. Thank Dmitry, Found out now that in some way the link to the stylesheet was persitently refering to another location. The relative reference was not working in some way. Thanks From albert at pod-dubon.com Wed Jun 7 17:33:27 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Wed, 07 Jun 2006 17:33:27 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Albert Dekker wrote: > Dmitry Dulepov wrote: >> Hi! >> >> Albert Dekker wrote: >>> I just started TV. Am a beginner so various questions still to come >>> and hope to get some help. Thanks beforehand. >>> >>> Made the TV site in accordance with the manual and the standard files >>> in the TV manual extension. >>> I wanted to change the columnwith of TDcontent in the standard >>> template from 300 to 580px. In Firefox (even after clearing cache) >>> nothing happens. When I opened in IE everything is fine. >> >> Not TV but browser issue. Browsers display content differently >> depending on css and quirks/standards mode. >> >> Dmitry. > Thank Dmitry, > Found out now that in some way the link to the stylesheet was > persitently refering to another location. The relative reference was not > working in some way. > Thanks Anyway I keep having some problem with changes to the template and stylesheet. Is it possible to make changes to the stylesheet and the original template file after the html template has been mapped. The problem is that I do not see those changes in the rendered page. For example; I only want to change the color of something in the CSS file. However the original color still comes up. Does TV cache the html template and css during the session? If so how can I clear that cache. Bit puzzled? ALbert From info at knappmedien.de Wed Jun 7 23:10:37 2006 From: info at knappmedien.de (Tristan Knapp) Date: Wed, 7 Jun 2006 23:10:37 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox References: Message-ID: If you need to change the template - you need to remap even if you don't change anything "important". Best way to do this if you haven't changed any element container's is to simply go in and save ("Save And Return") the template on the first screen of "Update Template Mapping". The CSS is a browser issue most likely - just do a forced reload... "Albert Dekker" schrieb im Newsbeitrag news:mailman.1.1149694408.14876.typo3-project-templavoila at lists.netfielders.de... > Albert Dekker wrote: >> Dmitry Dulepov wrote: >>> Hi! >>> >>> Albert Dekker wrote: >>>> I just started TV. Am a beginner so various questions still to come and >>>> hope to get some help. Thanks beforehand. >>>> >>>> Made the TV site in accordance with the manual and the standard files >>>> in the TV manual extension. >>>> I wanted to change the columnwith of TDcontent in the standard template >>>> from 300 to 580px. In Firefox (even after clearing cache) nothing >>>> happens. When I opened in IE everything is fine. >>> >>> Not TV but browser issue. Browsers display content differently depending >>> on css and quirks/standards mode. >>> >>> Dmitry. >> Thank Dmitry, >> Found out now that in some way the link to the stylesheet was persitently >> refering to another location. The relative reference was not working in >> some way. >> Thanks > Anyway I keep having some problem with changes to the template and > stylesheet. > Is it possible to make changes to the stylesheet and the original template > file after the html template has been mapped. The problem is that I do not > see those changes in the rendered page. > For example; I only want to change the color of something in the CSS file. > However the original color still comes up. Does TV cache the html template > and css during the session? If so how can I clear that cache. > Bit puzzled? > ALbert From albert at pod-dubon.com Thu Jun 8 11:58:39 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Thu, 08 Jun 2006 11:58:39 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Tristan Knapp wrote: > If you need to change the template - you need to remap even if you don't > change anything "important". Best way to do this if you haven't changed any > element container's is to simply go in and save ("Save And Return") the > template on the first screen of "Update Template Mapping". > > The CSS is a browser issue most likely - just do a forced reload... > > > "Albert Dekker" schrieb im Newsbeitrag > news:mailman.1.1149694408.14876.typo3-project-templavoila at lists.netfielders.de... >> Albert Dekker wrote: >>> Dmitry Dulepov wrote: >>>> Hi! >>>> >>>> Albert Dekker wrote: >>>>> I just started TV. Am a beginner so various questions still to come and >>>>> hope to get some help. Thanks beforehand. >>>>> >>>>> Made the TV site in accordance with the manual and the standard files >>>>> in the TV manual extension. >>>>> I wanted to change the columnwith of TDcontent in the standard template >>>>> from 300 to 580px. In Firefox (even after clearing cache) nothing >>>>> happens. When I opened in IE everything is fine. >>>> Not TV but browser issue. Browsers display content differently depending >>>> on css and quirks/standards mode. >>>> >>>> Dmitry. >>> Thank Dmitry, >>> Found out now that in some way the link to the stylesheet was persitently >>> refering to another location. The relative reference was not working in >>> some way. >>> Thanks >> Anyway I keep having some problem with changes to the template and >> stylesheet. >> Is it possible to make changes to the stylesheet and the original template >> file after the html template has been mapped. The problem is that I do not >> see those changes in the rendered page. >> For example; I only want to change the color of something in the CSS file. >> However the original color still comes up. Does TV cache the html template >> and css during the session? If so how can I clear that cache. >> Bit puzzled? >> ALbert > > Tristan I still get inconsistent results. (I use version 4 and the newest TV 101). I did a complete remapping but then: Pages are now reading the right HTML but some pages (i did not find out any logic) do not read the CSS (ref not in source of the rendered page) and some do read the css. Probably I overlook something but you say: "Best way to do this if you haven't changed any element container's is to simply go in and save ("Save And Return") the template on the first screen of "Update Template Mapping"." The only way into the re-mapping I see is to right-click the root page (or any other), to choose view:DS/TO and then I am stuck. I nowhere see the save and return nor the update mapping. Stupid perhaps but hope you can shed light on it. Regards, Albert From typo3 at accio.lv Thu Jun 8 12:25:18 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Thu, 08 Jun 2006 13:25:18 +0300 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Hi! Albert Dekker wrote: > The only way into the re-mapping I see is to right-click the root page > (or any other), to choose view:DS/TO and then I am stuck. > I nowhere see the save and return nor the update mapping. > Stupid perhaps but hope you can shed light on it. 1. Select your sysfolder in the page tre (where you stored DS/TO) 2. Select "TemplaVoila" in the "Web" part of the very left panel 3. Now you should see list DS/TO on the right 4. Find template that you want to update 5. Click "Update mapping" 6. Ensure that you see mapping and not header parts 7. Click "Save and return" Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From albert at pod-dubon.com Thu Jun 8 12:52:05 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Thu, 08 Jun 2006 12:52:05 +0200 Subject: [TYPO3-templavoila] TV very start, difference IE and Firefox In-Reply-To: References: Message-ID: Dmitry Dulepov wrote: > Hi! > > Albert Dekker wrote: >> The only way into the re-mapping I see is to right-click the root page >> (or any other), to choose view:DS/TO and then I am stuck. >> I nowhere see the save and return nor the update mapping. >> Stupid perhaps but hope you can shed light on it. > > 1. Select your sysfolder in the page tre (where you stored DS/TO) > 2. Select "TemplaVoila" in the "Web" part of the very left panel > 3. Now you should see list DS/TO on the right > 4. Find template that you want to update > 5. Click "Update mapping" > 6. Ensure that you see mapping and not header parts > 7. Click "Save and return" > > Dmitry. Yesssss..... This helped me very much. Thanks to you and of course the Open Source philosophy. Regards, Albert From linus_cumselius at hotmail.com Thu Jun 8 16:38:29 2006 From: linus_cumselius at hotmail.com (Linus Cumselius) Date: Thu, 8 Jun 2006 16:38:29 +0200 Subject: [TYPO3-templavoila] Error creating content in adminpanel, bug!? Message-ID: Hi everybody! I just tried to create new content from the adminpanel:editing logged in as admin and got the error "object couldnt be found". I then checked where the link was pointing and noted that the adminpanel "create new content" link uses the templavoila "db_new_content_el.php" file instead of the "db_new.php" file. Thats just fine but why arent it creating new content, and why cant it find the .php file? I dont use apache normally so i dont know about any configuration error causing this and since templavoila works just fine when doing anything else i dont see why that would be the problem. So I started to wonder if an actual code error or linking error had slipped into the adminpanel templavoila patchingcode or something like that!? I've managed to reproduce the error on a clean installation of Typo3WAMP 4.0 both with IE and Firefox with templavoila 1.0.1 extension installed of course. Its just there and since my ability to actually code php and/or conduct changes in typo3 is rather limited (my area of expertise lie elsewhere ;) still a newb with typo3, lolz ) I cannot DO anything about this. :( So im asking you guys to help me. The actual file that cant be found resides at "../templavoila/mod1/db_new_content_el.php" The actual error code on the page displayed states: "The requested http adress couldnt be found on this server. The link on the previous page seems to be faulty of inaccurate. Please inform the author of the page about the error. If you believe this to be a serverside error, please inform your serverhost provider." -- Linus From f.seirer at tirol.gv.at Thu Jun 8 17:05:02 2006 From: f.seirer at tirol.gv.at (Florian Seirer) Date: Thu, 08 Jun 2006 17:05:02 +0200 Subject: [TYPO3-templavoila] Print Version: In-Reply-To: References: Message-ID: Another Post answered by myself. :-/ I couldn't fix the problem itself, the (wrong) meta tag is still there. But I wrote the line "Disallow: /*print=1" into my robots.txt. At first I was confused because the famous selfHTML tutorial told me that wildcards aren't allowed in the robots.txt. According to the robots.txt-check on http://www.google.com/webmasters/sitemaps/ at least google won't index my print version pages... Florian Seirer schrieb: > Hi list! > > I successfully made a print version like described in the TV manual. > Everything's working fine so far, but typo3 uses its own meta tags > (well, those from the default template of course). > So in my case there's > written into the source code of the > print page which doesn't really mak sense. > > I'm looking for a way to add the line > > to the print version pages so that google and other search engines won't > index them. > > Is there any way to accomplish this? There is no DS for print templates > so I have no idea where else to look... > > BTW: I'm using typo3 v3.8.1 and TV 0.4.0 From bedlamminusspamhotel at gmail.com Thu Jun 8 18:29:12 2006 From: bedlamminusspamhotel at gmail.com (Christopher) Date: Thu, 08 Jun 2006 09:29:12 -0700 Subject: [TYPO3-templavoila] Print Version: In-Reply-To: References: Message-ID: Florian Seirer wrote: > Another Post answered by myself. :-/ > > I couldn't fix the problem itself, the (wrong) meta tag is still there. > But I wrote the line "Disallow: /*print=1" into my robots.txt. > > At first I was confused because the famous selfHTML tutorial told me > that wildcards aren't allowed in the robots.txt. > > According to the robots.txt-check on > http://www.google.com/webmasters/sitemaps/ at least google won't index > my print version pages... > > Florian Seirer schrieb: >> Hi list! >> >> I successfully made a print version like described in the TV manual. >> Everything's working fine so far, but typo3 uses its own meta tags >> (well, those from the default template of course). >> So in my case there's >> written into the source code of >> the print page which doesn't really mak sense. >> >> I'm looking for a way to add the line >> >> to the print version pages so that google and other search engines >> won't index them. >> >> Is there any way to accomplish this? There is no DS for print >> templates so I have no idea where else to look... >> >> BTW: I'm using typo3 v3.8.1 and TV 0.4.0 You could also have used the same condition that you use to display the link back to the normal view from the print page: [gpVar gp:print > 1] # Assuming you have page.headerData defined # somewhere else in the main part of the template: page.headerData.100 = HTML page.headerData.100.value = [global] -Christopher From Stefan.Sabolowitsch at feltengmbh.de Sat Jun 10 16:52:43 2006 From: Stefan.Sabolowitsch at feltengmbh.de (Stefan Sabolowitsch) Date: Sat, 10 Jun 2006 16:52:43 +0200 Subject: [TYPO3-templavoila] Problems with TV and printversion Message-ID: Hallo list, I started taking a look at Templa Voila again and got stuck ... Everything worked fine until I wanted to create the print version. I followed the FTB tutorial. I created a second TO and choose the main TO in "Make this a sub-template of:" then I set the file reference and the type to printer friendly ... then i saved and exited. when I then click "Templavoila" in the context menu I get the following screen: http://www.think-open.org/kraftb/ss/1.png I click "Modify DS/TO" and get the following screen: http://www.think-open.org/kraftb/ss/2.png It seems as the DS is not loaded ... When I load the DS and then map it (is not needed as this template is similar to the already mapped) and then save it then i just have the option of saving it (updating it) over the Main TO and not over he Sub-TO created for the main. I use the newest T3 4.0 could it be that the actual TV version. Possibly an idea? Thanks for each assistance Stefan From Stefan.Sabolowitsch at feltengmbh.de Sat Jun 10 17:22:37 2006 From: Stefan.Sabolowitsch at feltengmbh.de (Stefan Sabolowitsch) Date: Sat, 10 Jun 2006 17:22:37 +0200 Subject: [TYPO3-templavoila] PHP Fatal error-string offset , Problems with TV and printversion In-Reply-To: Message-ID: Hi list, the following found in apache log file. PHP Fatal error: Cannot use string offset as an array in /daten/httpd/htdocs/it-felten/it-info/typo3conf/ext/templavoila/class.tx_tem plavoila_htmlmarkup.php on line 494, referer: http://it-info.feltengmbh.de/typo3conf/ext/templavoila/cm1/index.php?&file=% 2Fdaten%2Fhttpd%2Fhtdocs%2Fit-felten%2Fit-info%2Ffileadmin%2Ftemplates%2FTem plate_print.html Thx Stefan -----Urspr?ngliche Nachricht----- Von: typo3-project-templavoila-bounces at lists.netfielders.de [mailto:typo3-project-templavoila-bounces at lists.netfielders.de] Im Auftrag von Stefan Sabolowitsch Gesendet: Samstag, 10. Juni 2006 16:53 An: typo3-project-templavoila at lists.netfielders.de Betreff: [TYPO3-templavoila] Problems with TV and printversion Hallo list, I started taking a look at Templa Voila again and got stuck ... Everything worked fine until I wanted to create the print version. I followed the FTB tutorial. I created a second TO and choose the main TO in "Make this a sub-template of:" then I set the file reference and the type to printer friendly ... then i saved and exited. when I then click "Templavoila" in the context menu I get the following screen: http://www.think-open.org/kraftb/ss/1.png I click "Modify DS/TO" and get the following screen: http://www.think-open.org/kraftb/ss/2.png It seems as the DS is not loaded ... When I load the DS and then map it (is not needed as this template is similar to the already mapped) and then save it then i just have the option of saving it (updating it) over the Main TO and not over he Sub-TO created for the main. I use the newest T3 4.0 could it be that the actual TV version. Possibly an idea? Thanks for each assistance Stefan _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila at lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-templavoi la From mail at tpinne.de Sat Jun 10 21:12:25 2006 From: mail at tpinne.de (Tobias Pinnekamp) Date: Sat, 10 Jun 2006 21:12:25 +0200 Subject: [TYPO3-templavoila] When making a copy of a whole typo3 site, TV loses the mapping In-Reply-To: References: Message-ID: Dmitry Dulepov schrieb: > Hi! > > Tobias Pinnekamp wrote: >> I want to make a copy of an existing local typo3 site (or transfer it to >> a server - it happens the same things) TV always "forgets" the mapping. >> The DS is fine in the copy, but all mapping information is lost. >> Does anybody had the same problem or knows of it and perhaps has a >> solution? Because always mapping the fields again is not what I want. > > "Copy" is too broad term. Probably your "copy" is not correct. > > Dmitry. I tried it just another time with another project and have the same problem again. And it is even another server. The way I go is: - Make a zip of the whole typo installation - Make a sql dump - Upload the zip and the dump to the server via ftp - With putty decompress the zip and put the dump into the db - change the typo3conf via installation tool to the new server settings and then I have no more mapping information. the DS is fine but the mapping is lost. Even the timestamp of the files has not changed, and TV says is has been updated. How do you guys handle this? Copy an typo3 installation on your local machine (like a laptop) to a server? Best regards Tobias Pinnekamp From jsegars at alumni.rice.edu Mon Jun 12 17:17:42 2006 From: jsegars at alumni.rice.edu (Jeff Segars) Date: Mon, 12 Jun 2006 10:17:42 -0500 Subject: [TYPO3-templavoila] Timeline for next release? Message-ID: Dmitri, Is there any timeline in place for when the next release of TV will occur? I see that my feature request for checksums to determine template modifications has been completed and is in CVS (thanks!) so I was curious when we might see the next official release. We're planning an updated release of our TYPO3 package once 4.0.1 comes out next week, so we were hoping the new TV version might be coming out soon as well. Thanks! Jeff From typo3 at accio.lv Tue Jun 13 13:47:17 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 13 Jun 2006 14:47:17 +0300 Subject: [TYPO3-templavoila] Timeline for next release? In-Reply-To: References: Message-ID: Hi! Jeff Segars wrote: > Dmitri, > Is there any timeline in place for when the next release of TV will occur? Robert releases new version, he is project leader. > I see that my feature request for checksums to determine template > modifications has been completed and is in CVS (thanks!) so I was > curious when we might see the next official release. I plan to add one more interesting feature. May be then I ask Robert to release new version :) Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From jsegars at alumni.rice.edu Tue Jun 13 15:25:51 2006 From: jsegars at alumni.rice.edu (Jeff Segars) Date: Tue, 13 Jun 2006 08:25:51 -0500 Subject: [TYPO3-templavoila] Timeline for next release? In-Reply-To: References: Message-ID: Thanks for the update. I'll work from CVS in the meantime :) From typo3 at heissmann.org Tue Jun 13 15:36:24 2006 From: typo3 at heissmann.org (Mischa Heißmann) Date: Tue, 13 Jun 2006 15:36:24 +0200 Subject: [TYPO3-templavoila] New Template after Login Message-ID: Hello, I'd like to know if it's possible with TV to show a different template after logging in on frontend? Means: I have a standard-template using all the time as long as no fe_user is logged in. When you log in to my website, another template is shown. Can you do it with tv? Greetings, Mischa From typo3 at accio.lv Tue Jun 13 20:00:39 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 13 Jun 2006 21:00:39 +0300 Subject: [TYPO3-templavoila] New Template after Login In-Reply-To: References: Message-ID: Hi! "Mischa Hei????????????????????????????" wrote: > Can you do it with tv? Not with tv "out of box" however it is possible to change ds/to through hook. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at heissmann.org Tue Jun 13 23:04:03 2006 From: typo3 at heissmann.org (=?ISO-8859-15?Q?Mischa=20Hei=DFmann=20) Date: Tue, 13 Jun 2006 21:04:03 +0000 (UTC) Subject: [TYPO3-templavoila] New Template after Login References: Message-ID: Thanks. It's a pity. TV is a nice tool. I tried my first website with tv and need this special feature. So I changed template to old TS. In Dmitry Dulepov wrote: > Hi! > > "Mischa Hei????????????????????????????" wrote: >> Can you do it with tv? > > Not with tv "out of box" however it is possible to change ds/to > through hook. > > Dmitry. From albert at pod-dubon.com Wed Jun 14 12:26:29 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Wed, 14 Jun 2006 12:26:29 +0200 Subject: [TYPO3-templavoila] typo3 version 3.8x and TV version 1.xx compatible Message-ID: My provider (using Fantastico) does only have typo3 version 3.8x for installation via Fantastico. When I installed TV 1.01 then I got the message that TV 1.0x is only compatible with Typo3 version 4. Is this right and can I still install older versions of TV through the repository? Thanks. Albert From gideonso at livingwater.org.hk Wed Jun 14 12:34:57 2006 From: gideonso at livingwater.org.hk (Gideon So) Date: Wed, 14 Jun 2006 18:34:57 +0800 Subject: [TYPO3-templavoila] typo3 version 3.8x and TV version 1.xx compatible In-Reply-To: References: Message-ID: Hi Albert, Yes and Yes. Go to EM -> import extension -> click on templavoila -> choose the version you want. Gideon Albert Dekker wrote: > My provider (using Fantastico) does only have typo3 version 3.8x for > installation via Fantastico. When I installed TV 1.01 then I got the > message that TV 1.0x is only compatible with Typo3 version 4. > Is this right and can I still install older versions of TV through the > repository? > Thanks. > Albert From tobias at edev.dk Wed Jun 14 22:47:40 2006 From: tobias at edev.dk (=?ISO-8859-1?Q?Tobias_Gr=F8nlund?=) Date: Wed, 14 Jun 2006 22:47:40 +0200 Subject: [TYPO3-templavoila] different typoscript/wrap for different coloumns Message-ID: Hi, Im having a little problem. I have a TV page mapped with two coloumns. I want to have different wrapping (and TS in general) for the CE's in these two coloumns. How is this possible? I can't quite find the documentation, if there is any on the subject... Thanks in advance... From albert at pod-dubon.com Tue Jun 6 08:41:40 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Tue, 06 Jun 2006 08:41:40 +0200 Subject: [TYPO3-templavoila] typo3 version 3.8x and TV version 1.xx compatible In-Reply-To: References: Message-ID: Gideon So wrote: > Hi Albert, > > Yes and Yes. Go to EM -> import extension -> click on templavoila -> > choose the version you want. > > Gideon > > Albert Dekker wrote: >> My provider (using Fantastico) does only have typo3 version 3.8x for >> installation via Fantastico. When I installed TV 1.01 then I got the >> message that TV 1.0x is only compatible with Typo3 version 4. >> Is this right and can I still install older versions of TV through the >> repository? >> Thanks. >> Albert Hi Gideon, Thanks so far. Give it a try. Albert From Xatucans at gmail.com Thu Jun 15 17:36:27 2006 From: Xatucans at gmail.com (Xatucans) Date: Thu, 15 Jun 2006 17:36:27 +0200 Subject: [TYPO3-templavoila] Flexible Content Elements don't render the htlm tags Message-ID: Hi, I'm creating a site with TV and I have a problem with the Flexible Content Elements. I have created a very simple Flex Content Element with a header and a text-area (with "Text area for body text" Editing Type) . It works fine, but the problem starts when I try to insert a html text in this area, because it doesn't render the htlm tags, for example if I insert a tag like ??? , when I preview the page, instead of rendering a bold text, it write the tag. Can anybody help me, please? From typo3 at accio.lv Thu Jun 15 21:19:56 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Thu, 15 Jun 2006 22:19:56 +0300 Subject: [TYPO3-templavoila] Flexible Content Elements don't render the htlm tags In-Reply-To: References: Message-ID: Hi! Xatucans wrote: > Hi, I'm creating a site with TV and I have a problem with the Flexible > Content Elements. I have created a very simple Flex Content Element with a > header and a text-area (with "Text area for body text" Editing Type) . It > works fine, but the problem starts when I try to insert a html text in this > area, because it doesn't render the htlm tags, for example if I insert a tag > like ??? , when I preview the page, instead of rendering a > bold text, it write the tag. > > Can anybody help me, please? This behaviour is correct. There is another choice for body text, I do not remember its name but it has "RTE" in it. This is your right choice. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From webshopper at arcor.de Thu Jun 15 22:23:36 2006 From: webshopper at arcor.de (K. Zugberg) Date: Thu, 15 Jun 2006 22:23:36 +0200 Subject: [TYPO3-templavoila] FCE and UserFunc Message-ID: Hello list, I would like to use a userfunction within an FCE and transmit the value inserted in an input field to my user function. So far I'm using the following Typoscript code: text createwhatever 20.param < 10 ]]> The problem is: the value inserted in the text field is not transmitted to my function. When I debug the value I receive is "TEXT". Can anybody help me here? I would be glad to receive a hint which helps me find the solution. Thanks in advance! K. Zugberg From philipp at holdener.ch Fri Jun 16 11:03:45 2006 From: philipp at holdener.ch (Philipp Holdener) Date: Fri, 16 Jun 2006 11:03:45 +0200 Subject: [TYPO3-templavoila] Mapping dl,dt Message-ID: Hello Dimitry is there a possibility to mapp dl, dt with templavoila? It doesn't work in the version for 3.8.1 Does it work in the new one? Thanks for help Best wishes Philipp Holdener From albert at pod-dubon.com Fri Jun 16 11:05:33 2006 From: albert at pod-dubon.com (Albert Dekker) Date: Fri, 16 Jun 2006 11:05:33 +0200 Subject: [TYPO3-templavoila] typo3 version 3.8x and TV version 1.xx compatible In-Reply-To: References: Message-ID: Gideon So wrote: > Hi Albert, > > Yes and Yes. Go to EM -> import extension -> click on templavoila -> > choose the version you want. > > Gideon > > Albert Dekker wrote: >> My provider (using Fantastico) does only have typo3 version 3.8x for >> installation via Fantastico. When I installed TV 1.01 then I got the >> message that TV 1.0x is only compatible with Typo3 version 4. >> Is this right and can I still install older versions of TV through the >> repository? >> Thanks. >> Albert Thanks Gideon, Will explore. Albert From martin.ficzel at gmx.de Fri Jun 16 12:31:30 2006 From: martin.ficzel at gmx.de (Martin Ficzel) Date: Fri, 16 Jun 2006 12:31:30 +0200 Subject: [TYPO3-templavoila] different typoscript/wrap for different coloumns In-Reply-To: References: Message-ID: Tobias Gr?nlund schrieb: > Hi, > > Im having a little problem. I have a TV page mapped with two coloumns. > > I want to have different wrapping (and TS in general) for the CE's in > these two coloumns. How is this possible? I can't quite find the > documentation, if there is any on the subject... > > Thanks in advance... use the typoscript section in the datastructure for that > > > Inhaltsbereich links > > Inhaltsbereich links > > ce > 10= RECORDS > 10.source.current=1 > 10.tables = tt_content > 10.wrap=
|
> > ]]>
> 0 >
> .... > >
aditionall you can use the LOAD_REGISTER ... >>> .... RESTORE_REGISTER to change TS-Setting inside a content field if you want to change more than a wrap > > 5 = LOAD_REGISTER > 5.maxImageWidth = 394 > > 10= RECORDS > 10.source.current=1 > 10.tables = tt_content > > 15 = RESTORE_REGISTER > > 20 =< lib.artec.menu.level > > ]]> in the ts-record is a seeting > tt_content.image.20.maxW.override.data = register:maxImageWidth wich uses the changes regards Martin From Xatucans at gmail.com Fri Jun 16 15:31:06 2006 From: Xatucans at gmail.com (Xatucans) Date: Fri, 16 Jun 2006 15:31:06 +0200 Subject: [TYPO3-templavoila] Flexible Content Elements don't render the htlm tags References: Message-ID: Hi, are you talking about, htmlarea RTE extension? I try it but it doesn't work fine, it renders some tags like
, ... but for example it doesn't render the

. i don't know, perhaps I'm doing something wrong... Than you for your answer. "Dmitry Dulepov" escribi? en el mensaje news:mailman.1.1150399195.12194.typo3-project-templavoila at lists.netfielders.de... > Hi! > > Xatucans wrote: > > Hi, I'm creating a site with TV and I have a problem with the Flexible > > Content Elements. I have created a very simple Flex Content Element with a > > header and a text-area (with "Text area for body text" Editing Type) . It > > works fine, but the problem starts when I try to insert a html text in this > > area, because it doesn't render the htlm tags, for example if I insert a tag > > like ??? , when I preview the page, instead of rendering a > > bold text, it write the tag. > > > > Can anybody help me, please? > > This behaviour is correct. There is another choice for body text, I do > not remember its name but it has "RTE" in it. This is your right choice. > > Dmitry. > -- > "It is our choices, that show what we truly are, > far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Sat Jun 17 12:17:01 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Sat, 17 Jun 2006 13:17:01 +0300 Subject: [TYPO3-templavoila] FCE and UserFunc In-Reply-To: References: Message-ID: Hi! K. Zugberg wrote: > > 10 = TEXT > 10.current = 1 > 20 = USER > 20.userFunc = user_functions->createwhatever > 20.param < 10 > ]]> > > > The problem is: the value inserted in the text field is not transmitted > to my function. When I debug the value I receive is "TEXT". Can anybody > help me here? I would be glad to receive a hint which helps me find the > solution. It is is a typical trap with typoscript: you think it will give you processed value of 10 but you get string assigned to 10 (see "10=TEXT"). In other words, your code is equivalent to: 10 = TEXT 10.current = 1 20 = USER 20.userFunc = user_functions->createwhatever 20.param = TEXT So you get what you "wanted": TEXT :) Your code will not work outside of TV either. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Sat Jun 17 12:18:36 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Sat, 17 Jun 2006 13:18:36 +0300 Subject: [TYPO3-templavoila] Mapping dl,dt In-Reply-To: References: Message-ID: Hi! Philipp Holdener wrote: > is there a possibility to mapp dl, dt with templavoila? > It doesn't work in the version for 3.8.1 > > Does it work in the new one? Yes, I think they were added at some point... Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From davinci at REMOVE.mail.tdcadsl.dk Sun Jun 18 10:02:58 2006 From: davinci at REMOVE.mail.tdcadsl.dk (Jes) Date: Sun, 18 Jun 2006 10:02:58 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template Message-ID: Hello I am trying to set up the "new login box" extension on every page on my site. I am using Templa Voila (newest version) - but cannot work out how to insert that extension in the template. I know it can be done - but I just can't figure it out. Any help will be appreciated very much. Preferably in detail - since I am not a very good coder - so I need it spelled out:-) Thank you in advance - and best regards Jes Petersen From davinci at REMOVE.mail.tdcadsl.dk Sun Jun 18 10:48:07 2006 From: davinci at REMOVE.mail.tdcadsl.dk (Jes) Date: Sun, 18 Jun 2006 10:48:07 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Jes wrote: > Hello > > I am trying to set up the "new login box" extension on every page on my > site. > I am using Templa Voila (newest version) - but cannot work out how to > insert that extension in the template. > > I know it can be done - but I just can't figure it out. > > Any help will be appreciated very much. Preferably in detail - since I > am not a very good coder - so I need it spelled out:-) > > Thank you in advance - and best regards > > Jes Petersen Maybe it can be done by mapping a div in the template - and making a extension template with the correct code to display the extention. Best regards Jes From tobias at edev.dk Sun Jun 18 10:55:07 2006 From: tobias at edev.dk (=?ISO-8859-1?Q?Tobias_Gr=F8nlund?=) Date: Sun, 18 Jun 2006 10:55:07 +0200 Subject: [TYPO3-templavoila] different typoscript/wrap for different coloumns In-Reply-To: References: Message-ID: Martin Ficzel skrev: > Tobias Gr?nlund schrieb: >> Hi, >> >> Im having a little problem. I have a TV page mapped with two coloumns. >> >> I want to have different wrapping (and TS in general) for the CE's in >> these two coloumns. How is this possible? I can't quite find the >> documentation, if there is any on the subject... >> >> Thanks in advance... > > use the typoscript section in the datastructure for that > >> >> >> Inhaltsbereich links >> >> Inhaltsbereich links >> >> ce >> > 10= RECORDS >> 10.source.current=1 >> 10.tables = tt_content >> 10.wrap=

|
>> >> ]]> >> 0 >> >> > > .... >> >> > > aditionall you can use the LOAD_REGISTER ... >>> .... RESTORE_REGISTER > to change TS-Setting inside a content field if you want to change more > than a wrap > >> > >> 5 = LOAD_REGISTER >> 5.maxImageWidth = 394 >> >> 10= RECORDS >> 10.source.current=1 >> 10.tables = tt_content >> >> 15 = RESTORE_REGISTER >> >> 20 =< lib.artec.menu.level >> >> ]]> > > > in the ts-record is a seeting > >> tt_content.image.20.maxW.override.data = register:maxImageWidth > > wich uses the changes > > regards Martin thanks, I will look into that. From mail at tpinne.de Sun Jun 18 11:53:40 2006 From: mail at tpinne.de (Tobias Pinnekamp) Date: Sun, 18 Jun 2006 11:53:40 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Jes schrieb: > Jes wrote: >> Hello >> >> I am trying to set up the "new login box" extension on every page on >> my site. >> I am using Templa Voila (newest version) - but cannot work out how to >> insert that extension in the template. >> >> I know it can be done - but I just can't figure it out. >> >> Any help will be appreciated very much. Preferably in detail - since I >> am not a very good coder - so I need it spelled out:-) >> >> Thank you in advance - and best regards >> >> Jes Petersen > > Maybe it can be done by mapping a div in the template - and making a > extension template with the correct code to display the extention. > > Best regards > > Jes Hi Jes, when I want an extension on every site I map a field on a div with the type TypoScript Object Path like "lib.newloginbox" Then anywhere in your TS setup (but it must be included) you can type something like this lib.newloginbox = USER #(or USER_INT if you don't want to cache it) lib.newloginbox.userFunc = tx_newloginbox_pi1->main Maybe that there is a little more to do, but that's for a start Best regards Tobias From keiser_soze at hotmail.com Sun Jun 18 12:08:05 2006 From: keiser_soze at hotmail.com (Antonio Willybiro [awillys]) Date: Sun, 18 Jun 2006 11:08:05 +0100 Subject: [TYPO3-templavoila] Sections, Containers or just Content elements? Message-ID: Hi, The sample of my website structure is the following:
what should i use in TV to have that structure properly shown? i know that by just having a Container (CO) then all the other DIV as simple content element it will work fine. But that lead me to a Page (view) with tones of elements in the same line. i was wondering if there is a better way to stucture it. i tried CO [root - mapped to ] CO [header of the website - mapped to
] Content element [ logo - mapped to ] Content element [search box - mapped to ] Content element [loginbox - mapped to
] and i stopped there because only that was not working already. Then i tried to change the first CO [root] to a Section --> but that did not work either. Then i created a simple page template: CO [root - mapped to ] CO [main content - mapped to
] and a FCE like: CO [header of the website - mapped to
] Content element [ logo - mapped to ] Content element [search box - mapped to ] Content element [loginbox - mapped to
] it partially works, the problem i have is that it does not seem to care about my CSS and just place each content 1 below the other. Any suggestion? Regards, Antonio From davinci at REMOVE.mail.tdcadsl.dk Sun Jun 18 12:13:25 2006 From: davinci at REMOVE.mail.tdcadsl.dk (Jes) Date: Sun, 18 Jun 2006 12:13:25 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: > Hi Jes, > > when I want an extension on every site I map a field on a div with the > type TypoScript Object Path like "lib.newloginbox" > > Then anywhere in your TS setup (but it must be included) you can type > something like this > > lib.newloginbox = USER > #(or USER_INT if you don't want to cache it) > lib.newloginbox.userFunc = tx_newloginbox_pi1->main > > Maybe that there is a little more to do, but that's for a start > > > Best regards > Tobias Hi Tobias Thank you very much for your advice. Not quite working yet - so something must be missing og I have done something wrong - very likely :-) I have made a div tag and mapped it with TV - and included you code in the template setup field. But the loginbox is not showing up. Is that the exact code you har using - do you think I need to add some extra lines? Best regards Jes From mail at tpinne.de Sun Jun 18 13:43:01 2006 From: mail at tpinne.de (Tobias Pinnekamp) Date: Sun, 18 Jun 2006 13:43:01 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Jes schrieb: > >> Hi Jes, >> >> when I want an extension on every site I map a field on a div with the >> type TypoScript Object Path like "lib.newloginbox" >> >> Then anywhere in your TS setup (but it must be included) you can type >> something like this >> >> lib.newloginbox = USER >> #(or USER_INT if you don't want to cache it) >> lib.newloginbox.userFunc = tx_newloginbox_pi1->main >> >> Maybe that there is a little more to do, but that's for a start >> >> >> Best regards >> Tobias > > Hi Tobias > > Thank you very much for your advice. Not quite working yet - so > something must be missing og I have done something wrong - very likely :-) > > I have made a div tag and mapped it with TV - and included you code in > the template setup field. But the loginbox is not showing up. > > Is that the exact code you har using - do you think I need to add some > extra lines? > > Best regards > > Jes Important is, that the field you mapped in TV (the div-tag) has as option (the last select-box in the edit form) "TypoScript Object Path" and that you then update. After that a little textfield appears next to this select box with the text "lib.something". This you have to change to something you want like "lib.newloginbox". And what in this textfield is saved, you have to use here lib.newloginbox = USER #(or USER_INT if you don't want to cache it) lib.newloginbox.userFunc = tx_newloginbox_pi1->main And I don't know if this is all the code you need. Alternatively you can try this snippet: lib.newloginbox < plugin.tx_newloginbox_pi1 I hope there is now more information to get it run. From typo3 at accio.lv Sun Jun 18 19:14:10 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Sun, 18 Jun 2006 20:14:10 +0300 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Hi! Tobias Pinnekamp wrote: > Then anywhere in your TS setup (but it must be included) you can type > something like this > > lib.newloginbox = USER > #(or USER_INT if you don't want to cache it) > lib.newloginbox.userFunc = tx_newloginbox_pi1->main This is not a good way from any point. You loose all default options of newloginbox (if there are any), you define your own USER object instad of using provided by extension. Generally you should use code similar tp this: lib.newloginbox < plugin.tx_newloginbox_pi1 Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Sun Jun 18 19:16:01 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Sun, 18 Jun 2006 20:16:01 +0300 Subject: [TYPO3-templavoila] Sections, Containers or just Content elements? In-Reply-To: References: Message-ID: Hi! Antonio Willybiro [awillys] wrote: > >
>
> If logo is static, leave in template and do not map at all. > TS object path I suppose >
Same. >
>
>
Same. >
>
>
Probably, CE field. >
> Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From keiser_soze at hotmail.com Mon Jun 19 08:16:48 2006 From: keiser_soze at hotmail.com (Antonio Willybiro) Date: Mon, 19 Jun 2006 07:16:48 +0100 Subject: [TYPO3-templavoila] Sections, Containers or just Content elements? References: Message-ID: Thanks Dimitry. Everything works fine that way. Regards, Antonio "Dmitry Dulepov" wrote in message news:mailman.1.1150650961.18351.typo3-project-templavoila at lists.netfielders.de... > Hi! > > Antonio Willybiro [awillys] wrote: >> >>
>>
>> > > If logo is static, leave in template and do not map at all. > >> > > TS object path I suppose > >>
> > Same. > >>
>>
>>
> > Same. > >>
>>
>>
> > Probably, CE field. > >>
>> > > Dmitry. > -- > "It is our choices, that show what we truly are, > far more than our abilities." (A.P.W.B.D.) From x27 at e27.com Tue Jun 20 14:50:40 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Tue, 20 Jun 2006 14:50:40 +0200 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? Message-ID: hi i'm trying for days now to enable felxible content elements in my fresh typo3 4.0 and templavoila 1.0.1 page. i followed the ftb, and several website tutorials and can't find a hint to solve my problem. i've generated a pagetree with the new wizard and a running main template TO/DS structure. than i create a fexible content element and map everything. uid 1: main template and all imported wizard content -> works great uid 2: new felx CE -> maps fine the funnny thing is - i can't select this new DS in a new felxCE element! i finally hacked the uid "2" into the FCE "Data Structure:" and "Template Object:" fields, [invalid value ("2")] appears, and evrything runs fine !? there must be a single simple switch or configuration to enable the flex content (localization?). i really need a lot of flex content elements, and i have to finally decide to use TV or good old TS and some fresh content types build in php to create a very design orientated 5/4 grid layouted page. i really would prefer to use TV here (if it is stable). any ideas ? thank you very much - tim From info at knappmedien.de Tue Jun 20 15:11:58 2006 From: info at knappmedien.de (Tristan Knapp) Date: Tue, 20 Jun 2006 15:11:58 +0200 Subject: [TYPO3-templavoila] Flexible Content Elements don't render the htlm tags References: Message-ID: You need to read the documentation for htmlarea RTE. It is full of wonderful information and includes sample configurations of the editor. "Xatucans" schrieb im Newsbeitrag news:mailman.1.1150464585.31746.typo3-project-templavoila at lists.netfielders.de... > Hi, are you talking about, htmlarea RTE extension? I try it but it doesn't > work fine, it renders some tags like
, ... but for example it > doesn't render the

. i don't know, perhaps I'm doing something > wrong... > Than you for your answer. > > "Dmitry Dulepov" escribi? en el mensaje > news:mailman.1.1150399195.12194.typo3-project-templavoila at lists.netfielders.de... >> Hi! >> >> Xatucans wrote: >> > Hi, I'm creating a site with TV and I have a problem with the Flexible >> > Content Elements. I have created a very simple Flex Content Element >> > with > a >> > header and a text-area (with "Text area for body text" Editing Type) . > It >> > works fine, but the problem starts when I try to insert a html text in > this >> > area, because it doesn't render the htlm tags, for example if I insert >> > a > tag >> > like ??? , when I preview the page, instead of > rendering a >> > bold text, it write the tag. >> > >> > Can anybody help me, please? >> >> This behaviour is correct. There is another choice for body text, I do >> not remember its name but it has "RTE" in it. This is your right choice. >> >> Dmitry. >> -- >> "It is our choices, that show what we truly are, >> far more than our abilities." (A.P.W.B.D.) > > From typo3 at accio.lv Tue Jun 20 15:27:21 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 20 Jun 2006 16:27:21 +0300 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Hi! Tim Kleigrewe wrote: > the funnny thing is - i can't select this new DS in a new felxCE element! > i finally hacked the uid "2" into the FCE "Data Structure:" and > "Template Object:" fields, [invalid value ("2")] appears, and evrything > runs fine !? Are you sure you saved FCE as FCE and not as page template? > there must be a single simple switch or configuration to enable the flex > content (localization?). Search this mailing list, there was a link to localization document by Kasper. But it is not short and not easy to read at the first time. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From x27 at e27.com Tue Jun 20 15:34:58 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Tue, 20 Jun 2006 15:34:58 +0200 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: hi dimitry, i have to set "record storage page" to my "storage folder" on every page where i want to use FCE - than it works. is this the normal way TV reacts (i don't think so), i want to use them everywhere ? tim Dmitry Dulepov schrieb: > Hi! > > Tim Kleigrewe wrote: >> the funnny thing is - i can't select this new DS in a new felxCE element! >> i finally hacked the uid "2" into the FCE "Data Structure:" and >> "Template Object:" fields, [invalid value ("2")] appears, and evrything >> runs fine !? > > Are you sure you saved FCE as FCE and not as page template? > >> there must be a single simple switch or configuration to enable the flex >> content (localization?). > > Search this mailing list, there was a link to localization document by > Kasper. But it is not short and not easy to read at the first time. > > Dmitry. From typo3 at accio.lv Tue Jun 20 17:01:30 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 20 Jun 2006 18:01:30 +0300 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Hi! Tim Kleigrewe wrote: > i have to set "record storage page" to my "storage folder" on every page > where i want to use FCE - than it works. is this the normal way TV > reacts (i don't think so), i want to use them everywhere ? No, this is not normal. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From x27 at e27.com Tue Jun 20 18:21:20 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Tue, 20 Jun 2006 18:21:20 +0200 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Dmitry Dulepov schrieb: >> i have to set "record storage page" to my "storage folder" on every page >> where i want to use FCE - than it works. is this the normal way TV >> reacts (i don't think so), i want to use them everywhere ? > > No, this is not normal. i get a red warning symbol(x) on the pagetemplate tv overview: Container status: yes (X) Container element with separate localization! (ARI=3/1/0) but what does this mean? greets tim From typo3 at accio.lv Wed Jun 21 08:50:00 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 21 Jun 2006 09:50:00 +0300 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Hi! Tim Kleigrewe wrote: > i get a red warning symbol(x) on the pagetemplate tv overview: > > Container status: > yes (X) Container element with separate localization! (ARI=3/1/0) > > but what does this mean? Wrong langXXX flags in META section of your DS. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From info at knappmedien.de Wed Jun 21 09:30:06 2006 From: info at knappmedien.de (Tristan Knapp) Date: Wed, 21 Jun 2006 09:30:06 +0200 Subject: [TYPO3-templavoila] Sort Order - Section Index Message-ID: Hi List, I am having problems getting a full-blown sectionIndex (Sitemap with Section Index) working in TV. I am aware of the work-around (http://bugs.typo3.org/view.php?id=465) but it seems TO ME not to be a complete fix of the underlying problem - just a limited fix for the Sitemap Plugin (to be fair - which also was the bug...) 1.) If one adds a sitemap plugin to the container holding the tt_content elements it works 50%. It works for ME for standard Typo3 content elements but not for headlines contained within FCEs. 2.) If I add a menu within a typoscript object path (outside of the context of the tt_content records) - it can't access the REGISTER variable from the other container. Looking further on the bug tracker I found (0000551: Records sorting order - http://bugs.typo3.org/view.php?id=551) in which Robert mentions that this was fixed in TemplaVoila 1.0.0. But I am using 1.0.1 and can't seem to identify the fix. So my first question: Is this fixed and I'm missing something? I also have a second question ;) I will write an extension to fix this temporarily. I can't really figure out a way to do it consistently unless I extend tt_content and add an additional sort field. I hate having to add a field but it seems to me the only way to do this right is to implement this in the backend. Then the new sort field would be available in any other plugin. If I implement it in the front end I would need to essentially duplicate tv's rendering hierarchy, since as far as I can tell there is no way to set priority on rendering things (first render the "main" area, then this area). How would you suggest a fix could be made? Thx und Cheers, Tristan From x27 at e27.com Wed Jun 21 13:11:41 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Wed, 21 Jun 2006 13:11:41 +0200 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: hi dimtry i read the "frontend localization guide" from kasper and found good hints there, thanks ! the problem is that on "modfiy DS / TO" the complete META area is removed and has to be copied back to the xml strukture. even if you dont change anything there, thats quite confusing for a TV novice like me. if i copy back to xml 1 1 it works. the pagetree created by the wizard stays defect in case of selecting a different template without setting "general record storing" on that particular page. i tried a manual created TV pagetree beneath. FCEs works there. two questions: is it possible to build a complete website with "langDisable=1" and add a language 3month later without destroying / rebuilding the page? what is the best way to edit a created and used to/ds and keep the site running ? it seems that you have to be quite carefully there. thank you very much ! tim Dmitry Dulepov schrieb: > Hi! > > Tim Kleigrewe wrote: >> i get a red warning symbol(x) on the pagetemplate tv overview: >> >> Container status: >> yes (X) Container element with separate localization! (ARI=3/1/0) >> >> but what does this mean? > > Wrong langXXX flags in META section of your DS. > > Dmitry. From typo3 at accio.lv Wed Jun 21 13:35:02 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 21 Jun 2006 14:35:02 +0300 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Hi! Tim Kleigrewe wrote: > the problem is that on "modfiy DS / TO" the complete META area is > removed and has to be copied back to the xml strukture. even if you dont > change anything there, thats quite confusing for a TV novice like me. Why? TV warns you each time when you press "Modify DS/TO" that all manual changes will be lost. In most cases you need not to press this button at all, "Update mapping" is much better if you only want to change mapping. > the pagetree created by the wizard stays defect in case of selecting a > different template without setting "general record storing" on that > particular page. Does you PAGE object in TS setup contain "tx_templavoila_pi1->main_page" or "tx_templavoila_pi1->main_page"? > two questions: > is it possible to build a complete website with "langDisable=1" and add > a language 3month later without destroying / rebuilding the page? Yes. > what is the best way to edit a created and used to/ds and keep the site > running ? it seems that you have to be quite carefully there. I edit manually and never use "Modify DS/TO". In fact if DS is more complex than menu/content/news, I create it in xml manually, store in the separate file in fileadmin and copy to DS XML field in BE. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From x27 at e27.com Wed Jun 21 15:10:46 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Wed, 21 Jun 2006 15:10:46 +0200 Subject: [TYPO3-templavoila] fce and templavoila 1.0.1 wizard bug/problem ? In-Reply-To: References: Message-ID: Dmitry Dulepov schrieb: > Hi! > > Tim Kleigrewe wrote: >> the problem is that on "modfiy DS / TO" the complete META area is >> removed and has to be copied back to the xml strukture. even if you dont >> change anything there, thats quite confusing for a TV novice like me. > > Why? TV warns you each time when you press "Modify DS/TO" that all > manual changes will be lost. yes, but i didn't change the meta information, this is not obvious in my opinion. > In most cases you need not to press this button at all, "Update mapping" > is much better if you only want to change mapping. ok >> the pagetree created by the wizard stays defect in case of selecting a >> different template without setting "general record storing" on that >> particular page. > > Does you PAGE object in TS setup contain "tx_templavoila_pi1->main_page" > or "tx_templavoila_pi1->main_page"? page.10 = USER page.10.userFunc = tx_templavoila_pi1->main_page this was created by the wizzard and a menu, submenu, content are rendered after the wizard has finished. TV is working there but without FCEs - but i've updated the TO/DS and that seems to be the reason for that. >> two questions: >> is it possible to build a complete website with "langDisable=1" and add >> a language 3month later without destroying / rebuilding the page? > > Yes. > >> what is the best way to edit a created and used to/ds and keep the site >> running ? it seems that you have to be quite carefully there. > > I edit manually and never use "Modify DS/TO". In fact if DS is more > complex than menu/content/news, I create it in xml manually, store in > the separate file in fileadmin and copy to DS XML field in BE. i think i will try to do so too and go on testing TV and reading the docs stacking on my desk. thanx a lot! tim From gawain at camlann.de Wed Jun 21 16:37:04 2006 From: gawain at camlann.de (Christian Welzel) Date: Wed, 21 Jun 2006 16:37:04 +0200 Subject: [TYPO3-templavoila] id in tx_templavoila_flex Message-ID: hi there! when using some elements in a container tv saves these elements as xml in tx_templavoila_flex as the following:

1 www.bar.de
1 www.test.de
As you can see, these elements are not distinguishable. It there a way (perhaps a hook) or something to get an ID into that structure that makes them distinguishable (independendly from current order of items)? If not, is it possible to insert such an ID in the next release of TV? -- MfG, Christian Welzel GPG-Key: http://www.camlann.de/key.asc Fingerprint: 4F50 19BF 3346 36A6 CFA9 DBDC C268 6D24 70A1 AD15 From j.holze at bloopark.de Wed Jun 21 22:49:55 2006 From: j.holze at bloopark.de (jens holze) Date: Wed, 21 Jun 2006 22:49:55 +0200 Subject: [TYPO3-templavoila] what is local processing Message-ID: can anyone tell me about this feature ??? jens From typo3 at accio.lv Thu Jun 22 11:04:57 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Thu, 22 Jun 2006 12:04:57 +0300 Subject: [TYPO3-templavoila] id in tx_templavoila_flex In-Reply-To: References: Message-ID: Hi! Christian Welzel wrote: > when using some elements in a container tv saves these elements some elements... these elements... Not very concrete. > As you can see, these elements are not distinguishable. I van distinguish: there is one image and two links. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Thu Jun 22 11:05:20 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Thu, 22 Jun 2006 12:05:20 +0300 Subject: [TYPO3-templavoila] what is local processing In-Reply-To: References: Message-ID: Hi! jens holze wrote: > can anyone tell me about this feature ??? Sure. Read manual. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From info at knappmedien.de Thu Jun 22 11:22:09 2006 From: info at knappmedien.de (Tristan Knapp) Date: Thu, 22 Jun 2006 11:22:09 +0200 Subject: [TYPO3-templavoila] Sort Order - Section Index References: Message-ID: Can someone please confirm that my assessment is correct or tell me to read the manual if I am wrong? Thx, Tristan "Tristan Knapp" schrieb im Newsbeitrag news:mailman.1.1150875006.515.typo3-project-templavoila at lists.netfielders.de... > Hi List, > > I am having problems getting a full-blown sectionIndex (Sitemap with > Section Index) working in TV. > > I am aware of the work-around (http://bugs.typo3.org/view.php?id=465) but > it seems TO ME not to be a complete fix of the underlying problem - just a > limited fix for the Sitemap Plugin (to be fair - which also was the > bug...) > > 1.) If one adds a sitemap plugin to the container holding the tt_content > elements it works 50%. It works for ME for standard Typo3 content elements > but not for headlines contained within FCEs. > > 2.) If I add a menu within a typoscript object path (outside of the > context of the tt_content records) - it can't access the REGISTER variable > from the other container. > > Looking further on the bug tracker I found (0000551: Records sorting > order - http://bugs.typo3.org/view.php?id=551) in which Robert mentions > that this was fixed in TemplaVoila 1.0.0. But I am using 1.0.1 and can't > seem to identify the fix. > > So my first question: Is this fixed and I'm missing something? > > I also have a second question ;) > > I will write an extension to fix this temporarily. I can't really figure > out a way to do it consistently unless I extend tt_content and add an > additional sort field. I hate having to add a field but it seems to me the > only way to do this right is to implement this in the backend. Then the > new sort field would be available in any other plugin. > > If I implement it in the front end I would need to essentially duplicate > tv's rendering hierarchy, since as far as I can tell there is no way to > set priority on rendering things (first render the "main" area, then this > area). > > How would you suggest a fix could be made? > > Thx und Cheers, > > Tristan > From x27 at e27.com Thu Jun 22 11:22:52 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Thu, 22 Jun 2006 11:22:52 +0200 Subject: [TYPO3-templavoila] flexform - change output arraydata char from comma to whitespace Message-ID: hi i would like to use a multiple selectbox flexform field in a "Felxible Content Element" to map multiple CSS classes into a div attribute. the result should be somthing like:
...[t3content]...
I found in "core api doc" how to setup the multiple selectbox with flexforms and mapped it and i get (nearly right) :
....
but this is no valid css. is it possible to change the "," to " " in the output? thank you ! tim From typo3 at accio.lv Thu Jun 22 11:32:55 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Thu, 22 Jun 2006 12:32:55 +0300 Subject: [TYPO3-templavoila] flexform - change output arraydata char from comma to whitespace In-Reply-To: References: Message-ID: Hi! Tim Kleigrewe wrote: > I found in "core api doc" how to setup the multiple selectbox with > flexforms and mapped it and i get (nearly right) : > >
....
> > but this is no valid css. > > is it possible to change the "," to " " in the output? I think it should be possible to postprocess this value with TS. What you get is direct value from database. You will need to split it and join back using spaces. This TS should go to your DS. But beware: you mix visual representation with data. This is not good approach. See if you can alayze your data (using TS, for example) and generate appropriate class names. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From x27 at e27.com Thu Jun 22 13:29:12 2006 From: x27 at e27.com (Tim Kleigrewe) Date: Thu, 22 Jun 2006 13:29:12 +0200 Subject: [TYPO3-templavoila] flexform - change output arraydata char from comma to whitespace In-Reply-To: References: Message-ID: hi thanks for your hint: works fine and all css classes are assigned correctly. this FCE works here like a subtemplate and std content elements are placed inside. the classes just define the height, width and bgcolor of the placehoder div (grid). i think to use a flexform field to assign css classes here is not a problem (i love it :-)), otherwise i had to build 12+ templates just to give the editor the possibility to manully select the visual appearance of this "content area". the focus here is design and the the visual representation is done by css. just a single
... tim Dmitry Dulepov schrieb: > Hi! > > Tim Kleigrewe wrote: >> I found in "core api doc" how to setup the multiple selectbox with >> flexforms and mapped it and i get (nearly right) : >> >>
....
>> >> but this is no valid css. >> >> is it possible to change the "," to " " in the output? > > I think it should be possible to postprocess this value with TS. What > you get is direct value from database. You will need to split it and > join back using spaces. This TS should go to your DS. But beware: you > mix visual representation with data. This is not good approach. See if > you can alayze your data (using TS, for example) and generate > appropriate class names. > > Dmitry. From catepeter at optusnet.com.au Thu Jun 22 16:04:08 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 23 Jun 2006 00:04:08 +1000 Subject: [TYPO3-templavoila] mapping 'not found' Message-ID: Hi all again I am also having problems with the mapping to some elements simply not "taking" or alternatively, mapping fine one time, but not another time. The only solution seems to be delete the DS and start again ... PHP5, TV 1.0.1, Typo3v4 Cate From catepeter at optusnet.com.au Thu Jun 22 16:04:08 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 23 Jun 2006 00:04:08 +1000 Subject: [TYPO3-templavoila] tv and dr wiki - inconsistent rendering Message-ID: Hi all I am using TV 1.0.1 and Typo3v4 with Dr Wiki 1.1.1 I am having problems with the wiki - in one page it renders fine as a content element, but the tv generated nav doesn't - in another page, everything the same, the nav renders, but not the wiki after the 'save' button has been clicked. Anyone having similar problems? From catepeter at optusnet.com.au Thu Jun 22 16:14:26 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 23 Jun 2006 00:14:26 +1000 Subject: [TYPO3-templavoila] order of elements in data structure Message-ID: Hi Is the order of the elements defined in the data structure critical? I mean, obviously it makes sense for them to follow a reasonable order, but if they are out of order would it matter? Cate From gawain at camlann.de Thu Jun 22 20:22:05 2006 From: gawain at camlann.de (Christian Welzel) Date: Thu, 22 Jun 2006 20:22:05 +0200 Subject: [TYPO3-templavoila] id in tx_templavoila_flex References: Message-ID: Dmitry Dulepov wrote: > some elements... these elements... Not very concrete. My FCE-Structure looks like that: [CO] ROOT [SC] Reference List [CO] Reference [EL] Image [EL] Link Now i add such a "Reference List" to a page and then insert some elements of "Reference" to it. To these elements i refered to as "these elements" in my first post. >> As you can see, these elements are not distinguishable. > > I van distinguish: there is one image and two links. As you can see in the XML i posted in my last post, these Reference items are not identified by a unique key or id and this why they are not distinguishable. (elements of tt_content are distinguishable by there id) My question is now, is there a way to get such id or key into these elements ? -- MfG, Christian Welzel GPG-Key: http://www.camlann.de/key.asc Fingerprint: 4F50 19BF 3346 36A6 CFA9 DBDC C268 6D24 70A1 AD15 From typo3 at accio.lv Fri Jun 23 10:14:48 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Fri, 23 Jun 2006 11:14:48 +0300 Subject: [TYPO3-templavoila] order of elements in data structure In-Reply-To: References: Message-ID: Hi! Cate & Peter wrote: > Is the order of the elements defined in the data structure critical? I mean, > obviously it makes sense for them to follow a reasonable order, but if they > are out of order would it matter? You can freely rearrange elements on the same level. For example: You can freely rearrange field_a, field_b and field_c (swap their positions). You can also change positions of field_a_1, field_a_2 and field_a_3 if they still stay inside field_a. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Fri Jun 23 10:17:34 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Fri, 23 Jun 2006 11:17:34 +0300 Subject: [TYPO3-templavoila] id in tx_templavoila_flex In-Reply-To: References: Message-ID: Christian Welzel wrote: > As you can see in the XML i posted in my last post, these Reference > items are not identified by a unique key or id and this why they are > not distinguishable. > (elements of tt_content are distinguishable by there id) > > My question is now, is there a way to get such id or key into > these elements ? No, flexform xml does not have such thing. You have to enter it manually.
elements contains a number of element but it will change if you change order of elements, so it is not unique. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From mailinglists at necroshine.de Fri Jun 23 16:25:06 2006 From: mailinglists at necroshine.de (Frederic Gaus) Date: Fri, 23 Jun 2006 16:25:06 +0200 Subject: [TYPO3-templavoila] Get references of an object Message-ID: Hello guys, I'm (still) using Typo3 3.8.1 in connection with TV 0.4.0. In my case, I have elements and references of these. Now I found the same element twice, and I'm really sure there are references of both. But where? So the problem is: How can I find all references of one Content-Element (actually, it's a FCE ;) ). Maybe using the database / a sql-query?! Thanks Frederic -- Frederic Gaus pgp-key: 93E6903C fingerprint: 0C55 4517 CC1E 5F7F 9059 3535 AB54 D8E8 93E6 903C From oneilch at yahoo.com Fri Jun 23 20:29:20 2006 From: oneilch at yahoo.com (oneilch) Date: Fri, 23 Jun 2006 11:29:20 -0700 (PDT) Subject: [TYPO3-templavoila] templavoila roadmap? Message-ID: Firstly I would like to say ? ?I think templavoila is great and I like using it alot ? keep up the good work - developers? Now for my question ? Is there a templavoila roadmap? and if so where can I have a look at it? I was hoping templavoila would one day provide the advanced functionally (or some similar functionality) to have more than one fce related to each other by one or more related properties (similar to primary keys in database creation) ?this can possibility be done with a combination of xml, xquery and normalized fce data?. More advanced functionality could include: - the ability to create paginated lists or record sets - more advanced means of sorting and grouping fce and related fce data together - data submitted from a front-end web form could be mapped to an already created fce - generic category system that can be used when creating fce?s (example: a category of fruits ? apples, oranges etc) that could be dynamically pulled into a select box when creating a fce. Just a few thoughts I had. Thank you for your time. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From tapio.markula at dnainternet.net Sun Jun 25 17:02:00 2006 From: tapio.markula at dnainternet.net (Tapio Markula) Date: Sun, 25 Jun 2006 18:02:00 +0300 Subject: [TYPO3-templavoila] windows XP style tabs Message-ID: Hi I defined using CSS + XCLASS for template.php Windows XP style tabs. But they don't work in TemplaVoila view
'.$this->doc->getDynTabMenu($numSortedSideBarItems, 'TEMPLAVOILA:pagemodule:sidebar', 1, true).'
I have redefined getDynTabMenu() but it doesn't seem to have any effect in TemplaVoila view. From typo3 at accio.lv Sun Jun 25 20:13:32 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Sun, 25 Jun 2006 21:13:32 +0300 Subject: [TYPO3-templavoila] templavoila roadmap? In-Reply-To: References: Message-ID: Hi! oneilch wrote: > Firstly I would like to say ? ?I think templavoila is > great and I like using it alot ? keep up the good work > - developers? Thanks :) > Now for my question ? Is there a templavoila roadmap? > and if so where can I have a look at it? I am not aware about it. Target was to finish bugs and provide stable version together with typo3 4.0, we (almost) reached it. Currently bug fixing work continues and next version should have to new features. But I did not hear about any special plans. > I was hoping templavoila would one day provide the > advanced functionally (or some similar functionality) > to have more than one fce related to each other by one > or more related properties (similar to primary keys in > database creation) ?this can possibility be done with > a combination of xml, xquery and normalized fce data?. Difficult to make it efficiently because mysql does not suypport this directly, If it only has something like "xml" sql type... > More advanced functionality could include: > - the ability to create paginated lists or record sets There are thoughts about it but only thoughts. > - more advanced means of sorting and grouping fce and > related fce data together Not sure that I understood. > - data submitted from a front-end web form could be > mapped to an already created fce ? > - generic category system that can be used when > creating fce?s (example: a category of fruits ? > apples, oranges etc) that could be dynamically pulled > into a select box when creating a fce. DSes do not provide it? Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From mundgold at googlemail.com Mon Jun 26 21:25:27 2006 From: mundgold at googlemail.com (=?ISO-8859-15?Q?Roland_Br=F6del?=) Date: Mon, 26 Jun 2006 21:25:27 +0200 Subject: [TYPO3-templavoila] datatyp getText Message-ID: Hello there, i started a projekt with templa voila - now i realized that there are some restrictions in the use of typoscript. If i want to get the title or subtitle of my page do this: 10 = TEXT 10.text.data = page:subtitle//page:title but "page:leveltitle:2" does not work. Could anybody give me a hint how to solve this - or where i could get information about the posible stdWrap-properties for templa voila? Thanks a lot. Roland From catepeter at optusnet.com.au Tue Jun 27 05:10:16 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Tue, 27 Jun 2006 13:10:16 +1000 Subject: [TYPO3-templavoila] fce and mapping for repeat rows - not reading table tag Message-ID: Hi all I am trying to map a FCE ?for a content area where the html is... ?
??

section title

? ??? ??? ?
QuestionAnswer
???
? But I cant get the table tag to be read. Obviously the
combination is unusual, but I have tried a number of combinations, including inner, outer, mapping to the div tag, mapping straight to the table, and of course clearing cache all the time. Instead it is being rendered... ??????????????????????????????? ??

General Information

?
??? ??? ? ??? ??? ? ??? ??? ? ??? ??? ? ??? ??? ? ??? ??????????????? This is the current mapping, that produces the above html... Data Element:|Field:||HTML-path:||Rules:| ROOT|ROOT||INNER||(ALL)| Section Name|field_sectionname||INNER||*:inner| Section Container|field_do_sectioncontainer||||(ALL)| Q&A|field_do_datatable||||(ALL)| Question|field_question||INNER||*:inner| Answer|field_answer||INNER||*:inner| What am I missing? Thank for new eyes :) Cate From catepeter at optusnet.com.au Tue Jun 27 05:17:09 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Tue, 27 Jun 2006 13:17:09 +1000 Subject: [TYPO3-templavoila] fce and mapping for repeat rows - not readingtable tag In-Reply-To: Message-ID: >I am trying to map a FCE for a content area *snip* >This is the current mapping, that produces the above html... *snip* Sorry guys, when I deleted the images, I forgot the tags would go too ... here is the corrected data structure... Data Element: |Field: | |HTML-path:| |Rules:| ROOT| ROOT | |INNER|
|(ALL)| Section Name |field_sectionname| |INNER|

|*:inner| Section Container|field_do_sectioncontainer| | |

Flag:

insert image

Total Population:

number

Ethnic Composition:

info

Official Languages:

languages

Languages Used in Community:

Languages

|(ALL)| Q&A |field_do_datatable| | | |(ALL)| Question| field_question| |INNER|
|*:inner| Answer |field_answer| |INNER| |*:inner| From typo3 at accio.lv Tue Jun 27 12:12:04 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 27 Jun 2006 13:12:04 +0300 Subject: [TYPO3-templavoila] datatyp getText In-Reply-To: References: Message-ID: Hi! Roland Br?del wrote: > i started a projekt with templa voila - now i realized that there are > some restrictions in the use of typoscript. Yes, this is described in documentation. > but "page:leveltitle:2" does not work. And it will not. You need to use TS Object path and do all this logic in the main TS setup. TS in DS works only with DS fields. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From typo3 at accio.lv Tue Jun 27 12:13:08 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Tue, 27 Jun 2006 13:13:08 +0300 Subject: [TYPO3-templavoila] fce and mapping for repeat rows - not reading table tag In-Reply-To: References: Message-ID: Hi! Cate & Peter wrote: > But I cant get the table tag to be read. Obviously the
> combination is unusual, but I have tried a number of combinations, including > inner, outer, mapping to the div tag, mapping straight to the table, and of > course clearing cache all the time. Instead it is being rendered... ROOT should be mapped as OUTER to
. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From catepeter at optusnet.com.au Tue Jun 27 15:15:10 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Tue, 27 Jun 2006 23:15:10 +1000 Subject: [TYPO3-templavoila] fce and mapping for repeat rows - not reading table tag In-Reply-To: Message-ID: Dmitry.ROOT should be mapped as OUTER to
. Thanks for that advice, Dmitry, I wasn't 100% sure if it had to be outer. However, I discovered that alone didn't solve the problem with the table .. I also needed to map the table tag as inner (as a section container) and map the row as outer (as a container to repeat the cells). Now it works fine :) Thanks! Cate From mundgold at googlemail.com Tue Jun 27 16:48:09 2006 From: mundgold at googlemail.com (=?ISO-8859-15?Q?Roland_Br=F6del?=) Date: Tue, 27 Jun 2006 16:48:09 +0200 Subject: [TYPO3-templavoila] datatyp getText In-Reply-To: References: Message-ID: --- Original Nachricht --- Absender: Dmitry Dulepov Datum: 27.06.2006 12:12 > Hi! > > Roland Br?del wrote: >> i started a projekt with templa voila - now i realized that there are >> some restrictions in the use of typoscript. > > Yes, this is described in documentation. > >> but "page:leveltitle:2" does not work. > > And it will not. You need to use TS Object path and do all this logic in > the main TS setup. TS in DS works only with DS fields. > > Dmitry. Thanks a lot Dmitry - to sleep one night is often better than post such trivial questions. I am awake now :-) Roland From davinci at REMOVE.mail.tdcadsl.dk Tue Jun 27 18:52:12 2006 From: davinci at REMOVE.mail.tdcadsl.dk (Jes) Date: Tue, 27 Jun 2006 18:52:12 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Dmitry Dulepov wrote: > Hi! > > Tobias Pinnekamp wrote: > >> Then anywhere in your TS setup (but it must be included) you can type >> something like this >> >> lib.newloginbox = USER >> #(or USER_INT if you don't want to cache it) >> lib.newloginbox.userFunc = tx_newloginbox_pi1->main > > > This is not a good way from any point. You loose all default options of > newloginbox (if there are any), you define your own USER object instad > of using provided by extension. Generally you should use code similar tp > this: > > lib.newloginbox < plugin.tx_newloginbox_pi1 > > Dmitry. Thank you for your suggestions - I found a solution so now I got the login box in the template. Now I only need to find out why the loginbox PID points to the general records storage page - and not - as it should - the PID where the users are. Best regards Jes Petersen From bmack at kirix.com Tue Jun 27 21:03:32 2006 From: bmack at kirix.com (Benjamin Mack) Date: Tue, 27 Jun 2006 21:03:32 +0200 Subject: [TYPO3-templavoila] [TYPO3] TemplaVoila: Remove the page selector Message-ID: Hey everyone, when I use templavoila (1.0.1) and I want to create a new page with the "New page wizard", I can choose between my created templateObjects. So, is it possible to get rid of this step? I think there was an option in an earlier version to get rid of this page, but there is nothing here anymore. Can anybody help? Thanks a lot. -- greetings, benni. -SDG- From typo3 at accio.lv Wed Jun 28 08:19:06 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 28 Jun 2006 09:19:06 +0300 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: Hi! Jes wrote: > Now I only need to find out why the loginbox PID points to the general > records storage page - and not - as it should - the PID where the users > are. It points there by default if I remember correctly. Check docs for this extension, TS setup may have a property to set PID. Also you can try setting PID through constants editor in Web>Template. Look under CONTENT category. There are many constants there and one of them points to that PID. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From weissenfels at gmx.de Wed Jun 28 17:00:39 2006 From: weissenfels at gmx.de (Werner Weissenfels) Date: Wed, 28 Jun 2006 08:00:39 -0700 Subject: [TYPO3-templavoila] Templavoila mapping problem Message-ID: Hi, I am quite new to Typo3 and I am trying to map a html template with templavoila. I first tried to use my template (which I created using the recommendations from the tutorials and which validated in tidy and on W3C without warnings or errors) and had mapping problems. Then I tried the template from the Futuristic Template Building Tutorial and get the same problems. When I start the mapping I immediately get an information message at the bottom of the screen: The current mapping information is different from the mapping information in the Template Object. The body element maps ok, but when I try to map anything else (no matter whether it is Main Content Area or Main Menu I always get an exclamation mark with "No content found!" I tried starting over several times, cleared cache, etc but I always run into the same problem, with both html templates. Any help or recommendations? Config: Typo3 4.0, Templavoila 1.0.1 MacOS X Server 10.4, Apache 1.3.33, MySQL 4.1.13, PHP 4.3.11 Thank you, Werner From typo3 at accio.lv Wed Jun 28 17:14:01 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Wed, 28 Jun 2006 18:14:01 +0300 Subject: [TYPO3-templavoila] Templavoila mapping problem In-Reply-To: References: Message-ID: Hi! Werner Weissenfels wrote: > When I start the mapping I immediately get an information message at the > bottom of the screen: > The current mapping information is different from the mapping information in > the Template Object. Ignore this message. It often appears when it should not. > The body element maps ok, but when I try to map anything else (no matter > whether it is Main Content Area or Main Menu I always get an exclamation > mark with "No content found!" > I tried starting over several times, cleared cache, etc but I always run > into the same problem, with both html templates. There were similar errors for one or two people on this list but I do not know if they solved the problem or not. I myself never saw such behavior. I'll take a look when this message appears but I do not think it will help in any way. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From catepeter at optusnet.com.au Wed Jun 28 17:21:30 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Thu, 29 Jun 2006 01:21:30 +1000 Subject: [TYPO3-templavoila] Templavoila mapping problem In-Reply-To: Message-ID: Werner said: >The body element maps ok, but when I try to map anything else (no matter >whether it is Main Content Area or Main Menu I always get an exclamation >mark with "No content found!" Hi Werner The problem is one I am very familiar with, but have finally worked out .. lets see if I can explain it clearly enough that you will understand. With each mapping, it is important to map "inner" and "outer" correctly - inner if you want your content to go *between* the tags you are mapping to, outer if you want the tags you are mapping to, to be included. Eg - in section containers (and usually containers), you want the tags to be mapped "outer" becs you are defining a section in TV according to the section you defined in the html with div tags. Other areas, such as an inline navigation that you have defined in the css, you will want to map to the
    tag with "inner", becs you want the
  • tags to repeat with your cObject, but not the
      tag. The error message "no content found" is a bit misleading, becs what it really means is either you are mapping inner/outer/range wrong, OR the way you have your html, while it might validate, isn't going to work with the TV mapping as you are trying to do it. Hope that puts you on the right track. Regards Cate From davinci at REMOVE.mail.tdcadsl.dk Wed Jun 28 18:28:11 2006 From: davinci at REMOVE.mail.tdcadsl.dk (Jes) Date: Wed, 28 Jun 2006 18:28:11 +0200 Subject: [TYPO3-templavoila] How to set up an extension on every page in the site - in the template In-Reply-To: References: Message-ID: > It points there by default if I remember correctly. Check docs for this > extension, TS setup may have a property to set PID. Also you can try > setting PID through constants editor in Web>Template. Look under CONTENT > category. There are many constants there and one of them points to that > PID. > > Dmitry. I managed to make it work with this extensin "newloginbox_linkfactory". I just need to figure out why it does not display the labels for the form. :-) Best regards Jes From stig at 8620.dk Thu Jun 29 18:09:17 2006 From: stig at 8620.dk (=?ISO-8859-1?Q?Stig_N=F8rgaard_F=E6rch?=) Date: Thu, 29 Jun 2006 18:09:17 +0200 Subject: [TYPO3-templavoila] Path:, Sorry, you didn't have proper permissions to perform this change. Message-ID: I just tried to create a FCE. When i try to insert it, I get this error: "Path:,Sorry, you didn't have proper permissions to perform this change.", though I have admin rights. I have found a bug report: http://bugs.typo3.org/view.php?id=3042 But it is reported fixed even though I'm using 1.0.1. Any ideas? /Stig From weissenfels at gmx.de Fri Jun 30 08:52:02 2006 From: weissenfels at gmx.de (Werner Weissenfels) Date: Thu, 29 Jun 2006 23:52:02 -0700 Subject: [TYPO3-templavoila] Templavoila mapping problem In-Reply-To: Message-ID: > Cate said: > > The error message "no content found" is a bit misleading, > becs what it really means is either you are mapping > inner/outer/range wrong, OR the way you have your html, while > it might validate, isn't going to work with the TV mapping as > you are trying to do it. Hi Cate, Thank you for your suggestions but I don't think that's the problem. I thought about this, and to try it out I used the sample files from the Futuristic Template Building tutorial and tried the mapping exactly as described in the tutorial - and had the same problem. So either the tutorial is wrong or I have some other problem which would seem to be related to my installation or configuration, as the extension seems ot work for others. I don't really believe it's the tutorial, even if it is not fully up-to-date for the current version of templavoila. So I guess it is something in my installation, and I have no idea what. For now I have given up on trying to make TV work and I am using the Template Auto-Parser instead. Might not be as nice, but I can make it work and I got some understanding of how it functions from its tutorial. Regards, Werner From typo3 at accio.lv Fri Jun 30 09:08:21 2006 From: typo3 at accio.lv (Dmitry Dulepov) Date: Fri, 30 Jun 2006 10:08:21 +0300 Subject: [TYPO3-templavoila] Templavoila mapping problem In-Reply-To: References: Message-ID: Hi! Werner Weissenfels wrote: > I thought about this, and to try it out I used the sample files from the > Futuristic Template Building tutorial and tried the mapping exactly as > described in the tutorial - and had the same problem. So either the tutorial > is wrong No, tutorial is ok. At least it was, when TV version was 0.3.0 and 0.4.0. Tutorial is going to be modified at some point in future because right now it is a bit obsolete. Dmitry. -- "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) From catepeter at optusnet.com.au Fri Jun 30 09:54:41 2006 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 30 Jun 2006 17:54:41 +1000 Subject: [TYPO3-templavoila] Templavoila mapping problem In-Reply-To: Message-ID: Hi again Werner >Thank you for your suggestions but I don't think that's the problem. >I thought about this, and to try it out I used the sample files from the >Futuristic Template Building tutorial and tried the mapping exactly as >described in the tutorial - and had the same problem. So either the tutorial >is wrong or I have some other problem which would seem to be related to my >installation or configuration, as the extension seems ot work for others. I >don't really believe it's the tutorial, even if it is not fully up-to-date >for the current version of templavoila. So I guess it is something in my >installation, and I have no idea what. I don't know if the tutorial is wrong or not, but I do know I had similar problems following the tutorial ... and it frustrated me no end for ages. I did manage to fix my first problems, by redo-ing the work, and im not sure if I did it differently or the same, but it fixed the problem. >For now I have given up on trying to make TV work and I am using the >Template Auto-Parser instead. Might not be as nice, but I can make it work >and I got some understanding of how it functions from its tutorial. Yes I can understand that feeling well. I so nearly did the same thing, becs I thought TV was something *wonderful*... and it is good, but not nearly the wonder drug I thought. The title of the tutorial made me think it was going to be such a better way of doing everything, perhaps becs it is css based and so many of the other tutorials are tables based, I thought it was more what I wanted. And it is good that the tutorial is at least css based. My biggest frustration now is not directly with TV, but more with the fact that very few of the extensions have been checked with TV, and the documentation is for the old way, which makes it awkward to work out things I know nothing about ... like hooks :) If I wasn't so far along with my mapping when I realised it, I think I would have gone back myself :) Good luck with it all... Cate From eMail at andreas-balzer.de Fri Jun 30 23:04:22 2006 From: eMail at andreas-balzer.de (Andreas Balzer) Date: Fri, 30 Jun 2006 23:04:22 +0200 Subject: [TYPO3-templavoila] tutorial templavoila many languages Message-ID: Hi! Is there a good tutorial, that shows up, how to create a TYPO3 page with templavolia and several FE languages (round about 5)? I'd like to know what i have to do different than on a normal page (without templavoila). Thanks for any help! Andreas