From 940679fb75073a59186099e3dd7fb381e727db6b Mon Sep 17 00:00:00 2001 From: Kevin Layer Date: Thu, 31 Oct 2013 04:27:29 -0700 Subject: [PATCH 1/2] rfe12668: add HTML 5 elements to htmlgen Add the new elements listed here: http://www.w3.org/TR/html5-diff/#new-elements Change-Id: I7f64363751130644caf90ecdd65c13175d77ae97 --- aserve/htmlgen/htmlgen.cl | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/aserve/htmlgen/htmlgen.cl b/aserve/htmlgen/htmlgen.cl index 59248ef..0c0d6e8 100644 --- a/aserve/htmlgen/htmlgen.cl +++ b/aserve/htmlgen/htmlgen.cl @@ -747,6 +747,40 @@ (def-std-html :var t nil) -(def-std-html :wbr nil nil) - (def-std-html :xmp t nil) + +;; html 5 + +(def-std-html :section t nil) +(def-std-html :article t nil) +(def-std-html :main t nil) +(def-std-html :aside t nil) +(def-std-html :hgroup t nil) +(def-std-html :header t nil) +(def-std-html :footer t nil) +(def-std-html :nav t nil) +(def-std-html :figure t nil) +(def-std-html :figcaption t nil) + +(def-std-html :video t nil) +(def-std-html :audio t nil) +(def-std-html :source t nil) +(def-std-html :track t nil) +(def-std-html :embed t nil) +(def-std-html :mark t nil) +(def-std-html :progress t nil) +(def-std-html :meter t nil) +(def-std-html :time t nil) +(def-std-html :data t nil) +(def-std-html :dialog t nil) +(def-std-html :ruby t nil) +(def-std-html :rt t nil) +(def-std-html :rp t nil) +(def-std-html :bdi t nil) +(def-std-html :wbr nil nil) +(def-std-html :canvas t nil) +(def-std-html :menuitem t nil) +(def-std-html :details t nil) +(def-std-html :datalist t nil) +(def-std-html :keygen t nil) +(def-std-html :output t nil) -- 2.25.1 on>
path: root/gnu/packages/gsasl.scm
-06 22:43:30 +0200'>2022-06-06
AgeCommit message (2022-06-062021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
packages: Add 'specifications->packages'....* gnu/packages.scm (specifications->packages): New procedure. * guix/scripts/home/import.scm (manifest+configuration-files->code): Use it. * tests/home-import.scm (match-home-environment-no-services) (match-home-environment-no-services-nor-packages) (match-home-environment-bash-service) (match-home-environment-bash-service-with-alias): Adjust 'packages' field accordingly. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Antero Mejr
2022-04-04packages: Add 'package-unique-version-prefix'....* gnu/packages.scm (package-unique-version-prefix): New procedure. * guix/scripts/package.scm (manifest-entry-version-prefix): Use it. * tests/packages.scm ("package-unique-version-prefix, gcc@8") ("package-unique-version-prefix, grep"): New tests. Ludovic Courtès
2022-01-11shell: Cache profiles even when using package specs....This enables profile caching not just when '-m' or '-f' is used, but also when package specs are passed on the command line, as in: guix shell -D guix git It also changes profile cache keys to include the system type, which was previously ignored. * guix/scripts/shell.scm (options-with-caching)[single-file-for-caching]: Remove. Call 'profile-cached-gc-root' instead; adjust to accept two values. (profile-cache-primary-key): New procedure. (profile-cache-key): Remove. (profile-file-cache-key, profile-spec-cache-key): New procedures. (profile-cached-gc-root): Rewrite to include functionality formally in 'single-file-for-caching', but extend to handle package specs. * gnu/packages.scm (cache-is-authoritative?): Export. * guix/transformations.scm (transformation-option-key?): New procedure. * doc/guix.texi (Invoking guix shell): Move '--rebuild-cache' documentation to the bottom, just above '--root'. Explain caching and how these two options relate to that. Ludovic Courtès