From 289f9de576a7980184339f380d5000f7d71f6d7e Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Mon, 13 Jun 2022 01:55:22 -0400 Subject: New "format" hierarchy. --- stdlib/source/program/aedifex.lux | 2 +- stdlib/source/program/aedifex/artifact.lux | 2 +- stdlib/source/program/aedifex/artifact/extension.lux | 2 +- stdlib/source/program/aedifex/artifact/snapshot/build.lux | 2 +- stdlib/source/program/aedifex/artifact/snapshot/time.lux | 2 +- stdlib/source/program/aedifex/artifact/snapshot/version/value.lux | 2 +- stdlib/source/program/aedifex/artifact/time.lux | 2 +- stdlib/source/program/aedifex/artifact/time/date.lux | 2 +- stdlib/source/program/aedifex/artifact/time/time.lux | 2 +- stdlib/source/program/aedifex/artifact/versioning.lux | 2 +- stdlib/source/program/aedifex/command/build.lux | 2 +- stdlib/source/program/aedifex/command/clean.lux | 2 +- stdlib/source/program/aedifex/command/deploy/release.lux | 5 ++--- stdlib/source/program/aedifex/command/deploy/snapshot.lux | 3 ++- stdlib/source/program/aedifex/command/deps.lux | 2 +- stdlib/source/program/aedifex/command/install.lux | 5 +++-- stdlib/source/program/aedifex/command/pom.lux | 2 +- stdlib/source/program/aedifex/dependency.lux | 2 +- stdlib/source/program/aedifex/dependency/deployment.lux | 2 +- stdlib/source/program/aedifex/dependency/resolution.lux | 2 +- stdlib/source/program/aedifex/hash.lux | 2 +- stdlib/source/program/aedifex/local.lux | 2 +- stdlib/source/program/aedifex/metadata.lux | 2 +- stdlib/source/program/aedifex/metadata/artifact.lux | 2 +- stdlib/source/program/aedifex/metadata/snapshot.lux | 2 +- stdlib/source/program/aedifex/project.lux | 2 +- stdlib/source/program/aedifex/repository/identity.lux | 2 +- stdlib/source/program/aedifex/repository/local.lux | 2 +- stdlib/source/program/aedifex/repository/remote.lux | 2 +- stdlib/source/program/aedifex/runtime.lux | 2 +- stdlib/source/program/compositor.lux | 2 +- 31 files changed, 35 insertions(+), 34 deletions(-) (limited to 'stdlib/source/program') diff --git a/stdlib/source/program/aedifex.lux b/stdlib/source/program/aedifex.lux index 339b1c03c..636487ee8 100644 --- a/stdlib/source/program/aedifex.lux +++ b/stdlib/source/program/aedifex.lux @@ -17,7 +17,7 @@ [data [binary (.only Binary)] ["[0]" text (.only) - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]] [format diff --git a/stdlib/source/program/aedifex/artifact.lux b/stdlib/source/program/aedifex/artifact.lux index 6b27b55a9..278b79ea4 100644 --- a/stdlib/source/program/aedifex/artifact.lux +++ b/stdlib/source/program/aedifex/artifact.lux @@ -8,7 +8,7 @@ [data ["[0]" product] ["[0]" text (.open: "[1]#[0]" order) - ["%" format (.only Format)]] + ["%" \\format (.only Format)]] [collection ["[0]" list (.open: "[1]#[0]" monoid)]]] [world diff --git a/stdlib/source/program/aedifex/artifact/extension.lux b/stdlib/source/program/aedifex/artifact/extension.lux index 797f0390f..c89fd2a35 100644 --- a/stdlib/source/program/aedifex/artifact/extension.lux +++ b/stdlib/source/program/aedifex/artifact/extension.lux @@ -3,7 +3,7 @@ [lux (.except type) [data ["[0]" text (.only) - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [macro ["[0]" template]]]] ["[0]" // diff --git a/stdlib/source/program/aedifex/artifact/snapshot/build.lux b/stdlib/source/program/aedifex/artifact/snapshot/build.lux index 641b37105..483da5e39 100644 --- a/stdlib/source/program/aedifex/artifact/snapshot/build.lux +++ b/stdlib/source/program/aedifex/artifact/snapshot/build.lux @@ -9,7 +9,7 @@ ["<[0]>" xml (.only Parser)]]] [data ["[0]" text - ["%" format] + ["%" \\format] ["<[1]>" \\parser]] [format ["[0]" xml (.only XML)]]] diff --git a/stdlib/source/program/aedifex/artifact/snapshot/time.lux b/stdlib/source/program/aedifex/artifact/snapshot/time.lux index 64f0173d3..3b6fbe0ee 100644 --- a/stdlib/source/program/aedifex/artifact/snapshot/time.lux +++ b/stdlib/source/program/aedifex/artifact/snapshot/time.lux @@ -10,7 +10,7 @@ ["<[0]>" xml (.only Parser)]]] [data ["[0]" text - ["%" format] + ["%" \\format] ["<[1]>" \\parser]] [format ["[0]" xml (.only XML)]]] diff --git a/stdlib/source/program/aedifex/artifact/snapshot/version/value.lux b/stdlib/source/program/aedifex/artifact/snapshot/version/value.lux index 26bb272e3..875326058 100644 --- a/stdlib/source/program/aedifex/artifact/snapshot/version/value.lux +++ b/stdlib/source/program/aedifex/artifact/snapshot/version/value.lux @@ -6,7 +6,7 @@ [data ["[0]" product] ["[0]" text - ["%" format]]]]] + ["%" \\format]]]]] ["[0]" /// (.only Snapshot) ["[1][0]" time] ["[1][0]" stamp]]) diff --git a/stdlib/source/program/aedifex/artifact/time.lux b/stdlib/source/program/aedifex/artifact/time.lux index 73f170d55..d7be974fd 100644 --- a/stdlib/source/program/aedifex/artifact/time.lux +++ b/stdlib/source/program/aedifex/artifact/time.lux @@ -11,7 +11,7 @@ [data ["[0]" product] ["[0]" text - ["%" format (.only Format)] + ["%" \\format (.only Format)] ["<[1]>" \\parser (.only Parser)]]] [time ["[0]" instant (.only Instant)]]]] diff --git a/stdlib/source/program/aedifex/artifact/time/date.lux b/stdlib/source/program/aedifex/artifact/time/date.lux index de20211f2..7c9096985 100644 --- a/stdlib/source/program/aedifex/artifact/time/date.lux +++ b/stdlib/source/program/aedifex/artifact/time/date.lux @@ -10,7 +10,7 @@ ["[0]" exception (.only exception:)]] [data ["[0]" text - ["%" format] + ["%" \\format] ["<[1]>" \\parser (.only Parser)]]] [math [number diff --git a/stdlib/source/program/aedifex/artifact/time/time.lux b/stdlib/source/program/aedifex/artifact/time/time.lux index 4b4936563..01d2169d5 100644 --- a/stdlib/source/program/aedifex/artifact/time/time.lux +++ b/stdlib/source/program/aedifex/artifact/time/time.lux @@ -8,7 +8,7 @@ ["<>" parser (.only)]] [data ["[0]" text - ["%" format] + ["%" \\format] ["<[1]>" \\parser (.only Parser)]]] [math [number diff --git a/stdlib/source/program/aedifex/artifact/versioning.lux b/stdlib/source/program/aedifex/artifact/versioning.lux index bc03b35bd..5812e4368 100644 --- a/stdlib/source/program/aedifex/artifact/versioning.lux +++ b/stdlib/source/program/aedifex/artifact/versioning.lux @@ -11,7 +11,7 @@ [data ["[0]" product] ["[0]" text (.only) - ["%" format] + ["%" \\format] ["<[1]>" \\parser]] [format ["[0]" xml (.only XML)]] diff --git a/stdlib/source/program/aedifex/command/build.lux b/stdlib/source/program/aedifex/command/build.lux index b00f60968..168aa1971 100644 --- a/stdlib/source/program/aedifex/command/build.lux +++ b/stdlib/source/program/aedifex/command/build.lux @@ -14,7 +14,7 @@ [data ["[0]" product] ["[0]" text (.open: "[1]#[0]" order) - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" list (.open: "[1]#[0]" functor mix)] ["[0]" dictionary (.only Dictionary)] diff --git a/stdlib/source/program/aedifex/command/clean.lux b/stdlib/source/program/aedifex/command/clean.lux index 7798a2006..c16c517d6 100644 --- a/stdlib/source/program/aedifex/command/clean.lux +++ b/stdlib/source/program/aedifex/command/clean.lux @@ -9,7 +9,7 @@ ["[0]" async (.only Async)]]] [data [text - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [world ["[0]" file (.only Path)] ["[0]" console (.only Console)]]]] diff --git a/stdlib/source/program/aedifex/command/deploy/release.lux b/stdlib/source/program/aedifex/command/deploy/release.lux index 30cc226a4..667bbf1ee 100644 --- a/stdlib/source/program/aedifex/command/deploy/release.lux +++ b/stdlib/source/program/aedifex/command/deploy/release.lux @@ -14,16 +14,15 @@ [parser ["[0]" environment]]] [data - ["[0]" binary (.only Binary)] + [binary (.only Binary)] ["[0]" text (.only) - ["%" format] + ["%" \\format] [encoding ["[0]" utf8]]] [collection ["[0]" set] ["[0]" dictionary]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/deploy/snapshot.lux b/stdlib/source/program/aedifex/command/deploy/snapshot.lux index 1fd2c8793..37fc9a19b 100644 --- a/stdlib/source/program/aedifex/command/deploy/snapshot.lux +++ b/stdlib/source/program/aedifex/command/deploy/snapshot.lux @@ -8,13 +8,14 @@ [concurrency ["[0]" async (.only Async)]]] [data + ["[0]" binary + ["[1]" \\format]] ["[0]" text [encoding ["[0]" utf8]]] [collection ["[0]" set]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/deps.lux b/stdlib/source/program/aedifex/command/deps.lux index e113616ef..f2bc10fb1 100644 --- a/stdlib/source/program/aedifex/command/deps.lux +++ b/stdlib/source/program/aedifex/command/deps.lux @@ -13,7 +13,7 @@ ["[0]" list (.open: "[1]#[0]" mix)] ["[0]" dictionary]] [text - ["%" format]]] + ["%" \\format]]] [world [net (.only URL)] [program (.only Program)] diff --git a/stdlib/source/program/aedifex/command/install.lux b/stdlib/source/program/aedifex/command/install.lux index e6e85948c..9e624a11c 100644 --- a/stdlib/source/program/aedifex/command/install.lux +++ b/stdlib/source/program/aedifex/command/install.lux @@ -9,14 +9,15 @@ [concurrency ["[0]" async (.only Async)]]] [data - [binary (.only Binary)] + ["[0]" binary + [\ (.only Binary)] + ["[1]" \\format]] [text [encoding ["[0]" utf8]]] [collection ["[0]" set]] [format - ["[0]" binary] ["[0]" tar] ["[0]" xml]]] [tool diff --git a/stdlib/source/program/aedifex/command/pom.lux b/stdlib/source/program/aedifex/command/pom.lux index 2abff6969..7b12a095b 100644 --- a/stdlib/source/program/aedifex/command/pom.lux +++ b/stdlib/source/program/aedifex/command/pom.lux @@ -9,7 +9,7 @@ ["[0]" async (.only Async) (.open: "[1]#[0]" monad)]]] [data [text - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]] [format diff --git a/stdlib/source/program/aedifex/dependency.lux b/stdlib/source/program/aedifex/dependency.lux index 860493d55..11c66941f 100644 --- a/stdlib/source/program/aedifex/dependency.lux +++ b/stdlib/source/program/aedifex/dependency.lux @@ -8,7 +8,7 @@ [data ["[0]" product] ["[0]" text (.open: "[1]#[0]" order) - ["%" format (.only format)]]]]] + ["%" \\format (.only format)]]]]] ["[0]" // ["[1]" artifact (.only Artifact) (.open: "[1]#[0]" order) [type (.only Type)]]]) diff --git a/stdlib/source/program/aedifex/dependency/deployment.lux b/stdlib/source/program/aedifex/dependency/deployment.lux index 5b9a8b783..7e4a427e3 100644 --- a/stdlib/source/program/aedifex/dependency/deployment.lux +++ b/stdlib/source/program/aedifex/dependency/deployment.lux @@ -12,7 +12,7 @@ [binary (.only Binary)] ["[0]" product] [text - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]] [collection diff --git a/stdlib/source/program/aedifex/dependency/resolution.lux b/stdlib/source/program/aedifex/dependency/resolution.lux index f04a95105..6a15823c8 100644 --- a/stdlib/source/program/aedifex/dependency/resolution.lux +++ b/stdlib/source/program/aedifex/dependency/resolution.lux @@ -20,7 +20,7 @@ [data ["[0]" binary (.only Binary)] ["[0]" textnone - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]] [format diff --git a/stdlib/source/program/aedifex/hash.lux b/stdlib/source/program/aedifex/hash.lux index 310fd421d..32be3a8ee 100644 --- a/stdlib/source/program/aedifex/hash.lux +++ b/stdlib/source/program/aedifex/hash.lux @@ -12,7 +12,7 @@ [data ["[0]" binary (.only Binary)] ["[0]" text - ["%" format (.only Format format)] + ["%" \\format (.only Format format)] ["[0]" encoding]]] [macro ["^" pattern]] diff --git a/stdlib/source/program/aedifex/local.lux b/stdlib/source/program/aedifex/local.lux index a1b69e311..8a4aa3b1e 100644 --- a/stdlib/source/program/aedifex/local.lux +++ b/stdlib/source/program/aedifex/local.lux @@ -3,7 +3,7 @@ [lux (.except) [data [text - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [world [net ["[0]" uri (.only URI)]]]]] diff --git a/stdlib/source/program/aedifex/metadata.lux b/stdlib/source/program/aedifex/metadata.lux index 107fd1b3d..36e287325 100644 --- a/stdlib/source/program/aedifex/metadata.lux +++ b/stdlib/source/program/aedifex/metadata.lux @@ -3,7 +3,7 @@ [lux (.except) [data ["[0]" text (.only) - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [world [file (.only Path)] [net diff --git a/stdlib/source/program/aedifex/metadata/artifact.lux b/stdlib/source/program/aedifex/metadata/artifact.lux index c198845e6..0057ce119 100644 --- a/stdlib/source/program/aedifex/metadata/artifact.lux +++ b/stdlib/source/program/aedifex/metadata/artifact.lux @@ -14,7 +14,7 @@ [data ["[0]" product] ["[0]" text (.only) - ["%" format] + ["%" \\format] ["<[1]>" \\parser] [encoding ["[0]" utf8]]] diff --git a/stdlib/source/program/aedifex/metadata/snapshot.lux b/stdlib/source/program/aedifex/metadata/snapshot.lux index c7b538232..7645b556b 100644 --- a/stdlib/source/program/aedifex/metadata/snapshot.lux +++ b/stdlib/source/program/aedifex/metadata/snapshot.lux @@ -15,7 +15,7 @@ [data ["[0]" product] ["[0]" text (.only) - ["%" format] + ["%" \\format] ["<[1]>" \\parser] [encoding ["[0]" utf8]]] diff --git a/stdlib/source/program/aedifex/project.lux b/stdlib/source/program/aedifex/project.lux index 209ee225a..868fb7691 100644 --- a/stdlib/source/program/aedifex/project.lux +++ b/stdlib/source/program/aedifex/project.lux @@ -10,7 +10,7 @@ ["[0]" exception (.only exception:)]] [data ["[0]" text (.only) - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" dictionary (.only Dictionary)] ["[0]" set (.only Set)] diff --git a/stdlib/source/program/aedifex/repository/identity.lux b/stdlib/source/program/aedifex/repository/identity.lux index 9cc85f7f1..d6b14b12b 100644 --- a/stdlib/source/program/aedifex/repository/identity.lux +++ b/stdlib/source/program/aedifex/repository/identity.lux @@ -7,7 +7,7 @@ [data ["[0]" product] ["[0]" text - ["%" format (.only format)] + ["%" \\format (.only format)] [encoding ["[0]" utf8]]]]]]) diff --git a/stdlib/source/program/aedifex/repository/local.lux b/stdlib/source/program/aedifex/repository/local.lux index 6e9db2755..1a7fb0ffd 100644 --- a/stdlib/source/program/aedifex/repository/local.lux +++ b/stdlib/source/program/aedifex/repository/local.lux @@ -9,7 +9,7 @@ ["[0]" async (.only Async)]]] [data ["[0]" text (.only) - ["%" format (.only format)]]] + ["%" \\format (.only format)]]] [world [program (.only Program)] ["[0]" file] diff --git a/stdlib/source/program/aedifex/repository/remote.lux b/stdlib/source/program/aedifex/repository/remote.lux index 49204fbae..cbe1ffd8e 100644 --- a/stdlib/source/program/aedifex/repository/remote.lux +++ b/stdlib/source/program/aedifex/repository/remote.lux @@ -10,7 +10,7 @@ [data ["[0]" product] [text - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" list]]] ["[0]" meta diff --git a/stdlib/source/program/aedifex/runtime.lux b/stdlib/source/program/aedifex/runtime.lux index b738d220c..47bcfbb43 100644 --- a/stdlib/source/program/aedifex/runtime.lux +++ b/stdlib/source/program/aedifex/runtime.lux @@ -6,7 +6,7 @@ [data ["[0]" product] ["[0]" text - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" list (.open: "[1]#[0]" monoid)] ["[0]" dictionary (.only Dictionary)]]] diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux index cd6a49dbb..4287a901f 100644 --- a/stdlib/source/program/compositor.lux +++ b/stdlib/source/program/compositor.lux @@ -16,7 +16,7 @@ [binary (.only Binary)] ["[0]" product] ["[0]" text (.only) - ["%" format (.only format)]] + ["%" \\format (.only format)]] [collection ["[0]" dictionary (.only Dictionary)]]] [time -- cgit v1.2.3