aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-08-02build: Add Guix package definition.•••* release.nix: Remove. * guix.scm: New file. * Makefile.am (EXTRA_DIST): Add it. Ludovic Courtès
2020-08-02lout: Replace more Unicode characters.•••* src/guile/skribilo/engine/lout.scm (lout-encoding): Add several diacritics, guillemets, curly quotes, etc. Ludovic Courtès
2020-08-02source: Remove unused procedure.•••* src/guile/skribilo/source.scm (split-string-newline): Remove. Ludovic Courtès
2020-08-02Use '_' as the 'match' wildcard.•••This addresses '-Wunused-variable' warnings. * doc/modules/skribilo/documentation/api.scm (define-markup?) (make-engine?, make-engine-custom) (define-markup-formals, define-markup-options) (define-markup-rest, exp->skribe): Use '_' instead of 'else' as the 'match' wildcard. * src/guile/skribilo/package/slide/latex.scm (%slide-advi-setup!): Likewise. * src/guile/skribilo/source/lisp.scm (lisp-extractor) (scheme-extractor, stklos-extractor, skribe-extractor) (bigloo-extractor): Likewise. * src/guile/skribilo/sui.scm (load-sui): Likewise. (sui-title, sui-key, sui-find-ref, sui-filter): Likewise. Ludovic Courtès
2020-08-01build: Allow compilation with Guile 3.0.•••* configure.ac: Add "3.0" to 'GUILE_PKG'. Ludovic Courtès
2020-08-01pie: Prevent inlining of '%ploticus-program'.•••* src/guile/skribilo/package/pie.scm (%ploticus-program): Add top-level 'set!'. Ludovic Courtès
2020-08-01Adjust autoload lists.•••In preparation for Guile 3 support, adjust #:autoload clauses to include list all the necessary bindings, or replace them with #:use-module. Ludovic Courtès
2020-08-01skribilo: Use _IOFBF on Guile 2.0 only.•••* src/guile/skribilo.scm (skribilo): Use _IOFBF on Guile 2.0 only. Ludovic Courtès
2020-08-01build: Remove bundled copy of (srfi srfi-64).•••Guile 2.0.14 has it and so do all subsequent versions. * src/guile/srfi/srfi-64.scm, src/guile/srfi/srfi-64.upstream.scm: Remove. * src/guile/Makefile.am (EXTRA_DIST): Adjust accordingly. Ludovic Courtès
2020-08-01build: Remove support for Guile 1.8.•••* configure.ac: Remove "1.8" from 'GUILE_PKG'. Remove 'HAVE_GUILE2' conditional. Remove checks for (srfi srfi-34), (srfi srfi-35), and (srfi srfi-37). * guilec.am: Inline what was in HAVE_GUILE2 and remove the alternate. * src/guile/skribilo/debug.scm (debug-item): Remove 'cond-expand' and keep only the 'guile-2' variant. * src/guile/skribilo/engine.scm (engine-loaded?): Likewise. * src/guile/skribilo/lib.scm (&invocation-location, define-markup): Likewise. * src/guile/skribilo/utils/syntax.scm (%skribilo-module-reader): Likewise. * web/index.skb: Remove mention of 1.8. * README: Likewise. Ludovic Courtès
2020-08-01Write '#:use-module', '#:export', etc. instead of ':use-module', etc.•••Changes made by running: for i in $(git ls-tree -r HEAD --name-only) ; do sed -i $i -e's/:use-module/#:use-module/g ; s/:autoload/#:autoload/g ; s/:export/#:export/g' ; done Ludovic Courtès
2018-04-30build: Install modules and objects in the usual locations.•••* configure.ac: Add '--with-guileobjectdir' and substitute 'guileobjectdir'. * guilec.am (nobase_nodist_module_DATA): Rename to... (nobase_nodist_guileobject_DATA): ... this (skr_install_go_files): Change value to 'install-nobase_nodist_guileobjectDATA'. * src/guile/Makefile.am (nobase_nodist_module_DATA): Change "+=" to "=". (nobase_nodist_module_DATA): Rename to... (nobase_nodist_guileobject_DATA): ... this. * src/skribilo.in (GUILE_LOAD_COMPILED_PATH): Use @guileobjectdir@. * substitute.am (substitute): Add @guileobjectdir@. v0.9.4Ludovic Courtès
2018-04-30Update NEWS.Ludovic Courtès
2018-04-30Thank Amirouche.Ludovic Courtès
2018-04-29slide/html: Do not emit <strong> and <big>.•••* src/guile/skribilo/package/slide/html.scm (html-slide-title): Remove <strong> and <big>. Ludovic Courtès
2018-04-29doc: Remove reference to non-existent CSS file.•••* doc/user/static/main.css: Remove reference to "base.css". Ludovic Courtès
2018-04-29doc: Use the same CSS as the web site.•••* web/static: Move to... * doc/user/static: ... this. * web/static: Turn into a symlink. * doc/user/skribilo.css: Remove. * doc/modules/skribilo/documentation/manual.scm: Use "static/manual.css" instead of "skribilo.css". * doc/user/Makefile.am (dist_html_DATA): Remove. (nobase_dist_html_DATA): New variable. * doc/user/static/manual.css: New file. Ludovic Courtès
2018-04-29web: Mention Guile 2.2.•••* web/index.skb: Mention Guile 2.2. Ludovic Courtès
2018-04-29html: Do not emit <big> and <strong> for titles.•••* src/guile/skribilo/engine/html.scm (&html-generic-title): Do not emit <big> and <strong>. Ludovic Courtès
2018-04-29web: Adjust main.css.•••* web/static/main.css (body): Remove background. (a:link, a:visited, a:active): Add color. (div.navtabs-title): Adjust background, set min-width. (div.skribilo-title): New entity. (div.skribilo-body): Tweak. (div.skribilo-ending): Tweak. Ludovic Courtès
2018-04-29web: New theme for the website•••* web/static/: add css, fonts and images inside it * web/index.skb: change css to point to web/static/main.css Signed-off-by: Ludovic Courtès <ludo@gnu.org> amirouche
2018-04-22'base' package: Replace the 'include' form on Guile 2.x.•••* src/guile/skribilo/package/base.scm: Add 'cond-expand' form with call to 'module-replace!'. Ludovic Courtès
2018-04-22doc: In HTML, use CSS for the 'doc-engine' markup.•••* doc/modules/skribilo/documentation/api.scm (he): Add 'doc-engine' writer. (doc-engine): Add a case for HTML alongside Lout. * doc/user/skribilo.css (.skribilo-doc-markup, .skribilo-doc-engine) (.skribilo-api-engine-custom-name) (.skribilo-api-engine-custom-description) (.skribilo-api-engine-custom-default): New entities. Ludovic Courtès
2018-04-22doc: In HTML, use CSS to render 'doc-markup'.•••* doc/modules/skribilo/documentation/api.scm (he): Add writer for 'doc-markup'. (le): Add LE as an argument to 'markup-writer' where it was missing. (doc-markup): Remove 'doc-markup.html', and use 'doc-markup.generic' for HTML. Ludovic Courtès
2018-04-22doc: In HTML, 'prgm' and 'disp' presentation moved to CSS.•••* doc/modules/skribilo/documentation/manual.scm (prgm): Add a case for HTML. (disp): Likewise. * doc/user/skribilo.css (.skribilo-manual-prgm, .skribilo-manual-disp): New items. Ludovic Courtès
2018-04-22nls: Add Brasilian Portuguese translation.•••* po/pt_BR.po: New file. * po/LINGUAS: Add it. Ludovic Courtès
2018-04-07doc: Improve Lout style.•••* doc/modules/skribilo/documentation/api.scm (le): Change 'initial-font and 'initial-break. Use 9p font in @SkribiloExample. Add writer for 'prog. Ludovic Courtès
2018-03-30maint: Change URL to HTTPS.•••* configure.ac: Use https. Ludovic Courtès
2018-03-30acmproc: "References" section is unnumbered.•••* src/guile/skribilo/package/acmproc.scm (references): Pass :number #f to 'chapter'. Ludovic Courtès
2018-03-30Do not mutate lists that may be literal.•••On Guile 2.2 this would lead to a segmentation fault or a 'set-car!' error ("expecting mutable pair") on 2.2.3+. * src/guile/skribilo/engine.scm (engine-custom-set!): Do not mutate CUSTOMS. * src/guile/skribilo/resolve.scm (do-resolve! <pair>): Do not mutate AST. (do-resolve! <node>): Do not mutate OPTIONS. (do-resolve! <document>): Do not mutate the list of customs. Ludovic Courtès
2018-03-30maint: Update 'INSTALL'.•••* INSTALL: Update from Automake 1.16. Ludovic Courtès
2018-03-30nls: Add Friulian translation.Ludovic Courtès
2018-03-30build: Support Guile 2.2 in addition to legacy versions.•••* configure.ac: Use 'GUILE_PKG' macro. Ludovic Courtès
2018-03-30syntax: Rename '_' to 'G_' to avoid issues on Guile 2.2.•••Failing to do that, literal '_' would not match in contexts such as 'match' patterns on Guile 2.2. * src/guile/skribilo/utils/syntax.scm (_): Rename to... (G_): ... this. * po/Makevars (XGETTEXT_OPTIONS): Adjust accordingly. * src/guile/skribilo.scm, src/guile/skribilo/ast.scm, src/guile/skribilo/biblio.scm, src/guile/skribilo/biblio/author.scm, src/guile/skribilo/condition.scm, src/guile/skribilo/engine.scm, src/guile/skribilo/engine/info.scm, src/guile/skribilo/engine/lout.scm, src/guile/skribilo/index.scm, src/guile/skribilo/package/base.scm, src/guile/skribilo/package/lncs.scm, src/guile/skribilo/reader/rss-2.scm, src/guile/skribilo/source.scm, src/guile/skribilo/sui.scm, src/guile/skribilo/biblio/template.scm, src/guile/skribilo/verify.scm: Use 'G_' instead of '_'. Ludovic Courtès
2016-10-07Use 'define-syntax-parameter' for '&invocation-location'.•••Guile >= 2.1.4 expects an explicit syntax parameter declaration. * src/guile/skribilo/lib.scm (&invocation-location) [guile-2]: Define as a syntax parameter. Ludovic Courtès
2016-10-07Remove use of 'getter-with-setter'.•••* src/guile/skribilo/reader.scm (reader:name, reader:version) (reader:make): Remove 'getter-with-setter' definitions. Ludovic Courtès
2016-04-13nls: Update Swedish translation.•••* po/sv.po: Update. Ludovic Courtès
2016-04-13nls: Add Ukrainian translation.•••* po/uk.po: New file. * po/LINGUAS: Add 'uk'. Ludovic Courtès
2016-04-13nls: Add Serbian translation.•••* po/sr.po: New file. * po/LINGUAS: Add it. Ludovic Courtès
2016-04-13doc: pluralize "meta keywords" to match context•••* doc/user/user.skb: Add missing 's'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> ozzloy
2016-04-13nls: Add Spanish translation.•••* po/es.po: New file. * po/LINGUAS: Add 'es'. Ludovic Courtès
2016-04-13doc: Remove explicit gendering of author fields•••* doc/user/document.skb: Switch gendering from "his" to "their". Signed-off-by: Ludovic Courtès <ludo@gnu.org> Christopher Allan Webber
2016-03-01'base' package: Add note about non-translatable bits.•••* src/guile/skribilo/package/base.scm (source): Add 'TRANSLATORS' comment. Suggested by Anders Jonsson <anders.jonsson@norsjovallen.se>. Ludovic Courtès
2016-01-13Set the text domain and the location of message catalogs.•••* src/guile/skribilo/config.in (skribilo-locale-directory): New procedure. * src/guile/skribilo/utils/syntax.scm (%skribilo-text-domain): Export. * src/guile/skribilo.scm (skribilo): Add calls to 'bindtextdomain' and 'textdomain'. * substitute.am (substitute): Add 'localedir'. v0.9.3Ludovic Courtès
2016-01-13Update 'NEWS'.Ludovic Courtès
2016-01-13doc: Mention the effect of locales on bibliographies.•••* doc/user/bib.skb (Printing a Bibliography): Add note on the effect of locales. Ludovic Courtès
2016-01-13nls: Add Swedish translation.•••* po/sv.po: New file. * po/LINGUAS: Add 'sv'. Ludovic Courtès
2015-10-12lncs: Make bibliography entries look closer to what's expected.•••* src/guile/skribilo/package/lncs.scm (bib-entry-template): New procedure. (&bib-entry-body): Use it instead of 'make-bib-entry-template/default'. (&bib-entry-author, &bib-entry-booktitle, &bib-entry-journal): New writers. Ludovic Courtès
2015-10-12biblio: template: Fix a couple of erroneous quotes.•••* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Change quote to quasiquote for forms that contain an unquote. Ludovic Courtès
2015-10-12biblio: Add alternate author name abbreviation.•••* src/guile/skribilo/biblio/author.scm (abbreviate-author-first-names): Add an example as a comment. (abbreviate-author-first-names/family-first): New procedure. (abbreviate-first-names): Add 'abbreviate-author-names' optional parameter. Ludovic Courtès