This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
page > | |
page = PAGE | |
page.10 = COA_INT | |
page.10 { | |
10 = HMENU | |
10 { | |
special = directory | |
# a menu root page | |
special.value = 105 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script is in the public domain. | |
# Based on an idea by Fabien Udriot | |
# see http://pastie.org/4225971 | |
# Enter your username for typo3.org here. If no username is entered here, you | |
# will be promted for it during execution. | |
username="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
void printA(int A[10]) { | |
int i = 0; | |
for (i = 0; i < 10; i++) { | |
printf("%i,", A[i]); | |
} | |
printf("\n"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backend_layout { | |
colCount = 5 | |
rowCount = 5 | |
rows { | |
1 { | |
columns { | |
1 { | |
name = Add | |
rowspan = 2 | |
colPos = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Resources/Private/PHP/xhprof-ui/classes/xhprof_ui.php b/Resources/Private/PHP/xhprof-ui/classes/xhprof_ui.php | |
index 863ed9f..5791a31 100644 | |
--- a/Resources/Private/PHP/xhprof-ui/classes/xhprof_ui.php | |
+++ b/Resources/Private/PHP/xhprof-ui/classes/xhprof_ui.php | |
@@ -81,23 +81,23 @@ class XHProf_UI { | |
if (($data1 = $this->runs[0]->get_data()) && ($data2 = $this->runs[1]->get_data())) { | |
$this->_setup_metrics($data2); | |
- return new XHProf_UI\Report\Diff(&$this, $data1, $data2); | |
+ return new XHProf_UI\Report\Diff($this, $data1, $data2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Test class | |
*/ | |
class Foo { | |
public $bar = 'test'; | |
private $baz = '123'; | |
/** | |
* @param string $test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://forge.typo3.org/ Forge, central extension hub | |
http://typo3.org/ Central Domain, landing page for TYPO3 CMS | |
http://api.typo3.org/ API reference overview page, references for each product | |
http://notes.typo3.org/ Etherpad lite server for quickly taking Notes | |
http://docs.typo3.org/ Official documentation for all products | |
http://fluid.typo3.org/ Landing page for TYPO3 Fluid | |
http://neos.typo3.org/ Landing page for TYPO3 Neos | |
http://demo.typo3.org/ Public demo page for TYPO3 CMS | |
http://wiki.typo3.org/ Official wiki | |
http://review.typo3.org/ Review system (gerrit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.png diff=exif | |
*.jpg diff=exif | |
*.gif diff=exif | |
*.doc diff=strings | |
*.odt diff=odt2txt | |
*.sxw diff=odt2txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
#fetch Gravatars | |
use strict; | |
use warnings; | |
use LWP::Simple; | |
use Digest::MD5 qw(md5_hex); | |
use Thread::Pool::Simple; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function handleCliArguments($generator) { | |
foreach ($this->cli_args as $name => $value) { | |
switch ($name) { | |
case '--disableClassAliases': | |
$generator->setIncludeAliases(FALSE); | |
break; | |
case '--disableScanFiles': | |
$generator->setScanFiles(FALSE); | |
break; | |
case '--extensions': |
OlderNewer