Linking Pages

In Website, the website pages are separate XML documents, so it is not possible to use xref or link to make links between them. Instead, you must use olink[1].

Olink differs from other linking elements because it requires two attributes: one to locate the document and one to locate an ID value within that document. Here is an example of an olink:

<olink targetdoc="home" targetptr="whatsnew"/>
  • The targetdoc attribute identifies the document that contains the target of the link. In Website, the id attribute value on the webpage element used as the document identifier since it must be unique. Its value should be used in the targetdoc attribute of an olink.

  • The targetptr attribute must match an id attribute value on an element within that document. If you want to link to the top of the page, then the targetptr is the same as the targetdoc value.

  • If an olink has no content, then the stylesheet generates content in a manner similar to an xref. The content comes from a website database document that the stylesheets can create. If an olink element has content, then that is used instead of the generated content.

  • Once you enter olinks in your webpages, you need to make sure the right parameters are set to process them. The following sections describe the processing steps for the two build methods in Website.

  • You have the option to use a second olink database to form olinks to a collection of documents outside of your webpage collection. That database is identified by the target.database.document parameter. See the section called “Linking to other sites” for more information.

Olinks with XSLT build method

Here is how you process a website with olinks using the XSLT build method.

  1. Create your layout.xml file the same as before.

  2. Process your layout.xml file as before with the autolayout.xsl stylesheet to create the autolayout.xml file.

  3. Process your autolayout.xml file as before with either the chunk-tabular.xsl or chunk-website.xsl stylesheet. But set the parameter collect.xref.targets to the value “yes”.

    xsltproc \
       --stringparam  collect.xref.targets yes \
        --stringparam  output-root  htdocs \
        ../website/xsl/chunk-tabular.xsl  \
        autolayout.xml
    

That command will generate a database file named website.database.xml in the current directory and use it for processing olinks. The database contains cross reference data for all the potential olink targets in your website pages. That database filename is referenced by the stylesheet using the website.database.document parameter, whose value by default is set to website.database.xml in the current directory.

Olinks with Make method

Here is how you process a website with olinks using the Makefile method.

  1. Create your layout.xml file the same as before.

  2. Do the autolayout.xml and depends processing steps as before.

  3. Generate the website database file by processing your autolayout.xml file with the website-targets.xsl stylesheet, saving the output to a file named website.database.xml.

  4. Process your website as you would normally (usually by typing make website), but add the website.database.document parameter whose value is the pathname of the generated database file. If you use the default filename website.database.xml in the current directory, then you can omit the parameter on the command line.

Below is a simple example Makefile (using xsltproc and XML catalogs) that does a olink-aware build of a website.

[Note]Note

See the included Makefile-example.txt file for a more detailed example of a real-world makefile. The Makefile-example.txt file is the actual makefile used to build the pages you are reading now.

PROC = XML_CATALOG_FILES=../catalog.xml  xsltproc

all:
        make website

include depends.tabular

autolayout.xml:  layout.xml
        $(PROC) \
        --output  $@ \
        autolayout.xsl  $<

        make depends

depends:  autolayout.xml
        $(PROC) \
        --output depends.tabular \
        --stringparam  output-root  htdocs  \
        makefile-dep.xsl  $<

website.database.xml:  autolayout.xml
        $(PROC) \
        --output $@ \
       website-targets.xsl  $<

%.html: autolayout.xml 
        $(PROC) \
        --output $@  \
        --stringparam  website.database.document website.database.xml \
        --stringparam  output-root  htdocs
        tabular.xsl  \
        $(filter-out autolayout.xml,$^)

This Makefile proceeds as before, except it also builds a website targets database website.database.xml. It then passes that filename as the website.database.document parameter to the stylesheet when it processes the webpages. These two steps make the target information available to the XSLT processor so it can resolve the olinks in the webpages.

Linking to other sites

You can link from your Website table of contents or from Website pages to content outside of your Website. In your Website table of contents, you might want to point to content from other websites. The tocentry element in your layout.xml file can take an href attribute instead of page and file attributes. Such a tocentry adds a link in your generated table of contents to other content. The href value can be any URL, so it can be used to point to other content on your website, or to other websites. All you need to supply is a URL in the hrefattribute, an id attribute (required), and a title element. The following section has an example.

If you need to link from within your webpages to other sites, then you have two choices:

  • Use ulink to link to any URL. Such links are not checked during processing, so they require manual maintenance to remain valid.

  • Use olink to link to any targets for which you can create a cross reference targets database. Such links are checked during processing, and so may require less maintenance to prevent bad links.

The olink solution requires careful set up, but it can reduce link maintenance time in the long run because the links are resolved from a database of targets. You just have to keep the targets database up to date, a process that can be automated. If, after a database update, one of your olinks no longer resolves, the stylesheet reports the error so you can fix it. Also, olinks can be empty, which causes their link text to be generated from the targets database. That ensures that the link text is kept up to date.

The process of generating and using an olink database for a collection of DocBook documents is described in http://www.sagehill.net/docbookxsl/Olinking.html. Once you have the target database, you can pass its pathname to the XSLT processor using the target.database.document stylesheet parameter. This database is in addition to (and separate from) the olink database that resolves olinks between webpages in your website. The database of internal olinks is identified with the website.database.document parameter. When the processor encounters an olink, it first checks the website database before consulting the offsite database. Here is a Makefile example that uses both.

%.html: autolayout.xml 
        $(PROC) \
        --output $@  \
        --stringparam  website.database.document website.database.xml \
        --stringparam  target.database.document olinkdb.xml \
        --stringparam  output-root  htdocs
        tabular.xsl  \
        $(filter-out autolayout.xml,$^)

Olinks with system entities

The original system for olinks uses SYSTEM entities referenced by a targetdocent attribute instead of a targetdoc attribute. And it uses the localinfo attribute instead of targetptr to locate a reference point within the document. Here is how you process the original kind of olinks with Website.

  1. Create an entity declaration that identifies the target page. For example, to link to this page, I would use the following declaration:

    <!ENTITY linking SYSTEM "olink.xml" NDATA XML>

    The name that you use for the entity, linking in this case, is irrelevant. The important thing is that the entity point to the right page. I've used a system identifier here, but you could also use public identifiers if you wanted more flexibility.

    Keep in mind that the systen identifier specified here must be either an absolute URI or a relative URI that will resolve to the target page (in other words, you may need to prefix it with a partial path name, if you keep your XML webpages in different directories).

  2. Make sure the webpage that you are linking from (you don't have to do anything special to the page you're linking to) has a “DOCTYPE” declaration with an internal subset. If your olink entity is the only thing in it, it should look like something like this:

    <!DOCTYPE webpage PUBLIC "-//SF DocBook//DTD Website V2.0//EN"
              SYSTEM "http://www.sourceforge.net/docbook/release/website/2.0/website.dtd [
    <!ENTITY linking SYSTEM "olink.xml" NDATA XML>
    ]>

    If you want to link to several different pages, you will need an entity declaration for each of them.

  3. Use the targetdocent attribute of olink to identify the entity of the page you want to link to:

    <olink targetdocent="linking">link text</olink>

    That will link to the correct page in the resulting website. If you want to link to a specific anchor in that web page, use the localinfo attribute to specify the XML ID.


[1] It's also possible to use ulink and make links directly to the generated HTML pages, but that's a bad idea; if you change the hierarchy or rename a page, the link will become stale. With olink this won't happen.