From quan at apart.lu Mon Sep 5 17:43:28 2016 From: quan at apart.lu (NGUYEN Duc Quan) Date: Mon, 05 Sep 2016 17:43:28 +0200 Subject: [TYPO3-dev] =?utf-8?q?_gridelements_with_bootstrap=5Fgrids?= Message-ID: Hi, I am currently trying to add a container wrapper around the grid element (around the row-div). Unfortunately I can't figure out how to do this. I tried to do it via typoscript lib.bootstrap_grids { 2cols.wrap =
|
3cols.wrap =
|
4cols.wrap =
|
} but as it seems that didn't do the trick. I checked the typoscript object browser which shows that the previous wrap entry had been overwritten correcty but my out still doesn't have the bla-container div around. Could someone help me out? Thanks a lot! From quan at apart.lu Tue Sep 6 09:15:55 2016 From: quan at apart.lu (NGUYEN Duc Quan) Date: Tue, 06 Sep 2016 09:15:55 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_gridelements_with_bootstrap=5Fgrids?= References: Message-ID: I think I should elaborate this since my first post was not exactly detailed. So let me rephrase it. I am using fluid_styled_content with the gridelements and bootstrap_grids extension. When rendering the content elements the HTML looks like this

simple text

simnple as asdna rl

Now I want the rows to be wrapped with by
. I was trying to do it via typoscript since it would mean that I could overwrite the typoscript definitions of the extension. Unfortunately this doesn't seem to work. I also tried it via the typoscript object browser which also didn't had any impact. Now I am a bit lost and don't know why it doesn't work or how I can accomplish it. From quan at apart.lu Tue Sep 6 09:34:03 2016 From: quan at apart.lu (NGUYEN Duc Quan) Date: Tue, 06 Sep 2016 09:34:03 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_gridelements_with_bootstrap=5Fgrids?= References: Message-ID: Now I am feeling silly... But a good night's sleep made me realize that the whole time I was changing the typoscript config for bootstrap_grids and not for gridelements. Here's the working solution for anyone in the future: tt_content.gridelements_pi1.20.10.setup { 2cols.wrap =
|
3cols.wrap =
|
4cols.wrap =
|
xSimpleRow.wrap =
|
} From pascal.querner at mscg.de Fri Sep 9 10:17:35 2016 From: pascal.querner at mscg.de (=?Windows-1252?Q?Pascal_Querner_=96_MSCG?=) Date: Fri, 9 Sep 2016 08:17:35 +0000 Subject: [TYPO3-dev] Overwrite l10n language key Message-ID: Hello, I want to overwrite typo3conf/l10n/de/news/Resources/Private/Language/de.locallang.xml:: dateFormat on a specific page. How can I do that? I tried plugin.l10n._LOCAL_LANG.de.dateFormat = %Y on the pages? setup TS. Thanks! From pascal.querner at mscg.de Fri Sep 9 10:27:53 2016 From: pascal.querner at mscg.de (=?Windows-1252?Q?Pascal_Querner_=96_MSCG?=) Date: Fri, 9 Sep 2016 08:27:53 +0000 Subject: [TYPO3-dev] Overwrite l10n language key In-Reply-To: References: Message-ID: Had to use plugin.tx_news._LOCAL_LANG.de.more-link = Artikel lesen plugin.tx_news._LOCAL_LANG.de.dateFormat = %Y - Pascal -----Urspr?ngliche Nachricht----- Von: typo3-dev-bounces at lists.typo3.org [mailto:typo3-dev-bounces at lists.typo3.org] Im Auftrag von Pascal Querner ? MSCG Gesendet: Freitag, 9. September 2016 10:18 An: List for Core-/Extension development Betreff: [TYPO3-dev] Overwrite l10n language key Hello, I want to overwrite typo3conf/l10n/de/news/Resources/Private/Language/de.locallang.xml:: dateFormat on a specific page. How can I do that? I tried plugin.l10n._LOCAL_LANG.de.dateFormat = %Y on the pages? setup TS. Thanks! _______________________________________________ TYPO3-dev mailing list TYPO3-dev at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev From info at andreas-haubold.de Sat Sep 10 09:42:03 2016 From: info at andreas-haubold.de (Andreas Haubold) Date: Sat, 10 Sep 2016 09:42:03 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Howto_define_processedFiles_folder_for_eac?= =?utf-8?q?h_feuser_within_extension?= Message-ID: Hello TYPO3 community! After working through Helmut Hummels upload example (github.com/helhum/upload_example) I got it working under TYPO3 7.6 and trying to customize the upload for a project. The goal is to have feusers upload their files to a specific user folder within the file storage of the extension. The file storage record of the extension has uid=2 and is located in /uploads/tx_myextension, the feuser belongs to an account which has e.g. the accountUid=16. So the upload folder of the user might be '2:/16' which points to '/uploads/tx_myextension/16/'. The upload to this folder works fine. 1.) The first question is about how to show images/files only for logged in users. Images are rendered with index.php?eID=dumpFile... and I didn't found any approach how to implement a permission check before the image is rendered (e.g. by using a slot). Users should only have access to images of the account to which they have access. 2.) My second question is about how to handle proccessed images correctly. Currently all proccessed files are located within /uploads/tx_myextension/_processed_/ The better way would be to have all files within the account folder ('/uploads/tx_myextension/16/_processed_') of each user. So if an account will be deleted all images and processed images will be removed easily also. Is there a way to override the processingFolder of a storageRecord for each logged in user? I only found the getProcessingFolder() method within \TYPO3\CMS\Core\Resource\ResourceStorage but no setter method. Thank you very much for any help! Andreas From franssaris at gmail.com Sat Sep 10 11:46:08 2016 From: franssaris at gmail.com (Frans Saris) Date: Sat, 10 Sep 2016 09:46:08 +0000 Subject: [TYPO3-dev] Howto define processedFiles folder for each feuser within extension In-Reply-To: References: Message-ID: Hi Andreas, The core makes sure all processed files are deleted when the original file is deleted (if you use the api or BE filelist to remove the file). To protect the uploaded files I can recommend to use ext:fal_securedownload that will provide the necessary checks or can be used as an example how to implement the permission check/handling. Groet Frans Op za 10 sep. 2016 09:45 schreef Andreas Haubold : > Hello TYPO3 community! > > After working through Helmut Hummels upload example ( > github.com/helhum/upload_example) I got it working under TYPO3 7.6 and > trying to customize the upload for a project. > > The goal is to have feusers upload their files to a specific user folder > within the file storage of the extension. The file storage record of the > extension has uid=2 and is located in /uploads/tx_myextension, the feuser > belongs to an account which has e.g. the accountUid=16. So the upload > folder of the user might be '2:/16' which points to > '/uploads/tx_myextension/16/'. The upload to this folder works fine. > > 1.) The first question is about how to show images/files only for logged > in users. Images are rendered with index.php?eID=dumpFile... and I didn't > found any approach how to implement a permission check before the image is > rendered (e.g. by using a slot). Users should only have access to images of > the account to which they have access. > > 2.) My second question is about how to handle proccessed images correctly. > Currently all proccessed files are located within > /uploads/tx_myextension/_processed_/ The better way would be to have all > files within the account folder ('/uploads/tx_myextension/16/_processed_') > of each user. So if an account will be deleted all images and processed > images will be removed easily also. > Is there a way to override the processingFolder of a storageRecord for > each logged in user? I only found the getProcessingFolder() method within > \TYPO3\CMS\Core\Resource\ResourceStorage but no setter method. > > Thank you very much for any help! > > Andreas > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > From oliver.hader at typo3.org Tue Sep 13 12:19:56 2016 From: oliver.hader at typo3.org (Oliver Hader) Date: Tue, 13 Sep 2016 12:19:56 +0200 Subject: [TYPO3-dev] [TYPO3-core] Announcing TYPO3 CMS 6.2.27 LTS, 7.6.11 LTS and 8.3.1 Message-ID: Dear TYPO3 World, the TYPO3 Community has just released TYPO3 CMS versions 6.2.27 LTS, 7.6.11 LTS and 8.3.1 which are now ready for you to download. All versions are maintenance releases and contain bug fixes and security fixes. *IMPORTANT* These versions include important security fixes to the TYPO3 CMS Core. The according security bulletins with details have just been released: https://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2016-020/ https://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2016-021/ The packages can be downloaded here: https://typo3.org/download/ For details about the releases, please see: https://typo3.org/news/article/typo3-cms-6227-7611-and-831-released/ MD5 checksums: 9eaceae43cc8f67b3547f7275b8ce4c5 typo3_src-6.2.27.tar.gz 90b75b8b6f700457e2a42d7040bc7e9e typo3_src-6.2.27.zip 92a7068c6aee32a8dd899f08093c0721 typo3_src-7.6.11.tar.gz 55d5f6036de8b32eb097d361b1230613 typo3_src-7.6.11.zip 2a307d91f6f19a76f62216da0d3b0318 typo3_src-8.3.1.tar.gz 227df291f3c36098cf95c3ca840aee47 typo3_src-8.3.1.zip SHA256 checksums: 1f8ff63fbc51f68fd8a821fe21e3be35f20a3d2d8bcef0fe5b3353d2b7d25383 typo3_src-6.2.27.tar.gz 1e49bc7e7a7f4509308f2a2a625d2754eeeb7bafee95fd1528d1d1a94f3e52f6 typo3_src-6.2.27.zip e96f9085b6e22e0295a7f3b6ba108dd8a0997479604323a4c663301412826543 typo3_src-7.6.11.tar.gz 9dd405ce28f99782c3e6d6c9480006366e3780133771840ac0507cfbf590bf6c typo3_src-7.6.11.zip 5fccfa52bc546d8605c40cf69d51a43b06368eaf2119b9fb9cfffb1120bd51be typo3_src-8.3.1.tar.gz e2f07e4fd37a989a21ced7be149dcc73ce73d976b639613084060c7e845c8889 typo3_src-8.3.1.zip Further details on the signing and hashing process of TYPO3 releases: https://docs.typo3.org/typo3cms/drafts/github/TYPO3Incubator/InfrastructureGuide/Releases/ Best regards Oliver -- Oliver Hader TYPO3 .... inspiring people to share! Get involved: http://typo3.org From leo.le.sommer at gmail.com Fri Sep 16 14:10:18 2016 From: leo.le.sommer at gmail.com (Léo Le Sommer) Date: Fri, 16 Sep 2016 14:10:18 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Problem_with_ajax_widget?= Message-ID: Hello I'm trying to reimplement the autocomplete widget view helper to have personalised request but i'm facing a strange problem. Sometimes everything works greate but the autocompletion stops to work randomly, i dont understand why. I wonder if i maybe need to register my widget view helper somewhere for any reason. I'm new in typo3 extension development so I'm totaly lost. Here is my code : I attached my two classes, i did nothing except create these two files. begin 644 AutocompleteViewHelper.txt M/#]P:'`-"FYA;65S<&%C92!%;6%G:6YE=7)S7$5497)<5FEE=TAE;'!E2!O9B!T:&4 at 1TY5($QE'0O:F%V87-C6QE'0B(&ED/2)N86UE(B`O/@T*("H@/&8Z=VED9V5T+F%U M=&]C;VUP;&5T92!F;W(](FYA;64B(&]B:F5C=',](GMP;W-T"YH=&UL#0H@*B`\+V]U='!U=#X-"B`J#0H@*B!`87!I#0H@*B\-"F-L87-S M($%U=&]C;VUP;&5T959I97=(96QP97(@97AT96YDPT* M("`@("\J*@T*("`@("`J($!V87(@8F]O;`T*("`@("`J+PT*("`@('!R;W1E M8W1E9"`D86IA>%=I9&=E="`]('1R=64[#0H-"B`@("`O*BH-"B`@("`@*B!` M=F%R(%Q%;6%G:6YE=7)S7$5497)<5FEE=TAE;'!EPT*("`@("`@("`D=&AI M5)E6]U(&-A;B!R961I2!I="!U;F1E M2!O9B!-15)#2$%.+2`@("`J#0H@*B!404))3$E462!O2`]("1T:&ES+3YW:61G971#;VYF:6=UPT*"0D)"21C;VYS=')A:6YT2P@)R4G("X@)&5L96T at +B`G)22T^97AE8W5T92 at I.PT*("`@("`@("`D;W5T M<'5T(#T at 87)R87DH*3L-"B`@("`@("`@9F]R96%C:"`H)')EPT*("`@("`@("`@("`@)'9A;"`](%Q465!/,UQ# M35-<17AT8F%S95Q2969L96-T:6]N7$]B:F5C=$%C8V5S Message-ID: Hi, You can add your translations with the following TS : plugin.._LOCAL_LANG. { label1 = some text label2 = another text label3\.sublabel = Add a slash for labels with a dot label4 ( Use parenthesis for multi-lines labels ) } Or you can also use the extension "lfeditor". Florian