Compare commits

...

19 commits

Author SHA1 Message Date
Simon Vieille 395c7c1d51
add tinymceModes
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-03-31 17:02:51 +02:00
Simon Vieille 74613fca63 add v1.24.0 in core changelog
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-01-27 20:03:42 +01:00
Simon Vieille e8364a3876
add gitnet.page domain
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-01-23 13:54:58 +01:00
Simon Vieille 0320aef511
add gitnet.page domain
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-01-23 13:53:16 +01:00
Simon Vieille 2c9b1aef6b
add gitnet.page domain
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-01-23 13:44:14 +01:00
Simon Vieille 77b100ff4c
add ci to deploy on gitnet.page
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-01-23 13:42:39 +01:00
Simon Vieille d4561c3db0
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:41:53 +01:00
Simon Vieille 65b35c990c
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:40:19 +01:00
Simon Vieille 42985ef2d8
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:39:03 +01:00
Simon Vieille 68edabf1ad
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:31:55 +01:00
Simon Vieille 8d77e9ce0a
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:30:08 +01:00
Simon Vieille 5d7b3bc0ea
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:29:30 +01:00
Simon Vieille 519d3be52f
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:28:19 +01:00
Simon Vieille ae64ce900a
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:19:39 +01:00
Simon Vieille a054445de6
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:19:09 +01:00
Simon Vieille 7afc3c4933
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:14:24 +01:00
Simon Vieille 9cc7575277
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:10:34 +01:00
Simon Vieille 561bc37e94
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:05:47 +01:00
Simon Vieille a5ef7a982c
add ci to deploy on gitnet.page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-01-23 13:01:02 +01:00
3 changed files with 73 additions and 27 deletions

View file

@ -9,15 +9,47 @@ steps:
fi
mkdocs build
deploy:
image: eeacms/rsync
secrets: [ssh_user_host, ssh_priv_key]
commit:
image: alpine/git
secrets: [ssh_private_key]
commands:
- mkdir "$HOME/.ssh"
- echo "$SSH_PRIV_KEY" > "$HOME/.ssh/id_ed25519"
- chmod 700 "$HOME/.ssh"
- chmod 600 "$HOME/.ssh/id_ed25519"
- rsync -e "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" -avz --delete ./site/ "$SSH_USER_HOST:web/"
when:
branch:
- master
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- git config --global user.email ci@gitnet.fr
- git config --global user.name CI
- git commit -m build -a
- git fetch --no-tags origin +refs/heads/pages
- git remote add upstream git@gitnet.fr:murph/murph-doc.git
- git switch pages
- mv site /tmp/
- rm * -fr
- mv /tmp/site/* .
- echo doc.murph-project.org > .domains
- git add .
- git commit -m "Build ${CI_BUILD_NUMBER}"
- git push upstream pages
# push:
# image: appleboy/drone-git-push
# commands:
# settings:
# branch: pages
# remote: git@gitnet.fr:murph/murph-doc.git
# force: false
# commit: false
# ssh_key:
# from_secret: ssh_key
#deploy:
# image: eeacms/rsync
# secrets: [ssh_user_host, ssh_priv_key]
# commands:
# - mkdir "$HOME/.ssh"
# - echo "$SSH_PRIV_KEY" > "$HOME/.ssh/id_ed25519"
# - chmod 700 "$HOME/.ssh"
# - chmod 600 "$HOME/.ssh/id_ed25519"
# - rsync -e "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" -avz --delete ./site/ "$SSH_USER_HOST:web/"
# when:
# branch:
# - master

View file

@ -5,7 +5,19 @@ hide:
# Changelog
???+ success "[v1.23.0] - 2023-11-01"
???+ success "[v1.24.0] - 2024-01-27"
**Added**
* add CSS class `no-wrap`
* copy the pager of the CRUD at the bottom of the list
**Fixed**
* fix an issue with the file manager when editing an item opened in a modal
* fix type casting in slugifier
??? abstract "[v1.23.0] - 2023-11-01"
**Added**

View file

@ -118,21 +118,23 @@ import '../../vendor/murph/murph-core/src/core/Resources/assets/js/admin.js'
window.tinymce.language = 'fr_FR'
window.tinymce.murph.modes.myCustomMode = {
plugins: '...',
menubar: '...',
toolbar: '...'
quickbars_selection_toolbar: '...'
contextmenu: '...'
templates: [
{
title: 'Container',
description: 'Add a bootstrap container',
content: '<div class="container"><div class="selcontent"></div></div>'
}
// ...
],
content_style: '...'
window.tinymceModes = {
myCustomMode: {
plugins: '...',
menubar: '...',
toolbar: '...'
quickbars_selection_toolbar: '...'
contextmenu: '...'
templates: [
{
title: 'Container',
description: 'Add a bootstrap container',
content: '<div class="container"><div class="selcontent"></div></div>'
}
// ...
],
content_style: '...'
}
}
```