| 00:03 |
ckoehler |
any news on the svn migration? |
| 00:03 |
ckoehler |
still no notification in the core list |
| 00:03 |
ckoehler |
and it's past midnight already |
| 03:04 |
nature |
denyer? |
| 03:05 |
nature |
got another fun problem you might like to help solve :) |
| 03:09 |
Denyerec |
shoot |
| 03:09 |
Denyerec |
thoI might fall asleep :/ |
| 03:31 |
nature |
asleep yet? |
| 03:33 |
nature |
it's for the latest typo3 site we deployed |
| 03:33 |
nature |
http://www.interferencetechnology.com/ |
| 03:34 |
nature |
what we need is this. FE user is logged in. When they go to resources and click a link we send an email to the person that link belongs to (a video, white paper, etc.) |
| 03:34 |
nature |
so... i figured we'd do all the work in php (we also need to log each transaction) |
| 03:35 |
nature |
so i'm trying to use that code you showed me that hands of tt_news content for cropping and processing via PHP |
| 03:35 |
nature |
when the TScript is invoked it would call the routine and in the php and hand off the uid and news article id |
| 03:36 |
nature |
i need to figure out how to hand off those to bits of info |
| 03:36 |
nature |
if he wasn't asleep before i wrote that he is now |
| 03:41 |
nature |
http://pastebin.com/m67f1561b |
| 03:59 |
Denyerec |
s |
| 03:59 |
Denyerec |
Tired of £300 CMS sites. |
| 03:59 |
Denyerec |
nature |
| 04:01 |
Denyerec |
i'd be tempted to say you could build fancy typolinks to a standalone PHP script, that took a bunch of parameters (File, UID, etc) |
| 04:01 |
Denyerec |
wouldn't be *too* hard to build a typolink with your custom parameters I don't think. |
| 04:01 |
Denyerec |
BUt then... I'm not soo sure as I'm very tired. |
| 04:01 |
Denyerec |
Not to mention pissed off. |
| 04:01 |
Denyerec |
3 of my camera lenses are dead, my camera is half dead and my mobile phone screen is kaput. |
| 04:02 |
Denyerec |
And, naturally, I can barely afford to replace one of them, let alone the whole lot. :( |
| 04:02 |
Denyerec |
Anyway, I gotta sleep. |
| 04:02 |
Denyerec |
if you figure this out before i get back, I'd love to see the solution, so let me know how youg et on. |
| 04:02 |
Denyerec |
Goodnight! |
| 04:02 |
Denyerec |
-zzz- |
| 04:03 |
Denyerec |
oh |
| 04:03 |
Denyerec |
nature one last ting |
| 04:03 |
Denyerec |
if you want to send parameters to a PHP function, you need to use $conf |
| 04:03 |
Denyerec |
I don't rememeber the details offhand, but that should give you somewhere to look |
| 04:03 |
Denyerec |
you set them in the array, then reference the array from the php function |
| 04:03 |
Denyerec |
that's right isn't it ries? |
| 04:04 |
nature |
hmm |
| 04:05 |
Denyerec |
ths should help: |
| 04:05 |
Denyerec |
http://www.typo3-jack.net/typo3-english-lists-netfielders-de/6519-typo3-typoscript-userfunc-passing-value.html |
| 04:05 |
nature |
ahhh |
| 04:05 |
Denyerec |
you set it within the object you're defining the userfunc for |
| 04:05 |
Denyerec |
blah.param1 |
| 04:05 |
Denyerec |
then within the userfunc access: |
| 04:05 |
Denyerec |
$this->cObj->getData($conf['param1'], ''); |
| 04:06 |
Denyerec |
I mean, what could be more obvious? |
| 04:06 |
Denyerec |
... |
| 04:06 |
Denyerec |
¬_¬ |
| 04:06 |
nature |
i can think of very little |
| 04:06 |
nature |
it's sorta like a reference call in perl |
| 04:06 |
nature |
except different |
| 04:10 |
Denyerec |
you basically populate the conf array from TS |
| 04:10 |
Denyerec |
then all userfuncs have access to the cObj conf array through their conatiner $this |
| 04:10 |
Denyerec |
or... something |
| 04:10 |
Denyerec |
I'm very tired, and grumpy for the above reasons, so might not be explaning this too well. |
| 04:12 |
Denyerec |
gnight nature, I'll catch you in the morning. Who knows, my luck might be better tomorrow. It can't get that much worse afterall ;) |
| 04:12 |
Denyerec |
(Famous last words...) |
| 04:14 |
rapidfyredotnet1 |
How do you add an additional stylesheet to the backend of Typo3? |
| 04:16 |
rapidfyredotnet1 |
The new rtehtmlaread uses div.indent instead of blockquote and there is no style set for the indent class making it impossible to visually see an indent in the RTE. |
| 04:17 |
rapidfyredotnet1 |
What is the best way to include custom CSS for the backend? |
| 04:18 |
nature |
night denyer |
| 04:18 |
nature |
rapid... like this |
| 04:19 |
nature |
http://pastebin.com/m1075c593 |
| 04:20 |
nature |
that's in my main template Setup pretty much at the top |
| 04:22 |
rapidfyredotnet1 |
That's for frontend CSS though isn't it? |
| 04:22 |
nature |
doh |
| 04:22 |
nature |
yeah |
| 04:22 |
rapidfyredotnet1 |
;) |
| 04:22 |
nature |
sorry, misunderstood the question |
| 04:24 |
rapidfyredotnet1 |
I found this page: http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.1.0/view/6/4/ |
| 04:24 |
rapidfyredotnet1 |
...and it talked about $TBE_STYLES['styleSheetFile_post'] but it sounds like the only way to get to this stuff is through an extension or custom php file. |
| 04:24 |
rapidfyredotnet1 |
http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.1.0/view/6/4/ |
| 04:25 |
rapidfyredotnet1 |
Does anyone know how to elegantly append a CSS file for the backend without creating a whole extension to do it? |
| 04:26 |
rapidfyredotnet1 |
I could just edit the main CSS files but it's not a good solution for upgrading to a new source for Typo3 in the future. |
| 04:27 |
rapidfyredotnet1 |
I'd have to copy and paste with each upgrade and remember exactly which files I edited. |
| 04:31 |
rapidfyredotnet1 |
Can I include a CSS file for styling the Typo3 backend by including a file in typo3conf/localconf.php like is recommended when setting up realurl? |
| 04:33 |
rapidfyredotnet1 |
include(PATH_typo3conf.'custom-backend-styling.css'); |
| 04:39 |
rapidfyredotnet1 |
Anyone? |
| 09:41 |
Marquel_ |
morning |
| 09:41 |
just2b |
morning |
| 09:41 |
Marquel |
is it possible to use imagemagick w/o exec() being available? |
| 09:42 |
just2b |
i doubt |
| 09:42 |
Marquel |
what is "disable_exec_function" good for then? |
| 09:43 |
just2b |
i doubt = i am not for sure |
| 09:43 |
Marquel |
i know, but maybe you could answer the second question ;) |
| 10:46 |
Marquel |
*sigh* typo3 doesn't like imagemagick-6.*, does it? |
| 10:47 |
just2b |
never tried, just with im5 |
| 11:22 |
Denyerec |
nature - did you win ? |
| 12:08 |
just2b |
anyone knows a tool to record screens on xp? |
| 12:13 |
koomi |
for a screencast? |
| 12:20 |
just2b |
yeag |
| 12:24 |
void |
just2b: wink |
| 12:32 |
Denyerec |
just2b - Camtasia |
| 12:32 |
Denyerec |
is really quite useful. |
| 12:33 |
just2b |
both free? |
| 12:37 |
void |
just2b: wink - free, dunnot about camtasia |
| 12:50 |
Denyerec |
camtasia costs shitloads |
| 12:53 |
koomi |
software costs money? :) |
| 12:57 |
just2b |
yeah but we dont pay |
| 13:52 |
Denyerec |
http://www.denyerec.co.uk/gallery.php?pic=PlymouthLighthouse |
| 13:52 |
Denyerec |
Holiday snaps en route :D |
| 13:53 |
just2b |
nice |
| 14:02 |
nd____ |
Wow, nice |
| 14:42 |
just2b |
for anyone who needs SIMPLE googlemaps on his website http://www.rggooglemap.com/fileadmin/img/ext/rgsimplegooglemaps/test.htm |
| 14:55 |
redforce |
just2b, what do you need? screencast? |
| 14:55 |
just2b |
redforce, found already wink. as you see above ;) |
| 14:55 |
redforce |
ok |
| 16:43 |
snoy |
hey all! I get this error "http://markuskorth.com/content/" with pdf_generator. Any Idea ? |
| 18:51 |
falcifer |
hello |
| 18:51 |
falcifer |
I m trying to proccess content with a custom function |
| 18:51 |
falcifer |
so, i use this typoscript |
| 18:51 |
falcifer |
tt_content.image.20.stdWrap.postUserFunc=miclass-myfunc |
| 18:52 |
falcifer |
but it doesnt call my func |
| 18:52 |
falcifer |
any idea??? |
| 18:52 |
falcifer |
tt_content.image.20.stdWrap.postUserFunc=miclass->myfunc |
| 18:55 |
falcifer |
can someone help me?? |
| 21:26 |
Phlogi_ |
is there any documention for the forge.typo3.org? |
| 21:30 |
Phlogi_ |
is there a guide explaining howto to import my extension into the forge svn repo? |
| 21:31 |
void |
Phlogi_: was your ext at typo3xdev? |
| 21:31 |
void |
btw, does anyone have a link to some pictures or schemas about how typo3 work in general |
| 21:31 |
void |
? |