Please take our Survey
logo       

Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...

mantisbt issues_rss.php,NONE,1.1 news_rss.php,1.4,1.5: msg#00085

bug-tracking.mantis.cvs

Subject: mantisbt issues_rss.php,NONE,1.1 news_rss.php,1.4,1.5

Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29515

Modified Files:
news_rss.php
Added Files:
issues_rss.php
Log Message:
- Implemented #5502: Implement an RSS feed for issues.
- Added Mantis logo to distribution files and referenced it from the feeds.

--- NEW FILE: issues_rss.php ---
<?php
# Mantis - a php based bugtracking system
# Copyright (C) 2000 - 2002 Kenzaburo Ito -
kenito-J7RQz27tXwtAfugRpC6u6w@xxxxxxxxxxxxxxxx
# Copyright (C) 2002 - 2004 Mantis Team -
mantisbt-dev-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@xxxxxxxxxxxxxxxx
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: issues_rss.php,v 1.1 2005/04/24 13:22:21 vboctor Exp $
# --------------------------------------------------------
?>
<?php
require_once( 'core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'class.RSSBuilder.inc.php' );
require_once( $t_core_path . 'user_api.php' );
require_once( $t_core_path . 'filter_api.php' );

# only allow RSS generation of anonymous login is enabled.
# @@@ consider adding an explicit option to enable/disable RSS
syndication.
if ( OFF == config_get( 'allow_anonymous_login' ) ) {
access_denied();
}

$f_project_id = gpc_get_int( 'project_id', 0 );

$t_path = config_get( 'path' );

# construct rss file

$encoding = lang_get( 'charset' );
$about = $t_path;
$title = config_get( 'window_title' ) . ' - ' . lang_get( 'issues' );
$description = ''; // @@@ add a description
$image_link = $t_path . 'images/mantis_logo_button.gif';

# only rss 2.0
$category = project_get_name( $f_project_id );
if ( $f_project_id !== 0 ) {
$title .= ' - ' . $category;
}

# in minutes (only rss 2.0)
$cache = '10';

$rssfile = new RSSBuilder( $encoding, $about, $title, $description,
$image_link, $category, $cache);

# person, an organization, or a service
$publisher = '';

# person, an organization, or a service
$creator = '';

$date = (string) date('Y-m-d\TH:i:sO');
$language = lang_get( 'phpmailer_language' );
$rights = '';

# spatial location , temporal period or jurisdiction
$coverage = (string) '';

# person, an organization, or a service
$contributor = (string) '';

$rssfile->addDCdata( $publisher, $creator, $date, $language, $rights,
$coverage, $contributor );

# hourly / daily / weekly / ...
$period = (string) 'hourly';

# every X hours/days/...
$frequency = (int) 1;

$base = (string) date('Y-m-d\TH:i:sO');

$rssfile->addSYdata( $period, $frequency, $base );

$t_page_number = 1;
$t_issues_per_page = 25;
$t_page_count = 0;
$t_issues_count = 0;
$t_custom_filter = null;
$t_project_id = $f_project_id;
$t_user_id = user_get_id_by_name( config_get( 'anonymous_account' ) );
$t_show_sticky = null;

$t_issues = filter_get_bug_rows( $t_page_number, $t_issues_per_page,
$t_page_count, $t_issues_count,

$t_custom_filter, $t_project_id, $t_user_id, $t_show_sticky );

# Loop through results
for ( $i = 0; $i < count( $t_issues ); $i++ ) {
$row = $t_issues[$i];

$t_bug = bug_get( $row['id'], true );

$about = $link = $t_path . "view.php?id=" . $row['id'];
$title = string_display_links( $t_bug->summary );
$description = string_display_links( $t_bug->description );

# optional DC value
$subject = $title;

# optional DC value
$date = date( 'Y-m-d\TH:i:sO', $t_bug->last_updated );

# author of item
$author = user_get_name( $t_bug->reporter_id );

# $comments =
'http://www.example.com/sometext.php?somevariable=somevalue&comments=1'; # url
to comment page rss 2.0 value
$comments = $t_path . 'view.php?id=' . $row['id'] . '#bugnotes';

# optional mod_im value for dispaying a different pic for every
item
$image = '';

$rssfile->addItem( $about, $title, $link, $description,
$subject, $date,
$author, $comments,
$image );
}

# @@@ consider making this a configuration option.
# 0.91 / 1.0 / 2.0
$version = '2.0';

$rssfile->outputRSS( $version );
?>
Index: news_rss.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/news_rss.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- news_rss.php 21 Mar 2005 12:09:37 -0000 1.4
+++ news_rss.php 24 Apr 2005 13:22:21 -0000 1.5
@@ -35,9 +35,9 @@

$encoding = lang_get( 'charset' );
$about = config_get( 'path' );
- $title = config_get( 'window_title' );
+ $title = config_get( 'window_title' ) . ' - ' . lang_get( 'news' );
$description = '';
- $image_link = '';
+ $image_link = config_get( 'path' ) . 'images/mantis_logo_button.gif';

# only rss 2.0
$category = project_get_name( $f_project_id );



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click


<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
qplus.devel/200...    network.jabber....    debian.qa-packa...    encryption.gpg....    python.dabo.dev...    uclinux.devel/2...    science.mathema...    recreation.pesc...    kernel.ck/2004-...    mozilla.devel.e...    tex.latex.prosp...    ietf.multi6/200...    bbc.cvs/2002-11...    xfree86.newbie/...    jakarta.taglibs...    altlinux.hardwa...    comedi/2002-05/...    horde.bugs/2004...    games.diplomacy...    finance.e-gold....    web.dom.test-su...    lang.ruby.rails...    os.netbsd.devel...    video.gstreamer...   
Home | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe

Navigation