aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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.
2012-11-29html: Fix erroneous tag close for footnotes.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-footnotes): Emit </div> at the end, not <div>. Reported by Klaus Schilling <schilling.klaus@web.de>.
2012-11-29html: Emit each footnote only once.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-generic-document): When matching a container list, don't add N to CONTAINERS since it's already there. Reported by Klaus Schilling <schilling.klaus@web.de>.
2012-11-29html: Remove redundant `match' pattern.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-generic-document): Remove redundant pattern in `match'. Reported by Klaus Schilling <schilling.klaus@web.de>.
2012-11-20html: Fix footnote handling for single-page documents.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-generic-document)[ftnote](body): Rewrite using `match'. Deal with the case where `container-env-get' returns #f. Append FOOTNOTES to the result of `container-env-get' when it's not. The latter fixes a problem whereby footnotes would not appear on single-page documents. Reported and analyzed by Klaus Schilling <schilling.klaus@web.de>.
2012-08-18info: Add to-do.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (document): Add TODO comment.
2012-06-01build: Don't build/test the RSS-2 reader when its requirements aren't met.Ludovic Courtès
Reported by rvclayton@verizon.net (R. Clayton). * configure.ac: Add `BUILD_RSS2_READER' Automake conditional. * src/guile/Makefile.am (readers): Make `skribilo/reader/rss-2.scm' conditional on `BUILD_RSS2_READER'. (EXTRA_DIST)[!BUILD_RSS2_READER]: Add `skribilo/reader/rss-2.scm'. * tests/Makefile.am (TESTS): Make `readers/rss-2.test' conditional on `BUILD_RSS2_READER'. (EXTRA_DIST)[!BUILD_RSS2_READER]: Add `readers/rss-2.test'.
2012-05-30build: Use @PACKAGE_URL@ instead of hard-coded URLs.Ludovic Courtès
* doc/user/lout/front-page.lout.in: Use @PACKAGE_URL@ instead of the hard-coded URL. * src/guile/skribilo/config.in (skribilo-url): Likewise. * substitute.am (substitute): Substitute @PACKAGE_URL@.
2012-05-29lout: lout-illustration: Emit the result of `inline-definitions-proc'.Ludovic Courtès
* src/guile/skribilo/engine/lout.scm (lout-illustration): Emit the output of `inline-definitions-proc'.
2012-05-29info: image: Convert the image to a bitmap format.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (image): Convert the image to a bitmap format.
2012-05-28info: Honor `:text' option of `ref'; determine the right suffix for *Note.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (ref)[:options]: Change `text' to `:text' and `kind' to `:kind'. (info-block-ref): Add REF as a new argument. Update callers. [next, next-char]: New procedures. Use them to determine the cross-reference's suffix. When REF has a `:text' option, emit it.
2012-05-27info: Factorize section cross-referencing.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (ref): Use `info-block-ref' for chapters, sections, subsections, subsubsections, and marks. (info-chapter-ref): Rename to... (info-block-ref): ... this. (info-section-ref, info-subsection-ref, info-subsubsection-ref): Remove.
2012-05-27info: Implement the `image' markup.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (image): New markup writer. * doc/user/infoe.skb (Info Engine): Mention image rendering.
2012-05-27info: Add writers for `prog'.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (prog, &prog-line): New markup writers.
2012-05-27info: Indent second paragraphs.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (paragraph): Indent when N is not the first paragraph.
2012-05-24doc: lout: Render examples in a colored box.Ludovic Courtès
* doc/modules/skribilo/documentation/api.scm (le)[inline-definitions-proc]: Add @SkribiloExample. * doc/modules/skribilo/documentation/manual.scm (example)[lout]: Use @SkribiloExample. (le): Set the `includes' custom to include `diag'. * src/guile/skribilo/engine/lout.scm (frame): Mark the trick about @Floater.
2012-05-23html: Set the output port's conversion strategy to 'error.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (&html-generic-document)[guile-2]: Set the output port's conversion strategy to 'error.
2012-05-22Fix `invocation-location' for Guile 1.8.Ludovic Courtès
* src/guile/skribilo/location.scm (invocation-location): Call `source-properties' on the result of `frame-source'.
2012-05-22SRFI-64: Fix typo in Guile 1.8 compatibility layer.Ludovic Courtès
* src/guile/srfi/srfi-64.upstream.scm [not guile-2]: Add missing `use-modules' clause. Reported by Roger Mason <rmason@mun.ca>.
2012-05-22build: Fix `.in.scm' rule for out-of-tree builds.Ludovic Courtès
* src/guile/Makefile.am: Switch to GPLv3+. (.in.scm): Mkdir the dirname of $@.
2012-05-18html: Set the output encoding for secondary output files as well.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (document)[guile-2]: Move `set-port-encoding!' code to... (&html-generic-document): ... here, in `set-output-encoding' nested procedure. Call `set-output-encoding' in both the `document?' case and other cases.
2012-05-17Change `define-markup' to generate a macro, to capture location syntactically.Ludovic Courtès
* src/guile/skribilo/lib.scm (dsssl->guile-formals): New procedure, formerly `fix-rest-arg' procedure in `define-markup'. (define-markup)[guile-2]: Turn into a macro-generating macro, such that markups capture their invocation location syntactically. * src/guile/skribilo/location.scm (source-properties->location): New procedure. (invocation-location): Use it. * src/guile/skribilo/package/base.scm (handle): Move above first use, since it's now a macro on Guile 2.0. * src/guile/skribilo/package/slide.scm (slide-vspace): Likewise. * src/guile/skribilo/package/eq.scm: Use (skribilo package base) instead of autoloading it. * tests/Makefile.am (TESTS): Add `location.test'. * tests/location.test: New file.
2012-05-17Switch to GPLv3+.Ludovic Courtès
2012-05-14lout: Avoid passing non-literal strings to `format'.Ludovic Courtès
* src/guile/skribilo/engine/lout.scm (lout-debug): `string-append' to FMT at compile-time. Use `display' instead of `format' when literal strings are passed.
2012-05-14Mention "Guile 2.0" instead of "Guile-VM".Ludovic Courtès
* configure.ac: Remove `--enable-guile-vm' option. Check for `guild' and `guile-tools', defining `GUILD'. Rename `ENABLE_GUILE_VM' to `HAVE_GUILE2'. * guile-vm.am: Rename to... * guilec.am: ... this. * doc/modules/Makefile.am, src/guile/Makefile.am: Update accordingly.
2012-05-14info: Produce a menu consistent with the document structure.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (node-menu): Use `node-children' instead of `markup-body'. Output any node that matches `%block?', not just chapters and sections.
2012-05-14info: Rename `node-next+prev+top' to `node-next+prev+up'.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (node-next+prev+top): Rename to... (node-next+prev+up): ... this. Update callers. * tests/engines/info.test (node-next+prev+up): Update accordingly.
2012-05-14info: Fix prev/next pointers.Ludovic Courtès
* src/guile/skribilo/ast.scm (ast-fold): Explicitly document as depth-first. * src/guile/skribilo/engine/info.scm (info-node): Support PREV and NEXT as false. (node-next+prev+top): Rewrite using `match' and `node-children'. * tests/Makefile.am (TESTS): Add `engines/info.test'. * tests/engines/info.test: New file.
2012-05-14ast: Add `node-children'.Ludovic Courtès
* src/guile/skribilo/ast.scm (node-children): New procedure. * tests/ast.test ("node-children"): New test.
2012-05-13SRFI-64: Write log files as UTF-8; display a backtrace upon error.Ludovic Courtès
Changed copied from libchop v0.5.2-25-g657b029. * src/guile/srfi/srfi-64.upstream.scm (test-on-group-begin-simple)[guile-2]: Set %default-port-encoding to "UTF-8". (%test-evaluate-with-catch): Call `display-backtrace' upon error.
2012-05-12info: Produce a `makeinfo'-conforming document title.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (scribe-document->info)[info-title]: Produce a `makeinfo'-conforming title, which gets pretty-printed in Emacs.
2012-05-12info: Remove unused variables.Ludovic Courtès
* src/guile/skribilo/engine/info.scm (document, section, subsection, subsubsection, chapter): Remove unused variables.
2012-05-12Internationalize (skribilo).Ludovic Courtès
* src/guile/skribilo.scm (skribilo-show-help): Gettextize. * po/POTFILES.in: Add `src/guile/skribilo.scm'.
2012-05-10info/latex/lout: Set the output port's encoding.Ludovic Courtès
* src/guile/skribilo/engine/html.scm (document): Fix typo in comment. * src/guile/skribilo/engine/info.scm (document)[guile-2]: Set the current output port's encoding to "UTF-8". * src/guile/skribilo/engine/latex.scm (latex-engine)[encoding]: New custom. (document): Set the output port's encoding to that. When that encoding is "UTF-8", add the right \usepackage. * src/guile/skribilo/engine/lout.scm (lout-engine)[encoding]: New custom. (document): Set the output encoding. Emit `@SysInclude { latin2 }' for ISO-8859-2.