- about:blank
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 0657788b1e5e0b5ea382083637438fc50c22baf8 | |
Author: Dmitry Dulepov <ddulepov@snowflake.ch> | |
Date: Wed Mar 17 13:47:07 2021 +0300 | |
[BUGFIX] Slugs in non-normalized Unicode can produce incorrect urls | |
diff --git a/typo3/sysext/core/Classes/DataHandling/SlugHelper.php b/typo3/sysext/core/Classes/DataHandling/SlugHelper.php | |
index dccc65af7f..fb4e8ca46e 100644 | |
--- a/typo3/sysext/core/Classes/DataHandling/SlugHelper.php | |
+++ b/typo3/sysext/core/Classes/DataHandling/SlugHelper.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
# To access Solr after it is installed: | |
# - The Solr admin interface will be accessible at: | |
# http://<projectname>.ddev.site:8983/solr/ | |
# For example, if the project is named "myproject" the hostname will be: | |
# http://myproject.ddev.site:8983/solr/ | |
# - To access the Solr container from the web container use: | |
# http://solr:8983/solr/ | |
version: '3.6' |
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 | |
for f in `grep -Rl --include=config 'my.email@example.com' .` ; do sed -i 's/my.email@example.com/my.new.email@example.com/' "$f" ; 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
<?php | |
namespace Vendor\Extension\Storage; | |
use TYPO3\CMS\Extbase\Persistence\Generic\Qom\SourceInterface; | |
use TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbQueryParser; | |
/** | |
* This class allows ordering by 'FIELD' SQL statement. | |
* | |
* @author Dmitry Dulepov <dmitry.dulepov@gmail.com> |
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 | |
# Must be run as root! | |
# Source: https://getcomposer.org/doc/articles/troubleshooting.md#proc-open-fork-failed-errors | |
if [ -f /var/swap.1 ] ; then | |
/sbin/swapoff /var/swap.1 | |
rm /var/swap.1 | |
echo "Swap is off" | |
else |
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
python -c 'import yaml,sys;yaml.safe_load(sys.stdin)' < file.yml | |
Needs "pip install pyyaml". | |
Source: https://liquidat.wordpress.com/2016/01/21/short-tip-verify-yaml-in-shell-via-python-one-liner/ |
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
# | |
# In ~/.profile: alias "mkpasswd=docker run -i -t mkpasswd" | |
# | |
FROM debian:stretch | |
RUN apt-get update && apt-get install -y --no-install-recommends --no-install-suggests whois | |
CMD ["/usr/bin/mkpasswd", "-m", "sha-512"] |
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 | |
/* | |
* This file configures factory methods in TYPO3 CMS. | |
* The file should be dropped to project root. You may need | |
* to restart PhpStorm. | |
* | |
* PhpStorm will now correctly recognise types of objects | |
* returned by TYPO3 methods listed below. | |
* | |
* (c) 2017 Dmitry Dulepov <dmitry.dulepov@gmail.com> |
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 DmitryDulepov\PowermailConversionFix\Xclass; | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2016 Dmity Dulepov <dmitry.dulepov@gmail.com> | |
* All rights reserved | |
* | |
* This script is part of the TYPO3 project. The TYPO3 project is | |
* free software; you can redistribute it and/or modify |
NewerOlder