diff options
-rw-r--r-- | ChangeLog | 656 |
1 files changed, 656 insertions, 0 deletions
@@ -2,6 +2,662 @@ # arch-tag: automatic-ChangeLog--skribilo@sv.gnu.org--2006/skribilo--devo--1.2 # +2007-05-04 13:46:55 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-91 + + Summary: + Fixed `index'. + Revision: + skribilo--devo--1.2--patch-91 + + * src/guile/skribilo/Makefile.am (dist_guilemodule_DATA): Added + `index.scm'. + + * src/guile/skribilo/package/base.scm: Autoload `(skribilo index)' upon + `default-index'. + + modified files: + ChangeLog src/guile/skribilo/Makefile.am + src/guile/skribilo/package/base.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-50 + + +2007-04-10 07:48:46 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-90 + + Summary: + `diff': Included Aubrey Jaffer's fix for `diff:edits'. + Revision: + skribilo--devo--1.2--patch-90 + + * src/guile/diff.scm: Updated from Aubrey Jaffer's latest upstream + version which includes a fix for bug in `diff:edits' that showed up in + `(diff:edits "Conclusion" "Related Work")' (SLIB changes dated + 2007-04-07). + + modified files: + ChangeLog src/guile/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-49 + + +2007-04-10 07:47:58 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-89 + + Summary: + `eq' package: Added support for Lout's new `eq2'. + Revision: + skribilo--devo--1.2--patch-89 + + * src/guile/skribilo/package/eq.scm (*use-lout-eq2?*): New. + (direct-equation-child?): New. + + * src/guile/skribilo/package/eq/lout.scm (Initialization): Use `eq2' if + asked to. + (simple-lout-markup-writer): Use `direct-equation-child?' to decide on + whether the issue the `^' character. This is to avoid issuing too many + `^', which could result in broken layout. + (eq:limit): Adapated. + (range-lout-markup-writer): Likewise. + + modified files: + ChangeLog src/guile/skribilo/package/eq.scm + src/guile/skribilo/package/eq/lout.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-48 + + +2007-04-10 07:47:03 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-88 + + Summary: + `lncs' package: Fixed for non-LaTeX engines. + Revision: + skribilo--devo--1.2--patch-88 + + * src/guile/skribilo/package/lncs.scm (abstract): Use `chapter' instead + of `section'. + (references): Likewise. + + modified files: + ChangeLog src/guile/skribilo/package/lncs.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-47 + + +2007-04-04 17:18:18 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-87 + + Summary: + `eq' package: Properly handle auto-inlining. + Revision: + skribilo--devo--1.2--patch-87 + + * src/guile/skribilo/package/eq.scm (inline-equation?): Use `find1-up' + instead of `find-up'. This fixes a bug. + (eq): Properly pass the `:inline?' options through the `options' slot. + + * src/guile/skribilo/package/eq/lout.scm (eq): When inline, enclose + equation in `@OneRow @OneCol' so that it is not breakable. + + modified files: + ChangeLog src/guile/skribilo/package/eq.scm + src/guile/skribilo/package/eq/lout.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-46 + + +2007-04-04 17:17:32 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-86 + + Summary: + Fixed `find-up'. + Revision: + skribilo--devo--1.2--patch-86 + + * src/guile/skribilo/ast.scm (find-up): Don't cons OBJ when it doesn't + match PRED. + + modified files: + ChangeLog src/guile/skribilo/ast.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-45 + + +2007-04-04 17:16:45 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-85 + + Summary: + Renamed module `(differ)' to `(diff)'. + Revision: + skribilo--devo--1.2--patch-85 + + + modified files: + ChangeLog src/guile/Makefile.am src/guile/diff.scm + src/guile/skribilo/package/diff.scm + + renamed files: + src/guile/differ.scm + ==> src/guile/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-44 + + +2007-04-04 17:15:48 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-84 + + Summary: + `diff' package: Added basic source location support. + Revision: + skribilo--devo--1.2--patch-84 + + * src/guile/skribilo/package/diff.scm (deletion, insertion, replacement, + unchanged): Added a `:loc' parameter. + (make-diff-document): When creating new ASTs, keep the location of + AST2. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-43 + + +2007-04-03 14:58:13 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-83 + + Summary: + Fixed computation of `&invocation-location'. + Revision: + skribilo--devo--1.2--patch-83 + + * src/guile/skribilo/location.scm (invocation-location): Make sure we + always return the exact invocation location, no matter how + `invocation-location' is implemented. + + * src/guile/skribilo/lib.scm (define-markup): Updated DEPTH argument to + `invocation-location' due to previous change in the implementation of + `invocation-location'. + + modified files: + ChangeLog src/guile/skribilo/lib.scm + src/guile/skribilo/location.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-42 + + +2007-04-03 14:57:19 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-82 + + Summary: + Reduced reliance on the debugging evaluator (improves performance). + Revision: + skribilo--devo--1.2--patch-82 + + * src/guile/skribilo.scm (skribilo): Do not impose use of the debugging + evaluator, allowing for significant performance improvements. + + * src/guile/skribilo/evaluator.scm (%evaluate): Use the debugging + evaluator when evaluating EXPR. + + * src/guile/skribilo/location.scm (invocation-location): Return `#f' when + the debugging evaluator is not being used. + + modified files: + ChangeLog src/guile/skribilo.scm + src/guile/skribilo/evaluator.scm + src/guile/skribilo/location.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-41 + + +2007-04-03 11:58:43 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-81 + + Summary: + Moved legacy source location code to `compat'. + Revision: + skribilo--devo--1.2--patch-81 + + * src/guile/skribilo/lib.scm (skribe-eval-location): Removed. + + * src/guile/skribilo/location.scm (location-pos): Removed. + + * src/guile/skribilo/utils/compat.scm: Use `(skribilo location)'. + (location-pos, skribe-eval-location): New. + + modified files: + ChangeLog src/guile/skribilo/lib.scm + src/guile/skribilo/location.scm + src/guile/skribilo/utils/compat.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-40 + + +2007-04-03 11:57:56 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-80 + + Summary: + Added source location tracking to various packages. + Revision: + skribilo--devo--1.2--patch-80 + + * src/guile/skribilo/package/base.scm: Autoload `parameters'. + (ref)[skribe-ref]: Use `search-path' and `*document-path*' instead of + `find-file/path' and `skribe-path'. + + Initialize the `loc' field of markups. + + * src/guile/skribilo/package/eq.scm: Likewise. + + * src/guile/skribilo/package/pie.scm: Likewise. + + * src/guile/skribilo/package/slide.scm: Likewise. + + modified files: + ChangeLog src/guile/skribilo/package/base.scm + src/guile/skribilo/package/eq.scm + src/guile/skribilo/package/pie.scm + src/guile/skribilo/package/slide.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-39 + + +2007-04-03 11:57:10 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-79 + + Summary: + Added support for source location tracking. + Revision: + skribilo--devo--1.2--patch-79 + + * src/guile/skribilo/ast.scm (<ast>): Added the `:loc' init-keyword. + + * src/guile/skribilo/lib.scm: Re-export `invocation-location'. + (define-markup): Locally define `&invocation-location' for use by + markups. + (define-simple-markup): Initialize `loc'. + (define-simple-container): Likewise. + (%skribe-warn): New `col'. parameter. + (skribe-warning): Updated. + (skribe-warning/ast): Likewise. + + * src/guile/skribilo/location.scm (<location>): Removed slot `pos'. + Added slot `column'. Export `location-column'. + (location-pos): Kept for compatibility. + (write): New method. + (invocation-location): New function. + + modified files: + ChangeLog src/guile/skribilo/ast.scm + src/guile/skribilo/lib.scm src/guile/skribilo/location.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-38 + + +2007-04-03 11:55:49 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-78 + + Summary: + biblio template: Small fix. + Revision: + skribilo--devo--1.2--patch-78 + + * src/guile/skribilo/biblio/template.scm + (make-bib-entry-template/default): Fixed `books'. + + modified files: + ChangeLog src/guile/skribilo/biblio/template.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-37 + + +2007-03-28 09:26:08 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-77 + + Summary: + `diff' package: Fixed off-by-one in string diff. + Revision: + skribilo--devo--1.2--patch-77 + + * src/guile/skribilo/package/diff.scm (add-unchanged): When `(null? + edits)', check whether `(< str-pos str-len)' (was `(< str-pos (- + str-len 1))'). This fixes off-by-one when diffing strings (last + character didn't appear). + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-36 + + +2007-03-28 09:25:20 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-76 + + Summary: + `diff' package: Use `breakable-space' instead of `~' in `annotated-string-diff'. + Revision: + skribilo--devo--1.2--patch-76 + + * src/guile/skribilo/package/diff.scm: Autoload `(skribilo utils + keywords)'. + (annotated-string-diff)[space-preserving-substring]: Use + `breakable-space' instead of `~'. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-35 + + +2007-03-28 09:24:33 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-75 + + Summary: + doc: Documented spacing. + Revision: + skribilo--devo--1.2--patch-75 + + * NEWS: Mention `breakable-space'. + + * doc/user/markup.skb: Include "spacing.skb". + + new files: + doc/user/spacing.skb + + modified files: + ChangeLog NEWS doc/user/markup.skb + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-34 + + +2007-03-28 09:23:47 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-74 + + Summary: + `base' package: Introduced `breakable-space'. + Revision: + skribilo--devo--1.2--patch-74 + + * src/guile/skribilo/engine/base.scm (breakable-space): New writer. + + * src/guile/skribilo/engine/latex.scm (breakable-space): New writer. + + * src/guile/skribilo/engine/lout.scm (breakable-space): New writer. + + * src/guile/skribilo/package/base.scm (breakable-space): New markup. + + modified files: + ChangeLog src/guile/skribilo/engine/base.scm + src/guile/skribilo/engine/latex.scm + src/guile/skribilo/engine/lout.scm + src/guile/skribilo/package/base.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-33 + + +2007-03-28 09:23:01 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-73 + + Summary: + `lout' engine: Fixed space handling with `color'. + Revision: + skribilo--devo--1.2--patch-73 + + * src/guile/skribilo/engine/lout.scm (color): Insert the linebreak + between the left parameter of `@Color' and `@Color' itself, so as to + never insert additional spaces. + + modified files: + ChangeLog src/guile/skribilo/engine/lout.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-32 + + +2007-03-28 09:22:14 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-72 + + Summary: + `diff' package: Handle commands appropriately. + Revision: + skribilo--devo--1.2--patch-72 + + * src/guile/skribilo/package/diff.scm (make-diff-document): Don't touch + commands. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-31 + + +2007-03-28 09:21:28 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-71 + + Summary: + `diff' package: Preserve space around diff'd strings. + Revision: + skribilo--devo--1.2--patch-71 + + * src/guile/skribilo/package/diff.scm: Use `srfi-14'. + (annotated-string-diff)[space-preserving-substring]: New. + Use it. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-30 + + +2007-03-28 08:48:01 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-70 + + Summary: + `diff' package: Compute diffs on selected options. + Revision: + skribilo--devo--1.2--patch-70 + + * src/guile/skribilo/package/diff.scm (%diffable-options): New. + (make-diff-document)[make-diff-options]: New. + Use it. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-29 + + +2007-03-28 08:45:48 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-69 + + Summary: + Slightly optimized `make-string-replace'. + Revision: + skribilo--devo--1.2--patch-69 + + * src/guile/skribilo/utils/strings.scm (%make-general-string-replace): + Removed the `let'... + + modified files: + ChangeLog src/guile/skribilo/utils/strings.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-28 + + +2007-03-28 08:44:53 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-68 + + Summary: + `diff' package: Use actual markups and writers. + Revision: + skribilo--devo--1.2--patch-68 + + * src/guile/skribilo/package/diff.scm: Use `output' and `writer'. + (deletion, insertion, replacement, unchanged): Return a specific markup + object. Add the corresponding writers for the `base' engine. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-27 + + +2007-03-16 17:11:30 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-67 + + Summary: + `eq' package: Added `eq:set'. + Revision: + skribilo--devo--1.2--patch-67 + + * src/guile/skribilo/package/eq.scm: Use `(srfi srfi-1)'. + (%operators): Added `set'. + (eq:set): New. New writer. + + * src/guile/skribilo/package/eq/lout.scm: Use `srfi-1'. + (eq:set): New writer. + + modified files: + ChangeLog src/guile/skribilo/package/eq.scm + src/guile/skribilo/package/eq/lout.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-26 + + +2007-03-16 17:10:38 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-66 + + Summary: + `diff' package: Various fixes. + Revision: + skribilo--devo--1.2--patch-66 + + * src/guile/skribilo/package/diff.scm (%undiffable-markups): Added + `numref' and `eq'. + (make-diff-document)[undiffable?]: New. + For containers, check whether they are undiffable. + For lists, iterate until AST2 is empty, not until the smallest is + empty. + Added an `(equal? ast1 ast2)' cond clause. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-25 + + +2007-03-16 17:09:41 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-65 + + Summary: + `lout' engine: Skip lines in `color'. + Revision: + skribilo--devo--1.2--patch-65 + + * src/guile/skribilo/engine/lout.scm (color): Skip a line at the end. + + modified files: + ChangeLog src/guile/skribilo/engine/lout.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-24 + + +2007-03-08 18:17:42 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-64 + + Summary: + `diff' package: Fixes and hacking. + Revision: + skribilo--devo--1.2--patch-64 + + * src/guile/skribilo/package/diff.scm (add-unchanged): Fixed (hopefully). + (annotated-string-diff): New. + (make-diff-document): Moved code to `annotated-string-diff'. + (make-diff-document-from-files): Cleaned up. + + modified files: + ChangeLog src/guile/skribilo/package/diff.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-23 + + +2007-03-08 18:16:51 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-63 + + Summary: + Added an experimental `diff' package. + Revision: + skribilo--devo--1.2--patch-63 + + * src/guile/Makefile.am (dist_guilemodule_DATA): Added `differ.scm'. + + * src/guile/skribilo/package/Makefile.am (dist_guilemodule_DATA): Added + `diff.scm'. + + new files: + src/guile/differ.scm src/guile/skribilo/package/diff.scm + + modified files: + ChangeLog src/guile/Makefile.am + src/guile/skribilo/package/Makefile.am + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-22 + + +2007-03-08 18:15:59 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-62 + + Summary: + biblio: Adding missing `use-module'. + Revision: + skribilo--devo--1.2--patch-62 + + * src/guile/skribilo/biblio.scm: Autoload `(skribilo lib)'. + + modified files: + ChangeLog src/guile/skribilo/biblio.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-21 + + +2007-03-08 18:15:01 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-61 + + Summary: + evaluator: Modularized the evaluation process. + Revision: + skribilo--devo--1.2--patch-61 + + * src/guile/skribilo/evaluator.scm (evaluate-ast-from-port): New. Based + on code formerly in `evaluate-document-from-port'. Pass + `(current-module)' instead of `module' when invoking `%evaluate'. + (evaluate-document-from-port): Use it. + + modified files: + ChangeLog src/guile/skribilo/evaluator.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-20 + + +2007-03-08 18:13:30 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-60 + + Summary: + `base' engine: Fixed autoload issue. + Revision: + skribilo--devo--1.2--patch-60 + + * src/guile/skribilo/engine/base.scm: Autoload `(skribilo package base)' + upon `it', `bold' and `ref' as well. + + modified files: + ChangeLog src/guile/skribilo/engine/base.scm + + new patches: + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-18 + lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-19 + + 2007-02-19 23:31:50 GMT Ludovic Courtes <ludovic.courtes@laas.fr> patch-59 Summary: |