# |
Apr 25th 2019, 08:57 |
uwe.flaig |
https://en.wikipedia.org/wiki/Gettext but as far as I can see cakephp 3.x replaced the %s placeholders with curly brackets "{0}" Is this part of the gettext standard? Am I missing something? The wiki article is not mentioning curly brackets in any shape or form |
# |
Apr 25th 2019, 08:57 |
martin |
Why do routes cache when debug is enabled? :P |
# |
Apr 25th 2019, 08:55 |
uwe.flaig |
Hello there! I have a question about cakephp 3.x localization https://book.cakephp.org/3.0/en/core-libraries/internationalization-and-localization.html#language-files Cakephp is using the gettext standard |
# |
Apr 25th 2019, 07:47 |
charolastra |
dunno, seems like it |
# |
Apr 25th 2019, 07:46 |
neon1024 |
Morning all :wave: |
# |
Apr 25th 2019, 07:46 |
neon1024 |
I guess your routes were cached then right? |
# |
Apr 25th 2019, 07:46 |
neon1024 |
Super! |
# |
Apr 25th 2019, 07:45 |
charolastra |
neon1024: yesterday we talked about CSRF middleware. the InvalidCsrfTokenException disapeared after cleaning the tmp folder |
# |
Apr 25th 2019, 06:35 |
admad |
@kgb.acct.personal add a comment to the issue @kuokkanen_sampo_aleks opened :slightly_smiling_face: |
# |
Apr 25th 2019, 06:28 |
kgb.acct.personal |
I think it also applies to the company section. |
# |
Apr 25th 2019, 06:16 |
kuokkanen_sampo_aleks |
@admad Just opened an issue there: https://github.com/cakephp/cakephp.org/issues/125 |
# |
Apr 25th 2019, 05:33 |
admad |
@kuokkanen_sampo_aleks could you please open an issue here https://github.com/cakephp/cakephp.org |
# |
Apr 25th 2019, 05:33 |
admad |
@megan ^ |
# |
Apr 25th 2019, 05:19 |
kuokkanen_sampo_aleks |
This is not really that important, but does anyone know why the CakePHP site has light grey text on white? It's pretty hard to read. |
# |
Apr 25th 2019, 02:42 |
testdarl |
hahah |
# |
Apr 25th 2019, 02:42 |
Ramram |
kalibangon ka? |
# |
Apr 25th 2019, 02:42 |
Ramram |
hi testdarl |
# |
Apr 25th 2019, 02:42 |
testdarl |
test only by darl |
# |
Apr 25th 2019, 02:36 |
Ramil |
hi all |
# |
Apr 25th 2019, 02:23 |
voycey |
We just pass in the config when running with: `vendor/bin/phpunit -c phpunit.xml.dist --verbose --coverage-html webroot/coverage` |
# |
Apr 25th 2019, 02:22 |
voycey |
@cnizzardini You shoudlnt have to - what is your phpunit command? |
# |
Apr 25th 2019, 00:11 |
cnizzardini |
i guess the simple answer is just add a step to the build to copy the file, seems jenky x) but okay |
# |
Apr 25th 2019, 00:05 |
cnizzardini |
I see this on console ouput App\Console\Installer::postInstall, maybe I need to hook into this and tell it to copy? |
# |
Apr 25th 2019, 00:03 |
cnizzardini |
This is a custom config file, how do I make this get copied from rootrez.default.php? |
# |
Apr 25th 2019, 00:03 |
cnizzardini |
Anyone have experience with jenkins + phpunit. Am getting this error during unit tests "Could not load configuration file: /var/lib/jenkins/workspace/rootrez-phpunit-test/config/rootrez.php" |
# |
Apr 24th 2019, 21:02 |
admad |
@mrgrimpy don't blame my I18n plugin for your problems :slightly_smiling_face: |
# |
Apr 24th 2019, 20:06 |
jeremyharris |
no problem :slightly_smiling_face: |
# |
Apr 24th 2019, 20:02 |
mrgrimpy |
I thank you very much for your time and answers |
# |
Apr 24th 2019, 20:02 |
mrgrimpy |
I will try that implementation tomorrow |
# |
Apr 24th 2019, 20:00 |
jeremyharris |
it reflects the truth the best - you don’t have a route for non-json exts there, so let the framework do what it does with a missing route exception |
# |
Apr 24th 2019, 20:00 |
jeremyharris |
yeah that feels the best |
# |
Apr 24th 2019, 20:00 |
jeremyharris |
there are a few layers you can handle it at really |
# |
Apr 24th 2019, 19:59 |
mrgrimpy |
The extending the route class looks like the cleanest option |
# |
Apr 24th 2019, 19:59 |
mrgrimpy |
Indeed there are but I was sure there was a "proper" way |
# |
Apr 24th 2019, 19:58 |
mrgrimpy |
I tought about checking url in controller and throwing a 404 if not .json but it felt dirty |
# |
Apr 24th 2019, 19:58 |
jeremyharris |
:) |
# |
Apr 24th 2019, 19:58 |
jeremyharris |
so many options |
# |
Apr 24th 2019, 19:58 |
jeremyharris |
finally, you could overwrite _getViewFileName in your AppView to catch the MissingTemplateException and throw your own (that sets status to 404) |
# |
Apr 24th 2019, 19:58 |
mrgrimpy |
Would probably work, I haven,t played with custom route classes to be honest |
# |
Apr 24th 2019, 19:58 |
jeremyharris |
that would work too I think |
# |
Apr 24th 2019, 19:57 |
jeremyharris |
can you extend that route class and check the ext in your new route class, returning false (no match) if it doesn’t have the json ext? |