代码拉取完成,页面将自动刷新
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT 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.
#
# MantisBT 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 MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Generate News Feed RSS
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses access_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses gpc_api.php
* @uses lang_api.php
* @uses news_api.php
* @uses project_api.php
* @uses rss_api.php
* @uses string_api.php
* @uses user_api.php
* @uses utility_api.php
* @uses rssbuilder/class.RSSBuilder.inc.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'gpc_api.php' );
require_api( 'lang_api.php' );
require_api( 'news_api.php' );
require_api( 'project_api.php' );
require_api( 'rss_api.php' );
require_api( 'string_api.php' );
require_api( 'user_api.php' );
require_api( 'utility_api.php' );
require_lib( 'rssbuilder/class.RSSBuilder.inc.php' );
$f_username = gpc_get_string( 'username', null );
$f_key = gpc_get_string( 'key', null );
$f_project_id = gpc_get_int( 'project_id', ALL_PROJECTS );
news_ensure_enabled();
# make sure RSS syndication is enabled.
if( OFF == config_get( 'rss_enabled' ) ) {
access_denied();
}
# authenticate the user
if( $f_username !== null ) {
if( !rss_login( $f_username, $f_key ) ) {
access_denied();
}
} else {
if( !auth_anonymous_enabled() ) {
access_denied();
}
}
# Make sure that the current user has access to the selected project (if not ALL PROJECTS).
if( $f_project_id != ALL_PROJECTS ) {
access_ensure_project_level( config_get( 'view_bug_threshold', null, null, $f_project_id ), $f_project_id );
}
# construct rss file
$t_encoding = 'utf-8';
$t_about = config_get_global( 'path' );
$t_title = string_rss_links( config_get( 'window_title' ) . ' - ' . lang_get( 'news' ) );
if( $f_username !== null ) {
$t_title .= ' - (' . $f_username . ')';
}
$t_description = $t_title;
$t_image_link = config_get_global( 'path' ) . config_get_global( 'logo_image' );;
# only rss 2.0
$t_category = string_rss_links( project_get_name( $f_project_id ) );
# in minutes (only rss 2.0)
$t_cache = '60';
$t_rssfile = new RSSBuilder( $t_encoding, $t_about, $t_title, $t_description,
$t_image_link, $t_category, $t_cache );
# person, an organization, or a service
$t_publisher = '';
# person, an organization, or a service
$t_creator = '';
$t_date = (string)date( 'r' );
$t_language = lang_get( 'phpmailer_language' );
$t_rights = '';
# spatial location , temporal period or jurisdiction
$t_coverage = (string)'';
# person, an organization, or a service
$t_contributor = (string)'';
$t_rssfile->addDCdata( $t_publisher, $t_creator, $t_date, $t_language, $t_rights, $t_coverage, $t_contributor );
# hourly / daily / weekly / ...
$t_period = (string)'daily';
# every X hours/days/...
$t_frequency = (int)1;
$t_base = (string)date( 'Y-m-d\TH:i:sO' );
# add missing : in the O part of the date. @todo PHP 5 supports a 'c' format which will output the format
# exactly as we want it.
# 2002-10-02T10:00:00-0500 -> 2002-10-02T10:00:00-05:00
$t_base = mb_substr( $t_base, 0, 22 ) . ':' . mb_substr( $t_base, -2 );
$t_rssfile->addSYdata( $t_period, $t_frequency, $t_base );
$t_news_rows = news_get_limited_rows( 0, $f_project_id );
$t_news_count = count( $t_news_rows );
# Loop through results
for( $i = 0; $i < $t_news_count; $i++ ) {
$t_row = $t_news_rows[$i];
extract( $t_row, EXTR_PREFIX_ALL, 'v' );
# skip news item if private, or
# belongs to a private project (will only happen
if( VS_PRIVATE == $v_view_state ) {
continue;
}
$v_headline = string_rss_links( $v_headline );
$v_body = string_rss_links( $v_body );
$t_about = $t_link = config_get_global( 'path' ) . 'news_view_page.php?news_id=' . $v_id;
$t_title = $v_headline;
$t_description = $v_body;
# optional DC value
$t_subject = $t_title;
# optional DC value
$t_date = $v_date_posted;
# author of item
$t_author = '';
if( access_has_global_level( config_get( 'show_user_email_threshold' ) ) ) {
$t_author_name = string_rss_links( user_get_name( $v_poster_id ) );
$t_author_email = user_get_field( $v_poster_id, 'email' );
if( !is_blank( $t_author_email ) ) {
if( !is_blank( $t_author_name ) ) {
$t_author = $t_author_name . ' <' . $t_author_email . '>';
} else {
$t_author = $t_author_email;
}
}
}
# $comments = 'http://www.example.com/sometext.php?somevariable=somevalue&comments=1'; # url to comment page rss 2.0 value
$t_comments = '';
# optional mod_im value for dispaying a different pic for every item
$t_image = '';
$t_rssfile->addRSSItem( $t_about, $t_title, $t_link, $t_description, $t_subject, $t_date, $t_author, $t_comments, $t_image );
}
# @todo consider making this a configuration option - 0.91 / 1.0 / 2.0
$t_version = '2.0';
$t_rssfile->outputRSS( $t_version );
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。