view xsls/books.xsls @ 2662:e4d370d43176

Linux packages: removed apt-key usage to import gpg keys on Debian/Ubuntu. apt-key is deprecated since 2017 and will be removed after Debian 11 and Ubuntu 22.04. All distributions since at least 2013 support storing trusted keys in /etc/apt/trusted.gpg.d/ instead, so using it should be safe. A special workaround is added for Ubuntu 16.04 shipping gnupg 2.1, which is not compatible with the CLI invocation we use.
author Konstantin Pavlov <thresh@nginx.com>
date Wed, 17 Feb 2021 16:39:40 +0300
parents b5cc488e6800
children
line wrap: on
line source

<!--
  Copyright (C) Igor Sysoev
  Copyright (C) Nginx, Inc.
  -->

X:stylesheet {

X:template = "book" {

    <table><tr>

    <td bgcolor="#EEEEEE">
    <a href="{@link}">
    <img src="{@cover}" alt="" style="padding: 2pt;" border="0"/>
    </a>
    </td>

    <td>
    X:text {title: } <a href="{@link}">!{@title}</a> <br/>
    X:if "@author2" { X:text {authors: } } else { X:text {author: } }
    X:if "@site" { <a href="{@site}">!{@author}</a> } else { !{@author} }
    X:if "@author2" {
        X:text {,} <br/> X:text {&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;}
        X:if "@site2" { <a href="{@site2}">!{@author2}</a> }
                 else { !{@author2} }
    }
    <br/>
    X:if "@translator" { X:text {translator: } !{@translator} <br/> }
    X:if "@publisher" { X:text {publisher: } !{@publisher} <br/> }
    X:text {language: } !{@lang} <br/>
    X:text {year: } !{@year}
    </td>

    </tr></table>
}

}