Compare commits

...

3 commits

Author SHA1 Message Date
Daniel Siepmann 840250fc6b
Ignore another codeception file by git
I rename the codeception.yml to codeception.yml_ from time to time,
as I need to switch between local overwrite and project default often.

That's why I ignore that file as well.
2024-03-14 07:23:53 +01:00
Daniel Siepmann f7b70d1265
Turn on smart case for search in tig
Allows me to use lower case to ignore case, and respect case as soon as
an upper case letter is searched.
2024-03-14 07:22:58 +01:00
Daniel Siepmann dbf35c677e
Add new TYPO3 documentation rendering based on phpDocumentor
Keep old rendering as some projects are not migrated yet and need the
old rendering.
2024-03-14 07:22:30 +01:00
5 changed files with 32 additions and 6 deletions

View file

@ -3,5 +3,7 @@ set main-view-id = yes
set main-view-date = custom
set main-view-date-format = "%Y-%m-%d %H:%M"
set ignore-case = smart-case
color id yellow default
color commit yellow default

View file

@ -9,6 +9,7 @@
(callPackage ./nextcloud-sync/from-local.nix { })
(callPackage ./nextcloud-sync/from-remote.nix { })
(callPackage ./typo3-documentation-rendering { })
(callPackage ./typo3-documentation-rendering-old { })
(callPackage ./zcat-progress { })
(callPackage ./project {
inherit ownLib;

View file

@ -0,0 +1,24 @@
{
writeShellApplication,
podman
}:
writeShellApplication {
name = "custom-typo3-render-documentation-old";
runtimeInputs = [
podman
];
# Repository: https://github.com/t3docs/DRC-The-Docker-Rendering-Container
# Documentation: https://t3docs.github.io/DRC-The-Docker-Rendering-Container/07-To-be-sorted/quickstart.html#build-html-with-plain-docker-commands
text = ''
mkdir -p Documentation-GENERATED-temp
podman \
run --rm \
-v "$(pwd)":/PROJECT:ro \
-v "$(pwd)/Documentation-GENERATED-temp":/RESULT \
ghcr.io/t3docs/render-documentation:latest \
makehtml
'';
}

View file

@ -10,15 +10,13 @@ writeShellApplication {
podman
];
# Repository: https://github.com/t3docs/DRC-The-Docker-Rendering-Container
# Documentation: https://t3docs.github.io/DRC-The-Docker-Rendering-Container/07-To-be-sorted/quickstart.html#build-html-with-plain-docker-commands
# Repository: https://github.com/TYPO3-Documentation/render-guides
text = ''
mkdir -p Documentation-GENERATED-temp
podman \
run --rm \
-v "$(pwd)":/PROJECT:ro \
-v "$(pwd)/Documentation-GENERATED-temp":/RESULT \
ghcr.io/t3docs/render-documentation:latest \
makehtml
-v "$(pwd)":/project \
-it ghcr.io/typo3-documentation/render-guides:latest \
--config=Documentation
'';
}

View file

@ -55,6 +55,7 @@
".phpunit.cache"
".php-cs-fixer.cache"
"codeception.yml"
"codeception.yml_"
"phpcs.xml"
# TYPO3 documentation specific