This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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




---------------------------------------------------------------------
To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]