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
ls -1 | while read F; do | |
mkdir -p ${F:0:1}/${F:1:1}/${F:2:1}/${F:3:1} | |
mv ${F} ${F:0:1}/${F:1:1}/${F:2:1}/${F:3:1}/ | |
done |
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
commit 316ce38b479321c0227a74b545786ac256f5d13b | |
Author: Jonas Renggli <[email protected]> | |
Date: Mon Feb 12 16:48:09 2018 +0100 | |
[FEATURE] Add migration for recordLinks from legacy EXT:linkhandler | |
diff --git a/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php b/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php | |
index a89b67813e..0539cc6d4f 100644 | |
--- a/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php | |
+++ b/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php |
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/env bash | |
# Fetch translation files for all TYPO3 extensions present in the filesystem | |
# | |
# In contrast to the TYPO3 CLI command to retrieve translations, this script | |
# can be executed without having a DB connection available. This is useful to | |
# fetch all translations in the build step without any TYPO3 dependencies. | |
# | |
# Adjust the variables below if necessary |
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
!Hue Lampe ein-/ausschalten | |
!------------------------------ | |
!__IP Adresse der Hue Bridge | |
string ip_address = "192.168.2.172"; | |
!__User ID in der Bridge | |
string api_key="9YqN4igBFdRpXo8kw3lhzzNIzPXFFSoJSn6488bV"; | |
!__Auswahl der Lampe | |
string lamp ="1"; |
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
^46\.101\.(86\.253|172\.39|227\.232)|128\.199\.(230\.46|252\.83)|139\.(59\.((6\.165|170\.38)|203\.60\.219))|159\.203\.60\.219|178\.62\.47\.83|188\.166\.170\.233|192\.(34\.63\.77|241\.151\.177)|198\.(199\.(91\.(32|244)|126\.66)|211\.104\.10)$ |
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
sudo chown -R $(whoami) /usr/local/Cellar | |
sudo chown -R $(whoami) /usr/local/Homebrew | |
sudo chown -R $(whoami) /usr/local/var/homebrew | |
sudo chown -R $(whoami) ${HOME}/Library/Caches/Homebrew | |
sudo chown -R $(whoami) ${HOME}/Library/Logs/Homebrew | |
sudo chown -R $(whoami) /usr/local/etc | |
sudo chown -R $(whoami) /usr/local/opt | |
sudo chown -R $(whoami) /usr/local/bin | |
sudo chown -R $(whoami) /usr/local/var | |
sudo chown -R $(whoami) /usr/local/share/man/man1 |
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
{ | |
"name": "", | |
"description" : "TYPO3 CMS Distribution for example.org", | |
"license": "GPL-2.0+", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://composer.typo3.org/" | |
} | |
], |
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 | |
PWD=`pwd` | |
SOURCEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" | |
WORKSPACEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd ../.. && pwd )" | |
TARGET_PATH=${SOURCEPATH}/ | |
TARGET_DBNAME=t3_dev | |
TARGET_DBUSER=t3_dev | |
TARGET_DBHOST=127.0.0.1 |
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 | |
PWD=`pwd` | |
SOURCEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" | |
WORKSPACEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd ../.. && pwd )" | |
TARGET_HOST=latest.example.org | |
TARGET_PORT=22 | |
TARGET_USER=www-data | |
TARGET_PATH=/home/www-data/typo3-latest/releases/current/ |
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 | |
namespace Swisscom\Finapp\ViewHelpers; | |
// Credits: https://git.typo3.org/Packages/TYPO3.CMS.git/blob_plain/HEAD:/typo3/sysext/fluid/Classes/ViewHelpers/Format/CdataViewHelper.php | |
// Extended with functionality to only wrap if CDATA is necessary. | |
// See $predeclaredCharacters | |
/* * | |
* This script is backported from the TYPO3 Flow package "TYPO3.Fluid". * | |
* * |
NewerOlder