Version 0.2.11
This commit is contained in:
parent
69494fd30d
commit
6c0ecb6abb
|
@ -6,6 +6,11 @@ STL: Statique Littérateur
|
|||
- Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md
|
||||
- License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE
|
||||
|
||||
## [0.2.11]
|
||||
### publish
|
||||
- ensure basis directories (files,images,template) are created
|
||||
|
||||
|
||||
## [0.2.10]
|
||||
### read
|
||||
- Better read option + autocompletion
|
||||
|
|
|
@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors
|
|||
synchroniser le dossier WIP sur WWW grâce à la commande :
|
||||
|
||||
```
|
||||
stl sync
|
||||
stl publish (ARTICLE)
|
||||
```
|
||||
|
||||
Note : cette commande crée automatiquement le flux RSS dans WIP avant
|
||||
|
|
2
control
2
control
|
@ -1,5 +1,5 @@
|
|||
Package: estl
|
||||
Version: 0.2.10
|
||||
Version: 0.2.11
|
||||
Section: custom
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
|
|
|
@ -6,6 +6,11 @@ STL: Statique Littérateur
|
|||
- Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md
|
||||
- License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE
|
||||
|
||||
## [0.2.11]
|
||||
### publish
|
||||
- ensure basis directories (files,images,template) are created
|
||||
|
||||
|
||||
## [0.2.10]
|
||||
### read
|
||||
- Better read option + autocompletion
|
||||
|
|
|
@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors
|
|||
synchroniser le dossier WIP sur WWW grâce à la commande :
|
||||
|
||||
```
|
||||
stl sync
|
||||
stl publish (ARTICLE)
|
||||
```
|
||||
|
||||
Note : cette commande crée automatiquement le flux RSS dans WIP avant
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
# Version: 0.2.10
|
||||
# Version: 0.2.11
|
||||
# Name: Statique Littérateur
|
||||
# Type: Executable
|
||||
# Description: Static website generator
|
||||
|
@ -13,7 +13,7 @@
|
|||
# funny stats
|
||||
#------------
|
||||
# scripts files: 14
|
||||
# app lines: 4712
|
||||
# app lines: 4715
|
||||
# app functions: 106
|
||||
# lines: 146
|
||||
# functions: 4
|
||||
|
|
|
@ -6,6 +6,11 @@ STL: Statique Littérateur
|
|||
- Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md
|
||||
- License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE
|
||||
|
||||
## [0.2.11]
|
||||
### publish
|
||||
- ensure basis directories (files,images,template) are created
|
||||
|
||||
|
||||
## [0.2.10]
|
||||
### read
|
||||
- Better read option + autocompletion
|
||||
|
|
|
@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors
|
|||
synchroniser le dossier WIP sur WWW grâce à la commande :
|
||||
|
||||
```
|
||||
stl sync
|
||||
stl publish (ARTICLE)
|
||||
```
|
||||
|
||||
Note : cette commande crée automatiquement le flux RSS dans WIP avant
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#------------
|
||||
# funny stats
|
||||
#------------
|
||||
# lines: 245
|
||||
# lines: 248
|
||||
# functions: 5
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
|
@ -32,15 +32,18 @@ fi
|
|||
# Sync basis images, files, template folders from wip to www
|
||||
sync__files "$domain_dir_wip_images/" \
|
||||
"$domain_dir_www_images/" \
|
||||
"WWW"
|
||||
"WWW" \
|
||||
"$domain_dir_wip_images"
|
||||
|
||||
sync__files "$domain_dir_wip_files/" \
|
||||
"$domain_dir_www_files/" \
|
||||
"WWW"
|
||||
"WWW" \
|
||||
"$domain_dir_wip_files"
|
||||
|
||||
sync__files "$domain_dir_wip_tpl/" \
|
||||
"$domain_dir_www_tpl/" \
|
||||
"WWW"
|
||||
"WWW" \
|
||||
"$domain_dir_www_tpl"
|
||||
|
||||
case "$2" in
|
||||
all)
|
||||
|
|
Loading…
Reference in New Issue