~tblue/quam-plures/bug14_sanitize-input

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
 * Stub file for the RDF comments feed.
 *
 * Quam Plures - {@link http://quamplures.net/}
 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
 * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}
 *
 * @package xml
 * @subpackage rdf
 */

# tell QP to expect a blog in the URL params:
# we don't want extra path resolution on this page
$resolve_extra_path = false;

# force the use of the rss template:
$viewmode = '_rdf';

# force the use of the lastcomments display:
$disp = 'comments';

# retricts posts to those published, thus hiding drafts.
$show_statuses = array();

# set a limit before which posts will be ignored
# you can use a unix timestamp value or 'now' which will hide all posts in the past
$timestamp_min = '';

# set a limit after which posts will be ignored
# you can use a unix timestamp value or 'now' which will hide all posts in the future
$timestamp_max = 'now';

/**
 * Lingua Latina non mortua est quod eam loquimur (QP will handle it from here)
 */
require_once dirname(__FILE__).'/../qp_config/_config.php';

require $inc_path.'_blog_main.inc.php';
?>