Search the website and IRC logs

#TYPO3 IRC log from : Tuesday 21 July 2009

Year: 2007 2008 2009 2010 2011 2012
Month: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
00:53 mammut hi
00:54 mammut I've got a question regarding srfeuserregister and one about very strange, spooky things happinging around the calendar base extension ... can anybody help?
04:47 lazarus477 Do the pros here use the framework from templavoila.busynoggin.com? Or, do you all prefer to create something similar from scratch?
05:01 lazarus477 Do the pros here use the framework from templavoila.busynoggin.com? Or, do you all prefer to create something similar from scratch?
08:44 Phlogi_ I have a tca field of type group for asociated fe users, the list view only shows the id of this users but not their names, can I change that?
08:46 Phlogi_ lazarus477: go for it and write some review :)
08:47 nd_ Anyone really into restful services? Is that possible with typo3 without rewriting in the core?
08:50 sorenmalling Phlogi_: Did you define what to show for your group field, in your ext_tables.php? (can't remember the atribute)
08:51 Phlogi_ sorenmalling: don't think... I couldn't find the right option... :S
08:51 Phlogi_ sorenmalling: you mean the label thing?
08:52 Phlogi_ I think the problem is that its not a true mm relation... maybe? When editing the record however the username is shown and not just the id
08:52 sorenmalling Phlogi_: Yes, the label thing was what i had in mind
08:53 Phlogi_ sorenmalling: my problem is more that its not possible even when expanding the view... you know with that plus thing on top of the table
08:53 sorenmalling Phlogi_: Hmm, so your fe_users table is showing the id instead of the username in the list view?
08:54 Phlogi_ sorenmalling: nope, its my own table that has a column that stores fe user id...
08:54 Phlogi_ with coma seperated method, not true mm (i used that because its only one fe_user that will be associated)
08:55 sorenmalling Can you try to post your tca definition ?
08:57 Phlogi_ talking about this view: http://imagebin.ca/view/Jp-1QX.html
08:57 Phlogi_ sorenmalling: sure
08:58 Phlogi_ http://www.phlogi.net/f/t3/tsp/sp/-3de6cf88b3/
09:00 sorenmalling Phlogi_: Change 'label' => 'uid', in $TCA[.... to another field
09:00 Phlogi_ sorenmalling: not really the solution.. if I change that the the fe_user_id I think it will just show the integer id again
09:01 Phlogi_ what I want is the name of the user in there
09:05 Phlogi_ I think the list module is a little bit limited here anyway... but if I really need it I'll do a true mm relation I think that works
09:20 _pedda_ hi all
09:40 Phlogi_ when I have something like date('Y',time()); in my extension, how can I make sure that the correct language is chosen? Does TYPO3 provide any function for this?
09:40 Phlogi_ hi _pedda_
09:40 _pedda_ ^^
09:55 Phlogi_ _pedda_: huhu
10:00 maholtz|WORK @Phlogi_ the correct language should be taken, but imho there was a difference between strftime and date with that.
10:01 maholtz|WORK ups..
10:01 maholtz|WORK in your extension...
10:01 maholtz|WORK perhaps you should make it configurable via typoscript, but it should work there too
10:02 Phlogi_ maholtz|WORK: i pass something to date?
10:03 Phlogi_ ah I see
10:03 Phlogi_ php is a mess :D
10:03 maholtz|WORK $this->cObj->stdWrap($passingSomething,$this->conf['somethingStdWrap.']);
10:04 maholtz|WORK in typoscript: plugin.yourplugin_pi1.somethingStdWrap.date = Y
10:06 nd__ Ideas why a user cannot delete CEs or rearrange them? When deleted they disappear, when reloading the sites content in BE they're there again..?
10:08 Phlogi_ maholtz|WORK: I don't like so much TS all the time, but I guess I'll go for it this time :)
10:09 Phlogi_ maholtz|WORK: I guess something can be mktime(0,0,0,$i,1,$year) here?
10:11 Phlogi_ I just get $passingSomething now... so just the unix timestamp
10:14 Phlogi_ ah forgot the dot :D
10:15 Phlogi_ hmm, its still english however... maholtz|WORK do you know which language setting should affect this?
10:16 nd__ ok, tvdraganddrop was the culprit
10:17 maholtz|WORK @Phlogi: config.locale_all =
10:18 Phlogi_ are you sure this date stdWrap respects this?
10:19 Phlogi_ from the tsref: $content = date($conf["date"],$content);
10:19 Phlogi_ which would not do that
10:19 maholtz|WORK yep, TYPO3 sets the local, which should be respected by date and strftime
10:19 Phlogi_ locale_all is set to de_DE
10:19 Phlogi_ I have monthStdWrap.date = F
10:20 maholtz|WORK is de_DE correct?
10:20 Phlogi_ $subPartArr['###CURRENTMONTH###'] = $this->cObj->stdWrap(mktime(0,0,0,$i,1,$year),$this->conf['monthStdWrap.']);
10:20 maholtz|WORK on your server?
10:20 Phlogi_ maholtz|WORK: not sure...
10:20 Phlogi_ every sane server supports a good set of locales
10:21 maholtz|WORK ah, but
10:21 Phlogi_ can I easily check that?
10:21 maholtz|WORK date perhaps does not respect setlocale() ? stftime does: "Format the time and/or date according to locale settings. Month and weekday names and other language-dependent strings respect the current locale set with setlocale(). "
10:21 Phlogi_ yes exactly...
10:21 Phlogi_ and tsref says its using date
10:21 Phlogi_ so... thats why I was wondering
10:22 maholtz|WORK so use strftime instead of date
10:22 maholtz|WORK it is available in tsref too
10:23 Phlogi_ using just strftime in php works now
10:23 Phlogi_ ah of course! damn :D
10:23 Phlogi_ just under date ;)
10:23 maholtz|WORK "To format dates in other languages, you should use the setlocale() and strftime() functions instead of date(). "
10:23 Phlogi_ thanks!
10:23 maholtz|WORK np, i only had in mind, to use strftime, but forget why:)
10:24 Phlogi_ hehe
10:24 Phlogi_ now your refreshed on this :)
10:25 maholtz|WORK yep:)
10:25 maholtz|WORK thanks:p
10:41 Phlogi_ gg
10:43 coolguy hello there. does somebody know hot to compile the newest version of imagemagick as a static version?
10:47 Phlogi_ coolguy: ask in the distribution channel of your servers distro
11:01 Phlogi_ I still haven't found a solution for this:
11:02 Phlogi_ In my list view I have associated fe users, but the list module always just shows the id of the user but not its name or username or anything, how can I change that?
11:08 Wolos hi @all
11:11 Wolos jemand da der mir helfen kann die thickbox in typo 3 auf einer seite zu integrieren?
11:14 NMB by default the html RTE backend converts all <a> tags in the <link> tags
11:15 NMB is there any setting which disables this automatic conversion?
11:15 NMB i need that links should be stored as <a> tags and not as <link> tags
11:16 Wolos I want to use the thickbox for zoom not the same picture
11:16 Wolos I try "tt_content.image.20.1.imageLinkWrap.typolink.ATagParams.dataWrap (class="thickbox")"
11:21 pmk65 NMB: Switch to TinyMCE RTE, as that can handle A tags. ;)
11:21 Phlogi_ NMB: I'm sure there is, but I can't remember it
11:22 pmk65 You can also try copieng the links userFunc from TinyMCE RTE, and see if you can get it working with HTMLArea.
11:25 Wolos can no one help me by the typoscript?
11:28 pmk65 Wolos: Why don't you use one of the Thickbox extensions?
11:29 pmk65 http://typo3.org/extensions/repository/view/jquery_thickbox/current/
12:07 m4rtijn hi all
12:15 _pedda_ hi m4rtijn
12:23 NMB RTE in the admin panel by default converts all <a> tags to their corresponding <link> tags
12:23 NMB is there any setting in RTE that disables this behaviour?
12:23 NMB i do not want to convert <a> tags into link tags
12:25 pmk65 NMB: Look at the link userfunc in TinyMCE RTE
12:25 pmk65 NMB: TinyMCE RTE's link userfunc is at the bottom of this file (If you want to try implementing it in HTMLArea) -> http://typo3.org/extensions/repository/view/tinymce_rte/current/info/ext_localconf.php/
12:29 NMB i know there is a setting somewhere for HTml Area
12:29 NMB but i dont know where
12:30 pmk65 lib.parseFunc controls the conversion of links etc.
12:30 pmk65 and lib.parseFunc_RTE
12:31 NMB i m a new bie in typo3
12:31 NMB these things are actually too advanced for me :S
12:32 NMB isnt there any simple solution for this
12:32 m4rtijn maholtz|WORK: ?
12:33 pmk65 NMB: Dunno. I don't use HTMLArea anymore myself. I prefer TinyMCE RTE.
12:34 NMB :(
12:34 pmk65 why do you want it stored as "A" tags and not <link> ?
12:36 pmk65 it's very easy to convert the <link> to A tags before displaying it in FE.
12:39 NMB actually i have a FE plugin
12:39 NMB how that frontend plugin converts <link> to <a> tags
12:39 NMB ?
12:40 pmk65 is it configured by typoscript? If yes, then you just pass the output through the lib.parseFunc_RTE
12:41 pmk65 something like this: -> http://paste.phlogi.net/-5aeb70b5ec/
12:41 NMB no its not configured by typoscript
12:43 NMB how to do that without typoscript
12:46 teppi|work NMB, maybe you are looking for tslib_pibase.pi_RTEcssText($str) ?
12:46 teppi|work think this should parse <link> ..
12:46 NMB k
13:37 lazarus477 Good morning.
13:39 maholtz|WORK morning lazarus477
13:39 Phlogi hi guys
13:39 maholtz|WORK where do you come from lazarus477?
13:41 Bitcrusher hi guys
13:41 Bitcrusher damn, i ripped off Phlogi ;)
13:41 Phlogi muah
13:45 Bitcrusher listen, i'm trying to get started writing my own plugin for Typo3, I've used the Kickstarter and i got the T3Dev plugin for reference, but I still need to be able to make new Records etc, and the GUI for making the properties/settings for the plugin and new Records. Any pointers/links on that by any chance? :)
13:50 pmk65 Bitcrusher: BE or FE?
13:51 Denyerec hey chaps
13:52 pmk65 Hi Denyer..
13:53 Bitcrusher well, the creation of records in the BE
13:53 pmk65 Bitcrusher: For setting up a plugin so that it can be configured from Typoscript, I recommend reading this -> http://wiki.typo3.org/TypoScript_-_PHP_Interaction
13:53 Bitcrusher thank you :)
13:53 pmk65 If you create tables correctly from the kickstarter, then it interacts with the TYPO3 GUI directly.
13:54 Bitcrusher ill give it a look, just after ive been at the dentist for a torturesession ;)
13:54 Denyerec Bitcrusher is a cool name.
13:54 Denyerec Anything that crushes is usually cool.
13:54 Bitcrusher hehe, thanks
13:55 Bitcrusher afk for now
13:55 pmk65 all the "magic" config stuff is done in the $TCA array. The Kickstarter creates a standard(simple) setup for the fields, so if you want to do more advanced stuff, I suggest you read the API manual (or part of it ;) -> http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.2.0/view/
13:56 Phlogi pmk65: now my query gets little bit ugly :)
13:56 Phlogi Bitcrusher: read on the wiki as well and use google... read as much as you can :D
13:56 pmk65 MM querys are ugly.
14:10 Phlogi its so stupid that there is no mm relation between fe_groups and fe_users!
14:12 Phlogi is it possible to create a mysql WHERE that does something like inList()? for user group ids like 5,58,56?
14:27 Phlogi anyone knows if there is a function ListInList? :)
14:30 maholtz|WORK @Phlogi: http://wiki.typo3.org/De:TSref/if
14:30 maholtz|WORK ups...
14:30 maholtz|WORK i should read more than the last sentence
14:31 _pedda_ mm relations..
14:31 _pedda_ :)
14:31 maholtz|WORK enableFields()
14:31 maholtz|WORK ?
14:31 maholtz|WORK uid IN (5,58,56) ?
14:34 Phlogi maybe... did it by hand now
14:35 Phlogi means with php
14:37 Phlogi maholtz|WORK: do you know if this mysql IN works for: 12,12,8 IN (1,4,8) ?
14:37 maholtz|WORK i dont think so
14:46 Phlogi ok
14:46 Phlogi grr my code is ugly ^^
14:47 Phlogi oh scriptmerger looks like a promising extension... I thought of that as well
14:52 Lio999 hi all
14:53 Lio999 does anynody has experience using mootools with jquery?
15:04 Phlogi maholtz|WORK: do you remember that extension that sends an email after something is done with a tt_news record?
15:09 Phlogi I'm in a backend function somewhere, is there an easy way to access all the TS from current page?
15:15 paese someone here using "language detection" ? i want to set up every lang to point to EN except DE but it won't work when i do it with the manual
15:25 maholtz|WORK @phlogi: something like news alerts
15:32 Phlogi why is it so annoying to use a cObj in backend? damn
15:37 jananne hello, how do i remove the temp css line in the header by tsconfig? ( <link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_c3ad6dc8fa.css" /> )
15:38 jananne i don't need it.
15:50 mcoca hello, i want upgrade typo3 intallation, I back up the folder uploads and database with the next command: mysqldump -h mysql.host.com.ar --opt --password=pass --user=user t3_host > back_210709.sql, it's all right? I need do something else before upgrade?
15:51 maholtz|WORK backup typo3conf/ too
15:53 mcoca maholtz|WORK: thanks!
15:55 maholtz|WORK which version do you upgrade?
15:55 HardPhuck which RSS to tt_news import extension is best?
15:55 maholtz|WORK dont delete your old sourcefolder! perhaps you used global-extensions
15:55 mcoca 4.1.3 to 4.2.8
15:55 HardPhuck i need to decide here :)
15:55 mcoca ok
15:56 maholtz|WORK @Hardphuck: which are available?
16:02 HardPhuck ttnews_feeder, xml_ttnews_import, rss2_import,gkh_rss_import
16:08 HardPhuck okay solved
16:18 maholtz|WORK yafi?
16:46 HardPhuck no, gkh_rss_import
17:42 pulponair hi there
17:42 pulponair is there a better/more up2date way to enforce ssl for a certain page than https_enforcer - extension?
18:14 _pedda_ cu all
18:34 eichenwald is there a way to globally disable nicetext?
19:11 litzinger i have a pretty big issue where i'm copying an entire tree node with sub pages to a different node, and when i do all the content block i added to the page are no longer editable in the newly pasted page b/c it's referencing the content blocks from the original page. is there a way around this?
19:21 tomsdale Does anyone know when 4.3 beta 1 is to be expected?
19:46 Michelangelo hi all
19:46 Guest99926 hi all
19:47 skurfuerst hi everybody
19:48 Guest99926 i have a problem using 2 extensions one is jquery one is mootools based, does anybody have aexperience with these frameworks
19:51 litzinger http://docs.jquery.com/Core/jQuery.noConflict
19:51 litzinger http://jquery-howto.blogspot.com/2009/07/jquerynoconflict-resolving-conflicts.html
19:51 litzinger I assume that is your isse
19:51 litzinger issue
19:53 Guest99926 yes and thats the point. I already added the no conflict into the file now the point is, how is it possible to let the jquery extension load before the mootools (how can I make it appear first in the source
19:54 litzinger http://pastie.org/553736
19:54 litzinger try something like that
19:55 litzinger to set the include order
19:57 Guest99926 k I ll try that,
22:30 lazarus477 Do the pros here use the framework from templavoila.busynoggin.com? Or, do you all prefer to create something similar from scratch?
22:32 skurfuerst lazarus477: we use it and it is awesome :)
22:33 lazarus477 good, thanks.
23:13 snoy_ms hey all, where do i find the flexform api ?
23:13 snoy_ms i need some infos about xml attributes

Technologies


R. van Twisk 2004-2010 R. van Twisk / Avenida Diego de Almagro No: 22-47 y Juan Severino / Quito Ecuador
callto://r.vanTwisk | Support: +1 (803) 4263350

© 2012 R. van Twisk. All Rights Reserved.