[1.11.1]
This commit is contained in:
parent
b001efcd9a
commit
b296223ec7
|
@ -8,6 +8,10 @@ Tyto - Littérateur
|
||||||
|
|
||||||
# CURRENTLY IN DEV (in devel branch) !
|
# CURRENTLY IN DEV (in devel branch) !
|
||||||
|
|
||||||
|
## [1.11.1]
|
||||||
|
- [help article]: added div box help
|
||||||
|
- fix meta keywords, including domain tags in HTML pages
|
||||||
|
|
||||||
## [1.11.0]
|
## [1.11.0]
|
||||||
- added "! LOGO" mark in article header
|
- added "! LOGO" mark in article header
|
||||||
- - create HTML logo image in <article> > <header>
|
- - create HTML logo image in <article> > <header>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: tyto
|
Package: tyto
|
||||||
Version: 1.11.0
|
Version: 1.11.1
|
||||||
Section: custom
|
Section: custom
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# version: 1.11.0
|
# version: 1.11.1
|
||||||
# date: 2024-01-06 01:54:236
|
# date: 2024-01-08 1704734310
|
||||||
# Tyto - Littérateur
|
# Tyto - Littérateur
|
||||||
|
|
||||||
# Copyright (C) 2023 Cyrille Louarn <echolib+tyto@a-lec.org>
|
# Copyright (C) 2023 Cyrille Louarn <echolib+tyto@a-lec.org>
|
||||||
|
|
|
@ -92,7 +92,7 @@ def article_metas():
|
||||||
post.needed_tags["title"],
|
post.needed_tags["title"],
|
||||||
post.needed_tags["authors"],
|
post.needed_tags["authors"],
|
||||||
post.needed_tags["about"],
|
post.needed_tags["about"],
|
||||||
post.needed_tags["tags"],
|
domain.conf["tags"] + "," + post.needed_tags["tags"],
|
||||||
# Canonical, template
|
# Canonical, template
|
||||||
post.datas["www_url"],
|
post.datas["www_url"],
|
||||||
post.datas["rpa"], domain.cf.get("TEMPLATE_FILENAMES", "styles"),
|
post.datas["rpa"], domain.cf.get("TEMPLATE_FILENAMES", "styles"),
|
||||||
|
|
|
@ -658,6 +658,11 @@ logo: URI
|
||||||
))
|
))
|
||||||
))
|
))
|
||||||
|
|
||||||
|
# <div> box %s
|
||||||
|
[[
|
||||||
|
Contents in a <div>
|
||||||
|
]]
|
||||||
|
|
||||||
# Block-Code. CSS Class (default "bcode")
|
# Block-Code. CSS Class (default "bcode")
|
||||||
# ! Opened marker is at same position than closed marker
|
# ! Opened marker is at same position than closed marker
|
||||||
{{ PyCode
|
{{ PyCode
|
||||||
|
@ -700,6 +705,7 @@ logo: URI
|
||||||
help_abbr_header,
|
help_abbr_header,
|
||||||
help_anc_header,
|
help_anc_header,
|
||||||
css_info,
|
css_info,
|
||||||
|
css_info,
|
||||||
help_list,
|
help_list,
|
||||||
help_cite,
|
help_cite,
|
||||||
help_image_writer,
|
help_image_writer,
|
||||||
|
|
|
@ -669,6 +669,11 @@ logo: URI
|
||||||
))
|
))
|
||||||
))
|
))
|
||||||
|
|
||||||
|
# Boite <div> %s
|
||||||
|
[{
|
||||||
|
Contenu dans une balise div
|
||||||
|
]]
|
||||||
|
|
||||||
# Code (bloc). Class CSS possible (default "bcode")
|
# Code (bloc). Class CSS possible (default "bcode")
|
||||||
# ! Le marqueur d'ouverture est à la même position que le marqueur de fermeture
|
# ! Le marqueur d'ouverture est à la même position que le marqueur de fermeture
|
||||||
{{ PyCode
|
{{ PyCode
|
||||||
|
@ -711,6 +716,7 @@ logo: URI
|
||||||
help_abbr_header,
|
help_abbr_header,
|
||||||
help_anc_header,
|
help_anc_header,
|
||||||
css_info,
|
css_info,
|
||||||
|
css_info,
|
||||||
help_list,
|
help_list,
|
||||||
help_cite,
|
help_cite,
|
||||||
help_image_writer,
|
help_image_writer,
|
||||||
|
|
Loading…
Reference in New Issue