Compare commits

...

2 Commits

3 changed files with 40 additions and 27 deletions

View File

@ -29,7 +29,7 @@ php-gnupg
php8.x-sqlite3 (or later version). php8.x-sqlite3 (or later version).
phpmailer is required if email confirmation is to be used. phpmailer is required if email confirmation is to be used.
php-xml to work with RSS feeds php-xml to work with RSS feeds
compface and php-gd for X-Face support compface, php-gd and libgd3 for X-Face support
These are the names for Debian packages. Other distributions should These are the names for Debian packages. Other distributions should
also provide these in some way. also provide these in some way.

View File

@ -23,7 +23,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
?> ?>
<?php <?php
@ -520,33 +520,43 @@ function show_header_short($head, $group, $local_poster = false)
// Copy MID to clipboard (requires js) // Copy MID to clipboard (requires js)
echo '<script>'; echo '<script>';
echo 'function CopyToClipboard(id)'; echo 'function CopyToClipboard(id)';
echo '{'; echo '{';
echo 'var r = document.createRange();'; echo 'var r = document.createRange();';
echo 'r.selectNode(document.getElementById(id));'; echo 'r.selectNode(document.getElementById(id));';
echo 'window.getSelection().removeAllRanges();'; echo 'window.getSelection().removeAllRanges();';
echo 'window.getSelection().addRange(r);'; echo 'window.getSelection().addRange(r);';
echo "document.execCommand('copy');"; echo "document.execCommand('copy');";
echo 'window.getSelection().removeAllRanges();'; echo 'window.getSelection().removeAllRanges();';
echo '}'; echo '}';
echo '</script> '; echo '</script> ';
?> ?>
<p id="<?php echo $head->id; ?>" style="position: absolute; z-index: -9999;"><?php echo htmlspecialchars($head->id); ?></p> <p id="<?php echo $head->id; ?>"
&nbsp;<a href="#" onclick="CopyToClipboard('<?php echo $head->id; ?>');return false;" style="text-decoration: none" title="Copy message-id to clipboard"><i>copy mid</i></a> style="position: absolute; z-index: -9999;"><?php echo htmlspecialchars($head->id); ?></p>
&nbsp;
<a href="#"
onclick="CopyToClipboard('<?php echo $head->id; ?>');return false;"
style="text-decoration: none" title="Copy message-id to clipboard"><i>copy
mid</i></a>
<p id="<?php echo $head->number . 'copy'; ?>" style="position: absolute; z-index: -9999;"><?php echo $sitelink . '/' . $config_name . '/article-flat.php?id=' . $head->number . '&group=' . urlencode($group) . '#' . $head->number; ?></p> <p id="<?php echo $head->number . 'copy'; ?>"
&nbsp;<a href="#" onclick="CopyToClipboard('<?php echo $head->number . 'copy'; ?>');return false;" style="text-decoration: none" title="Copy article link to clipboard"><i>copy link</i></a> style="position: absolute; z-index: -9999;"><?php echo $sitelink . '/' . $config_name . '/article-flat.php?id=' . $head->number . '&group=' . urlencode($group) . '#' . $head->number; ?></p>
&nbsp;
<a href="#"
onclick="CopyToClipboard('<?php echo $head->number . 'copy'; ?>');return false;"
style="text-decoration: none" title="Copy article link to clipboard"><i>copy
link</i></a>
<?php <?php
echo '&nbsp;&nbsp;Newsgroups: '; echo '&nbsp;&nbsp;Newsgroups: ';
$ngroups = preg_replace("/\,|\ /", "\t", $head->newsgroups); $ngroups = preg_replace("/\,|\ /", "\t", $head->newsgroups);
$ngroups = explode("\t", $ngroups); $ngroups = explode("\t", $ngroups);
// echo "&nbsp;"; // echo "&nbsp;";
foreach ($ngroups as $onegroup) { foreach ($ngroups as $onegroup) {
if ($s = get_section_by_group($onegroup)) { if ($s = get_section_by_group($onegroup)) {
echo '<a href="' . $file_thread . '?group=' . urlencode($onegroup) . '" title="Visit ' . $onegroup . '"> ' . $onegroup . " </a>"; echo '<a href="' . $file_thread . '?group=' . urlencode($onegroup) . '" title="Visit ' . $onegroup . '"> ' . $onegroup . " </a>";
} else { } else {
echo " ".$onegroup." "; echo " " . $onegroup . " ";
} }
} }
echo "<br />"; echo "<br />";
@ -585,7 +595,8 @@ function show_header_short($head, $group, $local_poster = false)
echo '</div>'; echo '</div>';
} }
function copy_messageid() { function copy_messageid()
{
$messageid = "THIS IS THE MSGID"; $messageid = "THIS IS THE MSGID";
return $messageid; return $messageid;
} }
@ -781,10 +792,12 @@ function message_show($group, $id, $attachment = 0, $article_data = false, $maxl
$xbmfile = $facefile . '.xbm'; $xbmfile = $facefile . '.xbm';
$uncompface = 'uncompface -X ' . $facefile . ' ' . $xbmfile; $uncompface = 'uncompface -X ' . $facefile . ' ' . $xbmfile;
shell_exec($uncompface); shell_exec($uncompface);
if (($xbm = imagecreatefromxbm($xbmfile)) !== false) { if (function_exists('imagecreatefromxbm')) {
imagepng($xbm, $pngfile); if (($xbm = imagecreatefromxbm($xbmfile)) !== false) {
imagedestroy($xbm); imagepng($xbm, $pngfile);
echo '<img align="right" src="' . $pngfile . '">'; imagedestroy($xbm);
echo '<img align="right" src="' . $pngfile . '">';
}
} }
unlink($facefile); unlink($facefile);
unlink($xbmfile); unlink($xbmfile);

Binary file not shown.