Kim Alvefur
7be6630dfe
util.datamapper: Remove leftover debug assert (Only Teal, not included in build)
2022-10-19 14:07:48 +02:00
Kim Alvefur
aa8f7d1533
util.stanza: Add new methods to Teal interface specification
...
at_top: 21217f7e82b9
get_child_with_attr: 39164ea2ab9e
get_child_attr: e8934ce6ea0f
add_error: 5f182bccf33f
2022-10-17 15:13:04 +02:00
Kim Alvefur
d9ce2d5e4e
util.crypto: Add Teal type specification
2022-06-30 15:38:22 +02:00
Kim Alvefur
2b0676396d
util.roles: Add Teal interface declaration
2022-08-12 22:09:09 +02:00
Matthew Wild
57ed2e28a0
teal-src: update module.d.tl with new access control methods
2022-06-15 14:22:26 +01:00
Kim Alvefur
cbff90a7ac
util.datetime: Update Teal interface description
...
Integers were required before, now any number should work.
2022-08-17 18:41:35 +02:00
Kim Alvefur
48ee5e3cbd
util.signal: Fix name conflict in Teal interface declaration
2022-08-10 15:12:00 +02:00
Kim Alvefur
d7b7e4afb5
util.error: Use avoid name conflict in Teal interface declaration
...
Naming things ... Thing or thing_t?
2022-08-10 15:10:50 +02:00
Kim Alvefur
9daa82bfc1
util.uuid: Fix syntax of Teal interface declaration file
2022-08-10 15:10:14 +02:00
Kim Alvefur
93f6968077
util.timer: Add Teal interface description
2022-07-24 21:39:51 +02:00
Kim Alvefur
49497f25d3
util.termcolours: Add Teal interface description
2022-07-24 21:39:46 +02:00
Kim Alvefur
f307901a09
util.queue: Add Teal interface description
2022-07-24 21:39:32 +02:00
Kim Alvefur
90dd7f6943
util.logger: Add Teal interface description
2022-07-24 21:39:07 +02:00
Kim Alvefur
6e1de3134c
util.bitcompat: Add Teal type specification
2022-06-30 15:39:03 +02:00
Kim Alvefur
6464150088
util.struct: Add Teal interface description file
2022-06-15 15:51:57 +02:00
Kim Alvefur
a9c96e12c2
util.table: Add move() to Teal interface description file
2022-06-15 15:40:03 +02:00
Kim Alvefur
dfa35e5217
util.set: Add teal type declaration file
2022-02-16 16:42:22 +01:00
Kim Alvefur
efb69fa99b
util.serialization: Add Teal type specification
2021-12-01 15:05:06 +01:00
Kim Alvefur
9dc7ac98fa
util.dataforms: Add missing :data() to Teal definition
2021-11-15 17:15:22 +01:00
Kim Alvefur
dff6720958
util.dataforms: Restructure Teal definition file
...
The PR has been merged and there's no reason not to have nested records
and other definitions.
2021-11-15 17:07:23 +01:00
Kim Alvefur
238c64e233
util.human.io: Add Teal interface definition
2021-11-10 15:12:03 +01:00
Kim Alvefur
523d844c78
util.promise: Add Teal interface specification file
2022-07-24 21:25:41 +02:00
Kim Alvefur
53907b44ce
teal: add stub util.array teal defs
2022-07-24 21:25:31 +02:00
Kim Alvefur
0ed1e69a4e
net.server: Add teal description file
2022-07-24 21:25:17 +02:00
Kim Alvefur
d459ec2f5d
net.http: Add teal description files
2022-07-24 21:25:03 +02:00
Kim Alvefur
185b679953
util.human.units: Specify enum argument to format()
2021-07-05 13:18:14 +02:00
Kim Alvefur
a8332d2427
core.storagemanager: Convert old Typed Lua description file into Teal
...
Still only a type definition.
Typed Lua is no longer maintained.
Teal is currently an active project.
2021-03-24 20:23:38 +01:00
Kim Alvefur
8e3e3f3bcd
util.hex: Update Teal spec for function rename in a0ff5c438e9d
2022-08-10 13:45:43 +02:00
Kim Alvefur
82135131e7
Merge 0.12->trunk
2022-07-08 19:36:07 +02:00
Kim Alvefur
89359b70dc
util.datamapper: Improve handling of schemas with non-obvious "type"
...
The JSON Schema specification says that schemas are objects or booleans,
and that the 'type' property is optional and can be an array.
This module previously allowed bare type names as schemas and did not
really handle booleans.
It now handles missing 'type' properties and boolean 'true' as a schema.
Objects and arrays are guessed based on the presence of 'properties' or
'items' field.
2022-07-08 17:32:48 +02:00
Kim Alvefur
e700edc50f
util.jsonschema: Fix validation to not assume presence of "type" field
...
MattJ reported a curious issue where validation did not work as
expected. Primarily that the "type" field was expected to be mandatory,
and thus leaving it out would result in no checks being performed.
This was likely caused by misreading during initial development.
Spent some time testing against
https://github.com/json-schema-org/JSON-Schema-Test-Suite.git and
discovered a multitude of issues, far too many to bother splitting into
separate commits.
More than half of them fail. Many because of features not implemented,
which have been marked NYI. For example, some require deep comparisons
e.g. when objects or arrays are present in enums fields.
Some because of quirks with how Lua differs from JavaScript, e.g. no
distinct array or object types. Tests involving fractional floating
point numbers. We're definitely not going to follow references to remote
resources. Or deal with UTF-16 sillyness. One test asserted that 1.0 is
an integer, where Lua 5.3+ will disagree.
2022-07-08 14:38:23 +02:00
Kim Alvefur
d05af9f2b5
util.jsonpointer: Fix off-by-one in array resolution
...
Fixes #1753
Not known to be used anywhere
2022-05-08 18:04:50 +02:00
Kim Alvefur
38c67064b3
mod_cron: Fix recording last task run time #1751
...
The type checks, they do nothing!
Observed: Tasks that were supposed to run weekly or daily were running
each hour.
2022-05-05 14:10:59 +02:00
Kim Alvefur
43351d2b54
Spelling: Fix various spelling mistakes (thanks timeless)
...
Words, sometimes I wonder how they even work
Maybe I missed something.
2022-03-07 00:13:56 +01:00
Kim Alvefur
af95bb77e6
util.poll: Add support for the poll() API
...
Might be better than select(), more portable than epoll.
2022-02-23 20:31:03 +01:00
Kim Alvefur
04aa101da3
util.poll: Expose API (epoll or select) used
...
Could he handy to know for debugging or decisions
2022-02-27 14:36:43 +01:00
Kim Alvefur
a7567a9055
util.hashes: Add SHA3 bindings
2020-09-10 21:58:24 +02:00
Kim Alvefur
f3d61e3945
util.hashes: Bind BLAKE2 algoritms supported by OpenSSL
2020-09-10 21:58:24 +02:00
Kim Alvefur
ae14dc1220
util.hashes: Expose sha224 and sha384 HMAC functions
...
For completeness and consistency with set of plain hash functions
2020-11-29 17:58:45 +01:00
Kim Alvefur
413b9d70aa
util.stanza: Document top level attributes in Teal definition
...
Tells you if you make a typo like "gropchat" or so
2022-05-17 17:06:36 +02:00
Kim Alvefur
977373c988
util.stanza: Document error conditions in Teal definition
...
Gets you nice error messages if you make a typo in with error_reply()
2022-05-17 17:05:15 +02:00
Kim Alvefur
54d1ff8cfd
mod_cron: Remove difference between teal version
...
This previously was considered an error because the module API Teal spec
did not document a return value from module:add_timer()
2022-05-15 15:29:02 +02:00
Kim Alvefur
04c6caba50
teal/moduleapi: Describe timer wrapper
...
Since it's used in mod_cron
2022-05-15 15:27:35 +02:00
Kim Alvefur
117c340edb
util.async: Add Teal description file
2022-05-08 15:21:35 +02:00
Kim Alvefur
7e65b1deef
util.xtemplate: Yet another string template library
...
This one takes a stanza as input
Roughly based on util.interpolation
2022-01-24 23:54:32 +01:00
Kim Alvefur
e0e180aa9d
mod_cron: Allow for a small amount of timer drift
...
If the timer activates a bit early then a task might be just a few
seconds short of being allowed to run. This would run such a task rather
than wait another hour.
The value 0.5% chosen so that a weekly task does not run an entire hour
earlier than last time.
2022-01-15 09:09:24 +01:00
Kim Alvefur
5168bd5c5f
util.datamapper: Add support for $ref pointers
...
Allows reuse of repetitive definitions in schemas.
2021-12-29 17:57:09 +01:00
Kim Alvefur
cd091bf95c
util.jsonschema: Add support for $ref pointers
2021-12-29 16:57:35 +01:00
Kim Alvefur
d8017615c7
util.jsonpointer: Resolve JSON Pointers per RFC 6901
2021-12-29 16:52:09 +01:00
Kim Alvefur
081647ea1f
util.smqueue: Simplify compat table, fix dependent modules (thanks Martin)
...
There was an off-by-one in the modulo calculation. Switching to a plain
old array-table makes the apparent size of the queue wrong, but since
some of the queue may not be available this is likely for the best.
2021-12-16 12:16:45 +01:00