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
errorHandling: | |
- | |
errorCode: '404' | |
errorContentSource: 't3://page?uid=316' | |
errorHandler: PHP | |
errorPhpClassFQCN: B13\AnyProject\PageErrorHandler\LocalPageErrorHandler |
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
<div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" | |
xmlns:f="http://xsd.helhum.io/ns/typo3/cms-fluid/master/ViewHelpers" | |
data-namespace-typo3-fluid="true"> | |
<f:section name="SrcsetImage"> | |
<f:if condition="{image}"> | |
<v:variable.set name="imgurl" value="{f:uri.image(image: image,maxWidth: '{maxWidth}')}" /> | |
<v:variable.set name="imgsize" value="{v:media.image.width(src:'{imgurl}')}" /> | |
<v:variable.set name="img480" value="{f:uri.image(image: image,maxWidth:'480')} 480w," /> |
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 | |
# Script for placing sudoers.d files with syntax-checking | |
# Making a temporary file to contain the sudoers-changes to be pre-checked | |
TMP=$(mktemp -t vagrant_sudoers) | |
cat /etc/sudoers > $TMP | |
cat >> $TMP <<EOF | |
# Allow passwordless startup of Vagrant when using NFS. | |
Cmnd_Alias VAGRANT_EXPORTS_ADD = /usr/bin/su root -c echo '*' >> /etc/exports |