Skip to content

Instantly share code, notes, and snippets.

View kdambekalns's full-sized avatar

Karsten Dambekalns kdambekalns

View GitHub Profile
@kdambekalns
kdambekalns / TwitterBackend.php
Created May 21, 2010 21:43
A (useless) twitter logging backend for FLOW3
<?php
declare(ENCODING = 'utf-8');
namespace F3\FLOW3\Log\Backend;
/* *
* 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 as published by the *
* Free Software Foundation, either version 3 of the License, or (at your *
@kdambekalns
kdambekalns / siege -c 5 -t 1m welcome
Created December 22, 2010 10:00
compares prodcution context a13 vs a14
* PHP 5.3.3, APC 3.1.5-dev, igbinary 1.0.2
* All data shown is from the second run.
* Apache has been restarted for each sequence
* Caches were cleared and primed for each sequence
sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart
sudo rm -rf Data/Temporary/*
curl http://flow3.kmac/flow3/welcome
siege -c 5 -t 1m http://flow3.kmac/flow3/welcome > /dev/null
siege -c 5 -t 1m http://flow3.kmac/flow3/welcome
@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.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 / 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)
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 / 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
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 / 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';
}
@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.