When you choose "Introduction" from the XSP guide, the web 
browser makes this request:

        http://127.0.0.1/docs/xsp/guide.dkb?section=1

I am confused as to how the query data is used to present a part 
of the docbook file.

I know that the .dkb is processed by axkit because I added the line:

        AddHandler axkit .dkb

to my httpd.conf file.

And because this file makes a href to docbook_print.xps, this is 
the stylesheet that is used to process it.

But looking at that pathscript file, one sees no query 
processing --- simply a pathscript which apply_templates to each 
and every section per this:

        <%
        # display all pages
        foreach my $section (findnodes("/article/sect1")) {
         print apply_templates($section);
        }
        %>

so how is the query data processed? and how does it lead to 
pagination of the docbook file?


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to