Skip to content

Instantly share code, notes, and snippets.

View kdambekalns's full-sized avatar

Karsten Dambekalns kdambekalns

View GitHub Profile
@kdambekalns
kdambekalns / DoctrineCommandController.php.patch
Created August 29, 2012 09:09
Add --dump-mapping-data to doctrine:entitystatus
diff --git a/Classes/Command/DoctrineCommandController.php b/Classes/Command/DoctrineCommandController.php
index 9ce9c72..7b2e599 100644
--- a/Classes/Command/DoctrineCommandController.php
+++ b/Classes/Command/DoctrineCommandController.php
@@ -132,13 +132,15 @@ class DoctrineCommandController extends \TYPO3\FLOW3\MVC\Controller\CommandContr
* Show the current status of entities and mappings
*
* Shows basic information about which entities exist and possibly if their
- * mapping information contains errors or not. To run a full validation, use
- * the validate command.
@kdambekalns
kdambekalns / README.md
Last active October 9, 2015 09:54
Open questions on OData v4

This document collects some odd bits and pieces on OData v4.

Content negotiation

The $metadata document

The OData specification says:

If a request for metadata does not specify a format preference (via Accept header or $format) then the XML representation MUST be returned.

@kdambekalns
kdambekalns / substr.php
Created July 12, 2012 15:35
Comparison of substr and substr_compare
<?php
$className = 'FLOW3_Foo_Bar_Original';
for ($i = 0 ; $i < 1000000; $i++) {
substr($className, -9) === '_Original';
}
class AddGroupsSignedCla < ActiveRecord::Migration
def self.up
add_column :groups, :signed_cla, :boolean
end
def self.down
remove_column :groups, :signed_cla
end
end
@kdambekalns
kdambekalns / 0001-TASK-Apply-migration-TYPO3.FLOW3-201201261636.patch
Created May 3, 2012 14:16
Updating TYPO3.Blog to work with FLOW3 1.1
From cf0a2c479c8da4cc039215299dfe6fdf2a68432a Mon Sep 17 00:00:00 2001
From: Karsten Dambekalns <karsten@typo3.org>
Date: Thu, 3 May 2012 16:07:42 +0200
Subject: [PATCH 1/3] [TASK] Apply migration TYPO3.FLOW3-201201261636
This commit contains the result of applying migration
TYPO3.FLOW3-201201261636.
to this package.
Change-Id: I6db86b7c776208907079a43218991619fe9d097b
diff --git a/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php b/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
index f91669a..cea545a 100644
--- a/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
+++ b/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
@@ -144,16 +144,10 @@ class Flow3AnnotationDriver implements \Doctrine\ORM\Mapping\Driver\Driver, \TYP
}
}
}
-
if (!isset($primaryTable['name'])) {
@kdambekalns
kdambekalns / WTF.txt
Created October 17, 2011 08:39
Correct(?) test for PHP bug #55156 (ReflectionClass->getDocComment() returns something though it shouldn't)
karsten@kmac:apc $ php -v
PHP 5.3.8 (cli) (built: Oct 15 2011 19:48:39)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
with Xdebug v2.2.0-dev, Copyright (c) 2002-2011, by Derick Rethans
karsten@kmac:apc $ php ~/phpt55156.php
string(11) "/** test */"
string(12) "/** test1 */"
string(12) "/** test2 */"
bool(false)
@kdambekalns
kdambekalns / README.rst
Created October 12, 2011 12:21
Converting Doctrine annotations back to strings

When creating proxy classes, we do not copy the docblock, but generate one, using the parsed annotations of the original class. Thus we need to render them out to string form. This is what we currently use for that purpose...

@kdambekalns
kdambekalns / AnnotatedClass
Created October 3, 2011 10:35
Annotations "the Doctrine way"
<?php
namespace TYPO3\FLOW3\Tests\Functional\Reflection\Fixtures;
/* *
* This script belongs to the FLOW3 framework. *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
@kdambekalns
kdambekalns / README.md
Last active September 24, 2015 15:12
How to update an existing PR to the new PSR-2 standard