[TYPO3-english] question about ext.

2009-11-23 Thread Patrik
Does anybody know if exist any extension to make web page for Virtual
Memorials like this http://www.gonetoosoon.org/?

Regards,
Patrik
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Custom wrapping text and textpic cObj

2009-11-23 Thread Tomas Mrozek
 But this doesn't work; the function isn't called.

I think it should be user_MyUserFunc.

 I simply added the function to the end of typo3conf/localconf.php.

The better probably is to place it into your own PHP file as:

class user_myClass {
  myFunction($content, $conf) {

  }
}

...include the file in your TS setup:

page.includeLibs.mc = fileadmin/myCustomClass.php

...and then call:

tt_content.text.30.userFunc = user_myClass-myFunction

Tomas Mrozek
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Custom wrapping text and textpic cObj

2009-11-23 Thread JoH asenau
 I need to add a trailing /div in very specific situations, relating
 to an extension I've created. It's a header-style extension that
 creates an accordion out of content elements, using the header as the
 accordion toggle, and the bodytext of the content element as the
 content of the accordion. Initially, I needed to add two HTML content
 elements to the page, one above and one below the content elements,
 the upper one containing:

 div id=accordion_wrapper

 and the bottom one containing:

 /div

And you really want to do this with two different elements although the id
already contains the term pointing to the solution?
You should NEVER use content elements for this purpose since this is a job
for one of the different TypoScript WRAPs.

tt_content.stdWrap.outerWrap = blah|blah

should be doing exactly what you want.

HTH

Joey

-- 
Wenn man keine Ahnung hat: Einfach mal Fresse halten!
(If you have no clues: simply shut your gob sometimes!)
Dieter Nuhr, German comedian
Xing: http://contact.cybercraft.de
Twitter: http://twitter.com/bunnyfield
TYPO3 cookbook (2nd edition): http://www.typo3experts.com


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] static_info_tables

2009-11-23 Thread Georg Schönweger
i know, but if i click there i get the message: No tracker is associated
to this project. Please check the Project settings.

kind regards,
Georg

Jigal van Hemert schrieb:
 Hi Georg,

 Georg Schönweger wrote:
 is there a way to submit patches for static_info_tables? I found out
 that for Italy 7 provinces are missing. I tried in forge.typo3.org but
 there i can't post an issue.

 Once I'm signed in a link new issue appears on the right side of the
 issues page...

 Regards, Jigal.
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] static_info_tables

2009-11-23 Thread Bernhard Kraft

Georg Schönweger wrote:

i know, but if i click there i get the message: No tracker is associated
to this project. Please check the Project settings.


Then you should probably contact the project admin, Franz Holzinger:

http://forge.typo3.org/account/show/824

To add a tracker for bugs, tasks, etc. to this extension, and inform him 
about the missing information for Italia.



greets,
Bernhard
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Adding FCE with TS ??

2009-11-23 Thread Bernhard Kraft

André L. Keidser wrote:


I would like to take a FCE that I have and put that in to an area that
is defined as typoScripObjectPath with help of TS. I know how to do it
with ordinary contents and plugins but not flexible contents... Is it
possible?




# quite easy ;)
lib.yourObjectPath = RECORDS
lib.yourObjectPath {
tables = tt_content
# UID of your content element
source = 123
}



greets,
Bernhard
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Configuration space for plugins (?)

2009-11-23 Thread Bernhard Kraft

Francois Suter wrote:

That's what I think too. I'll write that down as a possible clean up to 
do at some point.


Hello !

I found an issue with T3Core-API:

http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.2.0/view/4/2/#id4272080

Search for

Means that the relation to the records of

This term occurs exactly twice in TSref. At the upper one the whole 
sentence is:



Means that the relation to the records of foreign_table / 
new_foreign_table is done with a M-M relation with a third join table.



I guess the new_foreign_table should be neg_foreign_table instead. 
As there is no property new_foreign_table for a type=select TCA field.



greets,
Bernhard
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Configuration space for plugins (?)

2009-11-23 Thread Francois Suter

Hi,


I found an issue with T3Core-API:


Could you please open a bug report for that and assign it to the 
Documentation category? That would be very nice. I'll loose track of 
it otherwise.


Cheers

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Configuration space for plugins (?)

2009-11-23 Thread Steffen Müller
Hi.

On 23.11.2009 21:14 Francois Suter wrote:
 
 I do not know if this makes any sense, as you could use any arbitrary
 TypoScript path like lib.myPlugin, but if this is in the documentation
 I   would like to know who introduced this.
 
 My guess is that it's very old...
 
 If no references can be found in the core (I did not have a look) I
 guess it could get removed from the documentation
 
 That's what I think too. I'll write that down as a possible clean up to
 do at some point.
 

You can also find this syntax in TSconfig docs.
There we have tx_[extension key with no underscore] as a reserved syntax
for custom top level objects in userTS/pageTS.
IMHO it is used in tt_news to set the single pid for the saveview
button. I also use it in a non-public extension.

But I have never seen TS like
config.tx_extname_pi.whatever
in the last 7 years in the wild...

-- 
cheers,
Steffen

TYPO3 Blog: http://www.t3node.com/
Blubber on Twitter: http://twitter.com/t3node
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TS to change plugin configuration according to position on page (tt_news)

2009-11-23 Thread Xavier Perseguers

Hi,

I use TV for a website and would like to have a different TS 
configuration according to where a tt_news plugin is put on page (either 
in TV placeholder content or in TV placeholder sidebar).


Any idea?

Something that would work would be to define to TS object holding a 
special tt_news configuration (e.g. for sidebar) and ask editors to use 
EXT:tscobj but perhaps there's a better (=easier for editors) approach 
using some TS condition?


--
Xavier Perseguers
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english