I hereby claim:
- I am oliverthiele on github.
- I am oliverthiele (https://keybase.io/oliverthiele) on keybase.
- I have a public key ASBem_wUTi1CXHLDYS4Gvewf8yYAUqS2Wtb45PTIUWAs_Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
'use strict' | |
// Imports | |
const {VueLoaderPlugin} = require("vue-loader"); | |
const fs = require('fs'); | |
const path = require('path'); | |
const autoprefixer = require('autoprefixer'); | |
const CopyWebpackPlugin = require("copy-webpack-plugin"); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); |
/** | |
* Version 3.0.0 | |
* | |
* process.env constants are set via webpack (https://gist.github.com/oliverthiele/6298902d5192aa86f24682a3afbd0d9f) | |
*/ | |
const assetsUrl = process.env.TYPO3_ASSETS_URL; | |
const revision = process.env.SVG_REVISION; | |
export function localStorageSVGs() { |
#!/bin/bash | |
# Exit on error | |
set -e | |
### Before executing this script make a system update: | |
# $> apt update; apt --assume-yes dist-upgrade; apt --assume-yes autoremove; | |
# $> reboot |
#!/bin/bash | |
version=$1; | |
major="${version:0:1}" | |
wget get.typo3.org/$1 -O typo3_src-${1}.tar.gz | |
wget get.typo3.org/${major}/tar.gz.sig -O typo3_src-${1}.tar.gz.sig | |
wget -qO- https://get.typo3.org/KEYS | gpg --import | |
gpg --verify typo3_src-${version}.tar.gz.sig typo3_src-${version}.tar.gz |
<templateSet group="RST"> | |
<template name="rstRefCoreApi" value=":ref:`Core Api Reference <t3coreapi:$SECTION$>`" description="Core Api Reference" toReformat="false" toShortenFQNames="true"> | |
<variable name="SECTION" expression="" defaultValue="start" alwaysStopAt="true" /> | |
<context> | |
<option name="Bash" value="false" /> | |
<option name="CSS" value="false" /> | |
<option name="CUCUMBER_FEATURE_FILE" value="false" /> | |
<option name="CoffeeScript" value="false" /> | |
<option name="HAML" value="false" /> | |
<option name="HTML" value="false" /> |
{namespace b=OliverThiele\OtBootstrap3\ViewHelpers} | |
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | |
<f:spaceless> | |
$END$ | |
<f:render section="Content" /> | |
</f:spaceless> | |
</html> |
UPDATE tt_content SET CType='textmedia' WHERE tt_content.CType='text'; | |
UPDATE tt_content SET CType='textmedia' WHERE tt_content.CType='textpic'; | |
UPDATE tt_content SET CType='textmedia' WHERE tt_content.CType='images'; | |
UPDATE tt_content LEFT JOIN sys_file_reference ON sys_file_reference.uid_foreign=tt_content.uid AND sys_file_reference.tablenames='tt_content' AND sys_file_reference.fieldname='image' SET tt_content.CType='textmedia', tt_content.assets=tt_content.image, tt_content.image=0, sys_file_reference.fieldname='assets' WHERE tt_content.CType='textpic' OR tt_content.CType='image'; | |
UPDATE be_groups SET explicit_allowdeny=CONCAT(explicit_allowdeny,',tt_content:CType:textmedia:ALLOW') WHERE (explicit_allowdeny LIKE '%tt\\_content:CType:textpic:ALLOW%' OR explicit_allowdeny LIKE '%tt\\_content:CType:image:ALLOW%' OR explicit_allowdeny LIKE '%tt\\_content:CType:text:ALLOW%') AND explicit_allowdeny NOT LIKE '%tt\\_content:CType:textmedia:ALLOW%'; | |
UPDATE be_groups SET explicit_allowdeny=CONCAT(explicit_allowdeny |
<?php | |
// Not needed in current RealURL versions: $TYPO3_CONF_VARS['FE']['addRootLineFields'] .= ',tx_realurl_pathsegment'; | |
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array( | |
'_DEFAULT' => array( | |
'init' => array( | |
'enableCHashCache' => true, | |
'appendMissingSlash' => 'ifNotFile,redirect[301]', | |
'enableUrlDecodeCache' => true, | |
'enableUrlEncodeCache' => true, | |
'adminJumpToBackend' => true, |
User-agent: * | |
# Only allow URLs generated with RealURL | |
Disallow: /*?id=* | |
Disallow: /*&id=* | |
# L=0 is the default language | |
Disallow: /*?L=0* | |
Disallow: /*&L=0* |