90e5bd65c9
Fixes #328 - URL encode links when a redirector is set * WARNING - template edit - new variable available : "real_url" Contains the final real url (redirected or any other change on original URL) * Don't redirect shaares link in RSS/Atom. * Affects links shaared in description. * Move text2clickable and keepMultipleSpaces to Utils.php + unit test UPDATE: * keepMultipleSpaces renamed to space2nbsp * space2nbsp improved to handle single space at line beginning * links in text description aren't 'nofollow' anymore
119 lines
4.6 KiB
HTML
119 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link type="text/css" rel="stylesheet" href="../inc/awesomplete.css" />
|
|
{include="includes"}
|
|
</head>
|
|
<body>
|
|
<div id="pageheader">
|
|
{include="page.header"}
|
|
<div id="headerform" class="search">
|
|
<form method="GET" class="searchform" name="searchform">
|
|
<input type="text" tabindex="1" id="searchform_value" name="searchterm" placeholder="Search text" value="">
|
|
<input type="submit" value="Search" class="bigbutton">
|
|
</form>
|
|
<form method="GET" class="tagfilter" name="tagfilter">
|
|
<input type="text" tabindex="2" name="searchtags" id="tagfilter_value" placeholder="Filter by tag" value=""
|
|
autocomplete="off" class="awesomplete" data-multiple data-minChars="1"
|
|
data-list="{loop="$tags"}{$key}, {/loop}">
|
|
<input type="submit" value="Search" class="bigbutton">
|
|
</form>
|
|
{loop="$plugins_header.fields_toolbar"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="linklist">
|
|
|
|
{include="linklist.paging"}
|
|
|
|
<div id="plugin_zone_start_linklist" class="plugin_zone">
|
|
{loop="$plugin_start_zone"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
|
|
{if="count($links)==0"}
|
|
<div id="searchcriteria">Nothing found.</i></div>
|
|
{else}
|
|
{if="$search_type=='fulltext'"}
|
|
<div id="searchcriteria">{$result_count} results for <i>{$search_crits}</i></div>
|
|
{/if}
|
|
{if="$search_type=='tags'"}
|
|
<div id="searchcriteria">{$result_count} results for tags <i>
|
|
{loop="search_crits"}
|
|
<span class="linktag" title="Remove tag">
|
|
<a href="?removetag={$value}">{$value} <span class="remove">x</span></a>
|
|
</span>
|
|
{/loop}</i></div>
|
|
{/if}
|
|
{/if}
|
|
<ul>
|
|
{loop="links"}
|
|
<li{if="$value.class"} class="{$value.class}"{/if}>
|
|
<a id="{$value.shorturl}"></a>
|
|
<div class="thumbnail">{$value.url|thumbnail}</div>
|
|
<div class="linkcontainer">
|
|
{if="isLoggedIn()"}
|
|
<div class="linkeditbuttons">
|
|
<form method="GET" class="buttoneditform">
|
|
<input type="hidden" name="edit_link" value="{$value.linkdate}">
|
|
<input type="image" alt="Edit" src="images/edit_icon.png#" title="Edit" class="button_edit">
|
|
</form><br>
|
|
<form method="POST" class="buttoneditform">
|
|
<input type="hidden" name="lf_linkdate" value="{$value.linkdate}">
|
|
<input type="hidden" name="token" value="{$token}">
|
|
<input type="hidden" name="delete_link">
|
|
<input type="image" alt="Delete" src="images/delete_icon.png#" title="Delete"
|
|
class="button_delete" onClick="return confirmDeleteLink();">
|
|
</form>
|
|
</div>
|
|
{/if}
|
|
<span class="linktitle">
|
|
<a href="{$value.real_url}">{$value.title}</a>
|
|
</span>
|
|
<br>
|
|
{if="$value.description"}<div class="linkdescription">{$value.description}</div>{/if}
|
|
{if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"}
|
|
<span class="linkdate" title="Permalink"><a href="?{$value.linkdate|smallHash}">{function="strftime('%c', $value.timestamp)"} - permalink</a> - </span>
|
|
{else}
|
|
<span class="linkdate" title="Short link here"><a href="?{$value.shorturl}">permalink</a> - </span>
|
|
{/if}
|
|
|
|
{loop="$value.link_plugin"}
|
|
<span>{$value}</span> -
|
|
{/loop}
|
|
|
|
<a href="{$value.real_url}"><span class="linkurl" title="Short link">{$value.url}</span></a><br>
|
|
{if="$value.tags"}
|
|
<div class="linktaglist">
|
|
{loop="value.taglist"}<span class="linktag" title="Add tag"><a href="?addtag={$value|urlencode}">{$value}</a></span> {/loop}
|
|
</div>
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|
|
|
|
<div id="plugin_zone_end_linklist" class="plugin_zone">
|
|
{loop="$plugin_end_zone"}
|
|
{$value}
|
|
{/loop}
|
|
</div>
|
|
|
|
{include="linklist.paging"}
|
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
|
|
<script src="inc/awesomplete.min.js#"></script>
|
|
<script src="inc/awesomplete-multiple-tags.js#"></script>
|
|
<script>
|
|
awesompleteUniqueTag('#tagfilter_value');
|
|
</script>
|
|
</body>
|
|
</html>
|