Groups | Search | Server Info | Login | Register


Groups > comp.text.interleaf > #12

Re: Creating TOC/Index using a lisp script

From RalfN <ralfnausi@aol.com>
Newsgroups comp.text.interleaf
Subject Re: Creating TOC/Index using a lisp script
Date 2012-08-02 11:04 -0700
Organization http://groups.google.com
Message-ID <99557991-9e15-4e6e-a968-c9f8e12540f9@googlegroups.com> (permalink)
References <4fdf683c-0d15-4d06-bb14-e9a1ee6fcaa7@googlegroups.com>

Show all headers | View raw


> 
> I found some code for creating a toc, but for Ileaf 5.
  
> (defun create-toc-for-all (container)
> ;creates a TOC for all docs in the conainer
>    (let (children child)
>      ;get all the unselected children
>      (setq children (dt-children container :not-selected))
>      ;select them
>      (while (setq child (pop children))
>        (tell child mid:set-props :selected t))
>      ;create table of contents for all chidren
>      (toc-create-selected container)
> ))

> Unfortunately it does not work. It seems that there happens nothing.
> Are there any ideas to make it work?

Randyl Kent Plampin helped me in his competent way to make it work and patiently answered my questions.
The original example in Weinberger's book was correct. The only reason it did not work at first was the missing code that actually invokes the example.

; Here is the missing code
(create-toc-for-all (dt-child-selected (dt-pointer-container)))

Now it works fine!

Back to comp.text.interleaf | Previous | NextPrevious in thread | Find similar


Thread

Creating TOC/Index using a lisp script RalfN <ralfnausi@aol.com> - 2012-07-16 07:57 -0700
  Re: Creating TOC/Index using a lisp script Dick Margulis <margulisd@comcast.net> - 2012-07-16 12:28 -0400
    Re: Creating TOC/Index using a lisp script RalfN <ralfnausi@aol.com> - 2012-07-16 10:21 -0700
      Re: Creating TOC/Index using a lisp script Dick Margulis <margulisd@comcast.net> - 2012-07-18 08:38 -0400
        Re: Creating TOC/Index using a lisp script RalfN <ralfnausi@aol.com> - 2012-07-18 11:44 -0700
  Re: Creating TOC/Index using a lisp script RalfN <ralfnausi@aol.com> - 2012-08-02 11:04 -0700

csiph-web