Christoffer Bubach
Christoffer Bubach
God damn it, I was just about to get fond of the Groovy syntax .... whoever came up with the "brilliant" idea of annotations should be hanged, drawn and quartered....
It's way more common to POST a "_method" field, I'd say. And more failsafe. I'm not sure where you been the last 20 years? https://laravel.com/docs/5.7/routing#form-method-spoofing https://github.com/dannyvankooten/AltoRouter/pull/84#issue-17379677 https://github.com/skipperbent/simple-php-router/blob/master/README.md#form-method-spoofing https://github.com/swagger-api/swagger-ui/issues/5306 https://symfony.com/doc/2.6/cookbook/routing/method_parameters.html#faking-the-method-with-method http://www.slimframework.com/docs/v4/middleware/method-overriding.html...
Nice, was leaning towards forking it myself and bringing it up to speed with 2019. 👍
``` $klein->with('/api', resolveApiV1()); $klein->with('/ap/v1', resolveApiV1()); function resolveApiV1() use ($klein) { $klein->respond('GET', '/?', function ($request, $response) { // ... }); $klein->respond('GET', '/user/[:id]', function ($request, $response) { // ... }); } ```...
Kludge-solutions Inc. ``` /** * Execute queries build using the CakePHP QueryBuilder but respect Phinx --dry-run option * * @param Query $queryBuilder */ public function executeFromQueryBuilder(Query $queryBuilder) { $sql =...
Sorry if I missed something, didn't read the full thread to be honest.. These projects might be of interest for redoing the bootstrapping part, might save you the trouble of...
+1 I have sites that i usually access with like localhost:3000 while the api might be local.realdomain.com If it's possible, I actually think the cookie should be sent on _all_...
I was also looking for a static mode, maybe have rendering for common CSS frameworks, so using bootstrap grids as one output format. Even better if you initialize gridster from...
I experienced some similar issue where img location moved due to removal of content above it, and the resize handles didn't like it at all.
Doubt it, last time I was active here and played around with general-table support I clearly remember something similar happening with the editing, possibly in combination with the bullet-list and...