Compare commits
3 commits
78096446dc
...
a2ca13bcd6
| Author | SHA1 | Date | |
|---|---|---|---|
| a2ca13bcd6 | |||
| 1683b6fd89 | |||
| 7ea478e2b8 |
10 changed files with 111 additions and 5 deletions
|
|
@ -1,3 +1,10 @@
|
||||||
|
## 0.1.0a19 (2025-10-10)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- update tests
|
||||||
|
- tests
|
||||||
|
|
||||||
## 0.1.0a18 (2025-09-30)
|
## 0.1.0a18 (2025-09-30)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.output_formatter"
|
name = "rougail.output_formatter"
|
||||||
version = "0.1.0a18"
|
version = "0.1.0a19"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail output formatter"
|
description = "Rougail output formatter"
|
||||||
|
|
@ -13,9 +13,6 @@ license = {file = "LICENSE"}
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
|
||||||
"Programming Language :: Python :: 3.10",
|
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: 3.13",
|
"Programming Language :: Python :: 3.13",
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.0a18"
|
__version__ = "0.1.0a19"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition: no # a conditional variable
|
||||||
|
|
||||||
|
variable1:
|
||||||
|
description: a first variable
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.condition == "yes" }}
|
||||||
|
return_type: boolean
|
||||||
|
description: if condition is egal to "yes"
|
||||||
|
|
||||||
|
variable2:
|
||||||
|
description: a seconde variable
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.condition != "yes" }}
|
||||||
|
return_type: boolean
|
||||||
|
description: if condition is not egal to "yes"
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition: true # a condition
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition:
|
||||||
|
description: a condition
|
||||||
|
default: false
|
||||||
|
hidden: true
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition:
|
||||||
|
description: a condition
|
||||||
|
default: false
|
||||||
|
disabled: true
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
propertyerror: false
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition: false # a condition
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition:
|
||||||
|
description: a condition
|
||||||
|
default: true
|
||||||
|
hidden: true
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
...
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
condition:
|
||||||
|
description: a condition
|
||||||
|
default: true
|
||||||
|
disabled: true
|
||||||
|
|
||||||
|
variable:
|
||||||
|
description: a variable
|
||||||
|
disabled:
|
||||||
|
variable: _.condition
|
||||||
|
propertyerror: false
|
||||||
|
...
|
||||||
Loading…
Reference in a new issue