summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2022-11-16 15:40:09 +1000
committerTomas Mraz <tomas@openssl.org>2022-11-18 14:30:09 +0100
commit851bbd0f5710dfe7fe88677327c97431e75b68fd (patch)
treea8af2b9198fc4ce1e69c1e871791d0bc357a94ac /crypto
parent0306ba1da18cd7f5730cadae14566468fcaa6ed6 (diff)
Add doc for EVP_ASYM_CIPHER-RSA and clean up OSSL_PROVIDER-FIPS.pod.
Removed fields from missingcrypto.txt that are no longer missing. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19692) (cherry picked from commit ad60cd522b4f717a69c690f68f1591371a048591)
Diffstat (limited to 'crypto')
0 files changed, 0 insertions, 0 deletions
p?id=ae6c2a760f8b73b6826e882329e629d13efbe931'>commitdiffstats
path: root/templates/part.listfeed.php
blob: cf4277dbdfac10868ecd5bbccd35fad8b43d2422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

$l = new OC_l10n('news');

if(isset($_['mock'])) {
    $feedTitle = '';
    $feedId = -1;
    $unreadItemsCount = -1;
    $favicon = OCP\Util::imagePath('core', 'actions/public.svg');
} else {
    $feed = isset($_['feed']) ? $_['feed'] : null;
    $feedTitle = $feed->getTitle();
    $feedId =  $feed->getId();
    $unreadItemsCount = isset($_['unreadItemsCount']) ? $_['unreadItemsCount'] : null;
    $favicon = $feed->getFavicon();
    if ($favicon == null) {
        $favicon = OCP\Util::imagePath('core', 'actions/public.svg');
    }
}

echo '<li class="feed" data-id="' . $feedId . '">';
    echo '<a style="background-image: url(' . $favicon . ');" href="#" class="title">' . htmlspecialchars($feedTitle, ENT_QUOTES, 'UTF-8') .'</a>';
	echo '<span class="unread_items_counter">' . $unreadItemsCount . '</span>';
    echo '<span class="buttons">';
        echo '<button class="svg action feeds_delete" title="' . $l->t('Delete feed') . '"></button>';
        echo '<button class="svg action feeds_markread" title="' . $l->t('Mark all read') . '"></button>';
    echo '</span>';
echo '</li>';