This file contains hidden or 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 | |
/** | |
* @return void | |
*/ | |
public function mapRequestArgumentsToControllerArguments() { | |
try { | |
parent::mapRequestArgumentsToControllerArguments(); | |
} catch (Tx_Extbase_MVC_Exception_InvalidArgumentValue $exception) { | |
$GLOBALS['TSFE']->pageNotFoundAndExit(); | |
} |
This file contains hidden or 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 | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2009 Jochen Rau <[email protected]> | |
* All rights reserved | |
* | |
* This class is a backport of the corresponding class of FLOW3. | |
* All credits go to the v5 team. | |
* |
This file contains hidden or 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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://composer.lightwerk.com/" | |
} | |
] | |
} |
This file contains hidden or 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
{ | |
"require": { | |
"typo3/cms": "~6.1", | |
"typo3-ter/a1_ttnews": "*" | |
} | |
} |
This file contains hidden or 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
{"name":"fo/failover","description":"Demonstrates composers failover capabilities.","repositories":[{"type":"composer","url":"http://composer.foertel.com"}, {"type":"composer","url":"http://composer-failover.foertel.com"}],"require":{"typo3-ter/linkhandler":"*"}} |
This file contains hidden or 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 | |
/** | |
* Returns the page uid of the current page. | |
* If no page is selected, we'll return the uid of the first root page. | |
* | |
* @return integer current page id. If no page is selected current root page id is returned | |
*/ | |
protected function getCurrentPageId() { | |
$pageId = (integer) \TYPO3\CMS\Core\Utility\GeneralUtility::_GP('id'); | |
if ($pageId > 0) { |
This file contains hidden or 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 will | |
# * fire up a ramdisk | |
# * start a mysql server using it as storage | |
# * copying your typo3 database to ram | |
# * run the tests | |
# * clean up | |
# | |
# use -k as parameter to clean-up after a failed run |
This file contains hidden or 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/php | |
<?php | |
function run() { | |
$macMapping = array( | |
'ed:de:' => 'Swartz', | |
'99:81:' => 'Swartz', | |
); | |
exec('sudo alfred-json -r 158', $alfredJson); |
This file contains hidden or 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 will | |
# * fire up a ramdisk | |
# * start a mysql server using it as storage | |
# * copying your typo3 database to ram | |
# * run the tests | |
# * clean up | |
# | |
# use -k as parameter to clean-up after a failed run |
This file contains hidden or 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 | |
### | |
# gateway creator v0.1 | |
# by wiflix | |
# | |
# just run as root, add your VPN credentials and reboot! | |
# please remove my name, if you wanna extend or alter this script! | |
### |
OlderNewer