adjenks

Results 29 issues of adjenks

Regex with no variable: ```php $r->addRoute('GET', '/{user|person}', 'get_user_handler'); ``` Case insensitive flag: ```php $r->addRoute('GET', '/{/user/i}', 'get_user_handler'); ``` I tried both, they did not work. Am I doing it wrong?

enhancement

This article is just too good. You need to tone down the goodness and informativeness. I think I've come too close to groking async programming after reading this article, my...

I wanted links to open in a new tab and I found this blog: https://sosuke.com/writing-custom-extensions-for-the-remarkable-javascript-markdown-parser/ but I noticed that the source code has a options.linkTarget option so I didn't have...

This worked out of the box and it took about 40% off of my build time. Good stuff.

I would like to donate a small amount to your development efforts for maintaining this project. Do you have a method of accepting donations? Thank you.

Instead of just providing examples for the output of getRules(), it would be nice to see a formal definition of the schema, perhaps using JSONSchema.

This code: ``` $TALTranslator = new \PHPTAL_GetTextTranslator(); $TALTranslator->addDomain('mydomain', './locale'); $TALTranslator->useDomain('mydomain'); $TALTranslator->setLanguage('', 'en_US'); // Empty string as first argument ``` Will throw this exception: > Language(s) code(s) ", en_US" not supported...

I recently used the features described in the NEWS section: > PHPTAL 1.3.0 > 2014-03-16 > > Added support for closures > Added support for namespaced classes in TALES modifiers...

documentation

On the releases page it states that there was added support for closures: https://github.com/phptal/PHPTAL/releases However, I found that when I used a closure directly on a template variable a closure...

bug - confirmed

**Describe the bug** Navigating back and fourth in the tutorial seems to have broke it. **To Reproduce** Steps to reproduce the behavior: 1. I clicked the previous and next buttons...

bug