Re: [TYPO3-english] AMP pages, amp-img instead of img src from RTE

2016-01-21 Thread Jan Slusarczyk
You should be able to modify the rendering of the img tags in RTE content, by configuring some user function: lib.parseFunc_RTE.tags.img.userFunc = YourClassName->yourFunctionName Hi Stanislas, I didn't know it is possible to use userFunc for RTE parsing! Seems like a wonderful starting

Re: [TYPO3-english] AMP pages, amp-img instead of img src from RTE

2016-01-21 Thread Jan Slusarczyk
I think you missed something: the inserting of images is not done at rendering time (when a page is called and/or the cache is filled), but when the editor is saing his work: RTE images are not stored in a special field but the HTML-Tag for the image is stored mid between all the other text. so

Re: [TYPO3-english] AMP pages, amp-img instead of img src from RTE

2016-01-20 Thread Jan Slusarczyk
> AFAIK you can only do it if you modify the JS-Source of the editor. What > you will not want to do. Right. I definitely don't want to... > > the other Solution: disable images in RTE at all. > there are not much (serious) usages you can use images in the RTE which > are not possible with the

[TYPO3-english] AMP pages, amp-img instead of img src from RTE

2016-01-20 Thread Jan Slusarczyk
Has anyone been looking into generating AMP pages from typo3? So far everything seems to be doable except the amp-img tag for images included in RTE. Is it possible at all to replace the RTE rendering of an image tag with an amp-img tag on Typo3 6.2 LTS? Regards Jan

[TYPO3-english] no-follow links

2015-07-15 Thread Jan Slusarczyk
Hi, I'm running a large typo3 website with thousands of pages and I need to make some seo changes. 1. Is it possible to make external links rel='no-followĺ by default in typo3 6.2 RTE? 2. Any ideas for a mechanism to scan for links in existing content elements and at least list all

[TYPO3-english] SSL proxy - nginx, apache, and base href condition in typoscript

2015-03-19 Thread Jan Slusarczyk
[global] Any idea how to solve this? Regards Jan Slusarczyk ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Limiting backend layouts to domain/branch in multitree sites

2014-10-29 Thread Jan Slusarczyk
Hi, I have a multidomain/multitree typo3 installation and I'm using fluid templates and backend layouts. The problem is that I can see backend layouts from every storage folder in the page properties dropdowns, even those from other domains. Is it possible to limit visibility of backend

Re: [TYPO3-english] Limiting backend layouts to domain/branch in multitree sites

2014-10-29 Thread Jan Slusarczyk
options.backendLayout.exclude = file__ComingSoon, file__Landing_one_scroll Thanks for the tip! I must have missed this option somehow. I'm using it with numerical uids (1,2,3... etc) and it works perfectly! Jan ___ TYPO3-english mailing list

[TYPO3-english] FAL, pages media, default image and override if exists

2014-08-24 Thread Jan Slusarczyk
I'm doing an upgrade of typo3 from 4.7 to 6.2. I've been able to solve a lot of mysteries on my own, but I have a problem with FILES and using a default image override. My old code looks like this: before.cObject = IMAGE before.cObject { file = fileadmin/templates/v103/img/100-63.png

Re: [TYPO3-english] FAL, pages media, default image and override if exists

2014-08-24 Thread Jan Slusarczyk
On 24/08/14 18:03, Gregor Hermens wrote: Jan Slusarczyk wrote: 2. use only the first image defined in media field, and not every one x = FILES X { references { ... } maxItems = 1 } For details see http://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Files/ Thank you

[TYPO3-english] Re: YAG - stars rating and extending

2014-05-16 Thread Jan Slusarczyk
Thank you! Jan ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] YAG - stars rating and extending

2014-05-12 Thread Jan Slusarczyk
I need a gallery where users will be able to vote on pictures. I've installed YAG for tests and it seems like a perfectly good starting point. Has anyone tried to add voting to YAG? Any tips / examples on expanding functionality of YAG? There is a star rating partial which uses

[TYPO3-english] realurl search page and ver large tx_realurl_urlencodecache

2013-09-03 Thread Jan Slusarczyk
I have recently discovered that tx_realurl_urlencodecache grows enormously (240.000 rows, 910MB) on my install. It is being filled by variants of the same url - search page and get parameters containing phrases, filters etc. I'm using tx_solr for search and the variants I see are for example:

[TYPO3-english] V6 category api, simple display in FE

2013-02-27 Thread Jan Slusarczyk
I am looking for a way to tag pages with categories and create menus (dedicated page with links list) based on categories. It seems that BE foundations are ready in V6.0, but according to the wiki and release notes there's no FE part. Has anyone actually tried displaying a category and a list

[TYPO3-english] t3v6, fal, dce and media field

2013-02-19 Thread Jan Slusarczyk
I am testing deployment of v6 and so far I only have one problem I really need help with. I'm using DCE to insert links with thumbnail images for featured articles. Editors define a page in a tree and by using associative array from page table I could access all needed information. One of the

Re: [TYPO3-english] t3v6, fal, dce and media field

2013-02-19 Thread Jan Slusarczyk
This of course doesn't work with File Abstraction Layer. I've tried to find an example of how to access media files with fluid but this is all new for me. Any hints? I've ended up writing my own ViewHelper, which wasn't that hard :-) Jan ___

Re: [TYPO3-english] page rating vs page cache

2012-09-26 Thread Jan Slusarczyk
you can decide, if this object should be user or user_int based on the input vars, this way, the voting may be out of date for a short time, but caching will be possible most times :D Dimitry describes that in his book about extension building. Keyword: TSRef Condition Thanks for the tip! I'll

Re: [TYPO3-english] page rating vs page cache

2012-09-26 Thread Jan Slusarczyk
USER_INT plugins are not cached but they do not block the rest of page caching. Thank you for pointing this out. It seems I misunderstood caching and chased wrong goal. I'm back to my studies :-) Regards Jan ___ TYPO3-english mailing list

[TYPO3-english] page rating vs page cache

2012-09-25 Thread Jan Slusarczyk
I'm doing a little maintenance on one of my older pages and I'm looking for a way to upgrade ltg_rating extension. But it seems that all of rating extensions are inserted as user_int object and thus blocking page cache. I know the reasoning behind it (current value is a dynamic content) but I

[TYPO3-english] hmenu special=updated parent's title in tmenuitem

2012-06-03 Thread Jan Slusarczyk
I have a website with a lot of pages divided into sections. I want to create a list of latest updated pages and mark them according to the section they belong to. Technically - just a spansection title/span inside a tmenuitem li|/li. I didn't expect it to be such a difficult task. I started

Re: [TYPO3-english] 4.6.5 wrong domain on preview

2012-03-08 Thread Jan Slusarczyk
Did you properly mark the pages as root of website? Yes. 1. They are marked as Root of website. 2. They are assigned in realurl 3. Everything works fine after reverting to 4.6.4. Thanks Jan ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] 4.6.5 wrong domain on preview

2012-03-07 Thread Jan Slusarczyk
I've updated my installation from 4.6.4 to 4.6.5 yesterday and every preview started to open the first domain, instead of the proper one. Each domain has it's own branch, like this: domainA - page 1 domainB - page 2 (preview opens domainA/page_2.html instead of domainB/page_2.html)

Re: [TYPO3-english] RealURL 1.8.1 is out

2010-04-22 Thread Jan Slusarczyk
On 21/04/10 15:43, Dmitry Dulepov wrote: config.typolinkEnableLinksAcrossDomains = 1 Dmitry, I'm sorry for not being clear. I have put config.typolinkEnableLinksAcrossDomains = 1 in tsconfig of both sites. I am pretty sure the config is done well (according to your guide and extension

Re: [TYPO3-english] RealURL 1.8.1 is out

2010-04-22 Thread Jan Slusarczyk
RealURL does not care about position. It must be something else. Please, check that you have is_siteroot flag set in page properties for root pages of both web sites. Dmitry, thank you. I didn't tick the Is root of website field in page details. I have mistakenly assumed that it's enough to

Re: [TYPO3-english] RealURL 1.8.1 is out

2010-04-21 Thread Jan Slusarczyk
If you run RealURL 1.8.0, you should upgrade to 1.8.1. 1.8.0 fixes an important issue that causes lots of log entries and incorrect multidomain links. Also there are some cache handling improvements for path cache. Dmitry, before I file a bug report I need your short insight into my issue. I

Re: [TYPO3-english] RealURL 1.8.1 is out

2010-04-21 Thread Jan Slusarczyk
If you run RealURL 1.8.0, you should upgrade to 1.8.1. 1.8.0 fixes an important issue that causes lots of log entries and incorrect multidomain links. Also there are some cache handling improvements for path cache. Dmitry, before I file a bug report I need your short insight into my issue. I

Re: [TYPO3-english] apache bench mark tool over flooded typo3 site

2010-01-12 Thread Jan Slusarczyk
On 12/01/10 09:08, J. Bakshi wrote: Hello list, Today I was testing my apache server with ab command aka apache benchmarking tool. I have found though it is a useful tool to check apache performance ; specially if you install eAccelerator ; but in a wrong hand it is very dangerous. It creates