Age | Commit message (Collapse) | Author |
|
This allows us to catch invalid templates at macro-expansion time and is
more efficient.
* src/guile/skribilo/biblio/template.scm (evaluate-bib-entry-template):
Remove.
(define-template-engine, bibliography-template): New macros.
(output-bib-entry-template): Rewrite and remove 'get-field' optional
argument.
(make-bib-entry-template/default, make-bib-entry-template/skribe): Use
'bibliography-template' instead of quasiquote/unquote.
* src/guile/skribilo/package/jfp.scm (le): Likewise.
* src/guile/skribilo/package/lncs.scm (bib-entry-template): Likewise.
* src/guile/skribilo/biblio.scm (&biblio-template-error): Remove.
(handle-biblio-error): Adjust accordingly.
* tests/biblio.test: New file.
* tests/Makefile.am (TESTS): Add it.
|
|
* src/guile/skribilo/reader/gemtext.scm: New file.
* configure.ac: Set BUILD_GEMTEXT_READER automake conditional to true
if (srfi srfi-171) is found. Else, set it to false.
* src/guile/Makefile.am (readers): Add skribilo/reader/gemtext.scm
if BUILD_GEMTEXT_READER is true.
(EXTRA_DIST): Add skribilo/reader/gemtext.scm if BUILD_GEMTEXT_READER
is false.
* doc/user/syntax.skb (The Gemtext Syntax): New section.
* tests/readers/gemtext.test: New file.
* tests/Makefile.am (TESTS): Add readers/gemtext.test if
BUILD_GEMTEXT_READER is true.
(EXTRA_DIST): Add readers/gemtext.text if BUILD_GEMTEXT_READER is
false.
|
|
* src/guile/skribilo/engine/html.scm (html-engine)[custom]: Use <h2>
and </h2> for section-title-start and section-title-stop respectively.
|
|
* src/guile/skribilo/engine/html.scm (html-engine): Set UTF-8 as the
default charset.
|
|
This copyright header was added in
76136f9e904e8eb17f494d20fa2969ef2d5eb1aa, but the year was wrongly
specified as 2021 instead of 2022.
* src/guile/skribilo/engine/html.scm: Fix year in copyright header for
Arun Isaac.
|
|
Prior to this commit, the custom head was included inside
<style>. That is a bug.
* src/guile/skribilo/engine/html.scm (&html-head): Include custom
head.
(&html-header-style): Do not include custom head.
|
|
* src/guile/skribilo/utils/compat.scm (*skribe-rc-directory*): Set
fallback value in case the HOME environment variable is not set.
|
|
This is a followup to 3e68da0a38250825f9d28b8ff6f448b4bdc72c77.
* src/guile/skribilo/engine/info.scm (document): Add :info-dir-category
and :info-dir-entry to :options.
|
|
* src/guile/skribilo/utils/justify.scm (*justifiers*): Remove.
(*justifier*): New variable.
(output-justified, output-token, output-newline)
(output-flush, justification-width, with-justification)
(with-justification/noflush): Adjust accordingly.
|
|
* src/guile/skribilo/utils/justify.scm (*margin*): Turn into a
parameter.
(with-justification, with-justification/noflush): Use 'parameterize'
instead of 'set!'.
* src/guile/skribilo/engine/info.scm: Adjust accordingly.
* doc/modules/skribilo/documentation/api.scm (doc-markup): Likewise.
|
|
This matches what 'makeinfo' does for numbered sections.
* src/guile/skribilo/engine/info.scm (block-number): New procedure.
(block-title): Add :number? and honor it.
(section, subsection, subsubsection, chapter): Pass :number? #t for the
title.
|
|
* src/guile/skribilo/engine/info.scm (paragraph): Emit newline only when
N is not the first paragraph.
|
|
This matches what 'makeinfo' does.
* src/guile/skribilo/engine/info.scm (info-node): Add extra newline.
|
|
Reported by nly <nly@disroot.org>.
* src/guile/skribilo/package/base.scm (document): Add
:info-dir-category and :info-dir-entry.
* doc/user/document.skb: Document them.
* doc/user/user.skb: Pass :info-dir-category.
* src/guile/skribilo/engine/info.scm (scribe-document->info): Create
INFO-DIR-CATEGORY and START-INFO-DIR-ENTRY.
|
|
This is a followup to d183aa487d99baea3746f79759c17cf36c55dfbf.
* src/guile/skribilo/debug.scm (with-debug): Remove 'cond-expand' and
keep only 'guile-2' version.
* src/guile/skribilo/engine/html.scm (&html-generic-document)[set-output-encoding]:
Likewise.
* src/guile/skribilo/engine/info.scm (document): Likewise.
* src/guile/skribilo/engine/latex.scm (document): Likewise.
* src/guile/skribilo/engine/lout.scm (document): Likewise.
* src/guile/skribilo/evaluator.scm (%evaluate): Likewise.
* src/guile/skribilo/location.scm <top level>: Likewise.
* src/guile/skribilo/module.scm (maybe-set-module-name!): Likewise.
* src/guile/skribilo/package/base.scm <top level>: Likewise.
* src/guile/skribilo/utils/syntax.scm (unless, when): Remove.
(set-correct-file-encoding!, default-to-utf-8): Keep only 'guile-2' variant.
* tests/location.test <top level>: Likewise.
* tests/readers/rss-2.test <top level>: Likewise.
|
|
* src/guile/skribilo.scm (skribilo): Reverse 'cond-expand' logic for
_IOFBF handling.
|
|
* src/guile/skribilo/engine/lout.scm (lout-encoding): Add several
diacritics, guillemets, curly quotes, etc.
|
|
* src/guile/skribilo/source.scm (split-string-newline): Remove.
|
|
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.
|
|
* src/guile/skribilo/package/pie.scm (%ploticus-program): Add top-level
'set!'.
|
|
In preparation for Guile 3 support, adjust #:autoload clauses to include
list all the necessary bindings, or replace them with #:use-module.
|
|
* src/guile/skribilo.scm (skribilo): Use _IOFBF on Guile 2.0 only.
|
|
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.
|
|
* 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.
|
|
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
|
|
* 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@.
|
|
* src/guile/skribilo/package/slide/html.scm (html-slide-title): Remove
<strong> and <big>.
|
|
* src/guile/skribilo/engine/html.scm (&html-generic-title): Do not emit
<big> and <strong>.
|
|
* src/guile/skribilo/package/base.scm: Add 'cond-expand' form with call
to 'module-replace!'.
|
|
* src/guile/skribilo/package/acmproc.scm (references): Pass :number #f
to 'chapter'.
|
|
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.
|
|
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 '_'.
|
|
Guile >= 2.1.4 expects an explicit syntax parameter declaration.
* src/guile/skribilo/lib.scm (&invocation-location) [guile-2]: Define as
a syntax parameter.
|
|
* src/guile/skribilo/reader.scm (reader:name, reader:version)
(reader:make): Remove 'getter-with-setter' definitions.
|
|
* src/guile/skribilo/package/base.scm (source): Add 'TRANSLATORS'
comment. Suggested by Anders Jonsson <anders.jonsson@norsjovallen.se>.
|
|
* 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'.
|
|
* 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.
|
|
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default):
Change quote to quasiquote for forms that contain an unquote.
|
|
* 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.
|
|
* 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>.
|
|
Reported by Benno Schulenberg <coordinator@translationproject.org>.
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default):
Gettextize "In".
|
|
This is a followup to 830523e.
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default):
Move "TRANSLATORS:" comment right before keyword line.
|
|
Suggested by Benno Schulenberg <coordinator@translationproject.org>.
* src/guile/skribilo.scm (skribilo-show-help): Clarify the summary
line.
|
|
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default):
Add comment for translators.
|
|
Suggested by Benno Schulenberg <coordinator@translationproject.org>.
* src/guile/skribilo.scm (skribilo-show-help): Use ';' instead of '--'.
|
|
* src/guile/skribilo/engine/latex.scm (paragraph): Remove \noindent.
|
|
* src/guile/skribilo/ast.scm: Use (skribilo location) rather than
auto-loading it, to avoid run-time unbound variable errors.
|
|
Suggested by Benno Schulenberg <coordinator@translationproject.org>.
* src/guile/skribilo.scm (skribilo-show-help): Use standard text for
--help and --version.
|
|
* 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.
|
|
* src/guile/skribilo/package/base.scm (source): Use '_' to
internationalize error messages.
* po/POTFILES.in: Add it.
|