OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: RE: [docbook-apps] Legal Notice - New Window?


> -----Original Message-----
> From: SIRIGINA Saraswathi 
> 
> Please kindly let me know if there is a:
> 
>  DocBook/CSS tag to have the Legal Notice pop up in a new Window? 


First, I suppose you have set the generate.legalnotice.link parameter to 1.

To get the legal notice to pop up in a new window, you have to customize the
template with match="legalnotice" and mode="titlepage.mode" in
titlepage.xsl. You should change

<a href="{concat('ln-',$id,$html.ext)}" >  
   <xsl:copy-of select="$title"/>
</a>

to this:

<a href="{concat('ln-',$id,$html.ext)}" target="_blank">  
    <xsl:copy-of select="$title"/>
</a>


/MJ





[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]