From martin at rebetez.com Tue Sep 2 15:47:12 2008 From: martin at rebetez.com (Martin Rebetez) Date: Tue, 02 Sep 2008 15:47:12 +0200 Subject: [TYPO3-templavoila] typoscript in FCE Message-ID: Hallo, I'm trying to generate a link in a FCE with typoscipt. If I make something like none 10 = TEXT 10.value = S'inscrire 10.typolink.parameter = 48 it works fine, but if I try to add some additional parameters like 10.typolink.additionalParams = &ref=1 I got the error : TemplaVoila ERROR: Couldn't find a Data Structure set for table/row "tt_content:95". Please select a Data Structure and Template Object first. Thanks for tips From xml.transformator at yahoo.com Tue Sep 2 16:09:07 2008 From: xml.transformator at yahoo.com (Michael Niemann) Date: Tue, 2 Sep 2008 07:09:07 -0700 (PDT) Subject: [TYPO3-templavoila] typoscript in FCE In-Reply-To: Message-ID: here's what I did when adding the value of another field as parameter: 10.typolink.additionalParams = &add={ field:field_code } 10.typolink.additionalParams.insertData=1 --- On Tue, 9/2/08, Martin Rebetez wrote: From: Martin Rebetez Subject: [TYPO3-templavoila] typoscript in FCE To: typo3-project-templavoila at lists.netfielders.de Date: Tuesday, September 2, 2008, 1:47 PM Hallo, I'm trying to generate a link in a FCE with typoscipt. If I make something like none 10 = TEXT 10.value = S'inscrire 10.typolink.parameter = 48 it works fine, but if I try to add some additional parameters like 10.typolink.additionalParams = &ref=1 I got the error : TemplaVoila ERROR: Couldn't find a Data Structure set for table/row "tt_content:95". Please select a Data Structure and Template Object first. Thanks for tips _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila at lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-templavoila From fsuter at cobweb.ch Tue Sep 2 16:55:32 2008 From: fsuter at cobweb.ch (Francois Suter) Date: Tue, 02 Sep 2008 16:55:32 +0200 Subject: [TYPO3-templavoila] typoscript in FCE In-Reply-To: References: Message-ID: Hi, > 10.typolink.additionalParams = &ref=1 Michael provides the solution. And the reason for the problem is the "&" sign, which breaks your XML. It should be represented as an entity (&) as in Michael's code. Cheers -- Francois Suter Cobweb Development Sarl - http://www.cobweb.ch From ernst at cron-it.de Tue Sep 2 22:01:50 2008 From: ernst at cron-it.de (Ernesto Baschny [cron IT]) Date: Tue, 02 Sep 2008 22:01:50 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript Message-ID: Hi, we have now had several situations where we needed: a) the same DS, because information has the same structure, e.g. "Teaser Boxes" with: - header - image - teaser - link b) different TO that are able to display that DS-data in different ways. But now I render the "image" with TypoScript. Each TO has different requirements as of the maxW of that images. But since that rendering information is stored in the DS (e.g. in ), I am not able to make a TypoScript which resizes the image differently depending on the currently selected TO. I have to end up creating a DS for each TO where the file-size is different. Ugly, I think. Or is this possible somehow? I would only need a way to access the "current TO-name" from within the TypoScript in the DS. BTW other questions that popped up: 1) what is "Local Processing (XML)" in a TO? Is it documented somewhere? 2) What is a "sub-template" of another TO? Is it documented? What are the use-cases to make use of such a thing? Thanks! Cheers, Ernesto From listen at goto-marco.de Tue Sep 2 22:42:38 2008 From: listen at goto-marco.de (Marco) Date: Tue, 02 Sep 2008 22:42:38 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Ernesto Baschny [cron IT] schrieb: > Hi, > > we have now had several situations where we needed: > > a) the same DS, because information has the same structure, e.g. "Teaser > Boxes" with: > > - header > - image > - teaser > - link > > b) different TO that are able to display that DS-data in different ways. > > But now I render the "image" with TypoScript. Each TO has different > requirements as of the maxW of that images. But since that rendering > information is stored in the DS (e.g. in ), I am not > able to make a TypoScript which resizes the image differently depending > on the currently selected TO. I have to end up creating a DS for each TO > where the file-size is different. Ugly, I think. > > Or is this possible somehow? I would only need a way to access the > "current TO-name" from within the TypoScript in the DS. I have one dummy HTML-Template for FCEs:
Then I map the outer div as root-element (outer-map) and one(!) field of my FCE to the inner div, also as outer-map. The other elements i set to "no-mapping". In my DS-XML I write in in the typoscript-tag this: 10 < lib.fce_teaserbox Now i can take my standard-typosript: lib.fce_teaserbox = COA lib.fce_teaserbox { wrap =
|
10 = TEXT // here you have to take the field_names from templavoila DS 10.field = field_title 10.wrap =

|

20 = TEXT 20.field = field_subheader 20.wrap =

|

30 = TEXT 30.field = field_bodytext 30.stdWrap.crop = 100 } [globalVar = TSFE:id = 20] lib.fce_teaserbox { wrap =
|
5 = LOAD_REGISTER 5.maxImaugeWidthInText = 415 5.maxImageWidth = 415 30.stdWrap.crop = 200 1000 = RESTORE_REGISTER } [global] All thinks, that was with typoscript possible is so for your fce possible. But I think, this way is not official supported. Maybe Dmitry can say some words to this... regards Marco From listen at goto-marco.de Tue Sep 2 22:47:10 2008 From: listen at goto-marco.de (Marco) Date: Tue, 02 Sep 2008 22:47:10 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Marco schrieb: > In my DS-XML I write in in the typoscript-tag this: > > 10 < lib.fce_teaserbox > I've forgotten: you have to write this in the one field you have mapped. From ernst at cron-it.de Tue Sep 2 23:45:09 2008 From: ernst at cron-it.de (Ernesto Baschny [cron IT]) Date: Tue, 02 Sep 2008 23:45:09 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Hi, Marco wrote: on 02.09.2008 22:42: >> a) the same DS, because information has the same structure, e.g. >> "Teaser Boxes" with: >> >> - header >> - image >> - teaser >> - link >> >> b) different TO that are able to display that DS-data in different ways. >> >> But now I render the "image" with TypoScript. Each TO has different >> requirements as of the maxW of that images. But since that rendering >> information is stored in the DS (e.g. in ), I am >> not able to make a TypoScript which resizes the image differently >> depending on the currently selected TO. I have to end up creating a DS >> for each TO where the file-size is different. Ugly, I think. >> >> Or is this possible somehow? I would only need a way to access the >> "current TO-name" from within the TypoScript in the DS. > I have one dummy HTML-Template for FCEs: > >
> > Then I map the outer div as root-element (outer-map) and one(!) field of > my FCE to the inner div, also as outer-map. The other elements i set to > "no-mapping". > > In my DS-XML I write in in the typoscript-tag this: > > 10 < lib.fce_teaserbox > You could also use lib.fce_teaserbox, shorter. :) > Now i can take my standard-typosript: Interesting, but would not solve my problem that the same DS cannot be used with a different TypoScript. The rendering TypoScript is always tied to the DS. It would be cooler to tie TypoScript to the TO, which seems semantically more correct, as the TO describes the rendering process, same as the TypoScript. > lib.fce_teaserbox = COA > lib.fce_teaserbox { > wrap =
|
> 10 = TEXT > // here you have to take the field_names from templavoila DS > 10.field = field_title > 10.wrap =

|

> > 20 = TEXT > 20.field = field_subheader > 20.wrap =

|

> > 30 = TEXT > 30.field = field_bodytext > 30.stdWrap.crop = 100 > } > > [globalVar = TSFE:id = 20] > lib.fce_teaserbox { > wrap =
|
> > 5 = LOAD_REGISTER > 5.maxImaugeWidthInText = 415 > 5.maxImageWidth = 415 > > 30.stdWrap.crop = 200 > > 1000 = RESTORE_REGISTER > } > [global] > > All thinks, that was with typoscript possible is so for your fce > possible. But I think, this way is not official supported. Maybe Dmitry > can say some words to this... I think this is supported, but I don't see the sense in not using the nice mapping feature of TemplaVoila, which seems to be the charm of it. In your example you could as well map the fields to positions in your original HTML-template, and just process what is needed in TypoScript (so move the .wrap's to the Template, and keep just the stdWrap.crop etc in TypoScript). And having a different Teaser-Rendering for a certain Page-ID is possible with conditions, but I cannot have different Teaser-Types on the same page, which is what I am trying to acchieve. Cheers, Ernesto From ernst at cron-it.de Tue Sep 2 23:54:43 2008 From: ernst at cron-it.de (Ernesto Baschny [cron IT]) Date: Tue, 02 Sep 2008 23:54:43 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Hi, well, I think I had the answer to my very own question in my post itself! The solution seems to be the "local processing (XML)" which seems to be a way to override DS-XML settings in the TO, exactly what I need! So then the question remains: Is this documented somewhere? Dmitry once wrote "read the manual" about that. But I cannot find any reference to that in the TemplaVoila ext-manual, in FTB, and neither in the TYPO3 Core API. Cheers, Ernesto Ernesto Baschny [cron IT] wrote: on 02.09.2008 22:01: > Hi, > > we have now had several situations where we needed: > > a) the same DS, because information has the same structure, e.g. "Teaser > Boxes" with: > > - header > - image > - teaser > - link > > b) different TO that are able to display that DS-data in different ways. > > But now I render the "image" with TypoScript. Each TO has different > requirements as of the maxW of that images. But since that rendering > information is stored in the DS (e.g. in ), I am not > able to make a TypoScript which resizes the image differently depending > on the currently selected TO. I have to end up creating a DS for each TO > where the file-size is different. Ugly, I think. > > Or is this possible somehow? I would only need a way to access the > "current TO-name" from within the TypoScript in the DS. > > BTW other questions that popped up: > > 1) what is "Local Processing (XML)" in a TO? Is it documented somewhere? > > 2) What is a "sub-template" of another TO? Is it documented? What are > the use-cases to make use of such a thing? > > Thanks! > > Cheers, > Ernesto From listen at goto-marco.de Wed Sep 3 00:35:52 2008 From: listen at goto-marco.de (Marco) Date: Wed, 03 Sep 2008 00:35:52 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Ernesto Baschny [cron IT] schrieb: > Hi, > > well, I think I had the answer to my very own question in my post > itself! The solution seems to be the "local processing (XML)" which > seems to be a way to override DS-XML settings in the TO, exactly what I > need! > > So then the question remains: Is this documented somewhere? Dmitry once > wrote "read the manual" about that. But I cannot find any reference to > that in the TemplaVoila ext-manual, in FTB, and neither in the TYPO3 > Core API. see here: http://wiki.typo3.org/index.php/TemplaVoila/FCE near "Overriding values from Template Objects" From listen at goto-marco.de Wed Sep 3 00:45:22 2008 From: listen at goto-marco.de (Marco) Date: Wed, 03 Sep 2008 00:45:22 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Ernesto Baschny [cron IT] schrieb: > > Interesting, but would not solve my problem that the same DS cannot be > used with a different TypoScript. The rendering TypoScript is always > tied to the DS. It would be cooler to tie TypoScript to the TO, which > seems semantically more correct, as the TO describes the rendering > process, same as the TypoScript. > I think this is supported, but I don't see the sense in not using the > nice mapping feature of TemplaVoila, which seems to be the charm of it. > In your example you could as well map the fields to positions in your > original HTML-template, and just process what is needed in TypoScript > (so move the .wrap's to the Template, and keep just the stdWrap.crop etc > in TypoScript). I'am a coder, not a designer ;-) For me this solution has sooo many benefits. i am tired to use the mapping interface... I have my typoscript in an external file, and so i can write my code in my eclipse-ide... I can user subversion for the code... I am able to quickly change the html-code of a fce... and so on good night Marco From dmitry at typo3.org Wed Sep 3 07:15:39 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 03 Sep 2008 08:15:39 +0300 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Hi! Ernesto Baschny [cron IT] wrote: > we have now had several situations where we needed: > > a) the same DS, because information has the same structure, e.g. "Teaser > Boxes" with: > > - header > - image > - teaser > - link > > b) different TO that are able to display that DS-data in different ways. > > But now I render the "image" with TypoScript. Each TO has different > requirements as of the maxW of that images. But since that rendering > information is stored in the DS (e.g. in ), I am not > able to make a TypoScript which resizes the image differently depending > on the currently selected TO. I have to end up creating a DS for each TO > where the file-size is different. Ugly, I think. > > Or is this possible somehow? I would only need a way to access the > "current TO-name" from within the TypoScript in the DS. Possible using local processing. > BTW other questions that popped up: > > 1) what is "Local Processing (XML)" in a TO? Is it documented somewhere? You are on the right track :) You need local processing. Local processing is the overlay to XML DS. Fpr example, imagine this abstract XML: bb cc Now, if you use this in local processing: ccMy than final XML processed by TV is: bb ccMy > 2) What is a "sub-template" of another TO? Is it documented? What are > the use-cases to make use of such a thing? This is described in FTB. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/pages/book-reviews/presentation-zen-by-garr-reynolds/ From martin at rebetez.com Wed Sep 3 11:02:40 2008 From: martin at rebetez.com (Martin Rebetez) Date: Wed, 03 Sep 2008 11:02:40 +0200 Subject: [TYPO3-templavoila] typoscript in FCE In-Reply-To: References: Message-ID: Hello both, Thanks for your help. Cheers Francois Suter a ?crit : > Hi, > >> 10.typolink.additionalParams = &ref=1 > > Michael provides the solution. > > And the reason for the problem is the "&" sign, which breaks your XML. > It should be represented as an entity (&) as in Michael's code. > > Cheers > From k_hinum at hotmail.com Wed Sep 3 14:00:56 2008 From: k_hinum at hotmail.com (Klaus Hinum) Date: Wed, 03 Sep 2008 14:00:56 +0200 Subject: [TYPO3-templavoila] Jump back to BE page position after editing an element Message-ID: Hi dear developers, I have an important feature request for the TV edit page view. When editing / creating large pages it is very annoying that after editing a content element (somewhere in the page for example) the page overview loads without any anchor. Therfore the user has to navigate back to the position of the last edited element. It should be easy to add this feature afaik. Just add ID tags to the content elements in the page view and give the backurl the correct anchor of the clicked element. regards Klaus From dmitry at typo3.org Wed Sep 3 14:58:20 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 03 Sep 2008 15:58:20 +0300 Subject: [TYPO3-templavoila] Jump back to BE page position after editing an element In-Reply-To: References: Message-ID: Hi! Klaus Hinum wrote: > Hi dear developers, > > I have an important feature request for the TV edit page view. When > editing / creating large pages it is very annoying that after editing a > content element (somewhere in the page for example) the page overview > loads without any anchor. Therfore the user has to navigate back to the > position of the last edited element. > > It should be easy to add this feature afaik. Just add ID tags to the > content elements in the page view and give the backurl the correct > anchor of the clicked element. Dear developers use bug tracker for feature requests ;) The feature sounds nice. I do not know if anchor will work with alt_doc but we can try... -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/pages/book-reviews/presentation-zen-by-garr-reynolds/ From stu at rtpartner.ch Thu Sep 4 00:07:47 2008 From: stu at rtpartner.ch (Simon Tuck) Date: Thu, 04 Sep 2008 00:07:47 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Ernesto Baschny [cron IT] wrote: > Or is this possible somehow? I would only need a way to access the > "current TO-name" from within the TypoScript in the DS. Something like this... [globalVar = TSFE:page|tx_templavoila_to = 2] lib.something.somevalue = my_other_value [global] ...should work. Note that it won't work in page DS when you inherit the template object. Cheers, Simon From leeperry at slack.de Thu Sep 4 10:55:33 2008 From: leeperry at slack.de (lee perry) Date: Thu, 04 Sep 2008 10:55:33 +0200 Subject: [TYPO3-templavoila] Disabled Website Language still available in Localization View Message-ID: Hi there, I'm using TYPO3 4.2.1 and TemplaVoila 1.3.7. In the "Localization view"-tab of a page I can "Create new page translation" of all created Website languages although some of them are disabled. Maybe it's a bug (then I will report it to BT) or it's a missing configuration ... And is it a TemplaVoila-thing or TYPO3-core problem? Anybody can help me? Greetings and thanx, Lee From ronslists at busynoggin.com Fri Sep 5 03:32:36 2008 From: ronslists at busynoggin.com (Ron Hall) Date: Thu, 4 Sep 2008 20:32:36 -0500 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Hi Simon, Here is code a friend used in a site we worked on which conditionally includes code based on the template object. It uses "slide" to look up the page tree for the template object. In this instance we wanted to include different TS libraries based on the template. Each of the case numbers are the uid of the TO. # CASE for including the correct CSS and JS based on Template Object # This just includes everthing defined above into headerdata. page.headerData.10 = CASE page.headerData.10 { # Look up the rootline for the Template Object key.data = levelfield : -1, tx_templavoila_to, slide # Default default < defaultHeader # Microsite with Sidebar 5 < micrositeHeader # Microsite Narrow 6 < micrositeHeader # Subpage with menu 8 < subpageHeader } A similar approach should work for you. Ron Hall On Sep 3, 2008, at 5:07 PM, Simon Tuck wrote: > Ernesto Baschny [cron IT] wrote: > >> Or is this possible somehow? I would only need a way to access the >> "current TO-name" from within the TypoScript in the DS. > > Something like this... > > [globalVar = TSFE:page|tx_templavoila_to = 2] > lib.something.somevalue = my_other_value > [global] > > ...should work. Note that it won't work in page DS when you inherit > the > template object. > Cheers, > Simon > > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-templavoila From stu at rtpartner.ch Fri Sep 5 11:26:41 2008 From: stu at rtpartner.ch (Simon Tuck) Date: Fri, 05 Sep 2008 11:26:41 +0200 Subject: [TYPO3-templavoila] Multiple FCE (TOs) with same DS, but different TypoScript In-Reply-To: References: Message-ID: Ron Hall wrote: > Hi Simon, > > Here is code a friend used in a site we worked on which conditionally > includes code based on the template object. It uses "slide" to look up > the page tree for the template object. In this instance we wanted to > include different TS libraries based on the template. Each of the case > numbers are the uid of the TO. Hi Ron, Thanks, nice snippet. A TypoScript condition with a slide option on the rootline would be nicer and less complicated, but that's not available... From leeperry at slack.de Fri Sep 5 16:45:05 2008 From: leeperry at slack.de (lee perry) Date: Fri, 05 Sep 2008 16:45:05 +0200 Subject: [TYPO3-templavoila] Disabled Website Language still available in Localization View In-Reply-To: References: Message-ID: > In the "Localization view"-tab of a page I can "Create new page > translation" of all created Website languages although some of them are > disabled. > Okay it seems that it has no effect for admins only - for a normal editor a disabled website language is not available in the localization view. So with this behaviour it's okay for me, although it's confusing me a little bit :) Greetings, Lee From mindtrades at gmail.com Sun Sep 7 15:57:40 2008 From: mindtrades at gmail.com (mindtrades) Date: Sun, 7 Sep 2008 13:57:40 +0000 Subject: [TYPO3-templavoila] mindtrades wants to keep up with you on Twitter Message-ID: To find out more about Twitter, visit the link below: http://twitter.com/i/5728b3d166c94ca2fdcd45fe88c184373f4b950f Thanks, -The Twitter Team About Twitter Twitter is a unique approach to communication and networking based on the simple concept of status. What are you doing? What are your friends doing?right now? With Twitter, you may answer this question over SMS, IM, or the Web and the responses are shared between contacts. This message was sent by a Twitter user who entered your email address. If you'd prefer not to receive emails when other people invite you to Twitter, click here: http://twitter.com/i/optout/9459c68094273e6e6cf04e2f439fd2c009932b52 From markus at kobligk.de Sun Sep 7 16:35:36 2008 From: markus at kobligk.de (Markus Kobligk) Date: Sun, 07 Sep 2008 16:35:36 +0200 Subject: [TYPO3-templavoila] How to sort FCE's ascending by title, when editor chooses FCE? Message-ID: Hi all, When I add content to my site I get the list of FCE's i have defined for my site. But those FCE's are sorted/ordered by the date of creation, so the last ones I created are on top of the list. I'd like to order/sort them by title ascending, that's easier for the editor i guess... Is it possible to sort the FCE's by title? Thanks, Markus From torsten.kirmse at netnotix.com Sun Sep 7 21:31:01 2008 From: torsten.kirmse at netnotix.com (Torsten Kirmse) Date: Sun, 7 Sep 2008 21:31:01 +0200 Subject: [TYPO3-templavoila] TypoScript with TV Message-ID: Hi all, First, I am a beginner with TV. I have set up a template and mapped this with the wizard. The mail content part and the menu works fine. my problem: In the last of my template i have a footer like this:

?###YEAR### Company|last update: ###LAST_CHANGE###

I want to replace the markers with the following TS: page.10.marks.YEAR = TEXT page.10.marks.YEAR.data = date:Y page.10.marks.LAST_CHANGE = TEXT page.10.marks.LAST_CHANGE.data = register:SYS_LASTCHANGED page.10.marks.LAST_CHANGE.strftime = %d.%m.%Y Where I have to place the TS code ? In the template setup section ? (Dosn?t work) In the DS ? (Where ?) Thanks, Torsten From ronslists at busynoggin.com Sun Sep 7 23:12:13 2008 From: ronslists at busynoggin.com (Ron Hall) Date: Sun, 7 Sep 2008 16:12:13 -0500 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hello Torsten, There is really no need to use markers for this. You would normally produce everything within the paragraph tag with one TS library and then map that to the paragraph using inner mapping. Like this: lib.footer = COA lib.footer.10 = TEXT lib.footer.10 { data = data:Y wrap = © | Company } lib.footer.20 = TEXT lib.footer.20.data { register:SYS_LASTCHANGED strftime = %d.%m.%Y wrqp = | lastupdate: } This goes into your TS template for the site. You would then setup a field in the DS to bring in lib.footer and map it to

with inner mapping. Please note I have not tested that TS. I just rewrote what you had. Thanks, Ron Hall On Sep 7, 2008, at 2:31 PM, Torsten Kirmse wrote: > Hi all, > > First, I am a beginner with TV. > I have set up a template and mapped this with the wizard. > The mail content part and the menu works fine. > > my problem: > In the last of my template i have a footer like this: >

?###YEAR### Company| > last > update: ###LAST_CHANGE###

> > I want to replace the markers with the following TS: > page.10.marks.YEAR = TEXT > page.10.marks.YEAR.data = date:Y > page.10.marks.LAST_CHANGE = TEXT > page.10.marks.LAST_CHANGE.data = register:SYS_LASTCHANGED > page.10.marks.LAST_CHANGE.strftime = %d.%m.%Y > > Where I have to place the TS code ? > In the template setup section ? (Dosn?t work) > In the DS ? (Where ?) > > Thanks, > Torsten > > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-templavoila From dmitry at typo3.org Mon Sep 8 07:09:05 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 08 Sep 2008 08:09:05 +0300 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! Torsten Kirmse wrote: > I want to replace the markers with the following TS: TV does not support markers. Please, (re)read the "Futuristic template building" tutorial. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/pages/book-reviews/presentation-zen-by-garr-reynolds/ From torsten.kirmse at netnotix.com Mon Sep 8 22:34:41 2008 From: torsten.kirmse at netnotix.com (Torsten Kirmse) Date: Mon, 8 Sep 2008 22:34:41 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi Ron, thanks for your answer and rewriting it in the correct way. I will try this. Thanks again. Torsten From torsten.kirmse at netnotix.com Mon Sep 8 22:57:32 2008 From: torsten.kirmse at netnotix.com (Torsten Kirmse) Date: Mon, 8 Sep 2008 22:57:32 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: > TV does not support markers. Please, (re)read the "Futuristic template > building" tutorial. Hi Dimitri, thanks for the advice. I will read it again. Let me say something about this tutorial: It is a tutorial with really good content - but it is unreadable. I can read it online only. The DocBook doesn?t work. There is something missing at Oasis. The .sxw isn?t convertable to any useful format without OO installed. Should I set up a VM, install OpenOffice, open the document and convert it to an pdf and then kick the VM ? Why is it impossible to place a PDF for download or a printable version ? Thanks Torsten From ronslists at busynoggin.com Mon Sep 8 23:33:44 2008 From: ronslists at busynoggin.com (Ron Hall) Date: Mon, 8 Sep 2008 16:33:44 -0500 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Torsten, I have Futuristic Template Building in PDF. I will send to you directly. Personally, if you are going to do much with TYPO3, I would install OO permanently just so you can convert manuals to PDF. Having those in PDF makes it easy for both searching and printing. If you are on Mac, you can install NeoOffice instead. Ron On Sep 8, 2008, at 3:57 PM, Torsten Kirmse wrote: >> TV does not support markers. Please, (re)read the "Futuristic >> template >> building" tutorial. > > Hi Dimitri, > > thanks for the advice. > I will read it again. > > Let me say something about this tutorial: > It is a tutorial with really good content - but it is unreadable. > I can read it online only. > The DocBook doesn?t work. There is something missing at Oasis. > The .sxw isn?t convertable to any useful format without OO installed. > Should I set up a VM, install OpenOffice, open the document and > convert it > to an pdf and then kick the VM ? > Why is it impossible to place a PDF for download or a printable > version ? > > Thanks > Torsten > > > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-templavoila From dmitry at typo3.org Tue Sep 9 08:00:46 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 09 Sep 2008 09:00:46 +0300 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! Torsten Kirmse wrote: > Let me say something about this tutorial: > It is a tutorial with really good content - but it is unreadable. > I can read it online only. > The DocBook doesn?t work. There is something missing at Oasis. > The .sxw isn?t convertable to any useful format without OO installed. > Should I set up a VM, install OpenOffice, open the document and convert > it to an pdf and then kick the VM ? You do not need a VM to install OO. It is available for any platform. > Why is it impossible to place a PDF for download or a printable version ? Ask those who manage typo3.org... -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/pages/book-reviews/presentation-zen-by-garr-reynolds/ From cs at cs-cc.com Tue Sep 9 13:24:49 2008 From: cs at cs-cc.com (Christophe Stadler) Date: Tue, 09 Sep 2008 13:24:49 +0200 Subject: [TYPO3-templavoila] Why does TV re-link the stylesheet to a copy in typo3conf ? Message-ID: Hi ... When i create new site with TV at some point the original stylesheet in the fileadmin/templates folder gets unlinked and instead the site uses a copy of the stylesheet in typo3conf, names sth like: stylesheet_c1b8f235fb.css I don't understand this .. In the header parts selection i still see the original link to the stylesheet .... Why does this happen ? How do i stop it from happening ... I want to use the original stylesheet linked to my template html file ... Cheers From cs at cs-cc.com Tue Sep 9 13:26:05 2008 From: cs at cs-cc.com (Christophe Stadler) Date: Tue, 09 Sep 2008 13:26:05 +0200 Subject: [TYPO3-templavoila] Why does TV re-link the stylesheet to a copy in typo3conf ? References: Message-ID: Sorry the duped css file is located in typo3temp, not typo3conf ... On 9/9/08 1:24 PM, in article mailman.1.1220959492.1849.typo3-project-templavoila at lists.netfielders.de, "Christophe Stadler" wrote: > Hi ... > > When i create new site with TV at some point the original stylesheet in the > fileadmin/templates folder gets unlinked and instead the site uses a copy of > the stylesheet in typo3conf, names sth like: stylesheet_c1b8f235fb.css > > I don't understand this .. In the header parts selection i still see the > original link to the stylesheet .... > > Why does this happen ? > > How do i stop it from happening ... I want to use the original stylesheet > linked to my template html file ... > > Cheers > From Chris at connye.com Tue Sep 9 15:53:04 2008 From: Chris at connye.com (Christian Wolff) Date: Tue, 09 Sep 2008 15:53:04 +0200 Subject: [TYPO3-templavoila] Why does TV re-link the stylesheet to a copy in typo3conf ? References: Message-ID: On Tue, 09 Sep 2008 13:26:05 +0200, Christophe Stadler wrote: > Sorry the duped css file is located in typo3temp, not typo3conf ... > > > On 9/9/08 1:24 PM, in article > mailman.1.1220959492.1849.typo3-project-templavoila at lists.netfielders.de, > "Christophe Stadler" wrote: > >> Hi ... >> >> When i create new site with TV at some point the original stylesheet >> in the >> fileadmin/templates folder gets unlinked and instead the site uses a >> copy of >> the stylesheet in typo3conf, names sth like: stylesheet_c1b8f235fb.css >> >> I don't understand this .. In the header parts selection i still see the >> original link to the stylesheet .... >> >> Why does this happen ? >> >> How do i stop it from happening ... I want to use the original >> stylesheet >> linked to my template html file ... >> >> Cheers >> > Hi Christophe, are you shure that that is an dublicate of your style sheet? and not the generated stylesheet from css_styled_content or an ohter extension? greets chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de From skyfreak1 at gmx.net Thu Sep 11 12:39:51 2008 From: skyfreak1 at gmx.net (G.Unger) Date: Thu, 11 Sep 2008 12:39:51 +0200 Subject: [TYPO3-templavoila] TypoScript with TV References: Message-ID: On 2008-09-08 22:57:32 +0200, "Torsten Kirmse" said: > > Why is it impossible to place a PDF for download or a printable version ? > well it isn't impossible, but TYPO3 is open source and therefor the documentation is in a format (Oo) that is open source too, which makes sense as not everybody has got a mac to automatically create pdfs or any pdf converte/adobe acrobat etc. to create pdfs on a windows machine ;) rgds GUIDO From philipp at holdener.ch Thu Sep 11 13:29:54 2008 From: philipp at holdener.ch (Philipp Holdener) Date: Thu, 11 Sep 2008 13:29:54 +0200 Subject: [TYPO3-templavoila] Bug with RTE in a Section? Message-ID: hello I made a FCE for a spry accordion
Label 1
Content 1
Label 2
Content 2
Label 2
Content 2
Label 2
Content 2
The Tab is set es normal Text The Content is an RTE.. The mapping works fine... But... Seems that the RTE in the Section makes trouble! I can't save the FCE.. it appears a popup with an warning that my login is no longer active!? ...I can't save anything. I get this script error too Error: document.getElementById("pleasewait" + editorNumber) is null Thanks for your help Greetings Philipp From philipp at holdener.ch Thu Sep 11 13:40:52 2008 From: philipp at holdener.ch (Philipp Holdener) Date: Thu, 11 Sep 2008 13:40:52 +0200 Subject: [TYPO3-templavoila] Bug with RTE in a Section? In-Reply-To: References: Message-ID: > > Seems that the RTE in the Section makes trouble! > I can't save the FCE.. it appears a popup with an warning that my login > is no longer active!? ...I can't save anything. > http://www.typo3-jack.net/typo3-project-templavoila-lists-netfielders-de/13534-typo3-templavoila-typo3-login-expired-when-submit-fce.html it seems that I can't use a rte in a section! Philipp From dmitry at typo3.org Thu Sep 11 13:58:50 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 11 Sep 2008 14:58:50 +0300 Subject: [TYPO3-templavoila] Bug with RTE in a Section? In-Reply-To: References: Message-ID: Hi! Philipp Holdener wrote: > it seems that I can't use a rte in a section! Search helps. http://bugs.typo3.org/view.php?id=8232 -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/pages/book-reviews/presentation-zen-by-garr-reynolds/ From philipp at holdener.ch Thu Sep 11 14:02:32 2008 From: philipp at holdener.ch (Philipp Holdener) Date: Thu, 11 Sep 2008 14:02:32 +0200 Subject: [TYPO3-templavoila] Bug with RTE in a Section? In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] schrieb: > Hi! > > Philipp Holdener wrote: >> it seems that I can't use a rte in a section! > > Search helps. > > http://bugs.typo3.org/view.php?id=8232 > Hello Dmitry Yes, I saw .. the bug link is in the link I sent before! I mapped it now as CE .. so I can put an RTE TExt (Text typ) in the section. Philipp From Bjoern.Pedersen at frm2.tum.de Thu Sep 11 15:34:08 2008 From: Bjoern.Pedersen at frm2.tum.de (Bjoern Pedersen) Date: Thu, 11 Sep 2008 15:34:08 +0200 Subject: [TYPO3-templavoila] TypoScript with TV References: Message-ID: G.Unger writes: > On 2008-09-08 22:57:32 +0200, "Torsten Kirmse" > said: >> Why is it impossible to place a PDF for download or a printable >> version ? >> > > well it isn't impossible, but TYPO3 is open source and therefor the > documentation is in a format (Oo) that is open source too, which makes > sense as not everybody has got a mac to automatically create pdfs or > any pdf converte/adobe acrobat etc. to create pdfs on a windows > machine ;) But recent OpenOffice-version can export pdf directly, so the freee/non-free is not the argument. I think it is more historic, as this feature is rather new in Ooo. And pdf is not easily converted to html, a thing that is done for typo3.org extension docu-pages. Bj?rn From typo3 at kay-strobach.de Wed Sep 17 13:18:13 2008 From: typo3 at kay-strobach.de (Kay Strobach) Date: Wed, 17 Sep 2008 13:18:13 +0200 Subject: [TYPO3-templavoila] recursive search for content Message-ID: hello together, i do have a question to tv. for the following i assume a pagestructure like that: root +-page 1 with ds an to +-page 2 with ds an to |-+page 2.1 with ds an to |-+page 2.2 with ds an to |-|-+... +-page 3 with ds an to and the needed sysfolders for tv. so my question is, if there is a tv field in the tv ds called "rc", and there is no content on "page 2.1...". So my question is, if it's possible to show the content of "page 2" rc, if there is no content on page 2.1. I know this is possible in normal Templates with db field with levelmedia -1. Thanks for any hint. Regards Kay From typo3 at perseguers.ch Thu Sep 18 15:46:52 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Thu, 18 Sep 2008 15:46:52 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi, >>> Why is it impossible to place a PDF for download or a printable >>> version ? >>> >> well it isn't impossible, but TYPO3 is open source and therefor the >> documentation is in a format (Oo) that is open source too, which makes >> sense as not everybody has got a mac to automatically create pdfs or >> any pdf converte/adobe acrobat etc. to create pdfs on a windows >> machine ;) > > But recent OpenOffice-version can export pdf directly, so the > freee/non-free is not the argument. I think it is more historic, as > this feature is rather new in Ooo. And pdf is not easily converted to > html, a thing that is done for typo3.org extension docu-pages. But I agree that not serving a PDF is not very user-friendly for beginners. It could be done either automatically or be available as another format to any extension. For instance lots of Kasper's documentation are available as DocBook too: http://typo3.org/documentation/document-library/core-documentation/doc_core_inside/current/ while most (if not all) of the extensions are only as HTML or Ooo available. Should developers put a manual.pdf inside doc/ ? -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From dmitry at typo3.org Thu Sep 18 16:37:51 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 18 Sep 2008 17:37:51 +0300 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! Xavier Perseguers wrote: > But I agree that not serving a PDF is not very user-friendly for > beginners. It could be done either automatically or be available as > another format to any extension. For instance lots of Kasper's > documentation are available as DocBook too: > > http://typo3.org/documentation/document-library/core-documentation/doc_core_inside/current/ Well now it is not really Kasper's documentation ;) > while most (if not all) of the extensions are only as HTML or Ooo > available. Should developers put a manual.pdf inside doc/ ? According to the current conventions - no. Only sxw file. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/tag_your_typo3_extension_releases_in_svn/ From typo3 at perseguers.ch Thu Sep 18 16:57:48 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Thu, 18 Sep 2008 16:57:48 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! >> But I agree that not serving a PDF is not very user-friendly for >> beginners. It could be done either automatically or be available as >> another format to any extension. For instance lots of Kasper's >> documentation are available as DocBook too: >> >> http://typo3.org/documentation/document-library/core-documentation/doc_core_inside/current/ > > Well now it is not really Kasper's documentation ;) ;-) >> while most (if not all) of the extensions are only as HTML or Ooo >> available. Should developers put a manual.pdf inside doc/ ? > > According to the current conventions - no. Only sxw file. Well, I meant in addition to the sxw, of course. Something else that may be updated would be to allow .odt files instead of the old sxw. Other question if you know, I think I saw once a page where one may test the conversion to html. Did I dream or does it exists somewhere? Because it is best to test the documentation prior to uploading the extension (at least the first time-s) than to wait for the conversion to... fail or not be perfect. -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From Chris at connye.com Thu Sep 18 17:01:07 2008 From: Chris at connye.com (Christian Wolff) Date: Thu, 18 Sep 2008 17:01:07 +0200 Subject: [TYPO3-templavoila] TypoScript with TV References: Message-ID: On Thu, 18 Sep 2008 16:37:51 +0200, Dmitry Dulepov [typo3] wrote: > Hi! > > Xavier Perseguers wrote: >> But I agree that not serving a PDF is not very user-friendly for >> beginners. It could be done either automatically or be available as >> another format to any extension. For instance lots of Kasper's >> documentation are available as DocBook too: >> >> http://typo3.org/documentation/document-library/core-documentation/doc_core_inside/current/ > > Well now it is not really Kasper's documentation ;) > >> while most (if not all) of the extensions are only as HTML or Ooo >> available. Should developers put a manual.pdf inside doc/ ? > > According to the current conventions - no. Only sxw file. > Hi The Basic Idea behind the Ooo doc is to write it once and then it should be converted by the TER to Usefull formats (currently only HTML) but in Theorie PDF should be possible. just not Implementet. but in future they trying to change the default documentation format from Ooo to Docbook (because ist Easyer to parse and convert (i Guess) and a lot of developer dont realy like complex formats. with docbook they should be able to edit the documentation in the favorite sourcecode editor or use an docbook editor. but i guess for typo3 version 4.x the Offical documentation format will still be keep Ooo and for 5.x it will be docbook. hopefully the typo3.org will modify the TER to automaticaly generate pdf's out of Ooo's greets chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de From Chris at connye.com Thu Sep 18 17:05:49 2008 From: Chris at connye.com (Christian Wolff) Date: Thu, 18 Sep 2008 17:05:49 +0200 Subject: [TYPO3-templavoila] TypoScript with TV References: Message-ID: On Thu, 18 Sep 2008 16:57:48 +0200, Xavier Perseguers wrote: > Other question if you know, I think I saw once a page where one may test > the conversion to html. Did I dream or does it exists somewhere? Because > it is best to test the documentation prior to uploading the extension > (at least the first time-s) than to wait for the conversion to... fail > or not be perfect. I dont know if this page still exits. but there is an Documentaion Template on Typo3.org this contains all the formatting needed for the Automatich HTML conversion. and some good default struckture for your Documentation. so if take this template and fill in your own text ist should Work fine. http://typo3.org/documentation/document-library/core-documentation/doc_template/current/ greets chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de From typo3 at perseguers.ch Thu Sep 18 17:26:46 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Thu, 18 Sep 2008 17:26:46 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi, >> Other question if you know, I think I saw once a page where one may >> test the conversion to html. Did I dream or does it exists somewhere? >> Because it is best to test the documentation prior to uploading the >> extension (at least the first time-s) than to wait for the conversion >> to... fail or not be perfect. > > I dont know if this page still exits. but there is an Documentaion > Template on Typo3.org > this contains all the formatting needed for the Automatich HTML > conversion. and some good > default struckture for your Documentation. so if take this template and > fill in > your own text ist should Work fine. > http://typo3.org/documentation/document-library/core-documentation/doc_template/current/ Yes, I know that but sometimes you do not see problems in Ooo but only once rendered. For instance someone forget to use a preformatted paragraph style but uses a courier new font. This is visually correct but does not degrade well once converted (there's lots of such situations). At least if the source code of the converter could be published somewhere, I could test it against my documentation. -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From dmitry at typo3.org Thu Sep 18 17:38:01 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 18 Sep 2008 18:38:01 +0300 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! Xavier Perseguers wrote: > Well, I meant in addition to the sxw, of course. Something else that may > be updated would be to allow .odt files instead of the old sxw. Again no :(. TER can render only sxw files. > Other question if you know, I think I saw once a page where one may test > the conversion to html. Did I dream or does it exists somewhere? Because > it is best to test the documentation prior to uploading the extension > (at least the first time-s) than to wait for the conversion to... fail > or not be perfect. If you use guidelines outlines in the documentation template, it will look ok. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/tag_your_typo3_extension_releases_in_svn/ From dmitry at typo3.org Thu Sep 18 17:39:46 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 18 Sep 2008 18:39:46 +0300 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi! Christian Wolff wrote: > but i guess for typo3 version 4.x the Offical documentation format will > still be keep Ooo > and for 5.x it will be docbook. I hope it is not. Using OO is very easy, docbook editing more difficult. We will have more extensions without any documentation at all. > hopefully the typo3.org will modify the TER to automaticaly generate > pdf's out of Ooo's I do not think so. Everyone is busy and this is not top proirity. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/tag_your_typo3_extension_releases_in_svn/ From riedel at opus5.info Thu Sep 18 18:25:58 2008 From: riedel at opus5.info (Dennis Riedel) Date: Thu, 18 Sep 2008 18:25:58 +0200 Subject: [TYPO3-templavoila] Sorting containers within a section in flexform - drag n drop Message-ID: Hi List I am using Typo3 4.2.1 and TemplaVoila 1.3.7. I have a FCE with a Section. I have created some elements (Containers) with content. Now I want to rearrange them. In previous versions this was possible through checkboxes, selecting whether I want to move the container up or down. With the new Version and the AJAX Backend, there is a Cross Icon on the right side (left from the Trash Bin Icon). So you can drag the container elements. Once I saw this working, changing the order of the elements by drag and drop (maybe it was a beta of the 4.2.0). But now I cannot change the order of the elements, there is no feedback from the other elements while dragging. Is this a known issue? Thanks for any hints. Regards, Dennis From riedel at opus5.info Thu Sep 18 18:29:43 2008 From: riedel at opus5.info (Dennis Riedel) Date: Thu, 18 Sep 2008 18:29:43 +0200 Subject: [TYPO3-templavoila] Flexform content not visible while editing, but visible in website and backend page content preview Message-ID: Hi list I am using Typo3 4.2.1 and TemplaVoila 1.3.7. I have some FCE elements which contain a section with containers. When I open the page content view where I can see all my content of a selected page, the elements display their content as preview, e.g.: "Title: my title here". But when I edit the element (FCE), the Flexform does not display the values within the input field "Title". It is empty. When I save and close, everything is as before. the content is still there. Only in editing mode we cannot see the content in the input field. Any hints? Regards, Dennis E.g.: we do not have nested sections From leeperry at slack.de Thu Sep 18 19:53:27 2008 From: leeperry at slack.de (lee perry) Date: Thu, 18 Sep 2008 19:53:27 +0200 Subject: [TYPO3-templavoila] Sorting containers within a section in flexform - drag n drop In-Reply-To: References: Message-ID: Hi Dennis, > But now I cannot change the order of the elements, there is no feedback > from the other elements while dragging. > > Is this a known issue? yes it is known, and reported to bugtracker http://bugs.typo3.org/view.php?id=8882 but I don't know, if someone will work out a solution ... I hope there will be a solution, soon. greetings, Lee From Chris at connye.com Thu Sep 18 20:02:33 2008 From: Chris at connye.com (Christian Wolff) Date: Thu, 18 Sep 2008 20:02:33 +0200 Subject: [TYPO3-templavoila] TypoScript with TV References: Message-ID: On Thu, 18 Sep 2008 17:39:46 +0200, Dmitry Dulepov [typo3] wrote: > Hi! > > Christian Wolff wrote: >> but i guess for typo3 version 4.x the Offical documentation format will >> still be keep Ooo >> and for 5.x it will be docbook. > > I hope it is not. Using OO is very easy, docbook editing more difficult. > We will have more extensions without any documentation at all. i Think there compfy Docbook Editors out there, im personaly don't like Office (MS and Open) not very mutch. but im more the plaintext type of guy anyway. i think we simply have to wait and see what comes :) >> hopefully the typo3.org will modify the TER to automaticaly generate >> pdf's out of Ooo's > > I do not think so. Everyone is busy and this is not top proirity. but we can hope anyway :) chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de From fsuter at cobweb.ch Thu Sep 18 21:23:20 2008 From: fsuter at cobweb.ch (Francois Suter) Date: Thu, 18 Sep 2008 21:23:20 +0200 Subject: [TYPO3-templavoila] TypoScript with TV In-Reply-To: References: Message-ID: Hi, >> I hope it is not. Using OO is very easy, docbook editing more >> difficult. We will have more extensions without any documentation at all. > > i Think there compfy Docbook Editors out there, im personaly don't like > Office (MS and Open) > not very mutch. but im more the plaintext type of guy anyway. i think we > simply have to wait > and see what comes :) Well there's a (vague) plan to move at least the Core Doc to Docbook as it would help collaborating on the doc. I don't really know what the status on this, but I'm going to investigate, now that I have steeped my fingers in the Core Docs :-) Obviously a lot depends on the availability of good software for producing Docbook format. Cheers -- Francois Suter Cobweb Development Sarl - http://www.cobweb.ch From news.netfielders.de at digilog.de Tue Sep 23 10:10:46 2008 From: news.netfielders.de at digilog.de (Joerg Wagner) Date: Tue, 23 Sep 2008 10:10:46 +0200 Subject: [TYPO3-templavoila] How to sort FCE's ascending by title, when editor chooses FCE? In-Reply-To: References: Message-ID: Yes, me too I would appreciate a solution for this sorting problem! See attachment - this is not what an editor would expect... Cheers, J?rg. Markus Kobligk schrieb: > Hi all, > > When I add content to my site I get the list of FCE's i have defined for > my site. But those FCE's are sorted/ordered by the date of creation, so > the last ones I created are on top of the list. I'd like to order/sort > them by title ascending, that's easier for the editor i guess... > > Is it possible to sort the FCE's by title? > > Thanks, > Markus > From dmitry at typo3.org Tue Sep 23 11:45:51 2008 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 23 Sep 2008 12:45:51 +0300 Subject: [TYPO3-templavoila] How to sort FCE's ascending by title, when editor chooses FCE? In-Reply-To: References: Message-ID: Hi! Joerg Wagner wrote: > Yes, me too I would appreciate a solution for this sorting problem! > See attachment - this is not what an editor would expect... Try sorting in the List view. I am not sure if it will help but you always can try... -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/tag_your_typo3_extension_releases_in_svn/ From ernst at cron-it.de Tue Sep 23 23:34:31 2008 From: ernst at cron-it.de (Ernesto Baschny [cron IT]) Date: Tue, 23 Sep 2008 23:34:31 +0200 Subject: [TYPO3-templavoila] How to sort FCE's ascending by title, when editor chooses FCE? In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] wrote: on 23.09.2008 11:45: > Joerg Wagner wrote: >> Yes, me too I would appreciate a solution for this sorting problem! >> See attachment - this is not what an editor would expect... > > Try sorting in the List view. I am not sure if it will help but you > always can try... Yes, it does help. The order from list view will be respected in the "new CE wizard" presented to the editors. Only the "TemplaVoila" templating module won't respect that order and display the DS alphabetically. Cheers, Ernesto From news.netfielders.de at digilog.de Wed Sep 24 18:04:40 2008 From: news.netfielders.de at digilog.de (Joerg Wagner) Date: Wed, 24 Sep 2008 18:04:40 +0200 Subject: [TYPO3-templavoila] How to sort FCE's ascending by title, when editor chooses FCE? In-Reply-To: References: Message-ID: Hi Dmitry, wonderful - works like a charm. Many THX!!! Cheers, J?rg. Dmitry Dulepov [typo3] schrieb: > Hi! > > Joerg Wagner wrote: >> Yes, me too I would appreciate a solution for this sorting problem! >> See attachment - this is not what an editor would expect... > > Try sorting in the List view. I am not sure if it will help but you > always can try... > From typo3 at kay-strobach.de Sat Sep 27 12:16:03 2008 From: typo3 at kay-strobach.de (Kay Strobach) Date: Sat, 27 Sep 2008 12:16:03 +0200 Subject: [TYPO3-templavoila] recursive search for content In-Reply-To: References: Message-ID: kb_tv_contentslide solves this problem, cu From info at sk-typo3.de Sat Sep 27 13:49:32 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Sat, 27 Sep 2008 13:49:32 +0200 Subject: [TYPO3-templavoila] [FCE] List section / interruption Message-ID: Hi, i did a simple FCE with a linklist, this template I mapped link_text, link_titel (TS=link_text) and link_url Now i will interrupt the list if i omit the url like this

link_text

    Reason: i don't want to have an extra field and i will have this element in the section so i can sort all with drag&drop. How can i do this? thx, vg Steffen From typo3 at kay-strobach.de Sat Sep 27 21:05:22 2008 From: typo3 at kay-strobach.de (Kay Strobach) Date: Sat, 27 Sep 2008 21:05:22 +0200 Subject: [TYPO3-templavoila] [FCE] List section / interruption In-Reply-To: References: Message-ID: Steffen Kamper schrieb: > Hi, > > i did a simple FCE with a linklist, this template > > > I mapped link_text, link_titel (TS=link_text) and link_url > > Now i will interrupt the list if i omit the url like this >

link_text

    > > Reason: i don't want to have an extra field and i will have this element > in the section so i can sort all with drag&drop. > > How can i do this? > > thx, vg Steffen hello steffen, i think it should work, if you create the ul within an section too, so that you need a template like this

    ...

    with map type outer the div will disappear in the fe. Hope this was helpfully Kay From info at sk-typo3.de Mon Sep 29 22:15:12 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Mon, 29 Sep 2008 22:15:12 +0200 Subject: [TYPO3-templavoila] Wish list for TV Message-ID: Hi, after some discussions i would like to start a wishlist for features in TV. This is not meant as a garanty for implementing but more a survey to find the most wanted features for GUI and functionality. As i'm motivated to help integrating features, and others too, it will help on concentrate of the really important ones, so i would glad if you take part :-) vg Steffen From info at sk-typo3.de Mon Sep 29 22:17:27 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Mon, 29 Sep 2008 22:17:27 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi, ok, i start directly :-) 1) my wish is to sort items in mapping module like you can do in classic page module or in list view 2) i would like to have the unused html-template as well with a link to create a TO /DS from, simular to the context menu link in file module vg Steffen From info at sk-typo3.de Mon Sep 29 22:20:03 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Mon, 29 Sep 2008 22:20:03 +0200 Subject: [TYPO3-templavoila] [FCE] List section / interruption In-Reply-To: References: Message-ID: Hi Kay, Kay Strobach schrieb: > hello steffen, > > i think it should work, if you create the ul within an section too, so > that you need a template like this > >
    >

    ...

    > >
    > with map type outer the div will disappear in the fe. > > Hope this was helpfully > > Kay i started to do this in the way you described, i didn't knew that this is possible that way, thx for the tip! vg Steffen From Ronald.Steiner at googlemail.com Mon Sep 29 23:18:36 2008 From: Ronald.Steiner at googlemail.com (Ronald Steiner) Date: Mon, 29 Sep 2008 23:18:36 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi Steffen, I would like to have: 1) an export function that allows to ship a generated FCE with template and everything as an extension that is easy to install. 2) Field for defining TS same easy as the Title while mapping. 3) htmlentities-funkction optional to switch of greetings Ron Steffen Kamper schrieb: > Hi, > > after some discussions i would like to start a wishlist for features in TV. > This is not meant as a garanty for implementing but more a survey to > find the most wanted features for GUI and functionality. > As i'm motivated to help integrating features, and others too, it will > help on concentrate of the really important ones, so i would glad if you > take part :-) > > vg Steffen From typo3 at perseguers.ch Tue Sep 30 08:42:18 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Tue, 30 Sep 2008 08:42:18 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi Steffen, > I would like to have: > > 1) an export function that allows to ship a generated FCE with template > and everything as an extension that is easy to install. big +1 > 2) Field for defining TS same easy as the Title while mapping. > 3) htmlentities-funkction optional to switch of 4) Being able to specify width/height of a fixed-sized picture (w/o having to modify the DS and loosing the change after another change from GUI), could be merged into 2) 5) Advanced picture options: a) max width/height with ratio b) click-enlarge option (I find it very difficult to achieve in TS!) i) to full-width ii) to given max height/width 6) Store the DS XML into a file for easy versioning (SVN, ...) and load with something like 7) A button to get a list of TypoScript path we defined associated to the field name (would be very handy) 8) Is the "set" button in header mapping still needed? If yes, then could be merged with the save button 9) Checkboxes next to TOs which would allow all templates to be "save and return"'ed quickly (when the template has been updated in a nobrainer way). Same for FCE. 10) Quick "add field" with standard definitions such as a) breadcrumb ("map this to ...") => lib.menu.breadcrumb b) title => lib.page.title c) lastUpdate => lib.page.lastUpdate Best done with an external file definition (e.g., file tv_mapping.xml when present in root of the template directory) where one could define his own list of "quick fields". Would be perfect when creating multiple websites -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From info at sk-typo3.de Tue Sep 30 09:24:44 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 09:24:44 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Xavier Perseguers schrieb: > Hi Steffen, > >> I would like to have: > > >> 1) an export function that allows to ship a generated FCE with >> template and everything as an extension that is easy to install. > > big +1 > this one is on the way ;-) I plan kind of FCE-Repository. vg Steffen From maaboo at gmail.com Tue Sep 30 12:40:53 2008 From: maaboo at gmail.com (maaboo) Date: Tue, 30 Sep 2008 14:40:53 +0400 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: I want to divide DS changing from TO changing (by putting DS modify on special tab?). Also i think that all TYPO3 and TV need to be fully redesigned to implement best GUI techniques. If you interested - i can help. 2008/9/30 Steffen Kamper > Hi, > > after some discussions i would like to start a wishlist for features in TV. > This is not meant as a garanty for implementing but more a survey to > find the most wanted features for GUI and functionality. > As i'm motivated to help integrating features, and others too, it will > help on concentrate of the really important ones, so i would glad if you > take part :-) > > vg Steffen > -- with respect, MaaBoo ICQ UIN: 22694713 From info at sk-typo3.de Tue Sep 30 13:08:32 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 13:08:32 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: maaboo schrieb: > > Also i think that all TYPO3 and TV need to be fully redesigned to implement > best GUI techniques. If you interested - i can help. > this task needs sponsoring. Screen designs already exist. vg Steffen From maaboo at gmail.com Tue Sep 30 13:16:14 2008 From: maaboo at gmail.com (maaboo) Date: Tue, 30 Sep 2008 15:16:14 +0400 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: I'll be glad to do all this work as my paiment to T3 development support. :-) If there are no people who develop GUI - i can take this task. What kind of sponsoring are you talking about? Icons drawing or smth else? PS. I have no experience in GUI dev, but read 3 best GUI books and thought some ideas. Also i'm goiong to sent my ideas to Google, to improve their services. 2008/9/30 Steffen Kamper > maaboo schrieb: > > > > Also i think that all TYPO3 and TV need to be fully redesigned to > implement > > best GUI techniques. If you interested - i can help. > > > > this task needs sponsoring. Screen designs already exist. > -- with respect, MaaBoo ICQ UIN: 22694713 From typo3 at perseguers.ch Tue Sep 30 13:32:08 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Tue, 30 Sep 2008 13:32:08 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi MaaBoo, Sponsoring means someone spends money for this. > PS. I have no experience in GUI dev, but read 3 best GUI books and thought > some ideas. Also i'm goiong to sent my ideas to Google, to improve their > services. This is kind of you but you should know that GUI dev is much trickier than it seems to be and one cannot simply jump in and improve something existing without deep understanding of GUI principles. There are HCI experts that spend their time designing GUI stuffs, that's pretty complicated to do this job fine, moreover on TemplaVoil? where interactions are a bit less easy than with other modules. -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From info at sk-typo3.de Tue Sep 30 13:45:09 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 13:45:09 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Xavier Perseguers schrieb: > Hi MaaBoo, > > Sponsoring means someone spends money for this. > >> PS. I have no experience in GUI dev, but read 3 best GUI books and >> thought >> some ideas. Also i'm goiong to sent my ideas to Google, to improve their >> services. > > This is kind of you but you should know that GUI dev is much trickier > than it seems to be and one cannot simply jump in and improve something > existing without deep understanding of GUI principles. There are HCI > experts that spend their time designing GUI stuffs, that's pretty > complicated to do this job fine, moreover on TemplaVoil? where > interactions are a bit less easy than with other modules. > Jens from HCI already designed a new GUI, i will post them if available. Sponsoring is needed to rewrite TV for the new GUI, it's a time-expansive and not simple task, so money from sponsor is required for such big task vg Steffen From maaboo at gmail.com Tue Sep 30 14:21:58 2008 From: maaboo at gmail.com (maaboo) Date: Tue, 30 Sep 2008 16:21:58 +0400 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Sure, i know that UI design is very complex and deep job. And, if we look at almost all products, they need deep redesigning in Raskin/Norman/Cooper-style, IMHO. There are many things in T3-UI which i don't understand. Sometimes i can't remember where needed option is located. It slows down the job. What is HCI? And, sure, i want to see design screens. :-) 2008/9/30 Xavier Perseguers > Hi MaaBoo, > > Sponsoring means someone spends money for this. > > > PS. I have no experience in GUI dev, but read 3 best GUI books and > thought > > some ideas. Also i'm goiong to sent my ideas to Google, to improve their > > services. > > This is kind of you but you should know that GUI dev is much trickier > than it seems to be and one cannot simply jump in and improve something > existing without deep understanding of GUI principles. There are HCI > experts that spend their time designing GUI stuffs, that's pretty > complicated to do this job fine, moreover on TemplaVoil? where > interactions are a bit less easy than with other modules. > > -- > Xavier Perseguers > -- with respect, MaaBoo ICQ UIN: 22694713 From typo3 at perseguers.ch Tue Sep 30 14:29:00 2008 From: typo3 at perseguers.ch (Xavier Perseguers) Date: Tue, 30 Sep 2008 14:29:00 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi, > What is HCI? http://en.wikipedia.org/wiki/Human-computer_interaction -- Xavier Perseguers http://xavier.perseguers.ch/en/tutorials/typo3.html From dmitry.dulepov at gmail.com Tue Sep 30 16:28:36 2008 From: dmitry.dulepov at gmail.com (Dmitry Dulepov) Date: Tue, 30 Sep 2008 17:28:36 +0300 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi! Steffen Kamper wrote: > Jens from HCI already designed a new GUI, i will post them if available. > Sponsoring is needed to rewrite TV for the new GUI, it's a > time-expansive and not simple task, so money from sponsor is required > for such big task Sponsoring is the worst problem here. No one actually wants to sponsor TV development. -- Dmitry Dulepov My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/duplicate_content_with_realurl/ From maaboo at gmail.com Tue Sep 30 17:00:34 2008 From: maaboo at gmail.com (maaboo) Date: Tue, 30 Sep 2008 19:00:34 +0400 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: I can donate a small amount... But i think it's not enough... 2008/9/30 Dmitry Dulepov > Hi! > > Steffen Kamper wrote: > > Jens from HCI already designed a new GUI, i will post them if available. > > Sponsoring is needed to rewrite TV for the new GUI, it's a > > time-expansive and not simple task, so money from sponsor is required > > for such big task > > Sponsoring is the worst problem here. No one actually wants to sponsor TV > development. > -- with respect, MaaBoo ICQ UIN: 22694713 From info at sk-typo3.de Tue Sep 30 17:51:33 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 17:51:33 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Dmitry Dulepov schrieb: > Hi! > > Steffen Kamper wrote: >> Jens from HCI already designed a new GUI, i will post them if available. >> Sponsoring is needed to rewrite TV for the new GUI, it's a >> time-expansive and not simple task, so money from sponsor is required >> for such big task > > Sponsoring is the worst problem here. No one actually wants to sponsor > TV development. > i have one interested sponsor, may be ... :-) But it's good to make it public so some agencies know that there is need for sponsoring. And agencies are good sponsors in general as they need features for their clients, so they can have them by sponsoring, not only engage one developer to patch. vg Steffen From chris at oblady.com Tue Sep 30 17:54:52 2008 From: chris at oblady.com (Chris) Date: Tue, 30 Sep 2008 17:54:52 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hello, maybe add the possibility in Page -> List module to select where to insert a record ?? Steffen Kamper a ?crit : > Hi, > > after some discussions i would like to start a wishlist for features in TV. > This is not meant as a garanty for implementing but more a survey to > find the most wanted features for GUI and functionality. > As i'm motivated to help integrating features, and others too, it will > help on concentrate of the really important ones, so i would glad if you > take part :-) > > vg Steffen From dmitry.dulepov at gmail.com Tue Sep 30 18:06:46 2008 From: dmitry.dulepov at gmail.com (Dmitry Dulepov) Date: Tue, 30 Sep 2008 19:06:46 +0300 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi! Chris wrote: > maybe add the possibility in Page -> List module to select where to > insert a record ?? Page->List??? -- Dmitry Dulepov My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/duplicate_content_with_realurl/ From info at sk-typo3.de Tue Sep 30 18:25:28 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 18:25:28 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Steffen Kamper schrieb: > maaboo schrieb: >> >> Also i think that all TYPO3 and TV need to be fully redesigned to >> implement >> best GUI techniques. If you interested - i can help. >> > > this task needs sponsoring. Screen designs already exist. > > vg Steffen I promised to show some screens, here is a preview: http://www.sk-typo3.de/TemplaVoila.369.0.html vg Steffen From info at sk-typo3.de Tue Sep 30 18:50:16 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 18:50:16 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Steffen Kamper schrieb: > Hi, > > ok, i start directly :-) > > 1) my wish is to sort items in mapping module like you can do in classic > page module or in list view > > 2) i would like to have the unused html-template as well with a link to > create a TO /DS from, simular to the context menu link in file module i have some littles more: 3) when in mapping view, show name and type of template, not only used html-file 4) add a Button "save" (save and stay in view) - it can be dangerous if you select the wrong in the select. 5) save-as: show a grouped select box (page templates and FCEs), mark the actual one for easy finding 6) use icon for template type (page template / FCE) as often as possible vg Steffen From dmitry.dulepov at gmail.com Tue Sep 30 19:06:25 2008 From: dmitry.dulepov at gmail.com (Dmitry Dulepov) Date: Tue, 30 Sep 2008 20:06:25 +0300 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi! Steffen Kamper wrote: > I promised to show some screens, here is a preview: > http://www.sk-typo3.de/TemplaVoila.369.0.html I saw those but they do not look like the rest of TYPO3. TV page module style must be similar to the rest of TYPO3. -- Dmitry Dulepov My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blog: http://typo3bloke.net/post-details/duplicate_content_with_realurl/ From info at sk-typo3.de Tue Sep 30 19:08:47 2008 From: info at sk-typo3.de (Steffen Kamper) Date: Tue, 30 Sep 2008 19:08:47 +0200 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Hi, Dmitry Dulepov schrieb: > Hi! > > Steffen Kamper wrote: >> I promised to show some screens, here is a preview: >> http://www.sk-typo3.de/TemplaVoila.369.0.html > > I saw those but they do not look like the rest of TYPO3. TV page module > style must be similar to the rest of TYPO3. > I agree, but the order of elements etc is good, styling can differ ;-) vg Steffen From tapio.markula at xetpoint.fi Tue Sep 30 19:15:39 2008 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Tue, 30 Sep 2008 20:15:39 +0300 Subject: [TYPO3-templavoila] Wish list for TV In-Reply-To: References: Message-ID: Dmitry Dulepov kirjoitti: > Hi! > > Steffen Kamper wrote: >> I promised to show some screens, here is a preview: >> http://www.sk-typo3.de/TemplaVoila.369.0.html > > I saw those but they do not look like the rest of TYPO3. TV page module > style must be similar to the rest of TYPO3. > I made in tm_tvpamodule changes, that templavoila works like rest of Typo3 - depending of Typo3 version like Typo3 4.0-4.1 or Typo3 4.2 (using even layout templates like main modules of Typo3 4.2). Unfortunately I never succeeded to get drag'ndrop working with it. From typo3 at feinbier.net Tue Sep 30 19:22:46 2008 From: typo3 at feinbier.net (Michael Feinbier) Date: Tue, 30 Sep 2008 19:22:46 +0200 Subject: [TYPO3-templavoila] Accessing the Index of a Section Message-ID: Hi Everybody, I've read that it should be possible somehow to access the current index of a section. I want to create an id-attribute dynamically from this section index. The uid of the FCE is accessible via "register:tx_templavoila_pi1.parentRec.uid" but how can I get the current Index? [...] 10 = TEXT 10.data = register:tx_templavoila_pi1.parentRec.uid 20 = TEXT 20.value = - 30 = TEXT 30.data = ????? 30.substring = 0,5 [...] My aim is to get
    Does anybody know how? Are all tv-registers documented somewhere? Thanks in advance :) Michael From typo3 at feinbier.net Tue Sep 30 19:28:46 2008 From: typo3 at feinbier.net (Michael Feinbier) Date: Tue, 30 Sep 2008 19:28:46 +0200 Subject: [TYPO3-templavoila] Splitting up loop sections Message-ID: Hey there, and another tricky problem this evening. In an FCE I've got a loopable section with a Text and a Content-Container. Should be no problem so far. But now, I first want to have all "text" Elements of all sections and then all Content-Containers. Is this possible somehow? Heres a little Example:
    • Text of section 1
    • Text of section 2
    • Text of section 3
    All CE of section 1
    All CE of section 2
    All CE of section 3
    How could this be done? I'm stuck :( Thanks! Michael