| 00:46 |
coffeejunky^afk |
someone still here? |
| 01:40 |
coffeejunky^afk |
gn8 |
| 02:00 |
lazarus477 |
Can someone tell me in short why I would prefer Typo3 over drupal, if at all? I have never used drupal, only typo3. I am guessing someone else here has more experience. |
| 05:42 |
lazarus477 |
James Webb Young wrote about 40 years ago in his little gem "A technique for producing Ideas": |
| 05:43 |
lazarus477 |
An idea is nothing more nor less than a new combination of old elements. |
| 11:35 |
tofirius |
hi all |
| 11:36 |
tofirius |
anyone have experience with taking advantage of a hook from an extension? |
| 11:48 |
m4rtijn |
hi |
| 11:51 |
tofirius |
m4rtijn: hello |
| 13:37 |
nd__ |
I have an TypoScript-GIFBUILDER-Object and I'd like to insert them into several rows in a table. What's the best way? |
| 13:39 |
nd__ |
I thought of using one table-fce, then inside several row-fces which place the TS right there... but well, is there something more easy for the client to use? |
| 14:36 |
nd__ |
How can I disable the FCE-wrap <div class="el">|</div>? |
| 14:53 |
nd__ |
Ah, dead channel today |
| 15:39 |
jjulian |
hi im having a two language page. and using realurl. the first language url works great. but the second gets a 302 moved temporary to a user login area. how can i get information o that issue? like how to know which page it is forwarding to and why?! |
| 15:43 |
nd__ |
I have two FCEs; one outer fce, another one inside it. How do I read values out of the parent and use them inside the child? |
| 15:45 |
nd__ |
ah, ries would know that |
| 15:51 |
nd__ |
ries: got some minutes to help me with a combination of templavoila and TS? |
| 15:55 |
ries |
nd__: sure |
| 15:58 |
nd__ |
awesome |
| 15:58 |
nd__ |
ries: That's what I have at the moment: http://t3paste.org/o2m1HF |
| 15:59 |
nd__ |
(inside my child-fce) |
| 15:59 |
nd__ |
As you see with the register:... I try to access the parents-FCE value (and later to make a condition and change the GIFBUILDERs colors) |
| 15:59 |
ries |
Ooo crap... that are 43 lines of TS dude! |
| 16:00 |
nd__ |
Aren't you writing something like >100 lines of TS? |
| 16:00 |
ries |
Much more... but I keep it simple :) |
| 16:00 |
ries |
But go on.... what is the question? |
| 16:00 |
nd__ |
You can entirely skip the GIFBUILDER section at the moment |
| 16:00 |
nd__ |
How do I successfully access the parents FCE values (like field_metal)? |
| 16:02 |
ries |
nd__: I don't think I have ever done that |
| 16:04 |
nd__ |
ah, crap |
| 16:04 |
nd__ |
ok |
| 16:04 |
nd__ |
according to dr. google it should work with the register:... line I have (comented out) |
| 16:05 |
nd__ |
but it does not get replaced, it seems. |
| 16:05 |
ries |
nd__: I wonder if it's possible... |
| 16:05 |
ries |
nd__: do you have your TS as a template or within the DS? |
| 16:06 |
nd__ |
within the DS |
| 16:08 |
ries |
That should be good as I read it |
| 16:09 |
nd__ |
hehe |
| 16:09 |
nd__ |
well |
| 16:11 |
nd__ |
but using: |
| 16:11 |
nd__ |
[ register:tx_templavoila_pi1.parentRec.field_metal = gold ] |
| 16:11 |
nd__ |
titleText { |
| 16:11 |
nd__ |
current = 1 |
| 16:11 |
nd__ |
} |
| 16:11 |
nd__ |
[ GLOBAL ] |
| 16:11 |
nd__ |
titleText = WURM |
| 16:12 |
nd__ |
I get the current title, even though the condition should be false atm |
| 16:17 |
ries |
nd__: sorry I cannot help you there... |
| 16:18 |
nd__ |
ok |
| 16:18 |
nd__ |
thanks anyway |
| 16:39 |
dokma |
Hey guys! Anyone ever implemented default content for a TV element? |
| 17:18 |
nd__ |
ries: Maybe another thing that bothers me |
| 17:19 |
nd__ |
ries: The site is using tt_content.stdWrap.dataWrap = <div class="el"> | </div> but I'd to surpress that for a given FCE. Is that possible? |
| 17:28 |
pmk65 |
nd__: you can store the FCE values in registers, and then reuse them later. |
| 17:29 |
pmk65 |
example -> http://lists.netfielders.de/pipermail/typo3-project-templavoila/2009-September/004253.html |
| 17:33 |
nd__ |
pmk65: but I can also use them directly like it's done via field_link... |
| 17:33 |
nd__ |
pmk65: Is that an answer to my previous question about parent-fce? |
| 17:34 |
nd__ |
means I store them in a global register and then read it out? What if I have several of those FCEs on one page? |
| 17:40 |
pmk65 |
for that I think you'll need some php script that returns the values to your TS, as TV scructures are stored as XML, so you can't acces them directly from TS. |
| 17:41 |
pmk65 |
I wrote an ext for that, but currently it only works with page templates, not FCE's. |
| 17:42 |
pmk65 |
http://forge.typo3.org/projects/show/extension-pmktsvoila |
| 17:45 |
nd__ |
hmm |
| 17:45 |
nd__ |
for now I moved the select field to my child fce |
| 17:45 |
nd__ |
but even then conditions to not seem to work |
| 17:45 |
nd__ |
[field_selector = gross] |
| 17:45 |
nd__ |
should work like that, right? |
| 17:46 |
nd__ |
Or do I have to read it into a register and use [register:selector = gross]? |
| 17:48 |
pmk65 |
you'll need to supply a type for the condition (I guess GlobalString is the one needed for your setup) |
| 17:49 |
pmk65 |
something like [globalString = register:field_selector=gross] |
| 17:50 |
nd__ |
ah, lemme try |
| 17:53 |
nd__ |
nah, doesn't work either |
| 17:54 |
nd__ |
hmm... seems related to the [GLOBAL] |
| 17:54 |
nd__ |
a single [GLOBAL] somewhere doesn't hurt, does it? |
| 17:55 |
pmk65 |
no, a global just returns to "normal". but it might be because flexform fields can't be accessed from conditions. |
| 17:57 |
nd__ |
ah |
| 17:57 |
nd__ |
damn |
| 17:57 |
nd__ |
http://t3paste.org/Ksv35V that's the conditions stuff not working |
| 17:57 |
nd__ |
can I move out my TS to an external TS? |
| 18:00 |
pmk65 |
yes. just create a "lib.myts", and then in the FCE, include it like 10 < lib.myts |
| 18:00 |
pmk65 |
but you might be able to solve the problem if you use a CASE object in your TS instead of using conditions. |
| 18:01 |
nd__ |
ok, I'll go for the CASE because in lib.myts I couldn't use field_... |
| 18:02 |
pmk65 |
take a look at how I made my FCE with gifbuilder -> http://lists.netfielders.de/pipermail/typo3-project-templavoila/2009-September/004253.html |
| 18:03 |
nd__ |
had that open before :) |
| 18:03 |
pmk65 |
it generates a "menu" with rollover, you can see it here: http://kkuc.planck.mocsystems.com/behandlinger/ |
| 18:03 |
nd__ |
but you get your colors from fields. I want to give the client a dropdown to select the style, then go for it |
| 18:04 |
pmk65 |
(element in the right column) In the FCE, you can specify 2 colors, but that could come from predefined data if you use a case obj. |
| 18:07 |
nd__ |
Sorry pmk65, but I don't get it. I'd do a CASE-switch on my field_metal, right? But the object I return must always be 5, because of the references to it |
| 18:08 |
pmk65 |
in each of the CASE'es, you create a LOAD_REGISTER object, and set all the values. Then in the main script you use the values set in the registers. |
| 18:09 |
pmk65 |
similar to what I did in my example. |
| 18:12 |
nd__ |
alright, nice |
| 18:12 |
nd__ |
thank you pmk65 |
| 18:13 |
nd__ |
ah, actually not |
| 18:13 |
nd__ |
damn |
| 18:13 |
nd__ |
thank you, but it doesn't work yet |
| 18:13 |
nd__ |
;) |
| 18:16 |
nd__ |
http://t3paste.org/scZrIV |
| 18:20 |
nd__ |
still wrong? |
| 18:44 |
nd__ |
pmk65: do you spot the error? gotta leave in 5 minutes and would love to solve it :) |
| 18:48 |
pmk65 |
yor case object is not correct. |
| 18:49 |
nd__ |
What am I missing? I set the key and then do the switches |
| 18:49 |
nd__ |
according to http://wiki.typo3.org/index.php/De:TSref/CASE that should be it |
| 18:50 |
nd__ |
ah, anyhow, gotta go... thank you a lot, pmk65... |
| 18:51 |
pmk65 |
http://t3paste.org/aPqY8T |
| 19:21 |
MarkusH |
hello |
| 19:21 |
MarkusH |
i try to configure lz_gallery |
| 19:21 |
MarkusH |
but i only get the message, that no images are found |
| 19:22 |
MarkusH |
i created a Sysfolder |
| 19:22 |
MarkusH |
and add a GalleryRecord |
| 19:24 |
MarkusH |
i enter a titel and a short description and set the "foto path" to fileadmin/upload/gallery/nyc/ |
| 19:24 |
MarkusH |
after that i created a page with a page-content Plugin->Gallery |
| 19:25 |
MarkusH |
the i set the startingpoint to the Sysfolder i created previously |
| 19:26 |
MarkusH |
i set the recursive-flag in the plugin-settings to infinite |
| 19:26 |
MarkusH |
does somebody have an idea |
| 19:28 |
MarkusH |
the images are uploaded to [fileadmin/]: upload/gallery/nyc/ 21 Files, 4.7 Mbytes |
| 21:39 |
jacky |
hi all |
| 21:40 |
jacky |
how to use mysql as the persistence backend in FLOW3? |
| 22:12 |
jacky |
hi, anyone is working at flow3? |