Location: Freiburg Date: 29.05.14
- deklartive: Puppet, Chef, Cfengine
- imperative: ansible, fabric - macht was aktiv auf
- real Welt: Salt kann beides
<?php | |
use Behat\Behat\Context\ClosuredContextInterface, | |
Behat\Behat\Context\TranslatedContextInterface, | |
Behat\Behat\Context\BehatContext, | |
Behat\Behat\Exception\PendingException; | |
use Behat\Gherkin\Node\PyStringNode, | |
Behat\Gherkin\Node\TableNode; | |
use Behat\MinkExtension\Context\MinkContext; |
if (!empty($GLOBALS['TCA'][$rowMmRefInfo['tablenames']]['ctrl']['languageField'])) { | |
$fields .= ',sys_language_uid'; | |
} | |
$existingReferenceForeign = $this->damfalfileRepository->selectOneRowQuery($fields, $rowMmRefInfo['tablenames'], "uid = '" . $rowMmRefInfo['uid_foreign'] . "' and deleted != 1"); | |
if (!empty($GLOBALS['TCA'][$rowMmRefInfo['tablenames']]['ctrl']['languageField'])) { | |
$existingReferenceForeign["sys_language_uid"] = 0; | |
} |
{ | |
"name": "typo3/cms-base-distribution", | |
"description": "TYPO3 CMS base distribution", | |
"type": "project", | |
"minimum-stability": "dev", | |
"config": { | |
"vendor-dir": "Packages/Libraries", | |
"bin-dir": "bin" | |
}, | |
"require": { |
#!/usr/bin/env php | |
<?php | |
# Tip: backup your source beforehand ;) | |
# Adjust your path to your extension containing the Flux code. | |
$directory = '~/Sites/Ecodev/speciality.distribution/htdocs/typo3conf/ext/'; | |
$replaceNamespaces = array( | |
'{namespace flux=Tx_Flux_ViewHelpers}' => '{namespace flux=FluidTYPO3\Flux\ViewHelpers}', | |
); |
UPDATE: the solution here is to add a separator segment to tell Neos where the {node} path and the custom part starts / ends
http://abl-ch.dev/wohnen/wohnungsmarkt/wohnungsbewerbung/edit/application/008ce49e-fbed-4372-afde-73dc8330495d and ajust in the YAML configuration route.
uriPattern: '{node}/application/{--visol_ablch-applicationeditform.application}'
We want to decode this special URL that we can decompose into two parts:
FROM ubuntu | |
MAINTAINER "Fabien Udriot" <fabidule@omic.ch> | |
# Install doxygen dependencies | |
RUN apt update \ | |
&& DEBIAN_FRONTEND=noninteractive apt -y install graphviz \ | |
&& apt -y install doxygen | |
# NOTE: must use json syntax process is not started in a subshell (and signals are passed correctly) |
FROM php:7.2 | |
ENV APP_DIR /app | |
ENV APPLICATION_ENV development | |
WORKDIR $APP_DIR | |
VOLUME $APP_DIR | |
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php'); \ | |
\$sig = file_get_contents('https://composer.github.io/installer.sig'); \ |