aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-08-02Use '_' as the 'match' wildcard.Ludovic Courtès
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.
2020-08-01pie: Prevent inlining of '%ploticus-program'.Ludovic Courtès
* src/guile/skribilo/package/pie.scm (%ploticus-program): Add top-level 'set!'.
2020-08-01Adjust autoload lists.Ludovic Courtès
In preparation for Guile 3 support, adjust #:autoload clauses to include list all the necessary bindings, or replace them with #:use-module.
2020-08-01skribilo: Use _IOFBF on Guile 2.0 only.Ludovic Courtès
* src/guile/skribilo.scm (skribilo): Use _IOFBF on Guile 2.0 only.
2020-08-01build: Remove bundled copy of (srfi srfi-64).Ludovic Courtès
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.
2020-08-01build: Remove support for Guile 1.8.Ludovic Courtès
* 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.
2020-08-01Write '#:use-module', '#:export', etc. instead of ':use-module', etc.Ludovic Courtès
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
2018-04-30build: Install modules and objects in the usual locations.v0.9.4Ludovic Courtès
* 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@.
2018-04-29slide/html: Do not emit <strong> and <big>.Ludovic Courtès
* src/guile/skribilo/package/slide/html.scm (html-slide-title): Remove <strong> and <big>.
2018-04-29html: Do not emit <big> and <strong> for titles.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-generic-title): Do not emit <big> and <strong>.
2018-04-22'base' package: Replace the 'include' form on Guile 2.x.Ludovic Courtès
* src/guile/skribilo/package/base.scm: Add 'cond-expand' form with call to 'module-replace!'.
2018-03-30acmproc: "References" section is unnumbered.Ludovic Courtès
* src/guile/skribilo/package/acmproc.scm (references): Pass :number #f to 'chapter'.
2018-03-30Do not mutate lists that may be literal.Ludovic Courtès
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.
2018-03-30syntax: Rename '_' to 'G_' to avoid issues on Guile 2.2.Ludovic Courtès
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 '_'.
2016-10-07Use 'define-syntax-parameter' for '&invocation-location'.Ludovic Courtès
Guile >= 2.1.4 expects an explicit syntax parameter declaration. * src/guile/skribilo/lib.scm (&invocation-location) [guile-2]: Define as a syntax parameter.
2016-10-07Remove use of 'getter-with-setter'.Ludovic Courtès
* src/guile/skribilo/reader.scm (reader:name, reader:version) (reader:make): Remove 'getter-with-setter' definitions.
2016-03-01'base' package: Add note about non-translatable bits.Ludovic Courtès
* src/guile/skribilo/package/base.scm (source): Add 'TRANSLATORS' comment. Suggested by Anders Jonsson <anders.jonsson@norsjovallen.se>.
2016-01-13Set the text domain and the location of message catalogs.v0.9.3Ludovic Courtès
* 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'.
2015-10-12lncs: Make bibliography entries look closer to what's expected.Ludovic Courtès
* 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.
2015-10-12biblio: template: Fix a couple of erroneous quotes.Ludovic Courtès
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Change quote to quasiquote for forms that contain an unquote.
2015-10-12biblio: Add alternate author name abbreviation.Ludovic Courtès
* 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.
2015-06-21Assorted improvements of user-facing messages.Ludovic Courtès
* src/guile/skribilo.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/sui.scm: Tweak messages for consistency, as suggested by Benno Schulenberg <coordinator@translationproject.org>.
2015-06-21biblio: Internationalize the word "In".Ludovic Courtès
Reported by Benno Schulenberg <coordinator@translationproject.org>. * src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Gettextize "In".
2015-06-20biblio: Move misplaced "TRANSLATORS:" comment.Ludovic Courtès
This is a followup to 830523e. * src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Move "TRANSLATORS:" comment right before keyword line.
2015-06-20Improve '--help' summary.Ludovic Courtès
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * src/guile/skribilo.scm (skribilo-show-help): Clarify the summary line.
2015-06-20biblio: Tell translators what these messages are.Ludovic Courtès
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Add comment for translators.
2015-06-20Improve '--help' formatting.Ludovic Courtès
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * src/guile/skribilo.scm (skribilo-show-help): Use ';' instead of '--'.
2015-05-29latex: Don't emit \noindent for paragraphs.Ludovic Courtès
* src/guile/skribilo/engine/latex.scm (paragraph): Remove \noindent.
2015-05-27ast: Don't autoload (skribilo location).Ludovic Courtès
* src/guile/skribilo/ast.scm: Use (skribilo location) rather than auto-loading it, to avoid run-time unbound variable errors.
2015-03-11Use standard help messages for --help and --version.Ludovic Courtès
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * src/guile/skribilo.scm (skribilo-show-help): Use standard text for --help and --version.
2015-03-11build: Add silent rules for substitutions.Ludovic Courtès
* substitute.am (AM_V_SUBSTITUTE, AM_V_SUBSTITUTE_, AM_V_SUBSTITUTE_0): New variables. * doc/man/Makefile.am (.in): Use $(AM_V_SUBSTITUTE). * doc/user/Makefile.am (lout/front-page.lout): Likewise. * src/Makefile.am (.in): Likewise. * src/guile/Makefile.am (.in.scm): Likewise. * emacs/Makefile.am (.in): Likewise.
2015-03-11'base' package: Internationalize error messages.Ludovic Courtès
* src/guile/skribilo/package/base.scm (source): Use '_' to internationalize error messages. * po/POTFILES.in: Add it.
2015-03-11condition: Always use a literal format string.Ludovic Courtès
* src/guile/skribilo/condition.scm (%call-with-skribilo-error-catch) [message-condition? c]: Pass a format string to 'format'.
2015-03-11'base' package: Use 'invalid-argument-error' rather than 'skribe-error'.Ludovic Courtès
* src/guile/skribilo/package/base.scm (include, author, handle, toc, linebreak, flush, prog, tc, char, symbol, processor, mark, ref, bibliography, the-bibliography, index, the-index, counter, item, source, tc, !, index): Use 'invalid-argument-error' instead of 'skribe-error' or 'skribe-type-error'.
2015-03-11conditions: Adjust '&invalid-argument-error' for named arguments.Ludovic Courtès
* src/guile/skribilo/condition.scm (&invalid-argument-error)[name]: New field. (invalid-argument-error): New procedure.
2015-03-11Replace "illegal" with "invalid" in error messages.Ludovic Courtès
There's nothing illegal here. * doc/modules/skribilo/documentation/api.scm, src/guile/skribilo/ast.scm, src/guile/skribilo/debug.scm, src/guile/skribilo/engine/base.scm, src/guile/skribilo/engine/context.scm, src/guile/skribilo/engine/html.scm, src/guile/skribilo/engine/html4.scm, src/guile/skribilo/engine/latex.scm, src/guile/skribilo/package/base.scm, src/guile/skribilo/package/html-navtabs.scm, src/guile/skribilo/package/jfp.scm, src/guile/skribilo/package/lncs.scm, src/guile/skribilo/package/slide/latex.scm, src/guile/skribilo/utils/justify.scm, src/guile/skribilo/utils/keywords.scm, src/guile/skribilo/utils/text-table.scm: Change "illegal" to "invalid".
2015-03-11Improve output of 'skribilo --help'.Ludovic Courtès
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * src/guile/skribilo.scm (skribilo-show-help): Move \n to the end of the line. Make messages all lower-case.
2015-03-11Use quotes instead of backticks in user-facing messages.Ludovic Courtès
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * doc/modules/skribilo/documentation/api.scm, src/guile/skribilo.scm, src/guile/skribilo/condition.scm, src/guile/skribilo/engine/lout.scm, src/guile/skribilo/package/base.scm, src/guile/skribilo/package/jfp.scm, src/guile/skribilo/package/lncs.scm, src/guile/skribilo/package/pie.scm, src/guile/skribilo/package/slide/latex.scm, src/guile/skribilo/utils/compat.scm, src/guile/skribilo/ast.scm, src/guile/skribilo/biblio.scm, src/guile/skribilo/engine/html.scm, src/guile/skribilo/engine/info.scm, src/guile/skribilo/index.scm, src/guile/skribilo/package/web-book2.scm, src/guile/skribilo/reader/rss-2.scm, src/guile/skribilo/source.scm, src/guile/skribilo/utils/compat.scm, src/guile/skribilo/verify.scm: Change `foo' to 'foo'.
2015-03-06Fix off-by-one in 'substring' call in 'ast-location'.Ludovic Courtès
* src/guile/skribilo/location.scm (ast-location): Fix off-by-one in 'substring' call.
2013-05-19acmproc: Make `references' conform to the ACM guidelines.Ludovic Courtès
* src/guile/skribilo/package/acmproc.scm (references): Always use `chapter'. Leave the font size unchanged. Sort entries according to `bib-sort/first-author-last-name'. * NEWS: Update.
2013-05-19`base' package: Insert an unbreakable space after `:text' in `numref'.Ludovic Courtès
* src/guile/skribilo/package/base.scm (numref): Remove explicit call to `resolve!'; insert an unbreakable space after TEXT. * NEWS: Update.
2013-03-18`base' package: Always show the location of erroneous `ref' calls.Ludovic Courtès
* src/guile/skribilo/lib.scm (warning/loc): New procedure. (skribe-warning/ast): Use it. * src/guile/skribilo/package/base.scm (ref)[unref]: Use `warning/loc', and use `&invocation-location' as the location. Remove the `ast' parameter; adjust callers accordingly.
2013-03-18Add `location->string'.Ludovic Courtès
* src/guile/skribilo/location.scm (location->string): New procedure. * src/guile/skribilo/ast.scm (ast->file-location): Use it.
2013-02-28acmproc: Fix typo in `author' markup writer.Ludovic Courtès
* src/guile/skribilo/package/acmproc.scm (le)[&latex-author]: Use `(format #t ...)', not #f.
2013-02-28biblio: Fix typo in error handler.Ludovic Courtès
* src/guile/skribilo/biblio.scm (handle-biblio-error): Add missing ENTRY argument.
2013-02-25acmproc: Use (skribilo package base) unconditionally.Ludovic Courtès
* src/guile/skribilo/package/acmproc.scm: Use (skribilo package base) unconditionally. This fixes issues with incomplete autoload list.
2013-02-25Install the locale before parsing arguments, and handle `setlocale' errors.Ludovic Courtès
* src/guile/skribilo.scm (skribilo): Install the locale before parsing options; gracefully handle `setlocale' errors.
2012-12-01html: Enclose footnotes in <div class="footnote">.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-footnotes): Enclose each footnote in <div class="footnote"> instead of <br>, as suggested by Klaus Schilling <schilling.klaus@web.de>.
2012-12-01html: Don't emit nested <a> tags for footnotes.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-footnotes): Don't emit nested <a> tags. Reported by Klaus Schilling <schilling.klaus@web.de>.
2012-12-01html: footnotes: Fix predicate to determine whether nodes are in the same file.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (section-in-separate-file?, section-in-current-file?): Remove. (sections-in-same-file?): New procedure. (&html-generic-document)[ftnote]: Use it.