Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
php
/***********************************************************************
Copyright (C) 2002-2005 Rickard Andersson (rickard@punbb.org)
This file is part of PunBB.
PunBB is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
PunBB is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA
************************************************************************/
/** no direct access */
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
if ($ban) return;
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
$action = isset($_GET['action']) ? $_GET['action'] : null;
$id = isset($_GET['id']) ? intval($_GET['id']) : 0;
$pid = isset($_GET['pid']) ? intval($_GET['pid']) : 0;
if ($id < 1 && $pid < 1)
message($lang_common['Bad request']);
// Load the viewtopic.php language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/topic.php';
// If a post ID is specified we determine topic ID and page number so we can redirect to the correct message
if ($pid)
{
$result = $db-query('SELECT topic_id FROM '.$db->prefix.'posts WHERE id='.$pid) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
if (!$db->num_rows($result))
message($lang_common['Bad request']);
$id = $db->result($result);
// Determine on what page the post is located (depending on $pun_user['disp_posts'])
$result = $db->query('SELECT id FROM '.$db->prefix.'posts WHERE topic_id='.$id.' ORDER BY posted') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
$num_posts = $db->num_rows($result);
for ($i = 0; $i < $num_posts; ++$i)
{
$cur_id = $db->result($result, $i);
if ($cur_id == $pid)
break;
}
++$i; // we started at 0
$_GET['p'] = ceil($i / $pun_user['disp_posts']);
}
// If action=new, we redirect to the first new post (if any)
else if ($action == 'new' && !$pun_user['is_guest'])
{
$result = $db->query('SELECT MIN(id) FROM '.$db->prefix.'posts WHERE topic_id='.$id.' AND posted>'.$pun_user['last_visit']) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
$first_new_post_id = $db->result($result);
if ($first_new_post_id)
header('Location: '.PUNBO_URL.'&task=viewtopic&pid='.$first_new_post_id.'#p'.$first_new_post_id);
else // If there is no new post, we go to the last post
header('Location: '.PUNBO_URL.'&task=viewtopic&id='.$id.'&action=last');
exit;
}
// If action=last, we redirect to the last post
else if ($action == 'last')
{
$result = $db->query('SELECT MA[img]https://realfaq.org/uploads/smiles/14.gif[/img]id) FROM '.$db->prefix.'posts WHERE topic_id='.$id) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
$last_post_id = $db->result($result);
if ($last_post_id)
{
header('Location: '.PUNBO_URL.'&task=viewtopic&pid='.$last_post_id.'#p'.$last_post_id);
exit;
}
}
// Fetch some info about the topic
if (!$pun_user['is_guest'])
$result = $db->query('SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, s.user_id AS is_subscribed FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'subscriptions AS s ON (t.id=s.topic_id AND s.user_id='.$pun_user['id'].') LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id='.$id.' AND t.moved_to IS NULL') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error());
else
$result = $db->query('SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, 0 FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id='.$id.' AND t.moved_to IS NULL') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error());
if (!$db->num_rows($result))
message($lang_common['Bad request']);
$cur_topic = $db->fetch_assoc($result);
// Sort out who the moderators are and if we are currently a moderator (or an admin)
$mods_array = ($cur_topic['moderators'] != '') ? unserialize($cur_topic['moderators']) : array();
$is_admmod = ($pun_user['g_id'] == PUN_ADMIN || ($pun_user['g_id'] == PUN_MOD && array_key_exists($pun_user['username'], $mods_array))) ? true : false;
// Can we or can we not post replies?
if ($cur_topic['closed'] == '0')
{
if (($cur_topic['post_replies'] == '' && $pun_user['g_post_replies'] == '1') || $cur_topic['post_replies'] == '1' || $is_admmod)
$post_link = '[url=post.php?tid='.$id.']'.$lang_topic['Post reply'].'[/url]';
else
$post_link = ' ';
}
else
{
$post_link = $lang_topic['Topic closed'];
if ($is_admmod)
$post_link .= ' / [url=post.php?tid='.$id.']'.$lang_topic['Post reply'].'[/url]';
}
// Determine the post offset (based on $_GET['p'])
$num_pages = ceil(($cur_topic['num_replies'] + 1) / $pun_user['disp_posts']);
$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : $_GET['p'];
$start_from = $pun_user['disp_posts'] * ($p - 1);
// Generate paging links
$paging_links = $lang_common['Pages'].' '.paginate($num_pages, $p, 'viewtopic.php?id='.$id);
if ($pun_config['o_censoring'] == '1')
$cur_topic['subject'] = censor_words($cur_topic['subject']);
$quickpost = false;
if ($pun_config['o_quickpost'] == '1' &&
!$pun_user['is_guest'] &&
($cur_topic['post_replies'] == '1' || ($cur_topic['post_replies'] == '' && $pun_user['g_post_replies'] == '1')) &&
($cur_topic['closed'] == '0' || $is_admmod))
{
$required_fields = array('req_message' => $lang_common['Message']);
$quickpost = true;
}
if (!$pun_user['is_guest'] && $pun_config['o_subscriptions'] == '1')
{
if ($cpaging_linksur_topic['is_subscribed'])
// I apologize for the variable naming here. It's a mix of subscription and action I guess :-)
$subscraction = ''.$lang_topic['Is subscribed'].' - [url=misc.php?unsubscribe='.$id.']'.$lang_topic['Unsubscribe'].'[/url]
'."\n";
else
$subscraction = '[url=misc.php?subscribe='.$id.']'.$lang_topic['Subscribe'].'[/url]
'."\n";
}
else
$subscraction = ''."\n";
$page_title = pun_htmlspecialchars($pun_config['o_board_title'].' / '.$cur_topic['subject']);
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
?>
php echo $paging_links ?
php echo $post_link ?
[list]
[*][url=index.php]php echo $lang_common['Index'] ?[/url]
[*]» [url=viewforum.php?id=<?php echo $cur_topic['forum_id'] ?>]php echo pun_htmlspecialchars($cur_topic['forum_name']) ?[/url]
[*]» php echo pun_htmlspecialchars($cur_topic['subject']) ?
[/list]
php
require PUN_ROOT.'include/parser.php';
$bg_switch = true; // Used for switching background color in posts
$post_count = 0; // Keep track of post numbers
// Retrieve the posts (and their respective poster/online status)
$result = $db-query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
while ($cur_post = $db->fetch_assoc($result))
{
$post_count++;
$user_avatar = '';
$user_info = array();
$user_contacts = array();
$post_actions = array();
$is_online = '';
$signature = '';
// If the poster is a registered user.
if ($cur_post['poster_id'] > 1)
{
$username = '[url=profile.php?id='.$cur_post['poster_id'].']'.pun_htmlspecialchars($cur_post['username']).'[/url]';
$user_title = get_title($cur_post);
if ($pun_config['o_censoring'] == '1')
$user_title = censor_words($user_title);
// Format the online indicator
$is_online = ($cur_post['is_online'] == $cur_post['poster_id']) ? '[b]'.$lang_topic['Online'].'[/b]' : $lang_topic['Offline'];
if ($pun_config['o_avatars'] == '1' && $cur_post['use_avatar'] == '1' && $pun_user['show_avatars'] != '0')
{
if ($img_size = @getimagesize(PUN_ROOT.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.gif'))
$user_avatar = '[img]'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.gif[/img]';
else if ($img_size = @getimagesize(PUN_ROOT.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.jpg'))
$user_avatar = '[img]'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.jpg[/img]';
else if ($img_size = @getimagesize(PUN_ROOT.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.png'))
$user_avatar = '[img]'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.png[/img]';
}
else
$user_avatar = '';
// We only show location, register date, post count and the contact links if "Show user info" is enabled
if ($pun_config['o_show_user_info'] == '1')
{
if ($cur_post['location'] != '')
{
if ($pun_config['o_censoring'] == '1')
$cur_post['location'] = censor_words($cur_post['location']);
$user_info[] = ''.$lang_topic['From'].': '.pun_htmlspecialchars($cur_post['location']);
}
$user_info[] = ''.$lang_common['Registered'].': '.date($pun_config['o_date_format'], $cur_post['registered']);
if ($pun_config['o_show_post_count'] == '1' || $pun_user['g_id'] < PUN_GUEST)
$user_info[] = ''.$lang_common['Posts'].': '.$cur_post['num_posts'];
// Now let's deal with the contact links (E-mail and URL)
if (($cur_post['email_setting'] == '0' && !$pun_user['is_guest']) || $pun_user['g_id'] < PUN_GUEST)
$user_contacts[] = '[url=mailto:'.$cur_post['email'].']'.$lang_common['E-mail'].'[/url]';
else if ($cur_post['email_setting'] == '1' && !$pun_user['is_guest'])
$user_contacts[] = '[url=misc.php?email='.$cur_post['poster_id'].']'.$lang_common['E-mail'].'[/url]';
if ($cur_post['url'] != '')
$user_contacts[] = '[url='.pun_htmlspecialchars($cur_post['url']).']'.$lang_topic['Website'].'[/url]';
}
if ($pun_user['g_id'] < PUN_GUEST)
{
$user_info[] = 'IP: [url=moderate.php?get_host='.$cur_post['id'].']'.$cur_post['poster_ip'].'[/url]';
if ($cur_post['admin_note'] != '')
$user_info[] = ''.$lang_topic['Note'].': [b]'.pun_htmlspecialchars($cur_post['admin_note']).'[/b]';
}
}
// If the poster is a guest (or a user that has been deleted)
else
{
$username = pun_htmlspecialchars($cur_post['username']);
$user_title = get_title($cur_post);
if ($pun_user['g_id'] < PUN_GUEST)
$user_info[] = 'IP: [url=moderate.php?get_host='.$cur_post['id'].']'.$cur_post['poster_ip'].'[/url]';
if ($pun_config['o_show_user_info'] == '1' && $cur_post['poster_email'] != '' && !$pun_user['is_guest'])
$user_contacts[] = '[url=mailto:'.$cur_post['poster_email'].']'.$lang_common['E-mail'].'[/url]';
}
// Generation post action array (quote, edit, delete etc.)
if (!$is_admmod)
{
if (!$pun_user['is_guest'])
$post_actions[] = '[*][url=misc.php?report='.$cur_post['id'].']'.$lang_topic['Report'].'[/url]';
if ($cur_topic['closed'] == '0')
{
if ($cur_post['poster_id'] == $pun_user['id'])
{
if ((($start_from + $post_count) == 1 && $pun_user['g_delete_topics'] == '1') || (($start_from + $post_count) > 1 && $pun_user['g_delete_posts'] == '1'))
$post_actions[] = '[*][url=delete.php?id='.$cur_post['id'].']'.$lang_topic['Delete'].'[/url]';
if ($pun_user['g_edit_posts'] == '1')
$post_actions[] = '[*][url=edit.php?id='.$cur_post['id'].']'.$lang_topic['Edit'].'[/url]';
}
if (($cur_topic['post_replies'] == '' && $pun_user['g_post_replies'] == '1') || $cur_topic['post_replies'] == '1')
$post_actions[] = '[*][url=post.php?tid='.$id.'&qid='.$cur_post['id'].']'.$lang_topic['Quote'].'[/url]';
}
}
else
$post_actions[] = '[*][url=misc.php?report='.$cur_post['id'].']'.$lang_topic['Report'].'[/url]'.$lang_topic['Link separator'].'
[*][url=delete.php?id='.$cur_post['id'].']'.$lang_topic['Delete'].'[/url]'.$lang_topic['Link separator'].'
[*][url=edit.php?id='.$cur_post['id'].']'.$lang_topic['Edit'].'[/url]'.$lang_topic['Link separator'].'
[*][url=post.php?tid='.$id.'&qid='.$cur_post['id'].']'.$lang_topic['Quote'].'[/url]';
// Switch the background color for every message.
$bg_switch = ($bg_switch) ? $bg_switch = false : $bg_switch = true;
$vtbg = ($bg_switch) ? ' roweven' : ' rowodd';
// Perform the main parsing of the message (BBCode, smilies, censor words etc)
$cur_post['message'] = parse_message($cur_post['message'], $cur_post['hide_smilies']);
// Do signature parsing/caching
if ($cur_post['signature'] != '' && $pun_user['show_sig'] != '0')
{
if (isset($signature_cache[$cur_post['poster_id']]))
$signature = $signature_cache[$cur_post['poster_id']];
else
{
$signature = parse_signature($cur_post['signature']);
$signature_cache[$cur_post['poster_id']] = $signature;
}
}
?>
[HEADING=1]#php echo ($start_from + $post_count) ? [url=viewtopic.php?pid=<?php echo $cur_post['id'].'#p'.$cur_post['id'] ?>]php echo format_time($cur_post['posted']) ?[/url][/HEADING]
[b]php echo $username ?[/b]
[b]php echo $user_title ?[/b]
php echo $user_avatar ?
php if (count($user_info)) echo "\t\t\t\t\t".implode('</dd'."\n\t\t\t\t\t", $user_info).'
'."\n"; ?>
php if (count($user_contacts)) echo "\t\t\t\t\t".'<dd class="usercontacts"'.implode(' ', $user_contacts).''."\n"; ?>
[HEADING=2]php if (($post_count + $start_from) 1) echo ' Re: '; ?>php echo pun_htmlspecialchars($cur_topic['subject']) ?[/HEADING]
php echo $cur_post['message']."\n" ?
php if ($cur_post['edited'] != '') echo "\t\t\t\t\t".'<p class="postedit"[i]'.$lang_topic['Last edit'].' '.pun_htmlspecialchars($cur_post['edited_by']).' ('.format_time($cur_post['edited']).')[/i]'."\n"; ?>
php if ($signature != '') echo "\t\t\t\t".'<div class="postsignature"'.$signature.'
'."\n"; ?>
php if ($cur_post['poster_id'] 1) echo ''.$is_online.'
'; ?>
php echo (count($post_actions)) ? '<ul'.implode($lang_topic['Link separator'].'', $post_actions).'
'."\n" : ''."\n" ?>
php
}
?
php echo $post_link ?
php echo $paging_links ?
[list]
[*][url=index.php]php echo $lang_common['Index'] ?[/url]
[*]» [url=viewforum.php?id=<?php echo $cur_topic['forum_id'] ?>]php echo pun_htmlspecialchars($cur_topic['forum_name']) ?[/url]
[*]» php echo pun_htmlspecialchars($cur_topic['subject']) ?
[/list]
php echo $subscraction ?
php
// Display quick post if enabled
if ($quickpost)
{
?
[HEADING=1]php echo $lang_topic['Quick post'] ?[/HEADING]
php echo $lang_common['Write message legend'] ?
php require PUN_ROOT.'mod_easy_bbcode.php'; ?
[list]
[*][url=help.php#bbcode]php echo $lang_common['BBCode'] ?[/url]: php echo ($pun_config['p_message_bbcode'] == '1') ? $lang_common['on'] : $lang_common['off']; ?
[*][url=help.php#img]php echo $lang_common['img tag'] ?[/url]: php echo ($pun_config['p_message_img_tag'] == '1') ? $lang_common['on'] : $lang_common['off']; ?
[*][url=help.php#smilies]php echo $lang_common['Smilies'] ?[/url]: php echo ($pun_config['o_smilies'] == '1') ? $lang_common['on'] : $lang_common['off']; ?
[/list]
php
}
// Increment "num_views" for topic
$low_prio = ($db_type == 'mysql') ? 'LOW_PRIORITY ' : '';
$db-query('UPDATE '.$low_prio.$db->prefix.'topics SET num_views=num_views+1 WHERE id='.$id) or error('Unable to update topic', __FILE__, __LINE__, $db->error());
$forum_id = $cur_topic['forum_id'];
$footer_style = 'viewtopic';
require PUN_ROOT.'footer.php';
art пишет:
работает, вроде![]()
Ivanes$ пишет:
art пишет:
работает, вроде![]()
А спасибо - это главному консультанту, вон, нашему.![]()
art пишет:
может, дело во времени завтрака? я завтракал часов в 10. ел овсянку есличе![]()
Ivanes$ пишет:
Не в браузерах.А в чем?.. Вы с Москвы, а мы из Питера?..![]()
![]()
art пишет:
Ivanes$ пишет:
Не в браузерах.А в чем?.. Вы с Москвы, а мы из Питера?..![]()
![]()
а почему ты сказал "с Москвы", но "из Питера"?
Mona пишет:
у меня не работает. то есть смайлы появились, но по клику не вставляются.
пользуюсь я Файрфоксом.
а завтракала стаканом ряженки с петрушкой.![]()
Funtik пишет:
У меня не работает тоже![]()